File: musiclistio.c

package info (click to toggle)
searchandrescue 0.8.2-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,648 kB
  • ctags: 6,112
  • sloc: ansic: 89,072; cpp: 7,691; sh: 90; makefile: 77
file content (271 lines) | stat: -rw-r--r-- 5,016 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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>

#include "../include/fio.h"
#include "../include/disk.h"
#include "../include/string.h"

#include "sound.h"
#include "musiclistio.h"
#include "sar.h"
#include "config.h"


sar_music_ref_struct *SARMusicMatchPtr(
	sar_music_ref_struct **ml, int total,
	int id, int *music_ref_num
);

void SARMusicListDeleteAll(
	sar_music_ref_struct ***ml, int *total
);
int SARMusicListLoadFromFile(
	const char *filename,
	sar_music_ref_struct ***ml, int *total
);


#define ATOI(s)		(((s) != NULL) ? atoi(s) : 0)
#define ATOL(s)		(((s) != NULL) ? atol(s) : 0)
#define ATOF(s)		(((s) != NULL) ? (float)atof(s) : 0.0f)
#define STRDUP(s)	(((s) != NULL) ? strdup(s) : NULL)

#define MAX(a,b)	(((a) > (b)) ? (a) : (b))
#define MIN(a,b)	(((a) < (b)) ? (a) : (b))
#define CLIP(a,l,h)	(MIN(MAX((a),(l)),(h)))
#define STRLEN(s)	(((s) != NULL) ? (int)strlen(s) : 0)
#define STRISEMPTY(s)	(((s) != NULL) ? (*(s) == '\0') : 1)

#define RADTODEG(r)	((r) * 180.0 / PI)
#define DEGTORAD(d)	((d) * PI / 180.0)


/*
 *	Matches the music reference structure in the given list with
 *	the given id code.
 */
sar_music_ref_struct *SARMusicMatchPtr(
	sar_music_ref_struct **ml, int total,
	int id, int *music_ref_num
)
{
	int i;
	sar_music_ref_struct *mr_ptr;


	if(music_ref_num != NULL)
	    *music_ref_num = -1;

	if((ml == NULL) || (total < 1) || (id < 0))
	    return(NULL);

	for(i = 0; i < total; i++)
	{
	    mr_ptr = ml[i];
	    if(mr_ptr == NULL)
		continue;

	    if(mr_ptr->id == id)
	    {
		if(music_ref_num != NULL)
		    *music_ref_num = i;
		return(mr_ptr);
	    }
	}

	return(NULL);
}


/*
 *	Deletes the Music List.
 */
void SARMusicListDeleteAll(
	sar_music_ref_struct ***ml, int *total
)
{
	int i;
	sar_music_ref_struct *mr_ptr;

	if((ml == NULL) || (total == NULL))
	    return;

	for(i = 0; i < (*total); i++)
	{
	    mr_ptr = (*ml)[i];
	    if(mr_ptr == NULL)
		continue;

	    free(mr_ptr->filename);
	    free(mr_ptr);
	}

	if(*ml != NULL)
	{
	    free(*ml);
	    *ml = NULL;
	}
	*total = 0;
}

/*
 *      Loads the Music List from file.
 */
int SARMusicListLoadFromFile(
	const char *filename,
	sar_music_ref_struct ***ml, int *total
)
{
	int i;
	FILE *fp;
	char *buf = NULL;
	struct stat stat_buf;  
	double value[10];
	sar_music_ref_struct *mr_ptr = NULL;

	if(STRISEMPTY(filename) || (ml == NULL) || (total == NULL))
	    return(-1);

	/* Delete existing Music List */
	SARMusicListDeleteAll(ml, total);

	/* Check if the file exists and get its stats */
	if(stat(filename, &stat_buf))
	{
            char *s = STRDUP(strerror(errno));
            if(s == NULL)
                s = STRDUP("no such file");
            *s = toupper(*s);
            fprintf(
                stderr,
                "%s: %s.\n",
                filename, s
            );
            free(s);
	    return(-1);
	}
#ifdef S_ISDIR
	if(S_ISDIR(stat_buf.st_mode))
	{
	    fprintf(
		stderr,
		"%s: Is a directory.\n",
		filename
	    );
	    return(-1);
	}
#endif  /* S_ISDIR */

	/* Open the music list file for reading */
	fp = FOpen(filename, "rb");
	if(fp == NULL)   
	{
	    fprintf(
		stderr,
		"%s: Unable to open the Music List file for reading.\n",
		filename
	    );
	    return(-1);
	}

	do
	{
	    buf = FSeekNextParm(
		fp,
		buf,
		SAR_COMMENT_CHAR,
		SAR_CFG_DELIM_CHAR
	    );
	    if(buf == NULL)
		break;

	    if(!strcasecmp(buf, "Version"))
	    {
		FGetValuesF(fp, value, 3);
	    }

	    else if(!strcasecmp(buf, "MusicAdd"))
	    {
		char *s = FGetString(fp);

		i = MAX(*total, 0);
		*total = i + 1;
		*ml = (sar_music_ref_struct **)realloc(
		    *ml,
		    (*total) * sizeof(sar_music_ref_struct *)
		);
		if(*ml == NULL)
		{
		    *total = 0;
		    break;
		}

		(*ml)[i] = mr_ptr = SAR_MUSIC_REF(calloc(
		    1, sizeof(sar_music_ref_struct)
		));
		mr_ptr->id = ATOI(s);

		free(s);
	    }
	    else if(!strcasecmp(buf, "MusicFileName"))
	    {
		char *s = FGetString(fp);
		if(mr_ptr != NULL)
		{
		    free(mr_ptr->filename);
		    mr_ptr->filename = STRDUP(s);
		}
		free(s);
	    }
	    else if(!strcasecmp(buf, "MusicFlags"))
	    {
		char *s = FGetString(fp);
		const char *s2 = s;

		/* Iterate through value string, checking each flag */
		while((s2 != NULL) ? (*s2 != '\0') : 0)
		{
		    if(strcasepfx(s2, "repeating"))
			mr_ptr->flags |= SAR_MUSIC_REF_FLAGS_REPEAT;
		    else if(strcasepfx(s2, "fade_in") ||
			    strcasepfx(s2, "fadein")
		    )
			mr_ptr->flags |= SAR_MUSIC_REF_FLAGS_FADE_IN;
		    else if(strcasepfx(s2, "fade_out") || 
			    strcasepfx(s2, "fadeout")
		    )
			mr_ptr->flags |= SAR_MUSIC_REF_FLAGS_FADE_OUT;

		    while(!ISBLANK(*s2) && (*s2 != '\0'))
			s2++;
		    while(ISBLANK(*s2))
			s2++;
		}

		free(s);
	    }

	    else
	    {
		fprintf(
		    stderr,
		    "%s: Unsupported parameter \"%s\".\n",
		    filename, buf
		);
		FSeekNextLine(fp);
	    }

	} while(1);

	free(buf);

	/* Close file */
	FClose(fp);

	return(0);
}