]> git.sur5r.net Git - c128-kasse/blob - src/config.c
Check if read < 0
[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         if (items_exists)
60                 cbm_load("items", (BYTE)8, &status);
61         else
62                 memset(&status, 0, sizeof(struct status_array_t));
63 }
64
65 void load_credits() {
66         if (credits_exists)
67                 cbm_load("credits", (BYTE)8, &credits);
68         else
69                 memset(&credits, 0, sizeof(struct credits_array_t));
70 }
71
72 void save_items() {
73         if (items_exists)
74                 _sysremove("items");
75         cbm_save("items", (BYTE)8, &status, sizeof(struct status_array_t));
76         items_exists = true;
77 }
78
79 void save_credits() {
80         if (credits_exists)
81                 _sysremove("credits");
82         cbm_save("credits", (BYTE)8, &credits, sizeof(struct credits_array_t));
83         credits_exists = true;
84 }
85
86 void load_config() {
87         lookup_needed_files();
88 }