8 #ifndef __VRV_EDITOR_TOOLKIT_NEUME_H__
9 #define __VRV_EDITOR_TOOLKIT_NEUME_H__
18 #include "editortoolkit.h"
42 bool AddSyl(std::string elementId, std::string sylText);
44 bool Chain(jsonxx::Array actions);
45 bool DisplaceClefOctave(std::string elementId, std::string direction);
46 bool Drag(std::string elementId,
int x,
int y,
bool topLevel =
true);
47 bool Insert(std::string elementType, std::string staffId,
int ulx,
int uly,
int lrx,
int lry,
48 std::vector<std::pair<std::string, std::string>> attributes);
49 bool InsertToSyllable(std::string elementId);
50 bool MatchHeight(std::string elementId);
51 bool Merge(std::vector<std::string> elementIds);
52 bool MoveOutsideSyllable(std::string elementId);
53 bool Set(std::string elementId, std::string attrType, std::string attrValue);
54 bool SetText(std::string elementId,
const std::string &text);
55 bool SetClef(std::string elementId, std::string shape);
56 bool SetLiquescent(std::string elementId, std::string shape);
58 bool Split(std::string elementId,
int x);
59 bool SplitNeume(std::string elementId, std::string ncId);
60 bool Remove(std::string elementId);
61 bool Resize(std::string elementId,
int ulx,
int uly,
int lrx,
int lry,
float resize = NAN);
62 bool Group(std::string groupType, std::vector<std::string> elementIds);
63 void UnlinkSyllable(
Syllable *syllable);
64 bool Ungroup(std::string groupType, std::vector<std::string> elementIds);
65 bool ChangeGroup(std::string elementId, std::string contour);
66 bool ToggleLigature(std::vector<std::string> elementIds);
67 bool ChangeStaff(std::string elementId);
68 bool ChangeStaffTo(std::string elementId, std::string staffId);
69 bool ClefMovementHandler(
Clef *clef,
int x,
int y);
75 bool ParseAddSylAction(jsonxx::Object param, std::string *elementId, std::string *sylText);
77 bool ParseDisplaceClefAction(jsonxx::Object param, std::string *elementId, std::string *direction);
78 bool ParseDragAction(jsonxx::Object param, std::string *elementId,
int *x,
int *y);
79 bool ParseInsertAction(jsonxx::Object param, std::string *elementType, std::string *startId, std::string *endId);
80 bool ParseInsertAction(jsonxx::Object param, std::string *elementType, std::string *staffId,
int *ulx,
int *uly,
81 int *lrx,
int *lry, std::vector<std::pair<std::string, std::string>> *attributes);
82 bool ParseInsertToSyllableAction(jsonxx::Object param, std::string *elementId);
83 bool ParseMatchHeightAction(jsonxx::Object param, std::string *elementId);
84 bool ParseMergeAction(jsonxx::Object param, std::vector<std::string> *elementIds);
85 bool ParseMoveOutsideSyllableAction(jsonxx::Object param, std::string *elementId);
86 bool ParseSetAction(jsonxx::Object param, std::string *elementId, std::string *attrType, std::string *attrValue);
87 bool ParseSetTextAction(jsonxx::Object param, std::string *elementId, std::string *text);
88 bool ParseSetClefAction(jsonxx::Object param, std::string *elementId, std::string *shape);
89 bool ParseSetLiquescentAction(jsonxx::Object param, std::string *elementId, std::string *shape);
90 bool ParseSplitAction(jsonxx::Object param, std::string *elementId,
int *x);
91 bool ParseSplitNeumeAction(jsonxx::Object param, std::string *elementId, std::string *ncId);
92 bool ParseRemoveAction(jsonxx::Object param, std::string *elementId);
93 bool ParseResizeAction(jsonxx::Object param, std::string *elementId,
int *ulx,
int *uly,
int *lrx,
int *lry);
94 bool ParseResizeRotateAction(
95 jsonxx::Object param, std::string *elementId,
int *ulx,
int *uly,
int *lrx,
int *lry,
float *rotate);
96 bool ParseGroupAction(jsonxx::Object param, std::string *groupType, std::vector<std::string> *elementIds);
97 bool ParseUngroupAction(jsonxx::Object param, std::string *groupType, std::vector<std::string> *elementIds);
98 bool ParseChangeGroupAction(jsonxx::Object param, std::string *elementId, std::string *contour);
99 bool ParseToggleLigatureAction(jsonxx::Object param, std::vector<std::string> *elementIds);
100 bool ParseChangeStaffAction(jsonxx::Object param, std::string *elementId);
101 bool ParseChangeStaffToAction(jsonxx::Object param, std::string *elementId, std::string *staffId);
109 bool AdjustPitchFromPosition(
Object *obj);
110 bool AdjustClefLineFromPosition(
Clef *clef,
Staff *staff = NULL);
124 int distanceToBB(
int ulx,
int uly,
int lrx,
int lry,
double rotate = 0)
126 int offset = (x - ulx) * tan(rotate * M_PI / 180.0);
129 int xDiff = std::max((ulx > x ? ulx - x : 0), (x > lrx ? x - lrx : 0));
130 int yDiff = std::max((uly > y ? uly - y : 0), (y > lry ? y - lry : 0));
132 return sqrt(xDiff * xDiff + yDiff * yDiff);
137 if (!a->GetFacsimileInterface() || !b->GetFacsimileInterface())
return true;
138 Zone *zoneA = a->GetFacsimileInterface()->
GetZone();
139 Zone *zoneB = b->GetFacsimileInterface()->
GetZone();
141 int distA = distanceToBB(zoneA->GetUlx(), zoneA->GetUly(), zoneA->GetLrx(), zoneA->GetLry(),
142 zoneA->HasRotate() ? zoneA->GetRotate() : 0);
143 int distB = distanceToBB(zoneB->GetUlx(), zoneB->GetUly(), zoneB->GetLrx(), zoneB->GetLry(),
144 zoneB->HasRotate() ? zoneB->GetRotate() : 0);
145 return (distA < distB);
158 if (!a->GetFirst(NC)) {
159 LogError(
"Neume %s doesn't have neume components.", a->GetID().c_str());
162 if (!b->GetFirst(NC)) {
163 LogError(
"Neume %s doesn't have neume components.", b->GetID().c_str());
166 if (!a->GetFirst(NC)->GetFacsimileInterface()) {
167 LogError(
"Neume component %s doesn't have facsimile.", a->GetFirst(NC)->GetID().c_str());
170 if (!b->GetFirst(NC)->GetFacsimileInterface()) {
171 LogError(
"Neume component %s doesn't have facsimile.", b->GetFirst(NC)->GetID().c_str());
174 Zone *zoneA = a->GetFirst(NC)->GetFacsimileInterface()->
GetZone();
175 Zone *zoneB = b->GetFirst(NC)->GetFacsimileInterface()->
GetZone();
177 int distA = std::abs(x - zoneA->GetUlx());
178 int distB = std::abs(x - zoneB->GetUlx());
180 return (distA < distB);
197 if (!a->Is(SYSTEM) || !b->Is(SYSTEM))
return false;
209 if (staffA->HasType() && staffB->HasType()) {
211 std::string typeA = staffA->GetType();
212 std::string typeB = staffB->GetType();
214 if (staffA->GetType().find(
"column") == 0 && staffB->GetType().find(
"column") == 0) {
215 int columnA = std::stoi(typeA.substr(6));
216 int columnB = std::stoi(typeB.substr(6));
217 if (columnA != columnB) {
218 return columnA < columnB;
224 Zone *zoneA = staffA->GetFacsimileInterface()->
GetZone();
225 Zone *zoneB = staffB->GetFacsimileInterface()->
GetZone();
229 int aLowest, bLowest, aHighest, bHighest;
231 aLowest = zoneA->GetRotate() < 0
233 : zoneA->GetLry() + (zoneA->GetLrx() - zoneA->GetUlx()) * tan(zoneA->GetRotate() * M_PI / 180.0);
235 aHighest = zoneA->GetRotate() < 0
237 : zoneA->GetUly() - (zoneA->GetLrx() - zoneA->GetUlx()) * tan(zoneA->GetRotate() * M_PI / 180.0);
239 bLowest = zoneB->GetRotate() < 0
241 : zoneB->GetLry() + (zoneB->GetLrx() - zoneB->GetUlx()) * tan(zoneB->GetRotate() * M_PI / 180.0);
243 bHighest = zoneB->GetRotate() < 0
245 : zoneB->GetUly() - (zoneB->GetLrx() - zoneB->GetUlx()) * tan(zoneB->GetRotate() * M_PI / 180.0);
250 if (((aLowest <= bLowest && aLowest >= bHighest) || (aHighest <= bLowest && aHighest >= bHighest)
251 || (bLowest <= aLowest && bLowest >= aHighest) || (bHighest <= aLowest && bHighest >= aHighest))
252 && (zoneA->GetLrx() - zoneB->GetUlx() <= 0.5 * (zoneA->GetLrx() - zoneA->GetUlx()))) {
254 return (zoneA->GetUlx() < zoneB->GetUlx());
257 return (zoneA->GetUly() < zoneB->GetUly());