Package: biniax2 / 1.30-4

userdir.patch Patch series | download
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
From: Miriam Ruiz <little_miry@yahoo.es>
Date: Fri, 5 Apr 2013 00:08:18 +0200
Subject: userdir

---
 biniax.c      | 228 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 desktop/cfg.c | 122 ++++++++++++++++++++++++-------
 hof.c         | 202 +++++++++++++++++++++++++++++++++++++++++++++++++--
 inc.h         |   4 ++
 4 files changed, 520 insertions(+), 36 deletions(-)

diff --git a/biniax.c b/biniax.c
index 886b692..5cc5765 100755
--- a/biniax.c
+++ b/biniax.c
@@ -51,6 +51,22 @@ INCLUDES
 #include "lev.h"
 #include "inc.h"
 
+#ifndef _WIN32
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <limits.h>
+#include <pwd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <stdint.h>
+#endif
+
+#include <errno.h>
+#include <string.h>
+
 /* Global instance of GAME structure */
 BNX_GAME Game;
 
@@ -82,6 +98,9 @@ BNX_BOOL saveGame( BNX_GAME *game );
 BNX_BOOL loadGame( BNX_GAME *game );
 BNX_BOOL loadHiScore( BNX_GAME *game );
 
+BNX_BOOL saveOldDebianGame( BNX_GAME *game );
+BNX_BOOL loadOldDebianGame( BNX_GAME *game );
+
 #define UNREF( A ) (A) = (A)
 /******************************************************************************
 PROGRAM START
@@ -100,13 +119,27 @@ int main( int argc, char *argv[] )
 	cfgInit();
 	hofInit();
 	if ( gfxInit() == BNX_FALSE )
+	{
+		fprintf(stderr, "Error in Graphics Initialization\n");
 		return -1;
+	}
 	if ( sysInit() == BNX_FALSE )
+	{
+		fprintf(stderr, "Error in System Initialization\n");
 		return -2;
+	}
 	if ( inpInit() == BNX_FALSE )
+	{
+		fprintf(stderr, "Error in Input Initialization\n");
 		return -3;
+	}
 	if ( sndInit() == BNX_FALSE )
-		return -4;
+	{
+		fprintf(stderr, "Error in Sound Initialization\n");
+		cfgSetSound(BNX_FALSE);
+		cfgSetMusic(BNX_FALSE);
+		/* return -4; */
+	}
 
 	/******************************************************************
 	SHOW INITIAL WELCOME SCREEN
@@ -131,6 +164,10 @@ int main( int argc, char *argv[] )
 				case cOptionContinue:
 					if ( loadGame( &Game ) == BNX_FALSE )
 					{
+						if (errno)
+							fprintf(stderr, "Error loading game data: %s\n", strerror(errno));
+						else
+							fprintf(stderr, "Error loading game data\n");
 						enterState = cStateMainMenu;
 					}
 					else
@@ -1178,13 +1215,70 @@ void showHelp( BNX_GAME *game )
 GAME AND HISCORE SAVE / RESTORE
 ******************************************************************************/
 
+static const char *saveFileName()
+{
+#ifndef _WIN32
+	char filename[1024];
+	char *home;
+	struct passwd *passwd;
+	if (!getuid())
+	{
+				fprintf(stderr, "No access to data files for root.\n");
+				return BNX_FALSE;
+	} else {
+		if ((home = getenv("XDG_DATA_HOME")))
+		{ /* See http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html */
+			if (strlen(home) > 1024 - sizeof("/biniax2/hof"))
+			{
+				fprintf(stderr, "$XDG_DATA_HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/biniax2", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else if ((home = getenv("HOME")))
+		{
+			passwd = getpwuid (getuid());
+			home=passwd->pw_dir;
+			if (!home)
+			{
+				fprintf(stderr, "$HOME is not defined.\n");
+				return BNX_FALSE;
+			}
+			if (strlen(home) > 1024 - sizeof("/.local/share/biniax2/autosave"))
+			{
+				fprintf(stderr, "$HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/.local", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+			strncat(filename, "/share", sizeof(filename)-1);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+			strncat(filename, "/biniax2", sizeof(filename)-1);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else
+		{
+			fprintf(stderr, "Neither $XDG_DATA_HOME nor $HOME are defined.\n");
+			return BNX_FALSE;
+		}
+	}
+	strncat(filename, "/autosave", sizeof(filename)-1);
+	return filename;
+#else
+	return "./autosave.bnx2";
+#endif
+}
+
 BNX_BOOL saveGame( BNX_GAME *game )
 {
 	FILE		*file;
 	BNX_INT32	i;
 	BNX_INT32	j;
 
-	file = fopen( sysGetFullFileName( csSaveGameName ), "wb" );
+	fprintf(stderr, "Saving game data in \"%s\"\n", saveFileName());
+
+	file = fopen( saveFileName(), "wb" );
 
 	if ( file == (FILE *) NULL )
 		return BNX_FALSE;
@@ -1242,9 +1336,14 @@ BNX_BOOL loadGame( BNX_GAME *game )
 	BNX_INT32	i;
 	BNX_INT32	j;
 
-	if ( sysGetFileLen( sysGetFullFileName( csSaveGameName ) ) != cSaveFileSize )
+	if (loadOldDebianGame(game) == BNX_TRUE)
+		return BNX_TRUE;
+
+	fprintf(stderr, "Loading game data from \"%s\"\n", saveFileName());
+
+	if ( sysGetFileLen( saveFileName() ) != cSaveFileSize )
 		return BNX_FALSE;
-	file = fopen( sysGetFullFileName( csSaveGameName ), "rb" );
+	file = fopen( saveFileName(), "rb" );
 	if ( file == (FILE *) NULL )
 		return BNX_FALSE;
 
@@ -1302,3 +1401,124 @@ BNX_BOOL loadHiScore( BNX_GAME *game )
 	return BNX_TRUE;
 }
 
+// DEBIAN SPECIFIC STUFF
+
+BNX_BOOL saveOldDebianGame( BNX_GAME *game )
+{
+	FILE		*file;
+	int		i, j;
+
+	fprintf(stderr, "Saving game data with old format in \"%s\"\n", saveFileName());
+	file = fopen( saveFileName(), "wb" );
+	if ( file == (FILE *) NULL )
+		return BNX_FALSE;
+
+	sysFPut16( 0xB2D1 , file );
+
+	sysFPut32( game->moment      , file );
+	sysFPut16( game->mode        , file );
+	sysFPut16( game->scroll      , file );
+	sysFPut16( game->speed       , file );
+	sysFPut16( game->moves       , file );
+	sysFPut16( game->clears      , file );
+	fputc(    game->ingame      , file );
+	sysFPut32( game->sounds      , file );
+	fputc(    game->message     , file );
+	sysFPut32( game->lines       , file );
+	sysFPut16( game->level       , file );
+	sysFPut16( game->level_count , file );
+
+	sysFPut16( cMaxPlayers , file );
+
+	for (i = 0; i < cMaxPlayers; i++)
+	{
+		fputc( game->player[i].x , file );
+		fputc( game->player[i].y , file );
+		fputc( game->player[i].e , file );
+		sysFPut32( game->score[i] , file );
+		sysFPut32( game->wins[i]  , file );
+		sysFPut32( game->best[i]  , file );
+	}
+
+	sysFPut32( cGridX , file );
+	sysFPut32( cGridY , file );
+
+	for (j = 0; j < cGridY; j++)
+		for (i = 0; i < cGridX; i++)
+			fputc( game->grid[i][j] , file );
+
+	sysFPut16( 0xB2D0 , file );
+
+	fclose( file );
+	return BNX_TRUE;
+}
+
+BNX_BOOL loadOldDebianGame( BNX_GAME *game )
+{
+	FILE		*file = NULL;
+	int		i, j;
+	uint16_t	id, mp;
+	uint32_t	mx, my;
+
+	file = fopen( saveFileName(), "rb" );
+	if ( file == (FILE *) NULL )
+		return BNX_FALSE;
+
+	errno = 0;
+
+	id = sysFGet16(file);
+	if (id != 0xB2D1)
+		goto error;
+
+	fprintf(stderr, "Loading game data with old format from \"%s\"\n", saveFileName());
+
+	game->moment = sysFGet32(file);
+	game->mode = sysFGet16(file);
+	game->scroll = sysFGet16(file);
+	game->speed = sysFGet16(file);
+	game->moves = sysFGet16(file);
+	game->clears = sysFGet16(file);
+	game->ingame = fgetc(file);
+	game->sounds = sysFGet32(file);
+	game->message = fgetc(file);
+	game->lines = sysFGet32(file);
+	game->level = sysFGet16(file);
+	game->level_count = sysFGet16(file);
+
+	mp = sysFGet16(file);
+	if (mp != cMaxPlayers)
+		goto error;
+
+	for (i = 0; i < cMaxPlayers; i++)
+	{
+		game->player[i].x = fgetc(file);
+		game->player[i].y = fgetc(file);
+		game->player[i].e = fgetc(file);
+		game->score[i] = sysFGet32(file);
+		game->wins[i] = sysFGet32(file);
+		game->best[i] = sysFGet32(file);
+	}
+
+	mx = sysFGet32(file);
+	if (mx != cGridX)
+		goto error;
+	my = sysFGet32(file);
+	if (my != cGridY)
+		goto error;
+
+	for (j = 0; j < cGridY; j++)
+		for (i = 0; i < cGridX; i++)
+			game->grid[i][j] = fgetc(file);
+
+	id = sysFGet16(file);
+	if (id != 0xB2D0)
+		goto error;
+
+	fclose( file );
+	return BNX_TRUE;
+
+error:
+	if (file)
+		fclose( file );
+	return BNX_FALSE;
+}
diff --git a/desktop/cfg.c b/desktop/cfg.c
index 5c2773a..b735566 100755
--- a/desktop/cfg.c
+++ b/desktop/cfg.c
@@ -30,6 +30,17 @@ INCLUDES
 
 #include "inc.h"
 
+#ifndef _WIN32
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <limits.h>
+#include <pwd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#endif
 
 /******************************************************************************
 FUNCTIONS
@@ -54,38 +65,99 @@ BNX_BOOL cfgInit()
 	char	buffer[ _Cfg_Buffer ];
 	int		nTemp;
 
+#ifndef _WIN32
+	char filename[1024];
+	char *home;
+	struct passwd *passwd;
+	if (!getuid())
+	{
+				fprintf(stderr, "No access to config files for root.\n");
+				return BNX_FALSE;
+	} else {
+		if ((home = getenv("XDG_CONFIG_HOME")))
+		{ /* See http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html */
+			if (strlen(home) > 1024 - sizeof("/biniax2/config"))
+			{
+				fprintf(stderr, "$XDG_CONFIG_HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/biniax2", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else if ((home = getenv("HOME")))
+		{
+			passwd = getpwuid (getuid());
+			home=passwd->pw_dir;
+			if (!home)
+			{
+				fprintf(stderr, "$HOME is not defined.\n");
+				return BNX_FALSE;
+			}
+			if (strlen(home) > 1024 - sizeof("/.config/biniax2/config"))
+			{
+				fprintf(stderr, "$HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/.config", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+			strncat(filename, "/biniax2", sizeof(filename)-1);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else
+		{
+			fprintf(stderr, "Neither $XDG_CONFIG_HOME nor $HOME are defined.\n");
+			return BNX_FALSE;
+		}
+	}
+	strncat(filename, "/config", sizeof(filename)-1);
+#else
+	char filename[] = "./config.bnx2";
+#endif
+
 	_Cfg.sound = BNX_TRUE;
 	_Cfg.music = BNX_TRUE;
 	_Cfg.fullscreen = BNX_FALSE;
 	_Cfg.touch = BNX_FALSE;
 
-	f = fopen( sysGetFullFileName( csConfigName ), "rt" );
-	if ( f == 0 )
-	{
-		return BNX_FALSE;
-	}
-
-	fgets( buffer, _Cfg_Buffer, f );
-	sscanf( buffer, "SOUND=%d", &nTemp );
-	_Cfg.sound = (BNX_BOOL) nTemp;
-
-	fgets( buffer, _Cfg_Buffer, f );
-	sscanf( buffer, "MUSIC=%d", &nTemp );
-	_Cfg.music = (BNX_BOOL) nTemp;
-
-	fgets( buffer, _Cfg_Buffer, f );
-	sscanf( buffer, "FULLSCREEN=%d", &nTemp );
-	_Cfg.fullscreen = (BNX_BOOL) nTemp;
-
-	fgets( buffer, _Cfg_Buffer, f );
-	sscanf( buffer, "TOUCH=%d", &nTemp );
-	_Cfg.touch = (BNX_BOOL) nTemp;
-
-	fclose( f );
-
+if( access( filename, F_OK ) != -1 ) {
+	f = fopen( filename, "r" );
+		if ( f == NULL )
+		{
+			fprintf( stderr,"Configuration file \"%s\" not found\n", filename );
+			return BNX_FALSE;
+		}
+		else {
+			fgets( buffer, _Cfg_Buffer, f );
+			sscanf( buffer, "SOUND=%d", &nTemp );
+			_Cfg.sound = (BNX_BOOL) nTemp;
+
+			fgets( buffer, _Cfg_Buffer, f );
+			sscanf( buffer, "MUSIC=%d", &nTemp );
+			_Cfg.music = (BNX_BOOL) nTemp;
+
+			fgets( buffer, _Cfg_Buffer, f );
+			sscanf( buffer, "FULLSCREEN=%d", &nTemp );
+			_Cfg.fullscreen = (BNX_BOOL) nTemp;
+
+			fgets( buffer, _Cfg_Buffer, f );
+			sscanf( buffer, "TOUCH=%d", &nTemp );
+			_Cfg.touch = (BNX_BOOL) nTemp;
+			fclose( f );
+
+			fprintf( stderr, _Cfg.sound ? "Sound On\n" : "Sound Off\n" );
+			fprintf( stderr, _Cfg.music ? "Music On\n" : "Music Off\n" );
+			fprintf( stderr, _Cfg.fullscreen ? "Fullscreen On\n" : "Fullscreen Off\n" );
+			return BNX_TRUE;
+		}
+} else {
+	f = fopen( filename, "w" );
+	fputs("SOUND=1\n", f);
+	fputs("MUSIC=1\n", f);
+	fputs("FULLSCREEN=0", f);
+	fclose(f);
 	return BNX_TRUE;
 }
-
+}
 BNX_BOOL cfgGetSound()
 {
 	return _Cfg.sound;
diff --git a/hof.c b/hof.c
index 6472e68..d0c6efb 100755
--- a/hof.c
+++ b/hof.c
@@ -31,6 +31,21 @@ INCLUDES
 
 #include "inc.h"
 
+#ifndef _WIN32
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <limits.h>
+#include <pwd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#endif
+
+#include <errno.h>
+#include <string.h>
+
 #define chCursor		'_'			/* Cursor ON */
 #define chSpace			' '			/* Cursor OFF*/
 
@@ -46,6 +61,8 @@ void hofAddLetter( BNX_INT16 pos, char a, char *name );
 void hofBlinkCursor( BNX_INT16 pos, char *name );
 void hofResetCursor( BNX_INT16 pos, char *name );
 
+BNX_BOOL hofOldDebianInit();
+BNX_BOOL hofOldDebianSave();
 
 void hofAddLetter( BNX_INT16 pos, char a, char *name )
 {
@@ -85,25 +102,81 @@ void hofResetCursor( BNX_INT16 pos, char *name )
 	}
 }
 
+static const char *hofFileName()
+{
+#ifndef _WIN32
+	char filename[1024];
+	char *home;
+	struct passwd *passwd;
+	if (!getuid())
+	{
+				fprintf(stderr, "No access to data files for root.\n");
+				return BNX_FALSE;
+	} else {
+		if ((home = getenv("XDG_DATA_HOME")))
+		{ /* See http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html */
+			if (strlen(home) > 1024 - sizeof("/biniax2/hof"))
+			{
+				fprintf(stderr, "$XDG_DATA_HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/biniax2", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else if ((home = getenv("HOME")))
+		{
+			passwd = getpwuid (getuid());
+			home=passwd->pw_dir;
+			if (!home)
+			{
+				fprintf(stderr, "$HOME is not defined.\n");
+				return BNX_FALSE;
+			}
+			if (strlen(home) > 1024 - sizeof("/.local/share/biniax2/hof"))
+			{
+				fprintf(stderr, "$HOME is excessively long.n");
+				return BNX_FALSE;
+			}
+			snprintf(filename, sizeof(filename), "%s/.local", home);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+			strncat(filename, "/share", sizeof(filename)-1);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+			strncat(filename, "/biniax2", sizeof(filename)-1);
+			mkdir(filename, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+		}
+		else
+		{
+			fprintf(stderr, "Neither $XDG_DATA_HOME nor $HOME are defined.\n");
+			return BNX_FALSE;
+		}
+	}
+	strncat(filename, "/hof", sizeof(filename)-1);
+	return filename;
+#else
+	return "./hof.bnx2";
+#endif
+}
 
 BNX_BOOL hofInit()
 {
 	FILE		*file;
 	BNX_INT16	i, j;
-	
+
+	if (hofOldDebianInit() == BNX_TRUE)
+		return BNX_TRUE;
 
 	for ( i = 0; i < cHofEntries; ++i )
 	{
-		strcpy( Hof.arcade[ i ].name, "JORDAN                       " );
+		strcpy( Hof.arcade[ i ].name, "DEBIAN                       " );
 		Hof.arcade[ i ].score = (cHofEntries - i) * cHofInitScore;
 
-		strcpy( Hof.tactic[ i ].name, "JORDAN                       " );
+		strcpy( Hof.tactic[ i ].name, "DEBIAN                       " );
 		Hof.tactic[ i ].score = (cHofEntries - i) * cHofInitScore;
 	}
 
-	if ( sysGetFileLen( sysGetFullFileName( csHOFName ) ) != cHOFFileSize )
+	if ( sysGetFileLen( hofFileName() ) != cHOFFileSize )
 		return BNX_FALSE;
-	file = fopen( sysGetFullFileName( csHOFName ), "rb" );
+	file = fopen( hofFileName(), "rb" );
 	if ( file == (FILE *) NULL )
 		return BNX_FALSE;
 
@@ -137,7 +210,7 @@ BNX_BOOL hofSave()
 	FILE		*file;
 	int			i, j;
 
-	file = fopen( sysGetFullFileName( csHOFName ), "wb" );
+	file = fopen( hofFileName(), "wb" );
 
 	if ( file == (FILE *) NULL )
 		return BNX_FALSE;
@@ -292,4 +365,119 @@ void hofView()
 BNX_HALL *hofGet()
 {
 	return (BNX_HALL *) &Hof;
-}
\ No newline at end of file
+}
+
+// DEBIAN SPECIFIC
+
+BNX_BOOL hofOldDebianInit()
+{
+	FILE		*file = NULL;
+	int		i;
+	uint16_t	id, me, ml;
+	const char *filename = NULL;
+	char alt_filename[1024+3];
+
+	file = fopen( (filename = hofFileName()), "rb" );
+
+	if ( file == (FILE *) NULL ) // Bug in previous version, see if data can be reached
+	{
+		char *ptr;
+		strncpy(alt_filename, filename, 1024);
+		ptr = strrchr(alt_filename, '/');
+		if (ptr != NULL)
+		{
+			ptr++;
+			filename = alt_filename;
+			strcpy(ptr, "config");
+			file = fopen( filename, "rb" );
+		}
+	}
+
+	if ( file == (FILE *) NULL )
+	{
+		goto error;
+	}
+
+	errno = 0;
+
+	id = sysFGet16(file);
+	if (id != 0xB2F1)
+		goto error;
+
+	fprintf(stderr, "Loading Hall of Fame data with old format from \"%s\"\n", filename);
+
+	ml = sysFGet16(file);
+	if (ml != cHofNameLen)
+		goto error;
+
+	me = sysFGet16(file);
+	if (me != cHofEntries)
+		goto error;
+
+	for ( i = 0; i < cHofEntries; ++i )
+	{	
+		fread( Hof.arcade[i].name, 1, cHofNameLen, file );
+		Hof.arcade[i].score = sysFGet32(file);
+	}
+
+	for ( i = 0; i < cHofEntries; ++i )
+	{	
+		fread( Hof.tactic[i].name, 1, cHofNameLen, file );
+		Hof.tactic[i].score = sysFGet32(file);
+	}
+
+	id = sysFGet16(file);
+	if (id != 0xB2F0)
+		goto error;
+
+	fclose( file );
+
+	return BNX_TRUE;
+
+error:
+	if (file)
+		fclose( file );
+	return BNX_FALSE;
+}
+
+BNX_BOOL hofOldDebianSave()
+{
+	FILE		*file;
+	int 		i;
+	const char *filename = NULL;
+
+	file = fopen( (filename=hofFileName()), "wb" );
+
+	if ( file == (FILE *) NULL )
+	{
+		if (errno)
+			fprintf(stderr, "Could not save Hall of Fame data with old format in \"%s\": %s\n", filename, strerror(errno));
+		else
+			fprintf(stderr, "Could not save Hall of Fame data with old format in \"%s\"\n", filename);
+		return BNX_FALSE;
+	}
+
+	fprintf(stderr, "Saving Hall of Fame data with old format in \"%s\"\n", filename);
+
+	sysFPut16( 0xB2F1 , file );
+	sysFPut16( cHofNameLen , file );
+	sysFPut16( cHofEntries , file );
+
+	for ( i = 0; i < cHofEntries; ++i )
+	{
+		fwrite( Hof.arcade[i].name, 1, cHofNameLen, file );
+		sysFPut32(Hof.arcade[i].score, file);
+	}
+
+	for ( i = 0; i < cHofEntries; ++i )
+	{
+		fwrite( Hof.tactic[i].name, 1, cHofNameLen, file );
+		sysFPut32(Hof.tactic[i].score, file);
+	}
+
+	sysFPut16( 0xB2F0 , file );
+
+	fclose( file );
+
+	return BNX_TRUE;
+}
diff --git a/inc.h b/inc.h
index ee3459a..e9c8379 100755
--- a/inc.h
+++ b/inc.h
@@ -68,5 +68,9 @@ INCLUDES
 #include "symbian/sys.h"
 #endif
 
+#ifndef _WIN32
+#include <stdint.h>
+#include <stdio.h>
+#endif
 
 #endif