New function compile_file().
[ahxm.git] / song.c
blob1daf25dedd58cd20005bae48b2a79b42df901d6d
1 /*
3 Ann Hell Ex Machina - Music Software
4 Copyright (C) 2003/2005 Angel Ortega <angel@triptico.com>
6 song.c - Device-independent song event stream management
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
26 #include "config.h"
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <math.h>
33 #include "core.h"
34 #include "song.h"
36 /*******************
37 Data
38 ********************/
40 /* the song event stream */
41 union song_ev * _song=NULL;
43 /* number of song events */
44 int _n_song_ev=0;
46 /*******************
47 Code
48 ********************/
50 void song_clear(void)
52 if(_song != NULL)
54 free(_song);
55 _song=NULL;
58 _n_song_ev=0;
62 void add_song_ev(union song_ev * ev)
64 _n_song_ev++;
66 /* reallocs */
67 _song=(union song_ev *)realloc(_song,
68 _n_song_ev * sizeof(union song_ev));
70 /* store */
71 memcpy(&_song[_n_song_ev - 1], ev, sizeof(union song_ev));
75 static int _song_ev_cmp(const void * v1, const void * v2)
77 struct song_ev_generic * e1;
78 struct song_ev_generic * e2;
80 e1=(struct song_ev_generic *)v1; e2=(struct song_ev_generic *)v2;
82 if(e1->time == e2->time)
83 return(e1->type - e2->type);
85 return(e1->time - e2->time);
89 void song_sort(void)
91 qsort(_song, _n_song_ev, sizeof(union song_ev), _song_ev_cmp);