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
|
//=============================================================================
// MusE
// Linux Music Editor
// $Id:$
//
// Copyright (C) 2002-2006 by Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#ifndef __MIDIFILE_H__
#define __MIDIFILE_H__
#include "globaldefs.h"
#include "midievent.h"
struct MidiEventList;
class MidiEvent;
//---------------------------------------------------------
// MidiFileTrack
//---------------------------------------------------------
struct MidiFileTrack {
MidiEventList events;
bool isDrumTrack;
MidiFileTrack() {
isDrumTrack = false;
}
};
typedef std::list<MidiFileTrack*> MidiFileTrackList;
typedef MidiFileTrackList::iterator iMidiFileTrack;
typedef MidiFileTrackList::const_iterator ciMidiFileTrack;
//---------------------------------------------------------
// MidiFile
//---------------------------------------------------------
class MidiFile {
int _error;
int format; // smf file format
int ntracks; // number of midi tracks
int _division;
MidiInstrumentType _midiType;
MidiFileTrackList* _tracks;
int status, click;
int sstatus;
int lastport, lastchannel;
QFile* fp;
int curPos;
bool read(void*, size_t);
bool write(const void*, size_t);
void put(unsigned char c) { write(&c, 1); }
bool skip(size_t);
int readShort();
bool writeShort(int);
int readLong();
bool writeLong(int);
int getvl();
void putvl(unsigned);
bool readTrack(MidiFileTrack*);
bool writeTrack(const MidiFileTrack*);
int readEvent(MidiEvent*, MidiFileTrack*);
void writeEvent(const MidiEvent*);
public:
MidiFile();
~MidiFile();
bool read(QFile* f);
bool write(QFile* f);
QString error();
MidiFileTrackList* trackList() { return _tracks; }
int tracks() const { return ntracks; }
void setTrackList(MidiFileTrackList* tr) {
_tracks = tr;
}
void setDivision(int d) { _division = d; }
int division() const { return _division; }
void setFormat(int val) { format = val; }
MidiInstrumentType midiType() const { return _midiType; }
};
#define XCHG_SHORT(x) ((((x)&0xFF)<<8) | (((x)>>8)&0xFF))
#ifdef __i486__
#define XCHG_LONG(x) \
({ int __value; \
asm ("bswap %1; movl %1,%0" : "=g" (__value) : "r" (x)); \
__value; })
#else
#define XCHG_LONG(x) ((((x)&0xFF)<<24) | \
(((x)&0xFF00)<<8) | \
(((x)&0xFF0000)>>8) | \
(((x)>>24)&0xFF))
#endif
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define BE_SHORT(x) XCHG_SHORT(x)
#define BE_LONG(x) XCHG_LONG(x)
#else
#define BE_SHORT(x) x
#define BE_LONG(x) x
#endif
#endif
|