/usr/include/tse3/KeySigTrack.h is in libtse3-dev 0.3.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | /*
* @(#)KeySigTrack.h 3.00 30 May 2000
*
* Copyright (c) 2000 Pete Goodliffe (pete@cthree.org)
*
* This file is part of TSE3 - the Trax Sequencer Engine version 3.00.
*
* This library is modifiable/redistributable under the terms of the GNU
* General Public License.
*
* You should have received a copy of the GNU General Public License along
* with this program; see the file COPYING. If not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef TSE3_KEYSIGTRACK_H
#define TSE3_KEYSIGTRACK_H
#include "tse3/listen/KeySigTrack.h"
#include "tse3/Notifier.h"
#include "tse3/Playable.h"
#include "tse3/Serializable.h"
#include "tse3/EventTrack.h"
namespace TSE3
{
/**
* KeySig objects are values of key signature change that occur in
* the @ref Song, held in the @ref KeySigTrack.
*
* This class defines the type that is used to create KeySig events,
* which are of type @ref Event<@ref KeySig>.
*
* When streamed from a @ref Playable interface (using the
* @ref KeySigTrackIterator class) KeySig objects are represented by a
* @ref MidiEvent containing a @ref MidiCommand_TSE_Meta @ref MidiCommand
* with data 1 byte as @ref MidiCommand_TSE_Meta_KeySig.
*
* KeySig is a value type.
*
* @short A key signature change
* @author Pete Goodliffe
* @version 3.00
* @see KeySigTrack
* @see Event
*/
class KeySig
{
public:
/**
* This enum type describes the number of incidentals in a key,
* this will determine it as one of a pair of major/minor
* keys. The @ref #KeySigType enum resolves exactly which key
* is represented.
*
* Negative values for this type represent the number of flats in
* the key. Positive values represent the number of sharps in the
* key.
*
* Since the names are major ones (for all the difference that
* makes) you can use the @ref #KeySigIncidentalsMinor to specify
* minor names. Remember that this name means nothing, whether
* the key is minor or major is determined by the @ref KeySigType
* value alone.
*
* @see #KeySigType
* @see #KeySigIncidentalsMinor
*/
enum KeySigIncidentals
{
Cb = -7, // Cb major, 7 flats
Gb = -6, // Gb major, 6 flats
Db = -5, // Dd major, 5 flats
Ab = -4, // Ab major, 4 flats
Eb = -3, // Eb major, 3 flats
Bb = -2, // Bb major, 2 flats
F = -1, // F major, 1 flat
C = 0, // C major, 0 sharps
G = 1, // G major, 1 sharp
D = 2, // D major, 2 sharps
A = 3, // A major, 3 sharps
E = 4, // E major, 4 sharps
B = 5, // B major, 5 sharps
Fs = 6, // F# major, 6 sharps
Cs = 7 // C# major, 7 sharps
};
/**
* Minor version of the @ref KeySigIncidentals enum type.
*
* @see #KeySigIncidentals
*/
enum KeySigIncidentalsMinor
{
Abm = -7, // Cb minor, 7 flats
Fbbm= -6, // Fbb minor, 6 flats
Bbm = -5, // Dd minor, 5 flats
Gbm = -4, // Ab minor, 4 flats
Cm = -3, // Eb minor, 3 flats
Dm = -2, // Bb minor, 2 flats
Fm = -1, // F minor, 1 flat
Am = 0, // A minor, 0 sharps
Em = 1, // G minor, 1 sharp
Bm = 2, // D minor, 2 sharps
Fsm = 3, // A minor, 3 sharps
Csm = 4, // E minor, 4 sharps
Gsm = 5, // B minor, 5 sharps
Dsm = 6, // F# minor, 6 sharps
Asm = 7 // C# minor, 7 sharps
};
/**
* Represents whether a key is major or minor.
*
* Values are:
* @li @p Major Represents a major key
* @li @p Minor Represents a minor key
*
* @see #KeySigIncidentals
*/
enum KeySigType
{
Major = 0, // Represents a major key
Minor = 1 // Represents a minor key
};
/**
* Create a KeySig.
*
* @param incidentals No sharps/flats in key
* @param type Whether it is a major/minor key
*/
KeySig(int incidentals = C, int type = Major)
: incidentals(incidentals), type(type) {}
/**
* The number of incidentals (sharps/flats) in this key signature.
*/
int incidentals;
/**
* The type of this key signature (major/minor).
*/
int type;
int operator==(const KeySig &k) const
{
return (incidentals == k.incidentals) && (type == k.type);
}
};
/**
* The KeySigTrack provides a simple time ordered list of @ref KeySig
* changes in the @ref Song.
*
* There is one KeySigTrack per @ref Song.
*
* @short A list of KeySig events
* @author Pete Goodliffe
* @version 3.00
* @see Event
* @see KeySig
*/
class KeySigTrack : public EventTrack<KeySig>,
public Serializable
{
public:
/**
* Creates an empty KeySigTrack.
*/
KeySigTrack();
virtual ~KeySigTrack();
/**
* Returns the status of the KeySigTrack.
*
* A value of true means @ref KeySig events are generated, a value
* of false means no @ref KeySig events are generated
*
* @return KeySigTrack status
* @see setStatus
*/
bool status() const { return _status; }
/**
* Set the KeySigTrack status value.
*
* @param s New KeySigTrack status
* @see status
*/
void setStatus(bool s) { _status = s; }
/**
* @reimplemented
*/
virtual PlayableIterator *iterator(Clock index);
/**
* @reimplemented
*/
virtual Clock lastClock() const;
/**
* @reimplemented
*/
virtual void save(std::ostream &o, int i) const;
/**
* @reimplemented
*/
virtual void load(std::istream &i, SerializableLoadInfo &info);
private:
KeySigTrack &operator=(const KeySigTrack &);
KeySigTrack(const KeySigTrack &);
/**
* Used by load to read events
*/
void loadEvents(std::istream &i, int filePPQN);
bool _status;
};
}
#endif
|