1 /* MikMod sound library
2 (c) 1998, 1999, 2000, 2001 Miodrag Vallat and others - see file AUTHORS
5 This library is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of
8 the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 /*==============================================================================
25 All routines dealing with the manipulation of UNITRK streams
27 ==============================================================================*/
33 #include "mikmod_internals.h"
37 /* Unibuffer chunk size */
40 const UWORD unioperands[UNI_LAST] = {
43 1, /* UNI_INSTRUMENT */
44 1, /* UNI_PTEFFECT0 */
45 1, /* UNI_PTEFFECT1 */
46 1, /* UNI_PTEFFECT2 */
47 1, /* UNI_PTEFFECT3 */
48 1, /* UNI_PTEFFECT4 */
49 1, /* UNI_PTEFFECT5 */
50 1, /* UNI_PTEFFECT6 */
51 1, /* UNI_PTEFFECT7 */
52 1, /* UNI_PTEFFECT8 */
53 1, /* UNI_PTEFFECT9 */
54 1, /* UNI_PTEFFECTA */
55 1, /* UNI_PTEFFECTB */
56 1, /* UNI_PTEFFECTC */
57 1, /* UNI_PTEFFECTD */
58 1, /* UNI_PTEFFECTE */
59 1, /* UNI_PTEFFECTF */
60 1, /* UNI_S3MEFFECTA */
61 1, /* UNI_S3MEFFECTD */
62 1, /* UNI_S3MEFFECTE */
63 1, /* UNI_S3MEFFECTF */
64 1, /* UNI_S3MEFFECTI */
65 1, /* UNI_S3MEFFECTQ */
66 1, /* UNI_S3MEFFECTR */
67 1, /* UNI_S3MEFFECTT */
68 1, /* UNI_S3MEFFECTU */
71 2, /* UNI_VOLEFFECTS */
72 1, /* UNI_XMEFFECT4 */
73 1, /* UNI_XMEFFECT6 */
74 1, /* UNI_XMEFFECTA */
75 1, /* UNI_XMEFFECTE1 */
76 1, /* UNI_XMEFFECTE2 */
77 1, /* UNI_XMEFFECTEA */
78 1, /* UNI_XMEFFECTEB */
79 1, /* UNI_XMEFFECTG */
80 1, /* UNI_XMEFFECTH */
81 1, /* UNI_XMEFFECTL */
82 1, /* UNI_XMEFFECTP */
83 1, /* UNI_XMEFFECTX1 */
84 1, /* UNI_XMEFFECTX2 */
85 1, /* UNI_ITEFFECTG */
86 1, /* UNI_ITEFFECTH */
87 1, /* UNI_ITEFFECTI */
88 1, /* UNI_ITEFFECTM */
89 1, /* UNI_ITEFFECTN */
90 1, /* UNI_ITEFFECTP */
91 1, /* UNI_ITEFFECTT */
92 1, /* UNI_ITEFFECTU */
93 1, /* UNI_ITEFFECTW */
94 1, /* UNI_ITEFFECTY */
95 2, /* UNI_ITEFFECTZ */
96 1, /* UNI_ITEFFECTS0 */
97 2, /* UNI_ULTEFFECT9 */
99 0, /* UNI_MEDEFFECTF1 */
100 0, /* UNI_MEDEFFECTF2 */
101 0, /* UNI_MEDEFFECTF3 */
105 /* Sparse description of the internal module format
106 ------------------------------------------------
108 A UNITRK stream is an array of bytes representing a single track of a pattern.
109 It's made up of 'repeat/length' bytes, opcodes and operands (sort of a assembly
113 [REP/LEN][OPCODE][OPERAND][OPCODE][OPERAND] [REP/LEN][OPCODE][OPERAND]..
115 |-------ROWS 0 - 0+REP of a track---------| |-------ROWS xx - xx+REP of a track...
117 The rep/len byte contains the number of bytes in the current row, _including_
118 the length byte itself (So the LENGTH byte of row 0 in the previous example
119 would have a value of 5). This makes it easy to search through a stream for a
120 particular row. A track is concluded by a 0-value length byte.
122 The upper 3 bits of the rep/len byte contain the number of times -1 this row
123 is repeated for this track. (so a value of 7 means this row is repeated 8 times)
125 Opcodes can range from 1 to 255 but currently only opcodes 1 to 62 are being
126 used. Each opcode can have a different number of operands. You can find the
127 number of operands to a particular opcode by using the opcode as an index into
128 the 'unioperands' table.
132 /*========== Reading routines */
134 static UBYTE *rowstart; /* startadress of a row */
135 static UBYTE *rowend; /* endaddress of a row (exclusive) */
136 static UBYTE *rowpc; /* current unimod(tm) programcounter */
138 static UBYTE lastbyte; /* for UniSkipOpcode() */
140 void UniSetRow(UBYTE* t)
144 rowend = t?rowstart+(*(rowpc++)&0x1f):t;
147 UBYTE UniGetByte(void)
149 return lastbyte = (rowpc<rowend)?*(rowpc++):0;
152 UWORD UniGetWord(void)
154 return ((UWORD)UniGetByte()<<8)|UniGetByte();
157 void UniSkipOpcode(void)
159 if (lastbyte < UNI_LAST) {
160 UWORD t = unioperands[lastbyte];
167 /* Finds the address of row number 'row' in the UniMod(tm) stream 't' returns
168 NULL if the row can't be found. */
169 UBYTE *UniFindRow(UBYTE* t,UWORD row)
175 c = *t; /* get rep/len byte */
176 if(!c) return NULL; /* zero ? -> end of track.. */
177 l = (c>>5)+1; /* extract repeat value */
178 if(l>row) break; /* reached wanted row? -> return pointer */
179 row -= l; /* haven't reached row yet.. update row */
180 t += c&0x1f; /* point t to the next row */
185 /*========== Writing routines */
187 static UBYTE *unibuf; /* pointer to the temporary unitrk buffer */
188 static UWORD unimax; /* buffer size */
190 static UWORD unipc; /* buffer cursor */
191 static UWORD unitt; /* current row index */
192 static UWORD lastp; /* previous row index */
194 /* Resets index-pointers to create a new track. */
197 unitt = 0; /* reset index to rep/len byte */
198 unipc = 1; /* first opcode will be written to index 1 */
199 lastp = 0; /* no previous row yet */
200 unibuf[0] = 0; /* clear rep/len byte */
203 /* Expands the buffer */
204 static BOOL UniExpand(int wanted)
206 if ((unipc+wanted)>=unimax) {
209 /* Expand the buffer by BUFPAGE bytes */
210 newbuf=(UBYTE*)MikMod_realloc(unibuf,(unimax+BUFPAGE)*sizeof(UBYTE));
212 /* Check if MikMod_realloc succeeded */
223 /* Appends one byte of data to the current row of a track. */
224 void UniWriteByte(UBYTE data)
227 /* write byte to current position and update */
228 unibuf[unipc++]=data;
231 void UniWriteWord(UWORD data)
234 unibuf[unipc++]=data>>8;
235 unibuf[unipc++]=data&0xff;
239 static BOOL MyCmp(const UBYTE* a,const UBYTE* b,UWORD l)
244 if(*(a++)!=*(b++)) return 0;
248 /* Closes the current row of a unitrk stream (updates the rep/len byte) and sets
249 pointers to start a new row. */
250 void UniNewline(void)
254 n = (unibuf[lastp]>>5)+1; /* repeat of previous row */
255 l = (unibuf[lastp]&0x1f); /* length of previous row */
257 len = unipc-unitt; /* length of current row */
259 /* Now, check if the previous and the current row are identical.. when they
260 are, just increase the repeat field of the previous row */
261 if(n<8 && len==l && MyCmp(&unibuf[lastp+1],&unibuf[unitt+1],len-1)) {
265 if (UniExpand(unitt-unipc)) {
266 /* current and previous row aren't equal... update the pointers */
274 /* Terminates the current unitrk stream and returns a pointer to a copy of the
280 if (!UniExpand(unipc-unitt)) return NULL;
283 if(!(d=MikMod_malloc(unipc))) return NULL;
284 memcpy(d,unibuf,unipc);
293 if(!(unibuf=(UBYTE*)MikMod_malloc(unimax*sizeof(UBYTE)))) return 0;
297 void UniCleanup(void)