]> git.sur5r.net Git - c128-kasse/blob - src/config.c
log to memory
[c128-kasse] / src / config.c
1 /* 
2  * RGB2R-C128-Kassenprogramm
3  * © 2007-2009 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 #include "print.h"
19
20 /* NOTE: undocumented function which scratches files
21    We need to use this function because linking unistd.h
22    makes our program break at runtime.
23  */
24 unsigned char __fastcall__ _sysremove(const char *name);
25
26 unsigned long int money = 0;
27 unsigned long int items_sold = 0;
28 BYTE printer_port = 4;
29 static bool items_exists = false;
30 static bool credits_exists = false;
31 struct status_array_t status;
32 struct credits_array_t credits;
33
34 /* 
35  * Checks if items/credits-files are existing to avoid having to recover
36  * the error state of the drive (we'd have to if we would just access the
37  * files directly)
38  *
39  */
40 static void lookup_needed_files() {
41         BYTE lfn = 8, c;
42         struct cbm_dirent dirent;
43         char filename[8];
44
45         if (cbm_opendir(lfn, (BYTE)8) != 0) {
46                 cprintf("could not open directory\r\n");
47                 return;
48         }
49         while (cbm_readdir(lfn, &dirent) == 0) {
50                 /* NOTE: You MUST NOT delete any logfiles. This does only work
51                  * under the assumption that logfiles are named continuously */
52                 if (strncmp(dirent.name, "log", 3) == 0)
53                         log_num++;
54                 if (strcasecmp(dirent.name, "items") == 0)
55                         items_exists = true;
56                 if (strcasecmp(dirent.name, "credits") == 0)
57                         credits_exists = true;
58         }
59         cbm_closedir(lfn);
60
61         /* Try to find out how many lines the last logfile got to seamlessly
62          * append to it, if we got more than one logfile. */
63         if (log_num > 0) {
64                 log_num--;
65
66                 sprintf(filename, "log-%u", log_num);
67                 if ((c = cbm_open(lfn, (BYTE)8, (BYTE)CBM_READ, filename)) != 0) {
68                         c128_perror(c, "cbm_open(log) for reading");
69                         exit(1);
70                 }
71                 log_heap_offset = cbm_read(lfn, log_heap_buf, LOG_SIZE);
72                 if (log_heap_offset < 0) {
73                         cprintf("error while cbm_read()ing the logfile\r\n");
74                         exit(1);
75                 }
76                 log_heap_flushed = log_heap_offset;
77                 log_heap_buf[log_heap_offset] = '\0';
78                 cbm_close(lfn);
79         }
80 }
81
82 void load_items() {
83         BYTE c;
84
85         if (items_exists) {
86                 items_sold = 0;
87                 cbm_load("items", (BYTE)8, &status);
88                 for (c = 0; c < status.num_items; c++)
89                         items_sold += status.status[c].times_sold;
90         } else
91                 memset(&status, 0, sizeof(struct status_array_t));
92 }
93
94 void load_credits() {
95         if (credits_exists)
96                 cbm_load("credits", (BYTE)8, &credits);
97         else
98                 memset(&credits, 0, sizeof(struct credits_array_t));
99 }
100
101 void save_items() {
102         if (items_exists)
103                 _sysremove("items");
104         cbm_save("items", (BYTE)8, &status, sizeof(struct status_array_t));
105         items_exists = true;
106 }
107
108 void save_credits() {
109         if (credits_exists)
110                 _sysremove("credits");
111         cbm_save("credits", (BYTE)8, &credits, sizeof(struct credits_array_t));
112         credits_exists = true;
113 }
114
115 void load_config() {
116         lookup_needed_files();
117 }