Verovio
Source code documentation
findlayerelementsfunctor.h
1 // Name: findlayerelementsfunctor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FINDLAYERELEMENTSFUNCTOR_H__
9 #define __VRV_FINDLAYERELEMENTSFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 //----------------------------------------------------------------------------
14 
15 #include "alignfunctor.h"
16 
17 namespace vrv {
18 
19 //----------------------------------------------------------------------------
20 // LayersInTimeSpanFunctor
21 //----------------------------------------------------------------------------
22 
27 public:
31  LayersInTimeSpanFunctor(const MeterSig *meterSig, const Mensur *mensur);
33  virtual ~LayersInTimeSpanFunctor() = default;
35 
36  /*
37  * Abstract base implementation
38  */
39  bool ImplementsEndInterface() const override { return false; }
40 
41  /*
42  * Set the time and duration of the event
43  */
44  void SetEvent(const Fraction &time, const Fraction &duration);
45 
46  /*
47  * Retrieve the search result
48  */
49  std::set<int> GetLayers() const { return m_layers; }
50 
51  /*
52  * Functor interface
53  */
55  FunctorCode VisitLayerElement(const LayerElement *layerElement) override;
56  FunctorCode VisitMensur(const Mensur *mensur) override;
57  FunctorCode VisitMeterSig(const MeterSig *meterSig) override;
59 
60 protected:
61  //
62 private:
63  //
64 public:
65  //
66 private:
67  // The time of the event
68  Fraction m_time;
69  // The duration of the event
70  Fraction m_duration;
71  // The layers (layerN) found
72  std::set<int> m_layers;
73  // The current time alignment parameters
74  AlignMeterParams m_meterParams;
75 };
76 
77 //----------------------------------------------------------------------------
78 // LayerElementsInTimeSpanFunctor
79 //----------------------------------------------------------------------------
80 
85 public:
89  LayerElementsInTimeSpanFunctor(const MeterSig *meterSig, const Mensur *mensur, const Layer *layer);
91  virtual ~LayerElementsInTimeSpanFunctor() = default;
93 
94  /*
95  * Abstract base implementation
96  */
97  bool ImplementsEndInterface() const override { return false; }
98 
99  /*
100  * Set the time and duration of the event
101  */
102  void SetEvent(const Fraction &time, const Fraction &duration);
103 
104  /*
105  * Consider all layers except the current one
106  */
107  void ConsiderAllLayersButCurrent() { m_allLayersButCurrent = true; }
108 
109  /*
110  * Retrieve the search result
111  */
112  ListOfConstObjects GetElements() const { return m_elements; }
113 
114  /*
115  * Functor interface
116  */
118  FunctorCode VisitLayerElement(const LayerElement *layerElement) override;
120 
121 protected:
122  //
123 private:
124  //
125 public:
126  //
127 private:
128  // The time of the event
129  Fraction m_time;
130  // The duration of the event
131  Fraction m_duration;
132  // The list of layer elements found
133  ListOfConstObjects m_elements;
134  // The current time alignment parameters
135  AlignMeterParams m_meterParams;
136  // The layer to consider
137  const Layer *m_layer;
138  // ... or to ignore
139  bool m_allLayersButCurrent;
140 };
141 
142 //----------------------------------------------------------------------------
143 // FindSpannedLayerElementsFunctor
144 //----------------------------------------------------------------------------
145 
151 public:
157  virtual ~FindSpannedLayerElementsFunctor() = default;
159 
160  /*
161  * Abstract base implementation
162  */
163  bool ImplementsEndInterface() const override { return false; }
164 
165  /*
166  * Set the horizontal boundary to search for
167  */
168  void SetMinMaxPos(int minPos, int maxPos);
169 
170  /*
171  * Set the minimal and maximal layerN to consider
172  */
173  void SetMinMaxLayerN(int minLayerN, int maxLayerN);
174 
175  /*
176  * Set the staff numbers to consider
177  */
178  void SetStaffNs(const std::set<int> &staffNs) { m_staffNs = staffNs; }
179 
180  /*
181  * Set the classes to search for
182  */
183  void SetClassIds(const std::vector<ClassId> &classIds) { m_classIds = classIds; }
184 
185  /*
186  * Clear the search result
187  */
188  void ClearElements() { m_elements.clear(); }
189 
190  /*
191  * Retrieve the search result
192  */
193  std::vector<const LayerElement *> GetElements() const { return m_elements; }
194 
195  /*
196  * Functor interface
197  */
199  FunctorCode VisitLayerElement(const LayerElement *layerElement) override;
200  FunctorCode VisitMeasure(const Measure *measure) override;
202 
203 protected:
204  //
205 private:
206  //
207 public:
208  //
209 private:
210  // The minimal horizontal position
211  int m_minPos;
212  // The maximal horizontal position
213  int m_maxPos;
214  // The staff numbers to consider, any staff if empty
215  std::set<int> m_staffNs;
216  // The minimal layerN to consider, unbounded below if zero
217  int m_minLayerN;
218  // The maximal layerN to consider, unbounded above if zero
219  int m_maxLayerN;
220  // The time spanning interface
221  const TimeSpanningInterface *m_interface;
222  // The classes to keep
223  std::vector<ClassId> m_classIds;
224  // The list of layer elements found
225  std::vector<const LayerElement *> m_elements;
226 };
227 
228 //----------------------------------------------------------------------------
229 // GetRelativeLayerElementFunctor
230 //----------------------------------------------------------------------------
231 
239 public:
243  GetRelativeLayerElementFunctor(int elementIndex, bool anotherLayer);
245  virtual ~GetRelativeLayerElementFunctor() = default;
247 
248  /*
249  * Abstract base implementation
250  */
251  bool ImplementsEndInterface() const override { return false; }
252 
253  /*
254  * Retrieve the search result
255  */
256  const LayerElement *GetRelativeElement() const { return m_relativeElement; }
257 
258  /*
259  * Functor interface
260  */
262  FunctorCode VisitLayerElement(const LayerElement *layerElement) override;
264 
265 protected:
266  //
267 private:
268  //
269 public:
270  //
271 private:
272  // The next/previous relevant layer element
273  const LayerElement *m_relativeElement;
274  // The index of the layer element that is being compared to (starting point)
275  int m_initialElementIndex;
276  // The flag to indicate whether search is done in the same layer as the given element, or in neighboring one
277  bool m_isInNeighboringLayer;
278 };
279 
280 } // namespace vrv
281 
282 #endif // __VRV_FINDLAYERELEMENTSFUNCTOR_H__
vrv::LayersInTimeSpanFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:39
vrv::GetRelativeLayerElementFunctor
This class goes through all layer elements of the layer and returns the next/previous element (depend...
Definition: findlayerelementsfunctor.h:238
vrv::MeterSig
This class models the MEI <meterSig> element.
Definition: metersig.h:27
vrv::GetRelativeLayerElementFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:251
vrv::LayerElementsInTimeSpanFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:97
vrv::Fraction
Definition: fraction.h:19
vrv::Mensur
This class models the MEI <mensur> element.
Definition: mensur.h:27
vrv::FindSpannedLayerElementsFunctor
This class retrieves all layer elements between two horizontal positions.
Definition: findlayerelementsfunctor.h:150
vrv::LayersInTimeSpanFunctor
This class collects all layers which appear in the given time / duration.
Definition: findlayerelementsfunctor.h:26
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::FindSpannedLayerElementsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: findlayerelementsfunctor.h:163
vrv::LayerElementsInTimeSpanFunctor
This class collects all layer elements which appear in the given time / duration.
Definition: findlayerelementsfunctor.h:84
vrv::TimeSpanningInterface
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33