summaryrefslogtreecommitdiff
path: root/muse2/muse/tempo.h
blob: 71f1580caa1abfc5232d0b517eea6e506261c6bd (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
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
//=========================================================
//  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 __TEMPO_H__
#define __TEMPO_H__

#include <map>
#include <vector>

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

// Tempo ring buffer size
#define TEMPO_FIFO_SIZE    1024


namespace MusECore {

class Xml;

//---------------------------------------------------------
//   Tempo Event
//---------------------------------------------------------

struct TEvent {
      int tempo;
      unsigned tick;    // new tempo at tick
      unsigned frame;   // precomputed time for tick in sec

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

      TEvent() { }
      TEvent(unsigned t, unsigned tk) {
            tempo = t;
            tick  = tk;
            frame = 0;
            }
      };

//---------------------------------------------------------
//   TempoList
//---------------------------------------------------------

typedef std::map<unsigned, TEvent*, std::less<unsigned> > TEMPOLIST;
typedef TEMPOLIST::iterator iTEvent;
typedef TEMPOLIST::const_iterator ciTEvent;
typedef TEMPOLIST::reverse_iterator riTEvent;
typedef TEMPOLIST::const_reverse_iterator criTEvent;

class TempoList : public TEMPOLIST {
      int _tempoSN;           // serial no to track tempo changes
      bool useList;
      int _tempo;             // tempo if not using tempo list
      int _globalTempo;       // %percent 50-200%

      void add(unsigned tick, int tempo, bool do_normalize = true);
      void change(unsigned tick, int newTempo);
      void del(iTEvent);
      void del(unsigned tick);

   public:
      TempoList();
      ~TempoList();
      void normalize();
      void clear();
      void eraseRange(unsigned stick, unsigned etick);

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

      int tempo(unsigned tick) const;
      int tempoAt(unsigned tick) const;
      unsigned tick2frame(unsigned tick, unsigned frame, int* sn) const;
      unsigned tick2frame(unsigned tick, int* sn = 0) const;
      unsigned frame2tick(unsigned frame, int* sn = 0) const;
      unsigned frame2tick(unsigned frame, unsigned tick, int* sn) const;
      unsigned deltaTick2frame(unsigned tick1, unsigned tick2, int* sn = 0) const;
      unsigned deltaFrame2tick(unsigned frame1, unsigned frame2, int* sn = 0) const;
      
      int tempoSN() const { return _tempoSN; }
      void setTempo(unsigned tick, int newTempo);
      void addTempo(unsigned t, int tempo, bool do_normalize = true);
      void delTempo(unsigned tick);
      void changeTempo(unsigned tick, int newTempo);
      bool masterFlag() const { return useList; }
      bool setMasterFlag(unsigned tick, bool val);
      int globalTempo() const           { return _globalTempo; }
      void setGlobalTempo(int val);
      };

//---------------------------------------------------------
//   Tempo Record Event
//---------------------------------------------------------

struct TempoRecEvent {
      int tempo;
      unsigned tick;    
      TempoRecEvent() { }
      TempoRecEvent(unsigned tk, unsigned t) {
            tick  = tk;
            tempo = t;
            }
      };

class TempoRecList : public std::vector<TempoRecEvent >
{
  public:
    void addTempo(int tick, int tempo)    { push_back(TempoRecEvent(tick, tempo)); }
    void addTempo(const TempoRecEvent& e) { push_back(e); }
};

//---------------------------------------------------------
//   TempoFifo
//---------------------------------------------------------

class TempoFifo {
      TempoRecEvent fifo[TEMPO_FIFO_SIZE];
      volatile int size;
      int wIndex;
      int rIndex;

   public:
      TempoFifo()  { clear(); }
      bool put(const TempoRecEvent& event);   // returns true on fifo overflow
      TempoRecEvent get();
      const TempoRecEvent& peek(int = 0);
      void remove();
      bool isEmpty() const { return size == 0; }
      void clear()         { size = 0, wIndex = 0, rIndex = 0; }
      int getSize() const  { return size; }
      };
      
} // namespace MusECore

namespace MusEGlobal {
extern MusECore::TempoList tempomap;
extern MusECore::TempoRecList tempo_rec_list;
}

#endif