]> git.sur5r.net Git - c128-kasse/commitdiff
* replaced files_existing with differentiated flags.
authormatze <matze@af93e077-1a23-4f1e-9cbe-9382a9d578f5>
Fri, 26 Oct 2007 21:00:32 +0000 (21:00 +0000)
committermatze <matze@af93e077-1a23-4f1e-9cbe-9382a9d578f5>
Fri, 26 Oct 2007 21:00:32 +0000 (21:00 +0000)
 * obsolete items/state files are not written to the disk image anymore

git-svn-id: https://shell.noname-ev.de/svn/kasse/c128@68 af93e077-1a23-4f1e-9cbe-9382a9d578f5

Makefile
src/config.c

index af273eccc7e05b9bd7a6856c573b126623feea1c..c860ac7f3afc2932781c2de269d28f10ff998a12 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,8 @@ package: all
        c1541 -attach kasse.d64 -delete itemz  || exit 0
 #      c1541 -attach kasse.d64 -write itemz  || exit 0
        c1541 -attach kasse.d64 -write kasse  || exit 0
-       c1541 -attach kasse.d64 -write state || exit 0 
-       c1541 -attach kasse.d64 -write items  || exit 0
+#      c1541 -attach kasse.d64 -write state || exit 0 
+#      c1541 -attach kasse.d64 -write items  || exit 0
 
 test: src/config.o test/test.o src/general.o
        ${CL} -t c128 src/config.o test/test.o src/general.o -o test
index db80ce38a36f92540227b92fde0ecf15f76d5013..d881af2fd9782504082dbf30bba804939a04a1e1 100644 (file)
@@ -20,7 +20,8 @@ unsigned char __fastcall__ _sysremove(const char *name);
 unsigned long int money = 0;
 unsigned long int items_sold = 0;
 BYTE printer_port = 4;
-static bool files_existing = false;
+static bool items_exists = false;
+static bool credits_exists = false;
 struct status_array_t status;
 struct credits_array_t credits;
 
@@ -32,45 +33,50 @@ struct credits_array_t credits;
  */
 bool lookup_needed_files() {
        BYTE lfn = 8;
-       BYTE files_existing = 0;
        struct cbm_dirent *dirent;
 
        if (cbm_opendir(lfn, (BYTE)8) != 0) {
                cprintf("could not open directory\r\n");
                return false;
        }
-       while (cbm_readdir(lfn, dirent) == 0)
-               if (    strcasecmp(dirent->name, "items") == 0 ||
-                       strcasecmp(dirent->name, "credits") == 0)
-                       files_existing++;
+       while (cbm_readdir(lfn, dirent) == 0) {
+               if (strcasecmp(dirent->name, "items") == 0)
+                       items_exists = true;
+               if (strcasecmp(dirent->name, "credits") == 0)
+                       credits_exists = true;
+       }
        cbm_closedir(lfn);
-       return (files_existing >= 2);
+       return credits_exists || items_exists;
 }
 
 void load_items() {
-       if (files_existing)
+       if (items_exists)
                cbm_load("items", (BYTE)8, &status);
+       else
+               memset(&status, 0, sizeof(struct status_array_t));
 }
 
 void load_credits() {
-       if (files_existing)
+       if (credits_exists)
                cbm_load("credits", (BYTE)8, &credits);
+       else
+               memset(&credits, 0, sizeof(struct credits_array_t));
 }
 
 void save_items() {
-       if (files_existing)
+       if (items_exists)
                _sysremove("items");
        cbm_save("items", (BYTE)8, &status, sizeof(struct status_array_t));
-       files_existing = true;
+       items_exists = true;
 }
 
 void save_credits() {
-       if (files_existing)
+       if (credits_exists)
                _sysremove("credits");
        cbm_save("credits", (BYTE)8, &credits, sizeof(struct credits_array_t));
-       files_existing = true;
+       credits_exists = true;
 }
 
 void load_config() {
-       files_existing = lookup_needed_files();
+       lookup_needed_files();
 }