File: elements.c

package info (click to toggle)
pmidi 1.4.1-2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 244 kB
  • ctags: 637
  • sloc: ansic: 2,908; makefile: 70
file content (448 lines) | stat: -rw-r--r-- 8,527 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
 * 
 * File: elements.m - Operation on all elements
 * 
 * Copyright (C) 1999 Steve Ratcliffe
 * 
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 * 
 *  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.
 */


#include "glib.h"
#include "elements.h"
#include "except.h"
#include "intl.h"

#include "md.h"

static void md_container_init(struct containerElement *e);

/*
 * Create and initialise a element element.
 */
struct element *
md_element_new()
{
	struct element *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_ELEMENT;
	return new;
}

/*
 * Create and initialise a container element.
 */
struct containerElement *
md_container_new()
{
	struct containerElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_CONTAINER;
	return new;
}

/*
 * Initialize data structures within the element. This is
 * only really required when pointers need allocating.
 *  Arguments:
 *    e         - Element to init
 */
static void 
md_container_init(struct containerElement *e)
{

	e->elements = g_ptr_array_new();
}

/*
 * Create and initialise a root element.
 *  Arguments:
 *              - 
 */
struct rootElement *
md_root_new(void)
{
	struct rootElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_ROOT;
	md_container_init(MD_CONTAINER(new));
	return new;
}

/*
 * Create and initialise a track element.
 *  Arguments:
 *              - 
 */
struct trackElement *
md_track_new(void)
{
	struct trackElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_TRACK;
	md_container_init(MD_CONTAINER(new));
	return new;
}

/*
 * Create and initialise a tempomap element.
 */
struct tempomapElement *
md_tempomap_new()
{
	struct tempomapElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_TEMPOMAP;
	md_container_init(MD_CONTAINER(new));
	return new;
}

/*
 * Create and initialise a note element.
 *  Arguments:
 *    note      - 
 *    vel       - 
 *    length    - 
 */
struct noteElement *
md_note_new(short note, short vel, int length)
{
	struct noteElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_NOTE;
	new->note = note;
	new->vel  = vel;
	new->length = length;
	new->offvel = 0;
	return new;
}

/*
 * Create and initialise a part element.
 *  Arguments:
 *              - 
 */
struct partElement *
md_part_new(void)
{
	struct partElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_PART;
	md_container_init(MD_CONTAINER(new));
	return new;
}

/*
 * Create and initialise a control element.
 *  Arguments:
 *    control   - 
 *    value     - 
 */
struct controlElement *
md_control_new(short control, short value)
{
	struct controlElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_CONTROL;
	new->control = control;
	new->value = value;
	return new;
}

/*
 * Create and initialise a program element.
 *  Arguments:
 *    program   - 
 */
struct programElement *
md_program_new(int program)
{
	struct programElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_PROGRAM;
	new->program = program;
	return new;
}

/*
 * Create and initialise a keytouch element.
 *  Arguments:
 *    note      - 
 *    vel       - 
 */
struct keytouchElement *
md_keytouch_new(int note, int vel)
{
	struct keytouchElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_KEYTOUCH;
	new->note = note;
	new->velocity = vel;
	return new;
}

/*
 * Create and initialise a pressure element.
 *  Arguments:
 *    vel       - 
 */
struct pressureElement *
md_pressure_new(int vel)
{
	struct pressureElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_PRESSURE;
	new->velocity = vel;
	return new;
}

/*
 * Create and initialise a pitch element.
 */
struct pitchElement *
md_pitch_new(int val)
{
	struct pitchElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_PITCH;
	new->pitch = val;
	return new;
}

/*
 * Create and initialise a sysex element.
 */
struct sysexElement *
md_sysex_new(int status, unsigned char *data, int len)
{
	struct sysexElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_SYSEX;
	new->status = status;
	new->data = data;
	new->length = len;
	return new;
}

/*
 * Create and initialise a meta element.
 */
struct metaElement *
md_meta_new()
{
	struct metaElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_META;
	return new;
}

/*
 * Create and initialise a map element.
 */
struct mapElement *
md_map_new()
{
	struct mapElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_MAP;
	return new;
}

/*
 * Create and initialise a keysig element.
 */
struct keysigElement *
md_keysig_new(short key, short minor)
{
	struct keysigElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_KEYSIG;
	new->key = key;
	new->minor = minor != 0? 1: 0;
	return new;
}

/*
 * Create and initialise a timesig element.
 */
struct timesigElement *
md_timesig_new(short top, short bottom, short clocks, short n32pq)
{
	struct timesigElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_TIMESIG;
	new->top = top;
	new->bottom = bottom;
	new->clocks = clocks;
	new->n32pq = n32pq;
	return new;
}

/*
 * Create and initialise a tempo element.
 */
struct tempoElement *
md_tempo_new(int m)
{
	struct tempoElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_TEMPO;
	new->micro_tempo = m;
	return new;
}

/*
 * Create and initialise a text element.
 */
struct textElement *
md_text_new(int type, char *text)
{
	struct textElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_TEXT;
	{
	static char *typenames[] = {
		"",
		"text",
		"copyright",
		"trackname",
		"instrument",
		"lyric",
		"marker",
		"cuepoint",
	};
	new->type = type;
	new->name = typenames[type];
	new->text = text;
	if (text)
		new->length = strlen(text);
	else
		new->length = 0;
	}
	return new;
}

/*
 * Create and initialise a smpteoffset element.
 */
struct smpteoffsetElement *
md_smpteoffset_new(short hours, short minutes, short seconds, short frames, 
        short subframes)
{
	struct smpteoffsetElement *  new;

	new = g_malloc0(sizeof(*new));
	MD_ELEMENT(new)->type = MD_TYPE_SMPTEOFFSET;
	new->hours = hours;
	new->minutes = minutes;
	new->seconds = seconds;
	new->frames = frames;
	new->subframes = subframes;
	return new;
}

/*
 * Add an element to a container element.
 */
void 
md_add(struct containerElement *c, struct element *e)
{
	g_ptr_array_add(c->elements, e);
}

/*
 * Free a complete element tree.
 */
void 
md_free(struct element *el)
{
	struct containerElement *c;
	int  i;
	
	if (el->type >= MD_CONTAINER_BEGIN) {
		c = MD_CONTAINER(el);
		for (i = 0; i < c->elements->len; i++) {
			struct element *p = g_ptr_array_index(c->elements, i);
			md_free(p);
		}
		g_ptr_array_free(c->elements, 1);
	}
	switch (el->type) {
	case MD_TYPE_TEXT:
		g_free(MD_TEXT(el)->text);
		break;
	case MD_TYPE_SYSEX:
		g_free(MD_SYSEX(el)->data);
		break;
	}
	g_free(el);

}

/*
 * Check that the given element can be casted to the given type.
 * This is mainly for debugging as mismatches will not happen
 * in proper use. In particular do not use this routine to check
 * types unless you want the program to exit if the check fails.
 *  Arguments:
 *    el        - Element to be cast
 *    type      - type to cast to
 */
struct element *
md_check_cast(struct element *el, int type)
{

	switch (type) {
	case MD_TYPE_CONTAINER:
		if (!iscontainer(el))
			except(debugError, "Cast to container from %d", el->type);
		return el;
	case MD_TYPE_ELEMENT:
		/* Anything can be cast to an element */
		if (el->type > 100 || el->type < 0)
			break;	/* Sanity check */
		return el;
	case MD_TYPE_META:
	case MD_TYPE_MAP:
		/* TEMP: this is a parent type */
		return el;
	case MD_TYPE_TRACK:
		if (el->type == MD_TYPE_TEMPOMAP)
			return el;
		break;
	}

	if (type == el->type)
		return el;

	except(debugError, "Cast from %d to %d not allowed", el->type, type);
	return NULL;/* not reached */

}