]> git.sur5r.net Git - c128-kasse/blob - src/kasse.c
e50999810d1fb63262553d1e4e33301b564129a0
[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     exit(1);
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, int item_price, int einheiten, char *nickname,
113                       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) -- 7-stellig  + 3 */
139         "%" xstr(EUR_FORMAT_MINLEN) "s - "
140         /*  restguthaben (7-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, unsigned int price) {
162   BYTE matches = 0;
163   BYTE c, nickname_len;
164   int 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 ((signed int)credit->credit < ((signed int)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   BYTE part[3] = {'0', '0', '\0'};
273   BYTE tp1, tp2, tp3;
274   char *time_input, *time;
275   cprintf("Gib die aktuelle Uhrzeit ein (Format HHMMSS):\r\n");
276   time_input = get_input();
277   part[0] = time_input[0];
278   part[1] = time_input[1];
279   tp1 = atoi(part);
280   part[0] = time_input[2];
281   part[1] = time_input[3];
282   tp2 = atoi(part);
283   part[0] = time_input[4];
284   part[1] = time_input[5];
285   tp3 = atoi(part);
286   set_time(tp1, tp2, tp3);
287
288   time = get_time();
289   cprintf("\r\nZeit gesetzt: %s\r\n", time);
290 }
291
292 int main(void) {
293   char *c;
294   char *time;
295
296   init_globals();
297
298   videomode(VIDEOMODE_80x25);
299
300   /* clock CPU at double the speed (a whopping 2 Mhz!) */
301   fast();
302
303   /* Manipulate the VDC with IRQs turned off.
304    * KERNALs default IRQ handler will also try to read the VDC status
305    * register, which could interfere with our code trying to read it.
306    */
307   SEI();
308   vdc_patch_charset();
309   CLI();
310
311   clrscr();
312
313   /* Allocate logging buffer memory */
314   init_log();
315
316   /* Set time initially, c128 doesn't know it */
317   set_time_interactive();
318
319   /* disable interrupt driven VIC screen editor */
320   POKE(0xD8, 255);
321
322   /* Load configuration */
323   load_config();
324
325   /* Load items (= drinks) */
326   load_items();
327   /* Load credits */
328   load_credits();
329
330   time = get_time();
331   sprintf(print_buffer, "%c----------------------------------------------------"
332                         "----------------------------\r",
333           17);
334   print_the_buffer();
335   sprintf(print_buffer, "%cC128-Kasse Version " GV "\r", 17);
336   print_the_buffer();
337
338   sprintf(print_buffer,
339           "%cKasse gestartet um %s. Nutze logfile log-%u, offset %d.\r", 17,
340           time, log_num, log_heap_offset);
341   print_the_buffer();
342
343   print_header();
344
345   while (1) {
346     print_screen();
347     c = get_input();
348     /* ...display dialogs eventually */
349     if (*c >= PETSCII_0 && *c <= PETSCII_9) {
350       /* if the input starts with a digit, we will interpret it as a number
351        * for the item to be sold */
352       buy_stock(atoi(c));
353     } else if (*c == 'f') {
354       buy_custom();
355     } else if (*c == 's') {
356       cprintf("\r\nsaving items.. ");
357       save_items();
358       cprintf("ok\r\nsaving credits.. ");
359       save_credits();
360       cprintf("ok\r\nflushing log.. ");
361       log_flush();
362       cprintf("ok\r\nStatefile/Creditfile/Log gesichert, dr" uUML
363               "cke RETURN...\r\n");
364       cget_return();
365     } else if (*c == 'g') {
366       credit_manager();
367     } else if (*c == 'z') {
368       set_time_interactive();
369     } else if (*c == 'q')
370       break;
371   }
372   clrscr();
373   cprintf("\r\nBYEBYE\r\n");
374
375   return 0;
376 }