Skip to content

Latest commit

 

History

History
122 lines (98 loc) · 2.3 KB

common.c

File metadata and controls

122 lines (98 loc) · 2.3 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Oct 18, 2017
Oct 18, 2017
2
Oct 21, 1999
Oct 21, 1999
3
4
5
6
TiMidity -- Experimental MIDI to WAVE converter
Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
This program is free software; you can redistribute it and/or modify
Dec 31, 2011
Dec 31, 2011
7
it under the terms of the Perl Artistic License, available in COPYING.
Oct 18, 2017
Oct 18, 2017
8
9
10
11
12
13
14
common.c
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
Oct 21, 1999
Oct 21, 1999
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Oct 18, 2017
Oct 18, 2017
20
#include "SDL.h"
Oct 21, 1999
Oct 21, 1999
21
Oct 18, 2017
Oct 18, 2017
22
23
#include "options.h"
#include "common.h"
Oct 21, 1999
Oct 21, 1999
24
Oct 18, 2017
Oct 18, 2017
25
26
/* The paths in this list will be tried whenever we're reading a file */
static PathList *pathlist = NULL; /* This is a linked list */
Oct 21, 1999
Oct 21, 1999
27
Oct 18, 2017
Oct 18, 2017
28
29
/* This is meant to find and open files for reading */
SDL_RWops *open_file(const char *name)
Oct 21, 1999
Oct 21, 1999
30
{
Oct 18, 2017
Oct 18, 2017
31
SDL_RWops *rw;
Oct 21, 1999
Oct 21, 1999
32
33
34
if (!name || !(*name))
{
Oct 18, 2017
Oct 18, 2017
35
SNDDBG(("Attempted to open nameless file.\n"));
Oct 21, 1999
Oct 21, 1999
36
37
38
39
40
return 0;
}
/* First try the given name */
Oct 18, 2017
Oct 18, 2017
41
42
43
SNDDBG(("Trying to open %s\n", name));
if ((rw = SDL_RWFromFile(name, "rb")))
return rw;
May 1, 2006
May 1, 2006
44
Oct 21, 1999
Oct 21, 1999
45
if (name[0] != PATH_SEP)
Oct 18, 2017
Oct 18, 2017
46
47
48
{
char current_filename[1024];
PathList *plp = pathlist;
Oct 18, 2017
Oct 18, 2017
49
size_t l;
Oct 18, 2017
Oct 18, 2017
50
Oct 21, 1999
Oct 21, 1999
51
52
while (plp) /* Try along the path then */
{
Oct 18, 2017
Oct 18, 2017
53
54
*current_filename = 0;
l = strlen(plp->path);
Oct 21, 1999
Oct 21, 1999
55
56
57
if(l)
{
strcpy(current_filename, plp->path);
Oct 18, 2017
Oct 18, 2017
58
59
60
61
62
if(current_filename[l - 1] != PATH_SEP)
{
current_filename[l] = PATH_SEP;
current_filename[l + 1] = '\0';
}
Oct 21, 1999
Oct 21, 1999
63
64
}
strcat(current_filename, name);
Oct 18, 2017
Oct 18, 2017
65
66
67
68
SNDDBG(("Trying to open %s\n", current_filename));
if ((rw = SDL_RWFromFile(current_filename, "rb")))
return rw;
plp = plp->next;
Oct 21, 1999
Oct 21, 1999
69
}
Oct 18, 2017
Oct 18, 2017
70
}
Oct 21, 1999
Oct 21, 1999
71
72
/* Nothing could be opened. */
Oct 18, 2017
Oct 18, 2017
73
SNDDBG(("Could not open %s\n", name));
Oct 21, 1999
Oct 21, 1999
74
75
76
77
78
79
80
return 0;
}
/* This'll allocate memory or die. */
void *safe_malloc(size_t count)
{
void *p;
Oct 18, 2017
Oct 18, 2017
81
82
83
84
85
86
p = malloc(count);
if (p == NULL)
SNDDBG(("Sorry. Couldn't malloc %d bytes.\n", count));
return p;
Oct 21, 1999
Oct 21, 1999
87
88
89
}
/* This adds a directory to the path list */
Oct 4, 2009
Oct 4, 2009
90
void add_to_pathlist(const char *s)
Oct 21, 1999
Oct 21, 1999
91
{
Oct 18, 2017
Oct 18, 2017
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
PathList *plp = safe_malloc(sizeof(PathList));
if (plp == NULL)
return;
plp->path = safe_malloc(strlen(s) + 1);
if (plp->path == NULL)
{
free(plp);
return;
}
strcpy(plp->path, s);
plp->next = pathlist;
pathlist = plp;
Oct 21, 1999
Oct 21, 1999
107
}
Jul 4, 2005
Jul 4, 2005
108
109
110
void free_pathlist(void)
{
Oct 18, 2017
Oct 18, 2017
111
112
PathList *plp = pathlist;
PathList *next;
Jul 4, 2005
Jul 4, 2005
113
Oct 18, 2017
Oct 18, 2017
114
115
116
117
118
119
while (plp)
{
next = plp->next;
free(plp->path);
free(plp);
plp = next;
Jul 4, 2005
Jul 4, 2005
120
}
Oct 18, 2017
Oct 18, 2017
121
pathlist = NULL;
Jul 4, 2005
Jul 4, 2005
122
}