rnd-20131228-1-src
[rocksndiamonds.git] / src / libgame / misc.h
1 /***********************************************************
2 * Artsoft Retro-Game Library                               *
3 *----------------------------------------------------------*
4 * (c) 1994-2006 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * misc.h                                                   *
12 ***********************************************************/
13
14 #ifndef MISC_H
15 #define MISC_H
16
17 #include <stdlib.h>
18 #include <stdio.h>
19 #include <dirent.h>
20
21 #include "system.h"
22
23
24 /* values for InitCounter() and Counter() */
25 #define INIT_COUNTER                    0
26 #define READ_COUNTER                    1
27
28 /* values for InitRND() */
29 #define NEW_RANDOMIZE                   0
30
31 #define RANDOM_ENGINE                   0
32 #define RANDOM_SIMPLE                   1
33
34 #define InitEngineRandom(seed)          init_random_number(RANDOM_ENGINE, seed)
35 #define InitSimpleRandom(seed)          init_random_number(RANDOM_SIMPLE, seed)
36 #define GetEngineRandom(max)            get_random_number(RANDOM_ENGINE, max)
37 #define GetSimpleRandom(max)            get_random_number(RANDOM_SIMPLE, max)
38
39 /* values for Error() */
40 #define ERR_UNKNOWN                     0
41 #define ERR_DEBUG                       (1 << 0)
42 #define ERR_INFO                        (1 << 1)
43 #define ERR_INFO_LINE                   (1 << 2)
44 #define ERR_WARN                        (1 << 3)
45 #define ERR_EXIT                        (1 << 4)
46 #define ERR_HELP                        (1 << 5)
47 #define ERR_SOUND_SERVER                (1 << 6)
48 #define ERR_NETWORK_SERVER              (1 << 7)
49 #define ERR_NETWORK_CLIENT              (1 << 8)
50 #define ERR_FROM_SERVER                 (ERR_SOUND_SERVER | ERR_NETWORK_SERVER)
51 #define ERR_EXIT_HELP                   (ERR_EXIT | ERR_HELP)
52 #define ERR_EXIT_SOUND_SERVER           (ERR_EXIT | ERR_SOUND_SERVER)
53 #define ERR_EXIT_NETWORK_SERVER         (ERR_EXIT | ERR_NETWORK_SERVER)
54 #define ERR_EXIT_NETWORK_CLIENT         (ERR_EXIT | ERR_NETWORK_CLIENT)
55 #if 0
56 #define ERR_ERROR                       (ERR_UNKNOWN)
57 #define ERR_FATAL                       (ERR_EXIT)
58 #define ERR_VERBOSE                     (ERR_INFO)
59 #endif
60
61 /* values for getFile...() and putFile...() */
62 #define BYTE_ORDER_BIG_ENDIAN           0
63 #define BYTE_ORDER_LITTLE_ENDIAN        1
64
65 /* values for cursor bitmap creation */
66 #define BIT_ORDER_MSB                   0
67 #define BIT_ORDER_LSB                   1
68
69 /* values for createDirectory() */
70 #define PERMS_PRIVATE                   0
71 #define PERMS_PUBLIC                    1
72
73 /* values for general file handling stuff */
74 #define MAX_FILENAME_LEN                256
75 #define MAX_LINE_LEN                    1024
76
77 /* values for general username handling stuff */
78 #define MAX_USERNAME_LEN                1024
79
80 #if defined(PLATFORM_ANDROID)
81 /* values for Android asset handling */
82 #define ASSET_TOC_BASENAME              ".toc"
83 #endif
84
85
86 /* structure definitions */
87
88 typedef struct
89 {
90   char *filename;
91   FILE *file;
92   boolean end_of_file;
93
94 #if defined(PLATFORM_ANDROID)
95   boolean file_is_asset;
96   SDL_RWops *asset_file;
97 #endif
98 } File;
99
100 typedef struct
101 {
102   boolean is_directory;
103   char *basename;
104   char *filename;
105 } DirectoryEntry;
106
107 typedef struct
108 {
109   char *filename;
110   DIR *dir;
111   DirectoryEntry *dir_entry;
112
113 #if defined(PLATFORM_ANDROID)
114   boolean directory_is_asset;
115   SDL_RWops *asset_toc_file;
116   char *current_entry;
117 #endif
118 } Directory;
119
120
121 /* function definitions */
122
123 void fprintf_line(FILE *, char *, int);
124 void printf_line(char *, int);
125 void printf_line_with_prefix(char *, char *, int);
126 char *int2str(int, int);
127 char *i_to_a(unsigned int);
128 int log_2(unsigned int);
129
130 boolean getTokenValueFromString(char *, char **, char **);
131
132 void InitCounter(void);
133 unsigned int Counter(void);
134 void Delay(unsigned int);
135 boolean FrameReached(unsigned int *, unsigned int);
136 boolean DelayReached(unsigned int *, unsigned int);
137 void WaitUntilDelayReached(unsigned int *, unsigned int);
138
139 unsigned int init_random_number(int, int);
140 unsigned int get_random_number(int, int);
141
142 char *getLoginName(void);
143 char *getRealName(void);
144
145 time_t getFileTimestampEpochSeconds(char *);
146
147 char *getBasePath(char *);
148 char *getBaseName(char *);
149 char *getBaseNamePtr(char *);
150
151 char *getStringCat2WithSeparator(char *, char *, char *);
152 char *getStringCat3WithSeparator(char *, char *, char *, char *);
153 char *getStringCat2(char *, char *);
154 char *getStringCat3(char *, char *, char *);
155 char *getPath2(char *, char *);
156 char *getPath3(char *, char *, char*);
157 char *getStringCopy(char *);
158 char *getStringCopyN(char *, int);
159 char *getStringToLower(char *);
160 void setString(char **, char *);
161 boolean strEqual(char *, char *);
162 boolean strEqualN(char *, char *, int);
163 boolean strPrefix(char *, char *);
164 boolean strSuffix(char *, char *);
165 boolean strPrefixLower(char *, char *);
166 boolean strSuffixLower(char *, char *);
167
168 void GetOptions(char **, void (*print_usage_function)(void));
169
170 void SetError(char *, ...);
171 char *GetError(void);
172 void Error(int, char *, ...);
173
174 void *checked_malloc(unsigned int);
175 void *checked_calloc(unsigned int);
176 void *checked_realloc(void *, unsigned int);
177 void checked_free(void *);
178 void clear_mem(void *, unsigned int);
179
180 void swap_numbers(int *, int *);
181 void swap_number_pairs(int *, int *, int *, int *);
182
183 #if 1
184
185 int getFile8BitInteger(File *);
186 int putFile8BitInteger(FILE *, int);
187 int getFile16BitInteger(File *, int);
188 int putFile16BitInteger(FILE *, int, int);
189 int getFile32BitInteger(File *, int);
190 int putFile32BitInteger(FILE *, int, int);
191
192 boolean getFileChunk(File *, char *, int *, int);
193 int putFileChunk(FILE *, char *, int, int);
194 int getFileVersion(File *);
195 int putFileVersion(FILE *, int);
196
197 void ReadBytesFromFile(File *, byte *, unsigned int);
198 void WriteBytesToFile(FILE *, byte *, unsigned int);
199
200 void ReadUnusedBytesFromFile(File *, unsigned int);
201 void WriteUnusedBytesToFile(FILE *, unsigned int);
202
203 #else
204
205 int getFile8BitInteger(FILE *);
206 int putFile8BitInteger(FILE *, int);
207 int getFile16BitInteger(FILE *, int);
208 int putFile16BitInteger(FILE *, int, int);
209 int getFile32BitInteger(FILE *, int);
210 int putFile32BitInteger(FILE *, int, int);
211
212 boolean getFileChunk(FILE *, char *, int *, int);
213 int putFileChunk(FILE *, char *, int, int);
214 int getFileVersion(FILE *);
215 int putFileVersion(FILE *, int);
216
217 void ReadBytesFromFile(FILE *, byte *, unsigned int);
218 void WriteBytesToFile(FILE *, byte *, unsigned int);
219
220 void ReadUnusedBytesFromFile(FILE *, unsigned int);
221 void WriteUnusedBytesToFile(FILE *, unsigned int);
222
223 #endif
224
225 #define getFile8Bit(f)        getFile8BitInteger(f)
226 #define putFile8Bit(f,x)      putFile8BitInteger(f,x)
227 #define getFile16BitBE(f)     getFile16BitInteger(f,BYTE_ORDER_BIG_ENDIAN)
228 #define getFile16BitLE(f)     getFile16BitInteger(f,BYTE_ORDER_LITTLE_ENDIAN)
229 #define putFile16BitBE(f,x)   putFile16BitInteger(f,x,BYTE_ORDER_BIG_ENDIAN)
230 #define putFile16BitLE(f,x)   putFile16BitInteger(f,x,BYTE_ORDER_LITTLE_ENDIAN)
231 #define getFile32BitBE(f)     getFile32BitInteger(f,BYTE_ORDER_BIG_ENDIAN)
232 #define getFile32BitLE(f)     getFile32BitInteger(f,BYTE_ORDER_LITTLE_ENDIAN)
233 #define putFile32BitBE(f,x)   putFile32BitInteger(f,x,BYTE_ORDER_BIG_ENDIAN)
234 #define putFile32BitLE(f,x)   putFile32BitInteger(f,x,BYTE_ORDER_LITTLE_ENDIAN)
235
236 #define getFileChunkBE(f,s,x) getFileChunk(f,s,x,BYTE_ORDER_BIG_ENDIAN)
237 #define getFileChunkLE(f,s,x) getFileChunk(f,s,x,BYTE_ORDER_LITTLE_ENDIAN)
238 #define putFileChunkBE(f,s,x) putFileChunk(f,s,x,BYTE_ORDER_BIG_ENDIAN)
239 #define putFileChunkLE(f,s,x) putFileChunk(f,s,x,BYTE_ORDER_LITTLE_ENDIAN)
240
241 char *getKeyNameFromKey(Key);
242 char *getX11KeyNameFromKey(Key);
243 Key getKeyFromKeyName(char *);
244 Key getKeyFromX11KeyName(char *);
245 char getCharFromKey(Key);
246 char getValidConfigValueChar(char);
247
248 int get_integer_from_string(char *);
249 boolean get_boolean_from_string(char *);
250 int get_switch3_from_string(char *);
251
252 ListNode *newListNode(void);
253 void addNodeToList(ListNode **, char *, void *);
254 void deleteNodeFromList(ListNode **, char *, void (*function)(void *));
255 ListNode *getNodeFromKey(ListNode *, char *);
256 int getNumNodes(ListNode *);
257
258 File *openFile(char *, char *);
259 int closeFile(File *);
260 int checkEndOfFile(File *);
261 size_t readFile(File *, void *, size_t, size_t);
262 int seekFile(File *, long, int);
263 int getByteFromFile(File *);
264 char *getStringFromFile(File *, char *, int);
265
266 Directory *openDirectory(char *);
267 int closeDirectory(Directory *);
268 DirectoryEntry *readDirectory(Directory *);
269 void freeDirectoryEntry(DirectoryEntry *);
270
271 boolean directoryExists(char *);
272 boolean fileExists(char *);
273 boolean FileIsGraphic(char *);
274 boolean FileIsSound(char *);
275 boolean FileIsMusic(char *);
276 boolean FileIsArtworkType(char *, int);
277
278 char *get_mapped_token(char *);
279
280 int get_parameter_value(char *, char *, int);
281
282 struct ScreenModeInfo *get_screen_mode_from_string(char *);
283 void get_aspect_ratio_from_screen_mode(struct ScreenModeInfo *, int *x, int *y);
284
285 struct FileInfo *getFileListFromConfigList(struct ConfigInfo *,
286                                            struct ConfigTypeInfo *,
287                                            char **, int);
288 void LoadArtworkConfig(struct ArtworkListInfo *);
289 void ReloadCustomArtworkList(struct ArtworkListInfo *);
290 void FreeCustomArtworkLists(struct ArtworkListInfo *);
291
292 char *getErrorFilename(char *);
293 void openErrorFile();
294 void closeErrorFile();
295 void dumpErrorFile();
296 void NotifyUserAboutErrorFile();
297
298 #if DEBUG
299 void debug_print_timestamp(int, char *);
300 #endif
301 void print_timestamp_init(char *);
302 void print_timestamp_time(char *);
303 void print_timestamp_done(char *);
304
305
306 #endif /* MISC_H */