annotate minijss/jloadjss.c @ 1255:f9bf71071f0b

Some work on JSSMOD loader.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 08 Mar 2015 01:59:52 +0200
parents 99852310dc02
children d88d5f88b77a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 * miniJSS - JSSMOD module loader
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
1163
aa3738b121d1 Bump copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 1129
diff changeset
4 * (C) Copyright 2007-2015 Tecnic Software productions (TNSP)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 */
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 #include "jssmod.h"
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
1196
aa6c3af36008 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1167
diff changeset
9 // If all pattern modes are required, enable them here
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #ifdef JM_SUP_PATMODE_ALL
282
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
11 # define JM_SUP_PATMODE_1 1
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
12 # define JM_SUP_PATMODE_2 1
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
13 # define JM_SUP_PATMODE_3 1
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
14 # define JM_SUP_PATMODE_4 1
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
15 # define JM_SUP_PATMODE_5 1
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
1196
aa6c3af36008 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1167
diff changeset
19 // Short helper macros for reading data
aa6c3af36008 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1167
diff changeset
20 #define JSGETBYTE(XV) \
aa6c3af36008 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1167
diff changeset
21 if (!dmf_read_byte(inFile, XV)) \
aa6c3af36008 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1167
diff changeset
22 return DMERR_OUT_OF_DATA
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
25 static int jssDoGetConvertedNote(DMResource *inFile, JSSNote *pnote, Uint8 note)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 Uint8 tmp;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
29 if (note == 127)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
30 pnote->note = jsetNoteOff;
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
31 else
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
32 if (note == 0)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
33 pnote->note = jsetNotSet;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 else
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
35 pnote->note = note - 1;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
38 pnote->instrument = (tmp > 0) ? tmp - 1 : jsetNotSet;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
41 pnote->volume = (tmp > 0) ? tmp - 1 : jsetNotSet;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
44 pnote->effect = (tmp > 0) ? tmp - 1 : jsetNotSet;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
47 pnote->param = (tmp == 0 && pnote->effect == jsetNotSet) ? jsetNotSet : tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 }
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
51
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
52
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
53 static inline int jssGetConvertedNote(DMResource *inFile, JSSNote *pnote)
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
54 {
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
55 Uint8 tmp;
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
56 JSGETBYTE(&tmp);
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
57 return jssDoGetConvertedNote(inFile, pnote, tmp);
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
58 }
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
59
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
60
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
61 #if defined(JM_SUP_PATMODE_2) || defined(JM_SUP_PATMODE_4)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
62 static int jssGetCompressedNote(DMResource *inFile, JSSNote *pnote)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
63 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
64 Uint8 packb, tmp;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66 JSGETBYTE(&packb);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
67 if (packb & 0x80)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
68 {
1210
6b48bad13399 Rename pattern note packing flag COMP_* constants to JM_COMP_*.
Matti Hamalainen <ccr@tnsp.org>
parents: 1208
diff changeset
69 if (packb & JM_COMP_NOTE)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71 JSGETBYTE(&tmp);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72 if (tmp == 127)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
73 pnote->note = jsetNoteOff;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74 else
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
75 pnote->note = tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77
1210
6b48bad13399 Rename pattern note packing flag COMP_* constants to JM_COMP_*.
Matti Hamalainen <ccr@tnsp.org>
parents: 1208
diff changeset
78 if (packb & JM_COMP_INSTRUMENT)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
80 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
81 pnote->instrument = tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
82 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83
1210
6b48bad13399 Rename pattern note packing flag COMP_* constants to JM_COMP_*.
Matti Hamalainen <ccr@tnsp.org>
parents: 1208
diff changeset
84 if (packb & JM_COMP_VOLUME)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
86 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
87 pnote->volume = tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
88 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
89
1210
6b48bad13399 Rename pattern note packing flag COMP_* constants to JM_COMP_*.
Matti Hamalainen <ccr@tnsp.org>
parents: 1208
diff changeset
90 if (packb & JM_COMP_EFFECT)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
91 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
92 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
93 pnote->effect = tmp;
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
94 pnote->param = 0;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
95 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
96
1210
6b48bad13399 Rename pattern note packing flag COMP_* constants to JM_COMP_*.
Matti Hamalainen <ccr@tnsp.org>
parents: 1208
diff changeset
97 if (packb & JM_COMP_PARAM)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
98 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
100 pnote->param = tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
101 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
102 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
103 else
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
104 {
1208
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
105 int ret;
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
106 if ((ret = jssDoGetConvertedNote(inFile, pnote, packb)) != DMERR_OK)
fa758951720f Remove some code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 1198
diff changeset
107 return ret;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
108 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
109
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
110 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
112 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
113
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
114
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
115 #ifdef JM_SUP_PATMODE_2
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
116 static int jssGetPatternCompHoriz(DMResource *inFile, JSSPattern *pattern)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
117 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
118 int row, channel;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
119
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 assert(buf != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 assert(pattern != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 for (row = 0; row < pattern->nrows; row++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 for (channel = 0; channel < pattern->nchannels; channel++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
125 {
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
126 JSSNote *pnote = &pattern->data[(pattern->nchannels * row) + channel];
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
127 int res = jssGetCompressedNote(inFile, pnote);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
128 if (res != DMERR_OK)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
129 JSSERROR(res, res, "Error uncompressing note on row=%d, chn=%d\n",
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
130 row, channel);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
135 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
136
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
137
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
138 #ifdef JM_SUP_PATMODE_4
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
139 static int jssGetPatternCompVert(DMResource *inFile, JSSPattern *pattern)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 int row, channel;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
142
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143 assert(buf != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144 assert(pattern != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146 for (channel = 0; channel < pattern->nchannels; channel++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
147 for (row = 0; row < pattern->nrows; row++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
148 {
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
149 JSSNote *pnote = &pattern->data[(pattern->nchannels * row) + channel];
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
150 int res = jssGetCompressedNote(inFile, pnote);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151 if (res != DMERR_OK)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
152 JSSERROR(res, res, "Error uncompressing note on row=%d, chn=%d\n",
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
153 row, channel);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
157 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
159
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
160
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
161 #ifdef JM_SUP_PATMODE_1
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
162 static int jssGetPatternRawHoriz(DMResource *inFile, JSSPattern *pattern)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
164 int row, channel;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
165
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
166 assert(buf != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
167 assert(pattern != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
168
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
169 for (row = 0; row < pattern->nrows; row++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
170 for (channel = 0; channel < pattern->nchannels; channel++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
171 {
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
172 JSSNote *pnote = &pattern->data[(pattern->nchannels * row) + channel];
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
173 int res = jssGetConvertedNote(inFile, pnote);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174 if (res != DMERR_OK)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
175 JSSERROR(res, res, "Error converting note on row=%d, chn=%d\n",
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
176 row, channel);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
177 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
178
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
179 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
180 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
184 #ifdef JM_SUP_PATMODE_3
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
185 static int jssGetPatternRawVert(DMResource *inFile, JSSPattern *pattern)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
186 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
187 int row, channel;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
188
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
189 assert(buf != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
190 assert(pattern != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
192 for (channel = 0; channel < pattern->nchannels; channel++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
193 for (row = 0; row < pattern->nrows; row++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 {
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
195 JSSNote *pnote = &pattern->data[(pattern->nchannels * row) + channel];
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
196 int res = jssGetConvertedNote(inFile, pnote);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
197 if (res != DMERR_OK)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
198 JSSERROR(res, res, "Error converting note on row=%d, chn=%d\n",
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
199 row, channel);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
200 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
201
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
202 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
203 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
204 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
205
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
206
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
207 #ifdef JM_SUP_PATMODE_5
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
208
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
209 #undef JSGETBYTE
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
210 #define JSGETBYTE(XV) if (!dmf_read_byte(inFile, XV)) return DMERR_OUT_OF_DATA
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
211
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
212 #define JSFOREACHNOTE1 \
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
213 for (channel = 0; channel < pattern->nchannels; channel++) \
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
214 for (row = 0; row < pattern->nrows; row++) { \
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
215 JSSNote *pnote = pattern->data + (pattern->nchannels * row) + channel;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
216
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
217 #define JSFOREACHNOTE2 }
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
218
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
219 static int jssGetPatternRawVertElem(DMResource *inFile, JSSPattern *pattern)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
220 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
221 int row, channel;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
222 Uint8 tmp;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
223
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
224 assert(buf != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
225 assert(pattern != NULL);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
226
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
227 JSFOREACHNOTE1
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
228 JSGETBYTE(&tmp);
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
229 if (tmp == 0)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
230 pnote->note = jsetNotSet;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
231 else if (tmp == 127)
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
232 pnote->note = jsetNoteOff;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
233 else
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
234 pnote->note = tmp - 1;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
235 JSFOREACHNOTE2
1127
e22d4ceb6414 Cosmetics pass, remove excess and trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 1118
diff changeset
236
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
237 JSFOREACHNOTE1
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
238 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
239 pnote->instrument = (tmp > 0) ? tmp - 1 : jsetNotSet;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
240 JSFOREACHNOTE2
1127
e22d4ceb6414 Cosmetics pass, remove excess and trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 1118
diff changeset
241
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
242 JSFOREACHNOTE1
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
243 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
244 pnote->volume = (tmp > 0) ? tmp - 1 : jsetNotSet;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
245 JSFOREACHNOTE2
1127
e22d4ceb6414 Cosmetics pass, remove excess and trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 1118
diff changeset
246
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
247 JSFOREACHNOTE1
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
248 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
249 pnote->effect = (tmp > 0) ? tmp - 1 : jsetNotSet;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
250 JSFOREACHNOTE2
1127
e22d4ceb6414 Cosmetics pass, remove excess and trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 1118
diff changeset
251
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
252 JSFOREACHNOTE1
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
253 JSGETBYTE(&tmp);
1197
0ee6ba7b3e4a Rename variables.
Matti Hamalainen <ccr@tnsp.org>
parents: 1196
diff changeset
254 pnote->param = (tmp == 0 && pnote->effect == jsetNotSet) ? jsetNotSet : tmp;
204
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
255 JSFOREACHNOTE2
d3a9a3804079 Implement pattern mode 5 in the JMOD jloader.
Matti Hamalainen <ccr@tnsp.org>
parents: 96
diff changeset
256
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
257 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
258 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
259 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
260
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
261
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
262 #ifdef JM_SUP_EXT_INSTR
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
263 static int jssMODLoadEnvelope(DMResource *inFile,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
264 JSSEnvelope *env, const char *name, const int ninst)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
265 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
266 JSSMODEnvelope jssEnv;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
267 int i;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
268
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
269 // Read envelope data
1250
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
270 if (!dmf_read_byte(inFile, &jssEnv.flags) ||
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
271 !dmf_read_byte(inFile, &jssEnv.npoints) ||
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
272 !dmf_read_byte(inFile, &jssEnv.sustain) ||
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
273 !dmf_read_byte(inFile, &jssEnv.loopS) ||
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
274 !dmf_read_byte(inFile, &jssEnv.loopE))
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
275 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
276 "Failed to read %s-envelope data for instrument #%d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
277 name, ninst);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
278
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
279 // Do some sanity checking
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
280 if (jssEnv.npoints > jsetMaxEnvPoints ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
281 jssEnv.loopS < jssEnv.loopE ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
282 jssEnv.loopS > jssEnv.npoints ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
283 jssEnv.loopE > jssEnv.npoints)
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
284 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
285 "Invalid values in %s-envelope for instrument #%d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
286 name, ninst);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
287
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
288 // Copy data
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
289 env->flags = jssEnv.flags;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
290 env->npoints = jssEnv.npoints;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
291 env->sustain = jssEnv.sustain;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
292 env->loopS = jssEnv.loopS;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
293 env->loopE = jssEnv.loopE;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
294
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
295 for (i = 0; i < jssEnv.npoints; i++)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
296 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
297 Uint16 frame, value;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
298 if (!dmf_read_le16(inFile, &frame) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
299 !dmf_read_le16(inFile, &value))
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
300 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
301 "Failed to read %s-envelope values (%d) for instrument #%d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
302 name, i, ninst);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
303
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
304 env->points[i].frame = frame;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
305 env->points[i].value = value;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
306 }
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
307
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
308 return DMERR_OK;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
309 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
310 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
311
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
312
796
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
313 int jssLoadJSSMOD(DMResource *inFile, JSSModule **ppModule, BOOL probe)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
314 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
315 JSSModule *module;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
316 JSSMODHeader jssH;
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
317 int index, ret = DMERR_OK;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
318
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
319 *ppModule = NULL;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
320
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
321 // Check the JSSMOD header
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
322 if (!dmf_read_str(inFile, &jssH.idMagic, sizeof(jssH.idMagic)) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
323 !dmf_read_byte(inFile, &jssH.idVersion))
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
324 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
325 "Failed to read JSSMOD header #1.\n");
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
326
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
327 if (memcmp(jssH.idMagic, "JM", 2) != 0)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
328 {
796
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
329 if (probe)
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
330 return DMERR_NOT_SUPPORTED;
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
331 else
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
332 JSSERROR(DMERR_NOT_SUPPORTED, DMERR_NOT_SUPPORTED,
97ecc0a9c21f Silence some "probing".
Matti Hamalainen <ccr@tnsp.org>
parents: 777
diff changeset
333 "Not a JSSMOD file, header signature mismatch!\n");
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
334 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
335
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
336 if (jssH.idVersion != JSSMOD_VERSION)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
337 {
1198
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
338 if (probe)
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
339 return DMERR_VERSION;
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
340 else
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
341 JSSERROR(DMERR_VERSION, DMERR_VERSION,
1212
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
342 "Unsupported version of JSSMOD 0x%2x, this version only supports 0x%2x!\n",
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
343 jssH.idVersion, JSSMOD_VERSION);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
344 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
345
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
346 // Read rest of the header
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
347 if (!dmf_read_le16(inFile, &jssH.defFlags) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
348 !dmf_read_le16(inFile, &jssH.intVersion) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
349 !dmf_read_le16(inFile, &jssH.norders) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
350 !dmf_read_le16(inFile, &jssH.npatterns) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
351 !dmf_read_le16(inFile, &jssH.nextInstruments) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
352 !dmf_read_le16(inFile, &jssH.ninstruments) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
353 !dmf_read_le16(inFile, &jssH.defRestartPos) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
354 !dmf_read_byte(inFile, &jssH.nchannels) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
355 !dmf_read_byte(inFile, &jssH.defSpeed) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
356 !dmf_read_byte(inFile, &jssH.defTempo) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
357 !dmf_read_byte(inFile, &jssH.patMode))
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
358 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
359 "Failed to read JSSMOD header #2.\n");
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
360
1198
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
361 if (probe)
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
362 return DMERR_OK;
5d20c80df290 Improve probing.
Matti Hamalainen <ccr@tnsp.org>
parents: 1197
diff changeset
363
1218
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
364 // Check some of the things for sanity
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
365 if (jssH.nchannels > jsetMaxChannels ||
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
366 jssH.nchannels == 0 ||
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
367 jssH.norders > jsetMaxOrders ||
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
368 jssH.npatterns > jsetMaxPatterns ||
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
369 jssH.nextInstruments > jsetMaxInstruments ||
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
370 jssH.ninstruments > jsetMaxInstruments)
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
371 {
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
372 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
373 "Invalid values in JSSMOD header.\n");
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
374 }
30c2dbf05841 Add a sanity check for JSSMOD header values.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
375
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
376 // Allocate the module
1239
2be42ba9fc39 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1236
diff changeset
377 if ((*ppModule = module = jssAllocateModule()) == NULL)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
378 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
379 JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
380 "Could not allocate memory for module structure.\n");
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
381 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
382
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
383 // Copy header information
1216
f57dc769bd39 Cosmetic.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
384 module->defFlags = jssH.defFlags;
f57dc769bd39 Cosmetic.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
385 module->intVersion = jssH.intVersion;
f57dc769bd39 Cosmetic.
Matti Hamalainen <ccr@tnsp.org>
parents: 1214
diff changeset
386
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
387 module->norders = jssH.norders;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
388 module->npatterns = jssH.npatterns;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
389 module->nchannels = jssH.nchannels;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
390 module->nextInstruments = jssH.nextInstruments;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
391 module->ninstruments = jssH.ninstruments;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
392 module->defRestartPos = jssH.defRestartPos;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
393 module->defSpeed = jssH.defSpeed;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
394 module->defTempo = jssH.defTempo;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
395
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
396 // Get the orders list
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
397 for (index = 0; index < module->norders; index++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
398 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
399 Uint16 tmp;
1250
99852310dc02 Some more work on the loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1247
diff changeset
400 if (!dmf_read_le16(inFile, &tmp))
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
401 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
402 "Failed to read orders list entry #%d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
403 index);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
404
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
405 if (tmp != 0xffff && tmp > jssH.npatterns)
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
406 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
407 "Invalid orders list entry #%d value %d > %d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
408 index, tmp, jssH.npatterns);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
409
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
410 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
411
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
412 // Parse the patterns
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
413 for (index = 0; index < module->npatterns; index++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
414 {
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
415 JSSPattern *pattern;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
416 JSSMODPattern jssP;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
417
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
418 // Read pattern header
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
419 if (!dmf_read_le32(inFile, &jssP.size) ||
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
420 !dmf_read_le16(inFile, &jssP.nrows))
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
421 JSSERROR(DMERR_FREAD, DMERR_FREAD,
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
422 "Failed to read JSSMOD pattern header #%d.\n",
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
423 index);
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
424
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
425 // Validate
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
426 if (jssP.nrows == 0 || jssP.nrows > jsetMaxRows)
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
427 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
428 "Invalid number of rows in pattern #%d: %d.\n",
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
429 index, jssP.nrows
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
430
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
431 // Allocate pattern
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
432 pattern = module->patterns[index] = jssAllocatePattern(jssP.nrows, module->nchannels);
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
433 if (pattern == NULL)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
434 JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
1212
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
435 "Could not allocate memory for pattern #%d.\n",
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
436 index);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
437
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
438 // Get pattern data
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
439 switch (jssH.patMode)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
440 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
441 #ifdef JM_SUP_PATMODE_1
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
442 case PATMODE_RAW_HORIZ:
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
443 ret = jssGetPatternRawHoriz(inFile, pattern);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
444 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
445 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
446 #ifdef JM_SUP_PATMODE_2
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
447 case PATMODE_COMP_HORIZ:
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
448 ret = jssGetPatternCompHoriz(inFile, pattern);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
449 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
450 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
451 #ifdef JM_SUP_PATMODE_3
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
452 case PATMODE_RAW_VERT:
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
453 ret = jssGetPatternRawVert(inFile, pattern);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
454 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
455 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
456 #ifdef JM_SUP_PATMODE_4
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
457 case PATMODE_COMP_VERT:
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
458 ret = jssGetPatternCompVert(inFile, pattern);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
459 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
460 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
461 #ifdef JM_SUP_PATMODE_5
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
462 case PATMODE_RAW_ELEM:
1255
f9bf71071f0b Some work on JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1250
diff changeset
463 ret = jssGetPatternRawVertElem(inFile, pattern);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
464 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
465 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
466 default:
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
467 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
1212
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
468 "Unsupported pattern mode %d. Check compilation options.",
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
469 jssH.patMode);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
470 break;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
471 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
472
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
473 if (ret != DMERR_OK)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
474 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
475 JSSERROR(ret, ret,
1212
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
476 "Error in unpacking pattern #%d data.\n",
1483b6af6065 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1210
diff changeset
477 index);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
478 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
479 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
480
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
481 #ifdef JM_SUP_EXT_INSTR
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
482 // Read extended instruments
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
483 for (index = 0; index < module->nextInstruments; index++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
484 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
485 JSSMODExtInstrument jssE;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
486 JSSExtInstrument *einst;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
487 int i;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
488
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
489 // Read header data
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
490 if (!dmf_read_byte(inFile, &jssE.nsamples) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
491 !dmf_read_byte(inFile, &jssE.vibratoType) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
492 !dmf_read_le16(inFile, &jssE.vibratoSweep) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
493 !dmf_read_le16(inFile, &jssE.vibratoDepth) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
494 !dmf_read_le16(inFile, &jssE.vibratoRate) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
495 !dmf_read_le16(inFile, &jssE.fadeOut))
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
496 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
497 "Failed to read ext.instrument #%d header.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
498 index);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
499
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
500 // Allocate instrument
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
501 if ((einst = jssAllocateExtInstrument()) == NULL)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
502 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
503 JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
1214
1133dffe3713 s/%i/%d/g.
Matti Hamalainen <ccr@tnsp.org>
parents: 1213
diff changeset
504 "Could not allocate extended instrument structure #%d\n", index);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
505 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
506
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
507 module->extInstruments[index] = einst;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
508
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
509 einst->nsamples = jssE.nsamples;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
510 einst->vibratoType = jssE.vibratoType;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
511 einst->vibratoSweep = jssE.vibratoSweep;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
512 einst->vibratoDepth = jssE.vibratoDepth;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
513 einst->vibratoRate = jssE.vibratoRate;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
514 einst->fadeOut = jssE.fadeOut;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
515
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
516 // Read and somewhat validate sNumForNotes
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
517 for (i = 0; i < jsetNNotes; i++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
518 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
519 int snum;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
520 Uint32 tmp;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
521
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
522 if (!dmf_read_le32(inFile, &tmp))
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
523 {
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
524 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
525 "Failed to read ext.instrument #%d sNumForNotes[%d].\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
526 index, i);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
527 }
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
528
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
529 einst->sNumForNotes[i] = snum = (tmp > 0) ? ((int) tmp - 1) : jsetNotSet;
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
530
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
531 if (snum != jsetNotSet && snum > module->ninstruments)
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
532 {
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
533 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
534 "Ext.instrument #%d has invalid sNumForNotes[%d] = %d > %d max.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
535 index, i, snum, module->ninstruments);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
536 }
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
537 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
538
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
539 // Read and validate envelopes
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
540 if ((ret = jssMODLoadEnvelope(inFile, &einst->volumeEnv, "volume", index)) != DMERR_OK ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
541 (ret = jssMODLoadEnvelope(inFile, &einst->panningEnv, "panning", index)) != DMERR_OK)
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
542 return ret;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
543 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
544
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
545 #ifdef JM_SUP_INSTR
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
546 // Read sample instrument headers
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
547 for (index = 0; index < module->ninstruments; index++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
548 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
549 JSSMODInstrument jssI;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
550 JSSInstrument *inst;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
551
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
552 // Read header data
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
553 if (!dmf_read_le32(inFile, &jssI.size) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
554 !dmf_read_le32(inFile, &jssI.loopS) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
555 !dmf_read_le32(inFile, &jssI.loopE) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
556 !dmf_read_le16(inFile, &jssI.flags) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
557 !dmf_read_le16(inFile, &jssI.C4BaseSpeed) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
558 !dmf_read_le16(inFile, &jssI.ERelNote) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
559 !dmf_read_le16(inFile, &jssI.EFineTune) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
560 !dmf_read_le16(inFile, &jssI.EPanning) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
561 !dmf_read_byte(inFile, &jssI.volume) ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
562 !dmf_read_byte(inFile, &jssI.convFlags))
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
563 {
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
564 JSSERROR(DMERR_FREAD, DMERR_FREAD,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
565 "Failed to read sample instrument #%d header.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
566 index);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
567 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
568
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
569 // Validate what we can
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
570 if (jssI.loopS > jssI.size ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
571 jssI.loopE > jssI.size ||
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
572 jssI.loopE > jssI.loopS)
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
573 {
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
574 JSSERROR(DMERR_INVALID_DATA, DMERR_INVALID_DATA,
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
575 "Invalid or corrupted sample instrument #%d.\n",
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
576 index);
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
577 }
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
578
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
579 // Allocate instrument
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
580
1231
a275b7382ffa Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 1219
diff changeset
581 // Copy data
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
582 inst->size = jssI.size;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
583 inst->loopS = jssI.loopS;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
584 inst->loopE = jssI.loopE;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
585 inst->flags = jssI.flags;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
586 inst->C4BaseSpeed = jssI.C4BaseSpeed;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
587 inst->ERelNote = jssI.ERelNote;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
588 inst->EFineTune = jssI.EFineTune;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
589 inst->EPanning = jssI.EPanning;
1247
5ae2ce21c7ae Some work on refactoring the JSSMOD loader.
Matti Hamalainen <ccr@tnsp.org>
parents: 1239
diff changeset
590 inst->volume = jssI.volume;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
591 inst->convFlags = jssI.convFlags;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
592 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
593
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
594 #ifdef JM_SUP_SAMPLES
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
595 // Read sample data
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
596 for (index = 0; index < module->ninstruments; index++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
597 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
598 JSSInstrument *inst = module->instruments[index];
1236
b8c9af10b7fd Work on JSSMOD format.
Matti Hamalainen <ccr@tnsp.org>
parents: 1234
diff changeset
599 if (inst != NULL && inst->convFlags & jsampHasData)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
600 {
1129
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
601 int ret;
1213
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
602 size_t bsize = (inst->flags & jsf16bit) ? sizeof(Uint16) : sizeof(Uint8);
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
603 bsize *= inst->size;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
604
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
605 // Allocate
1213
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
606 if ((inst->data = dmMalloc(bsize)) == NULL)
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
607 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
608 JSSERROR(DMERR_MALLOC, DMERR_MALLOC,
1213
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
609 "Could not allocate %d bytes of sample data #%d\n",
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
610 bsize, index);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
611 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
612
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
613 // Copy data
1213
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
614 if (!dmf_read_str(inFile, inst->data, bsize))
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
615 {
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
616 JSSERROR(DMERR_FREAD, DMERR_FREAD,
1213
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
617 "Could not read %d bytes of sample data for #%d\n",
505317227ab4 Rename variable, improve two error messages.
Matti Hamalainen <ccr@tnsp.org>
parents: 1212
diff changeset
618 bsize, index);
777
ed60a7ee3ebb Change JSSMOD loader to use DMResources.
Matti Hamalainen <ccr@tnsp.org>
parents: 658
diff changeset
619 }
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
620
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
621 // Convert, if needed
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
622 if (inst->flags & jsf16bit)
1129
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
623 ret = jssDecodeSample16(inst->data, inst->size, inst->convFlags);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
624 else
1129
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
625 ret = jssDecodeSample8(inst->data, inst->size, inst->convFlags);
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
626
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
627 if (ret != DMERR_OK)
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
628 {
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
629 JSSERROR(ret, ret,
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
630 "Failed to decode sample data for #%d\n", index);
e466d10dae6d Change API of jssDecodeSample{8,16}() functions to return dmlib error codes
Matti Hamalainen <ccr@tnsp.org>
parents: 1127
diff changeset
631 }
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
632 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
633 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
634 #else
282
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
635 # warning Not including JSSMOD sample loading!
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
636 #endif // JM_SUP_SAMPLES
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
637 #else
282
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
638 # warning Not including JSSMOD instrument loading!
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
639 #endif // JM_SUP_INSTR
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
640 #else
282
175328b20341 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
641 # warning Not including JSSMOD ext.instrument loading!
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
642 #endif // JM_SUP_EXT_INSTR
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
643
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
644 return DMERR_OK;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
645 }