Verovio
Source code documentation
rest.h
1 // Name: rest.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_REST_H__
9 #define __VRV_REST_H__
10 
11 #include "altsyminterface.h"
12 #include "atts_externalsymbols.h"
13 #include "atts_mensural.h"
14 #include "durationinterface.h"
15 #include "layerelement.h"
16 #include "positioninterface.h"
17 
18 namespace vrv {
19 
20 class TransPitch;
21 
22 enum RestLayer { RL_UNSET = -1, RL_sameLayer, RL_otherLayer };
23 
24 enum RestAccidental { RA_UNSET = -1, RA_none, RA_s, RA_f, RA_x, RA_n };
25 
26 enum RestLayerPlace { RLP_UNSET = -1, RLP_restOnTopLayer, RLP_restOnBottomLayer };
27 
28 enum RestNotePlace { RNP_UNSET = -1, RNP_noteInSpace, RNP_noteOnLine };
29 
30 //----------------------------------------------------------------------------
31 // Rest
32 //----------------------------------------------------------------------------
33 
37 class Rest : public LayerElement,
38  public AltSymInterface,
39  public DurationInterface,
40  public PositionInterface,
41  public AttColor,
42  public AttCue,
43  public AttExtSymAuth,
44  public AttExtSymNames,
45  public AttRestVisMensural {
46 public:
51  Rest();
53  virtual ~Rest();
54  Object *Clone() const override { return new Rest(*this); }
55  void Reset() override;
56  std::string GetClassName() const override { return "rest"; }
58 
63  bool IsSupportedChild(ClassId classId) override;
64 
68  void AddChild(Object *object) override;
69 
73  AltSymInterface *GetAltSymInterface() override { return vrv_cast<AltSymInterface *>(this); }
75  PositionInterface *GetPositionInterface() override { return vrv_cast<PositionInterface *>(this); }
76  const PositionInterface *GetPositionInterface() const override { return vrv_cast<const PositionInterface *>(this); }
77  DurationInterface *GetDurationInterface() override { return vrv_cast<DurationInterface *>(this); }
78  const DurationInterface *GetDurationInterface() const override { return vrv_cast<const DurationInterface *>(this); }
80 
82  bool HasToBeAligned() const override { return true; }
83 
88  char32_t GetRestGlyph() const;
90  char32_t GetRestGlyph(const data_DURATION duration) const;
92 
96  int GetOptimalLayerLocation(const Staff *staff, const Layer *layer, int defaultLocation) const;
97 
101  void UpdateFromTransLoc(const TransPitch &tp);
102 
103  //----------//
104  // Functors //
105  //----------//
106 
110  FunctorCode Accept(Functor &functor) override;
112  FunctorCode Accept(ConstFunctor &functor) const override;
113  FunctorCode AcceptEnd(Functor &functor) override;
114  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
116 
117 private:
121  std::pair<int, RestAccidental> GetLocationRelativeToOtherLayers(
122  const Layer *currentLayer, bool isTopLayer, bool &restOverlap) const;
123 
127  int GetLocationRelativeToCurrentLayer(const Staff *currentStaff, const Layer *currentLayer, bool isTopLayer) const;
128 
132  int GetFirstRelativeElementLocation(
133  const Staff *currentStaff, const Layer *currentLayer, bool isPrevious, bool isTopLayer) const;
134 
139  int GetMarginLayerLocation(bool isTopLayer, bool restOverlap) const;
140 
144  std::pair<int, RestAccidental> GetElementLocation(const Object *object, const Layer *layer, bool isTopLayer) const;
145 
149  int GetRestOffsetFromOptions(
150  RestLayer layer, const std::pair<int, RestAccidental> &location, bool isTopLayer) const;
151 
156  bool DetermineRestPosition(const Staff *staff, const Layer *layer, bool &isTopLayer) const;
157 
158 public:
159  //
160 private:
161 };
162 
163 } // namespace vrv
164 
165 #endif
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Rest::HasToBeAligned
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: rest.h:82
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Rest::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element to a rest.
vrv::Rest::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: rest.h:54
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Rest::GetOptimalLayerLocation
int GetOptimalLayerLocation(const Staff *staff, const Layer *layer, int defaultLocation) const
Get the vertical location for the rests that are located on other layers.
vrv::Rest::Reset
void Reset() override
Virtual reset method.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::AltSymInterface
This class is an interface for elements having a @altsym It is not an abstract class but should not b...
Definition: altsyminterface.h:30
vrv::Rest::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::Rest::AddChild
void AddChild(Object *object) override
Overwritten method for rest.
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
vrv::DurationInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
vrv::Rest::GetRestGlyph
char32_t GetRestGlyph() const
Get the SMuFL glyph or a rest considering its actual duration.
vrv::TransPitch
Definition: transposition.h:35
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
vrv::Rest::UpdateFromTransLoc
void UpdateFromTransLoc(const TransPitch &tp)
Update the rest location based on the input TransPitch.