]> git.sur5r.net Git - c128-kasse/blob - src/kasse.c
track day of event and increment it when clock wraps
[c128-kasse] / src / kasse.c
1 /*
2  * RGB2R-C128-Kassenprogramm
3  * © 2007-2009 phil_fry, sECuRE, sur5r
4  * See LICENSE for license information
5  *
6  */
7 #include <stdio.h>
8 #include <conio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <cbm.h>
12 #include <c128.h>
13 #include <6502.h>
14
15 #include "general.h"
16 #include "config.h"
17 #include "kasse.h"
18 #include "credit_manager.h"
19 #include "c128time.h"
20 #include "print.h"
21 #include "version.h"
22 #include "vdc_patch_charset.h"
23 #include "globals.h"
24 // drucker 4 oder 5
25 // graphic 4,0,10
26
27 void print_item(BYTE i) {
28   char profit[EUR_FORMAT_MINLEN + 1];
29   if (format_euro(profit, sizeof(profit), status.status[i].price) == NULL) {
30     cprintf("Preis %ld konnte nicht umgerechnet werden\r\n",
31             status.status[i].price);
32     exit(1);
33   }
34   textcolor(TC_YELLOW);
35   cprintf("%2d", i);
36   textcolor(TC_LIGHT_GRAY);
37   cprintf(": %-" xstr(MAX_ITEM_NAME_LENGTH) "s \xDD%s,   %3dx ",
38           status.status[i].item_name, profit, status.status[i].times_sold);
39 }
40
41 /* Hauptbildschirm ausgeben */
42 static void print_screen(void) {
43   BYTE i = 0;
44   char *time = get_time();
45   char profit[EUR_FORMAT_MINLEN + 1];
46   clrscr();
47   if (format_euro(profit, sizeof(profit), money) == NULL) {
48     cprintf("Einnahme %ld konnte nicht umgerechnet werden\r\n", money);
49     profit[0] = '\0';
50   }
51   textcolor(TC_CYAN);
52   cprintf("C128-Kassenprogramm (phil_fry, sECuRE, sur5r, mxf) " GV "\r\n");
53   textcolor(TC_LIGHT_GRAY);
54   cprintf("\r\nUhrzeit:     %s (wird nicht aktualisiert)\r\n"
55           "Eingenommen: %s, Verkauft: %ld Dinge, Drucken: %s\r\n",
56           time, profit, items_sold, (printing == 1 ? "ein" : "aus"));
57   textcolor(TC_LIGHT_GRAY);
58   cprintf("      \xB0"
59           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB2"
60           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB2"
61           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB2"
62           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xAE"
63           "\r\n");
64   for (; i < min(status.num_items, 15); ++i) {
65
66     cprintf("      \xDD");
67     print_item(i);
68     cprintf("\xDD");
69
70     /* if we have more than 15 items, use the second column */
71     if ((i + 15) < status.num_items) {
72       print_item(i + 15);
73       cprintf("\xDD");
74     } else {
75       cprintf("              \xDD                \xDD");
76     }
77
78     cprintf("\r\n");
79   }
80   cprintf("      \xAD"
81           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB1"
82           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB1"
83           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xB1"
84           "\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xC0\xBD"
85           "\r\n");
86   textcolor(TC_YELLOW);
87   cprintf("   s");
88   textcolor(TC_LIGHT_GRAY);
89   cprintf(") Daten sichern                                  ");
90   textcolor(TC_YELLOW);
91   cprintf("g");
92   textcolor(TC_LIGHT_GRAY);
93   cprintf(") Guthabenverwaltung\r\n");
94   textcolor(TC_YELLOW);
95   cprintf("   z");
96   textcolor(TC_LIGHT_GRAY);
97   cprintf(") Zeit setzen         ");
98   textcolor(TC_YELLOW);
99   cprintf("f");
100   textcolor(TC_LIGHT_GRAY);
101   cprintf(") Freitext verkaufen      ");
102   textcolor(TC_YELLOW);
103   cprintf("q");
104   textcolor(TC_LIGHT_GRAY);
105   cprintf(") Beenden\r\n");
106 }
107
108 /*
109  * Prints a line and logs it to file. Every line can be at max 80 characters.
110  *
111  */
112 static void print_log(char *name, int32_t item_price, int16_t einheiten,
113                       char *nickname, char *rest) {
114   char *time = get_time();
115   uint8_t n;
116   char price[EUR_FORMAT_MINLEN + 1];
117   if (format_euro(price, sizeof(price), item_price) == NULL) {
118     cprintf("Preis %d konnte nicht umgerechnet werden\r\n", item_price);
119     exit(1);
120   }
121
122   /* TODO: teach the EUR sign to the printer.
123    * Until then, we just overwrite it with "E" */
124   price[EUR_FORMAT_MINLEN - 1] = 'E';
125   rest[EUR_FORMAT_MINLEN - 1] = 'E';
126
127   /* clang-format off */
128   n = snprintf(print_buffer, sizeof(print_buffer),
129         /* enable lower case letters -- 1 */
130         "%c"
131         /*  Transaction-ID (Anzahl verkaufter Einträge, inklusive des zu druckenden!)
132             -- 6-stellig */
133         "[%3u] "
134         /* Uhrzeit -- 8-stellig + 3 */
135         "%8s - "
136         /*  Eintragname (= Getränk) -- 9-stellig + 3 */
137         "%-" xstr(MAX_ITEM_NAME_LENGTH) "s - "
138         /*  Preis (in Cents) -- 8-stellig  + 3 */
139         "%" xstr(EUR_FORMAT_MINLEN) "s - "
140         /*  restguthaben (8-stellig) + 3 */
141         "%" xstr(EUR_FORMAT_MINLEN) "s - "
142         /*  Anzahl -- 2-stellig + 3 */
143         "%2d - "
144         /*  Nickname (falls es vom Guthaben abgezogen wird) -- 10-stellig + 4 */
145         "an %" xstr(NICKNAME_MAX_LEN)"s\r",
146         17, status.transaction_id, time, name, price, rest, einheiten,
147         (*nickname != '\0' ? nickname : "Unbekannt"));
148   /* clang-format on */
149   if (n > sizeof(print_buffer)) {
150     cprintf("\r\nprint_log(): print_buffer overflowed!\r\n"
151             "Wanted to write %d bytes\r\n%s\r\n",
152             n, print_buffer);
153     exit(1);
154   }
155
156   status.transaction_id++;
157   print_the_buffer();
158 }
159
160 /* dialog which is called for each bought item */
161 static signed int buy(char *name, int32_t price) {
162   BYTE matches = 0;
163   BYTE c, nickname_len;
164   int16_t einheiten;
165   char nickname[NICKNAME_MAX_LEN + 1];
166   char rest[EUR_FORMAT_MINLEN + 1];
167   struct credits_t *credit;
168
169   clrscr();
170   cprintf("Wieviel Einheiten \"%s\"? [1] \r\n", name);
171
172   einheiten = cget_number(1);
173
174   if (einheiten > 100 || einheiten < -100 || einheiten == 0) {
175     cprintf("\r\nEinheit nicht in [-100, 100] oder 0, Abbruch, dr" uUML "cke "
176             "RETURN...\r\n");
177     cget_return();
178     return 1;
179   }
180
181   cprintf("\r\nAuf ein Guthaben kaufen? Wenn ja, Nickname eingeben:\r\n");
182   nickname_len = cget_nickname(nickname, sizeof(nickname));
183
184   if (nickname_len && *nickname != '\0' && *nickname != PETSCII_SP) {
185     /* go through credits and remove the amount of money or set nickname
186      * to NULL if no such credit could be found */
187     credit = find_credit(nickname);
188     if (credit != NULL) {
189       while ((int32_t)credit->credit < (price * einheiten)) {
190         if (format_euro(rest, sizeof(rest), credit->credit) == NULL) {
191           cprintf("Preis %d konnte nicht umgerechnet werden\r\n",
192                   credit->credit);
193           exit(1);
194         }
195         cprintf(
196             "\r\n%s hat nicht genug Geld (%s). e) einzahlen a) abbruch \r\n",
197             nickname, rest);
198         c = cgetc();
199         if (c == 'e') {
200           deposit_credit(nickname);
201         } else {
202           return 0;
203         }
204       }
205       /* substract money */
206       credit->credit -= (price * einheiten);
207
208       if (format_euro(rest, sizeof(rest), credit->credit) == NULL) {
209         cprintf("Preis %d konnte nicht umgerechnet werden\r\n", credit->credit);
210         exit(1);
211       }
212
213       textcolor(TC_LIGHT_GREEN);
214       cprintf("\r\nVerbleibendes Guthaben f" uUML "r %s: %s. Dr" uUML
215               "cke RETURN...\r\n",
216               nickname, rest);
217       textcolor(TC_LIGHT_GRAY);
218       cget_return();
219       matches++;
220     } else {
221       textcolor(TC_LIGHT_RED);
222       cprintf("\r\nNickname nicht gefunden in der Guthabenverwaltung! Abbruch, "
223               "dr" uUML "cke RETURN...\r\n");
224       textcolor(TC_LIGHT_GRAY);
225       cget_return();
226       return 0;
227     }
228   }
229
230   money += price * einheiten;
231   items_sold += einheiten;
232   if (printing == 1)
233     print_log(name, price, einheiten, nickname, rest);
234
235   return einheiten;
236 }
237
238 void buy_stock(BYTE n) {
239   if (n >= status.num_items || status.status[n].item_name == NULL) {
240     cprintf("FEHLER: Diese Einheit existiert nicht.\r\n");
241     cget_return();
242     return;
243   }
244
245   status.status[n].times_sold +=
246       buy(status.status[n].item_name, status.status[n].price);
247 }
248
249 void buy_custom(void) {
250   char name[MAX_ITEM_NAME_LENGTH + 1];
251   int price;
252
253   clrscr();
254   cprintf("\r\nWas soll gekauft werden?\r\n");
255   if (cgetn_input(name, sizeof(name)) == 0)
256     return;
257
258   cprintf("\r\nWie teuer ist \"%s\" (in cents)?\r\n", name);
259
260   price = cget_number(0);
261
262   if (price == 0) {
263     cprintf("Kauf abgebrochen, dr" uUML "cke RETURN...\r\n");
264     cget_return();
265     return;
266   }
267
268   buy(name, price);
269 }
270
271 void set_time_interactive(void) {
272   char part[3] = {'\0', '\0', '\0'};
273   uint8_t day, tp1, tp2, tp3;
274   char *time_input, *time;
275   cprintf("Gib den aktuellen Tag des Events und Uhrzeit ein\r\n"
276           "(Format DHHMMSS):\r\n");
277   time_input = get_input();
278   part[0] = time_input[0];
279   day = atoi(part);
280   part[0] = time_input[1];
281   part[1] = time_input[2];
282   tp1 = atoi(part);
283   part[0] = time_input[3];
284   part[1] = time_input[4];
285   tp2 = atoi(part);
286   part[0] = time_input[5];
287   part[1] = time_input[6];
288   tp3 = atoi(part);
289   set_time(day, tp1, tp2, tp3);
290
291   time = get_time();
292   cprintf("\r\nZeit gesetzt: %s\r\n", time);
293 }
294
295 int main(void) {
296   char *c;
297   char *time;
298
299   init_globals();
300
301   videomode(VIDEOMODE_80x25);
302
303   /* clock CPU at double the speed (a whopping 2 Mhz!) */
304   fast();
305
306   /* Manipulate the VDC with IRQs turned off.
307    * KERNALs default IRQ handler will also try to read the VDC status
308    * register, which could interfere with our code trying to read it.
309    */
310   SEI();
311   vdc_patch_charset();
312   CLI();
313
314   clrscr();
315
316   /* Allocate logging buffer memory */
317   init_log();
318
319   /* Set time initially, c128 doesn't know it */
320   set_time_interactive();
321
322   /* disable interrupt driven VIC screen editor */
323   POKE(0xD8, 255);
324
325   /* Load configuration */
326   load_config();
327
328   /* Load items (= drinks) */
329   load_items();
330   /* Load credits */
331   load_credits();
332
333   time = get_time();
334   sprintf(print_buffer, "%c----------------------------------------------------"
335                         "----------------------------\r",
336           17);
337   print_the_buffer();
338   sprintf(print_buffer, "%cC128-Kasse Version " GV "\r", 17);
339   print_the_buffer();
340
341   sprintf(print_buffer,
342           "%cKasse gestartet um %s. Nutze logfile log-%u, offset %d.\r", 17,
343           time, log_num, log_heap_offset);
344   print_the_buffer();
345
346   print_header();
347
348   while (1) {
349     print_screen();
350     c = get_input();
351     /* ...display dialogs eventually */
352     if (*c >= PETSCII_0 && *c <= PETSCII_9) {
353       /* if the input starts with a digit, we will interpret it as a number
354        * for the item to be sold */
355       buy_stock(atoi(c));
356     } else if (*c == 'f') {
357       buy_custom();
358     } else if (*c == 's') {
359       cprintf("\r\nsaving items.. ");
360       save_items();
361       cprintf("ok\r\nsaving credits.. ");
362       save_credits();
363       cprintf("ok\r\nflushing log.. ");
364       log_flush();
365       cprintf("ok\r\nStatefile/Creditfile/Log gesichert, dr" uUML
366               "cke RETURN...\r\n");
367       cget_return();
368     } else if (*c == 'g') {
369       credit_manager();
370     } else if (*c == 'z') {
371       set_time_interactive();
372     } else if (*c == 'q')
373       break;
374   }
375   clrscr();
376   cprintf("\r\nBYEBYE\r\n");
377
378   return 0;
379 }