-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.c
executable file
·447 lines (395 loc) · 11.2 KB
/
game.c
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
#include <stdlib.h>
#include "game.h"
#include "config.h"
#include "category.h"
#include "platform.h"
#include "ogl.h"
#include "sdl_ogl.h"
#include "font.h"
#include "media.h"
#include "emulator.h"
#include "location.h"
#include "lookup.h"
#include <pwd.h>
#include <unistd.h>
char lfilename[CONFIG_FILE_NAME_LENGTH]= ".cabrio/.lock";
char lsave_filename[CONFIG_FILE_NAME_LENGTH];
struct game *game_start = NULL;
struct game *game_filter_start = NULL;
const int IMAGE_MAX_HEIGHT = 280;
const int IMAGE_MAX_WIDTH = 360;
char *game_image_type = NULL;
struct game *game_first( void ) {
return game_filter_start;
}
void game_add( struct game *game, struct game *after ) {
if( after == NULL ) {
game->all_prev = game;
game->all_next = game;
}
else {
after->all_next->all_prev = game;
game->all_next = after->all_next;
after->all_next = game;
game->all_prev = after;
}
}
void game_free( struct game* game ) {
if( game ) {
ogl_free_texture( game->texture );
game->all_prev->all_next = game->all_next;
game->all_next->all_prev = game->all_prev;
game_start = game->all_next;
if( game_start->all_next == game_start ) {
/* last in the list */
game_start = NULL;
}
free( game );
game = NULL;
}
}
void game_list_free( void ) {
while( game_start )
game_free( game_start );
}
char *game_media_get( struct game *game, int type, const char *subtype ) {
struct game_media *media = game->media;
while( media ) {
if( media->type == type
&& ( (media->subtype == NULL && subtype == NULL)
|| strcasecmp( media->subtype, subtype ) == 0 ) )
return media->file_name;
media = media->next;
}
return NULL;
}
int game_load_texture( struct game *game ) {
const char *filename = game_media_get( game, MEDIA_IMAGE, game_image_type );
if( game->texture ) {
game_free_texture( game );
}
if( game && filename ) {
game->texture = sdl_create_texture( filename );
}
if( game->texture == NULL ) {
if( game && game->name && *game->name ) {
game->texture = font_create_texture( game->name );
}
else {
game->texture = font_create_texture( "<No Name>" );
}
}
if( game->texture == NULL ) {
return -1;
}
else {
if( game->texture->width > game->texture->height ) {
/* Landscape */
if( game->texture->width > IMAGE_MAX_WIDTH ) {
game->texture->height = (int)(float)game->texture->height/((float)game->texture->width/IMAGE_MAX_WIDTH);
game->texture->width = IMAGE_MAX_WIDTH;
}
}
else {
/* Portrait (or square) */
if( game->texture->height > IMAGE_MAX_HEIGHT ) {
game->texture->width = (int)(float)game->texture->width/((float)game->texture->height/IMAGE_MAX_HEIGHT);
game->texture->height = IMAGE_MAX_HEIGHT;
}
}
}
return 0;
}
void game_free_texture( struct game *game ) {
if( game->texture ) {
ogl_free_texture( game->texture );
game->texture = NULL;
}
}
void game_list_pause( void ) {
struct game *g = game_start;
if( g ) {
do {
ogl_free_texture( g->texture );
g->texture = NULL;
g = g->all_next;
} while( g != game_start );
}
}
int game_list_resume( void ) {
struct game *g = game_start;
if( g ) {
do {
game_load_texture( g );
g = g->all_next;
} while( g != game_start );
}
return 0;
}
int game_add_category( struct game *game, char *name, char *value ) {
struct game_category *gc = malloc( sizeof(struct game_category) );
if( gc ) {
gc->name = name;
gc->value = value;
gc->next = game->categories;
game->categories = gc;
}
else {
fprintf( stderr, "Warning: Couldn't allocate category for game '%s'\n", game->name );
return -1;
}
return 0;
}
int game_list_create( void ) {
struct game *game = NULL;
struct game *prev = NULL;
struct config_game *config_game = config_get()->games;
if( !config_game )
platform_add_unknown();
game_image_type = (char*)image_type_name( IMAGE_LOGO );
while( config_game ) {
game = malloc(sizeof(struct game));
if( game == NULL ) {
return -1;
}
else {
struct config_game_category *config_game_category = config_game->categories;
struct category *category = category_first();
int i = 0;
memset( game, 0, sizeof(struct game) );
game->name = config_game->name;
game->texture = NULL;
game->rom_path = config_game->rom_image;
game->params = config_game->params;
if( config_game->platform ) {
game->platform = platform_get( config_game->platform->name );
}
else {
platform_add_unknown();
game->platform = platform_get( NULL );
}
if( config_game->emulator && config_game->emulator[0] ) {
game->emulator = emulator_get_by_name( config_game->emulator );
if( !game->emulator )
fprintf( stderr, "Warning: Emulator '%s' defined for game '%s' not found\n", config_game->emulator, game->name );
}
if( !game->emulator && config_game->platform ) {
game->emulator = emulator_get_by_platform( config_game->platform->name );
}
if( !game->emulator ) {
game->emulator = emulator_get_default();
}
if( !game->emulator ) {
fprintf( stderr, "Warning: No emulator found for game '%s'\n", game->name );
free( game );
continue;
}
/* Add game categories. */
game->categories = NULL;
while( config_game_category ) {
if( config_game_category->category->id == 0 )
game_add_category( game, (char*)config_get()->iface.labels.label_lists, config_game_category->value->name );
else
game_add_category( game, config_game_category->category->name, (char*)lookup_category( config_game_category->category, (const char*)config_game_category->value->name ) );
config_game_category = config_game_category->next;
}
game->media = NULL;
for( i = 0 ; i < NUM_IMAGE_TYPES ; i++ ) {
struct game_media *image = malloc( sizeof(struct game_media) );
if( image ) {
struct config_image *config_game_image = config_game->images;
memset( image, 0, sizeof(struct game_media) );
image->type = MEDIA_IMAGE;
while( config_game_image ) {
if( strcasecmp( config_game_image->type->name, image_type_name(i) ) == 0 ) {
image->subtype = config_game_image->type->name;
location_get_path( image->subtype, config_game_image->file_name, image->file_name );
break;
}
config_game_image = config_game_image->next;
}
if( image->file_name[0] == '\0' ) {
image->subtype = (char*)image_type_name(i);
location_get_match( image->subtype, game->rom_path, image->file_name );
}
if( image->file_name[0] == '\0' ) {
free( image );
}
else {
image->next = game->media;
game->media = image;
}
}
else {
fprintf( stderr, "Warning: Couldn't allocate game image object for '%s'\n", game->name );
}
}
{
struct game_media *video = malloc( sizeof(struct game_media) );
if( video ) {
memset( video, 0, sizeof(struct game_media) );
video->type = MEDIA_VIDEO;
location_get_path( media_type_name(MEDIA_VIDEO), config_game->video, video->file_name );
if( video->file_name[0] == '\0' ) {
location_get_match( media_type_name(MEDIA_VIDEO), game->rom_path, video->file_name );
}
if( video->file_name[0] == '\0' ) {
free( video );
}
else {
video->next = game->media;
game->media = video;
}
}
else {
fprintf( stderr, "Warning: Couldn't allocate game video object for '%s'\n", game->name );
}
}
/* Fill in "unknown" values for categories undefined for this game. */
if( category ) {
do {
struct game_category *gc = game->categories;
while( gc ) {
if( gc->name == category->name ) {
break;
}
gc = gc->next;
}
if( gc == NULL ) {
/* Category undefine for this game */
category_value_add_unknown( category );
game_add_category( game, category->name, NULL );
}
category = category->next;
} while( category != category_first() );
}
/* insert into list (sort by name) */
prev = game_start;
if( game_start ) {
prev = game_start->all_prev;
while( strcasecmp( prev->name, game->name ) > 0 ) {
prev = prev->all_prev;
if( prev == game_start->all_prev ) break;
}
}
game_add( game, prev );
if( !game_start || strcasecmp( game->name, game_start->name ) < 0 ) {
game_start = game;
}
game->next = game->all_next;
game->prev = game->all_prev;
}
config_game = config_game->next;
}
game_list_unfilter();
/* if( game_start ) {
struct game *g = game_start;
while( g ) {
struct game_media *gm = g->media;
struct game_category *gc = g->categories;
printf("Game: %s\n", g->name );
while( gm ) {
printf(" '%d/%s' = '%s'\n", gm->type, gm->subtype, gm->file_name );
gm = gm->next;
}
while( gc ) {
printf(" '%s' = '%s'\n", gc->name, gc->value );
gc = gc->next;
}
g = g->all_next;
if( g == game_start ) break;
}
} */
return 0;
}
int game_list_filter_category( char *name, char *value ) {
int count = 0;
struct game *game = game_start;
struct game_category *category = NULL;
game_filter_start = NULL;
if( game && game->categories ) {
do {
category = game->categories;
while( category ) {
if( strcasecmp( category->name, name ) == 0 ) {
if( (category->value == NULL && value == NULL)
|| (category->value && value && strcasecmp( category->value, value ) == 0) ) {
if( game_filter_start == NULL ) {
game_filter_start = game;
game->next = game;
game->prev = game;
}
else {
game->prev = game_filter_start->prev;
game_filter_start->prev->next = game;
game_filter_start->prev = game;
game->next = game_filter_start;
}
count++;
}
}
category = category->next;
}
game = game->all_next;
} while ( game != game_start );
}
return count;
}
int game_list_filter_platform( struct platform *platform ) {
int count = 0;
struct game *game = game_start;
game_filter_start = NULL;
if( game && platform ) {
do {
if( game->platform == platform ) {
if( game_filter_start == NULL ) {
game_filter_start = game;
game->next = game;
game->prev = game;
}
else {
game->prev = game_filter_start->prev;
game_filter_start->prev->next = game;
game_filter_start->prev = game;
game->next = game_filter_start;
}
count++;
}
game = game->all_next;
} while ( game != game_start );
}
return count;
}
int game_list_unfilter( void ) {
int count = 0;
struct game* game = game_start;
struct game* lockgame = game_start;
FILE* file = NULL;
struct passwd *passwd = getpwuid(getuid());
char lock[CONFIG_FILE_NAME_LENGTH];
snprintf( lsave_filename, CONFIG_FILE_NAME_LENGTH, "%s/%s", passwd->pw_dir, lfilename );
file = fopen( lsave_filename, "r" );
if( file == NULL ) {
fprintf(stderr, "Can'load state: %s\n", lsave_filename);
}
else {
fgets(lock,CONFIG_FILE_NAME_LENGTH, file);
fclose( file );
}
if( game ) {
do {
game->next = game->all_next;
game->prev = game->all_prev;
game = game->all_next;
count++;
if (strncmp(game->name,lock, strlen(game->name)) == 0){
lockgame = game;
}
} while ( game != game_start );
}
game_filter_start = game_start;
if (lockgame) {
game_filter_start = lockgame;
}
return count;
}