summaryrefslogtreecommitdiff
path: root/muse2/muse/keyevent.h
blob: 7a7ffe789781a08bb08edfe641e9577de0ad6097 (plain)
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
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: tempo.h,v 1.2.2.1 2006/09/19 19:07:09 spamatica Exp $
//
//  (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
//
//  This program is free software; you can redistribute it and/or
//  modify it under the terms of the GNU General Public License
//  as published by the Free Software Foundation; version 2 of
//  the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
//=========================================================
#ifndef KEYEVENT_H
#define KEYEVENT_H

#include <map>

#ifndef MAX_TICK
#define MAX_TICK (0x7fffffff/100)
#endif

namespace MusECore {

class Xml;

//don't change this enum! changing the numeric values will affect
//all files using key_enum, and even worse:
//PREVIOUSLY SAVED FILES WILL BE CORRUPT because the keys are
//stored as integers. when the integer -> key mapping changes
//(by inserting or removing elements, for example), this will
//break stuff! (flo)
enum key_enum
{
	KEY_SHARP_BEGIN,
	KEY_C,   // C or am, uses # for "black keys"
	KEY_G,
	KEY_D,
	KEY_A,
	KEY_E,
	KEY_B, // or H in german.
	KEY_FIS, //replaces F with E#
	KEY_SHARP_END,
	KEY_B_BEGIN,
	KEY_C_B,  // the same as C, but uses b for "black keys"
	KEY_F,
	KEY_BES, // or B in german
	KEY_ES,
	KEY_AS,
	KEY_DES,
	KEY_GES, //sounds like FIS, but uses b instead of #
	KEY_B_END
};




//---------------------------------------------------------
//   Key Event
//---------------------------------------------------------

struct KeyEvent {
      key_enum key;
      unsigned tick;

      int read(Xml&);
      void write(int, Xml&, int) const;

      KeyEvent() { }
      KeyEvent(key_enum k, unsigned tk) {
            key = k;
            tick  = tk;
            }
      };

//---------------------------------------------------------
//   KeyList
//---------------------------------------------------------

typedef std::map<unsigned, KeyEvent, std::less<unsigned> > KEYLIST;
typedef KEYLIST::iterator iKeyEvent;
typedef KEYLIST::const_iterator ciKeyEvent;
typedef KEYLIST::reverse_iterator riKeyEvent;
typedef KEYLIST::const_reverse_iterator criKeyEvent;



class KeyList : public KEYLIST {
      void add(unsigned tick, key_enum tempo);
      void change(unsigned tick, key_enum newKey);
      void del(iKeyEvent);
      void del(unsigned tick);

   public:

      KeyList();
      void clear();

      void read(Xml&);
      void write(int, Xml&) const;
      void dump() const;

      key_enum keyAtTick(unsigned tick) const;

      void addKey(unsigned t, key_enum newKey);
      void delKey(unsigned tick);
      };

} // namespace MusECore

namespace MusEGlobal {
extern MusECore::KeyList keymap;
}

#endif // KEYEVENT_H