]> git.sur5r.net Git - c128-kasse/blob - src/config.c
Speicherfehler behoben (Danke Sascha)
[c128-kasse] / src / config.c
1 /* 
2  * RGB2R-C128-Kassenprogramm
3  * (c) 2007-2008 phil_fry, sECuRE, sur5r
4  * See LICENSE for license information
5  *
6  */
7 #define _IS_CONFIG_C
8
9 #include <stdlib.h>
10 #include <conio.h>
11 #include <string.h>
12 #include <stdio.h>
13 #include <stdbool.h>
14
15 #include "kasse.h"
16 #include "general.h"
17 #include "config.h"
18
19 /* NOTE: undocumented function which scratches files
20    We need to use this function because linking unistd.h
21    makes our program break at runtime.
22  */
23 unsigned char __fastcall__ _sysremove(const char *name);
24
25 unsigned long int money = 0;
26 unsigned long int items_sold = 0;
27 BYTE printer_port = 4;
28 static bool items_exists = false;
29 static bool credits_exists = false;
30 struct status_array_t status;
31 struct credits_array_t credits;
32
33 /* 
34  * Checks if items/credits-files are existing to avoid having to recover
35  * the error state of the drive (we'd have to if we would just access the
36  * files directly)
37  *
38  */
39 static void lookup_needed_files() {
40         BYTE lfn = 8;
41         struct cbm_dirent dirent;
42
43         if (cbm_opendir(lfn, (BYTE)8) != 0) {
44                 cprintf("could not open directory\r\n");
45                 return;
46         }
47         while (cbm_readdir(lfn, &dirent) == 0) {
48                 if (strncmp(dirent.name, "log", 3) == 0)
49                         log_num++;
50                 if (strcasecmp(dirent.name, "items") == 0)
51                         items_exists = true;
52                 if (strcasecmp(dirent.name, "credits") == 0)
53                         credits_exists = true;
54         }
55         cbm_closedir(lfn);
56 }
57
58 void load_items() {
59         BYTE c;
60
61         if (items_exists) {
62                 items_sold = 0;
63                 cbm_load("items", (BYTE)8, &status);
64                 for (c = 0; c < status.num_items; c++)
65                         items_sold += status.status[c].times_sold;
66         } else
67                 memset(&status, 0, sizeof(struct status_array_t));
68 }
69
70 void load_credits() {
71         if (credits_exists)
72                 cbm_load("credits", (BYTE)8, &credits);
73         else
74                 memset(&credits, 0, sizeof(struct credits_array_t));
75 }
76
77 void save_items() {
78         if (items_exists)
79                 _sysremove("items");
80         cbm_save("items", (BYTE)8, &status, sizeof(struct status_array_t));
81         items_exists = true;
82 }
83
84 void save_credits() {
85         if (credits_exists)
86                 _sysremove("credits");
87         cbm_save("credits", (BYTE)8, &credits, sizeof(struct credits_array_t));
88         credits_exists = true;
89 }
90
91 void load_config() {
92         lookup_needed_files();
93 }