blob: 0c37ac40b25fef7069c78b05214c2750adf778fc (
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
|
#ifndef _ITDEFS_H_
#define _ITDEFS_H_
#pragma pack(push, 1)
struct it_file {
uint32_t id; // 0x4D504D49
int8_t songname[26];
uint8_t hilight_minor;
uint8_t hilight_major;
uint16_t ordnum;
uint16_t insnum;
uint16_t smpnum;
uint16_t patnum;
uint16_t cwtv;
uint16_t cmwt;
uint16_t flags;
uint16_t special;
uint8_t globalvol;
uint8_t mv;
uint8_t speed;
uint8_t tempo;
uint8_t sep;
uint8_t pwd;
uint16_t msglength;
uint32_t msgoffset;
uint32_t reserved2;
uint8_t chnpan[64];
uint8_t chnvol[64];
};
struct it_envelope {
uint8_t flags;
uint8_t num;
uint8_t lpb;
uint8_t lpe;
uint8_t slb;
uint8_t sle;
uint8_t data[25*3];
uint8_t reserved;
};
// Old Impulse Instrument Format (cmwt < 0x200)
struct it_instrument_old {
uint32_t id; // IMPI = 0x49504D49
int8_t filename[12]; // DOS file name
uint8_t zero;
uint8_t flags;
uint8_t vls;
uint8_t vle;
uint8_t sls;
uint8_t sle;
uint16_t reserved1;
uint16_t fadeout;
uint8_t nna;
uint8_t dnc;
uint16_t trkvers;
uint8_t nos;
uint8_t reserved2;
int8_t name[26];
uint16_t reserved3[3];
uint8_t keyboard[240];
uint8_t volenv[200];
uint8_t nodes[50];
};
// Impulse Instrument Format
struct it_instrument {
uint32_t id;
int8_t filename[12];
uint8_t zero;
uint8_t nna;
uint8_t dct;
uint8_t dca;
uint16_t fadeout;
signed char pps;
uint8_t ppc;
uint8_t gbv;
uint8_t dfp;
uint8_t rv;
uint8_t rp;
uint16_t trkvers;
uint8_t nos;
uint8_t reserved1;
int8_t name[26];
uint8_t ifc;
uint8_t ifr;
uint8_t mch;
uint8_t mpr;
uint16_t mbank;
uint8_t keyboard[240];
struct it_envelope volenv;
struct it_envelope panenv;
struct it_envelope pitchenv;
uint8_t dummy[4]; // was 7, but IT v2.17 saves 554 bytes
};
// IT Sample Format
struct it_sample {
uint32_t id; // 0x53504D49
int8_t filename[12];
uint8_t zero;
uint8_t gvl;
uint8_t flags;
uint8_t vol;
int8_t name[26];
uint8_t cvt;
uint8_t dfp;
uint32_t length;
uint32_t loopbegin;
uint32_t loopend;
uint32_t C5Speed;
uint32_t susloopbegin;
uint32_t susloopend;
uint32_t samplepointer;
uint8_t vis;
uint8_t vid;
uint8_t vir;
uint8_t vit;
};
#pragma pack(pop)
#endif
|