]> 4ch.mooo.com Git - 16.git/blobdiff - src/lib/16_map.c
JSMN_STATIC is commented out for more memory
[16.git] / src / lib / 16_map.c
index 45c85760a6a95868cda4a652e72302dfb49a56b2..33c27d1446fb98d81c362e15519466160c1bd331 100755 (executable)
-/* Project 16 Source Code~
- * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
- *
- * This file is part of Project 16.
- *
- * Project 16 is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * Project 16 is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
- * write to the Free Software Foundation, Inc., 51 Franklin Street,
- * Fifth Floor, Boston, MA 02110-1301 USA.
- *
- */
-
-#include "16_map.h"
-
-// Ideally, preprocess json during compilation and read serialized data
-
-int jsoneq(const char *json, jsmntok_t *tok, const char *s) {
-       if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&
-                       strncmp(json + tok->start, s, tok->end - tok->start) == 0) {
-               return 0;
-       }
-       return -1;
-}
-
-void extract_map(const char *js, jsmntok_t *t, size_t count, map_t *map) {
-       int i, j, k, indent, inner_end;
-       bitmap_t bp;
-       #ifdef DEBUG_DUMPVARS
-       fprintf(stderr, "t->size=[%d]   ", t->size);
-       fprintf(stderr, "q=[%d] ", q);
-       fprintf(stderr, "indent= [%d]   ", indent);
-       fprintf(stderr, "js_sv= [%s]\n", js_sv);
-       #endif
-       map->tiles = malloc(sizeof(tiles_t));
-       map->tiles->btdata = malloc(sizeof(bitmap_t));
-       //fix this to be far~
-       //And a pointer
-       bp = bitmapLoadPcx("data/ed.pcx");
-       map->tiles->btdata = &bp;
-       map->tiles->tileHeight = 16;
-       map->tiles->tileWidth = 16;
-       map->tiles->rows = 1;
-       map->tiles->cols = 1;
-       map->tiles->debug_text=false;
-       
-       while(i<count) {
-               if(jsoneq(js, t, "layers" == 0)) {
-                       i++;
-                       map->data = malloc(sizeof(*byte) * t[i].size);
-                       inner_end = t[i].end;
-                       k = 0;
-                       while(t[i].start < inner_end) {
-                               if(jsoneq(js, t, "data") == 0) {
-                                       map->data[k] = malloc(sizeof(byte) * t[i+1].size);
-                                       for(j = 0; j < t[i+1].size; j++) {
-                                               map->data[k][j] = (byte)atoi(js + t[i+1+j].start);
-                                       }
-                                       i += j + 1;
-                                       k++;
-                               }
-                       }
-               }/*
-               if(jsoneq(js, t, "tilesets" == 0)) {
-                       i++;
-                       map->tiles = malloc(sizeof(*tiles_t) * t[i].size);
-                       inner_end = t[i].end;
-                       k = 0;
-                       while(t[i].start < inner_end) {
-                               if(jsoneq(js, t, "data") == 0) {
-                                       map->tiles[k] = malloc(sizeof(tiles_t));
-                                       bp = bitmapLoadPcx("data/ed.pcx");
-                                       map->tiles[k].btdata = &bp;
-                                       k++;
-                               }
-                       }
-               }*/
-
-               if (jsoneq(js, t, "height") == 0 && indent<=1) {
-                       map->height = atoi(js + t[i+1].start);
-                       #ifdef DEBUG_MAPVAR
-                       fprintf(stderr, "indent= [%d]   ", indent);
-                       fprintf(stderr, "h:[%d]\n", map->height);
-                       #endif
-                       i++;
-               }
-               else if(jsoneq(js, t, "width") == 0 && indent<=1) {
-                       map->width = atoi(js+t[i+1]->start);
-                       #ifdef DEBUG_MAPVAR
-                       fprintf(stderr, "indent= [%d]   ", indent);
-                       fprintf(stderr, "w:[%d]\n", map->width);
-                       #endif
-                       i++;
-               }
-               i++;
-       }
-}
-
-int loadmap(char *mn, map_t *map) {
-       char *js;
-       char js_ss[16];
-
-       jsmn_parser p;
-       jsmntok_t *tok = NULL;
-       size_t tokcount, file_s;
-
-       FILE *fh = fopen(mn, "r");
-
-       /* Prepare parser */
-       jsmn_init(&p);
-
-       file_s = filesize(fh);
-       js = malloc(file_s);
-       if(js == NULL) {
-               fprintf(stderr, "malloc(): errno = %d", 2);
-               fclose(fh);
-               return 3;
-       }
-       if(fread(js, 1, file_s, fh) != file_s) {
-               fprintf(stderr, "Map read error");
-               free(js);
-               fclose(fh);
-               return 1;
-       }
-
-       tokcount = jsmn_parse(&p, js, file_s, NULL, 0);
-       tok = malloc(tokcount*sizeof(jsmntok_t));
-       jsmn_parse(&p, js, file_s, tok, tokcount);
-       fprintf(stderr, "running dump~\n");
-       printf("%d\n", p.toknext);
-       extract_map(js, tok, tokcount, 0);
-
-       free(js);
-       free(tok);
-       fclose(fh);
-       
-       return 0;
-}
+/* Project 16 Source Code~\r
+ * Copyright (C) 2012-2019 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
+ *\r
+ * This file is part of Project 16.\r
+ *\r
+ * Project 16 is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * Project 16 is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
+ * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
+ * Fifth Floor, Boston, MA 02110-1301 USA.\r
+ *\r
+ */\r
+\r
+//TODO USE CA AND THIS FILE FORMAT\r
+\r
+#include "src/lib/16_map.h"\r
+//#define JSMN_STATIC\r
+#include "src/lib/jsmn/jsmn.h"\r
+#include <malloc.h>\r
+\r
+// Ideally, preprocess json during compilation and read serialized data\r
+\r
+int jsoneq(const char *json, jsmntok_t *tok, const char *s) {\r
+       if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&\r
+                       strncmp(json + tok->start, s, tok->end - tok->start) == 0) {\r
+               return 0;\r
+       }\r
+       return -1;\r
+}\r
+\r
+//TODO: WORK ON THIS LIKE CRAZY!       --sparky4\r
+//FIXME: please FIX THIS AND USE CA!   --sparky4\r
+void extract_map(const char *js, jsmntok_t *t, size_t count, map_t *map) {\r
+       int i, j, k, indent=0, inner_end;\r
+       char *s;\r
+       boolean objlay=0;\r
+       //bitmap_t bp;\r
+\r
+       i = 0;\r
+#define MAPLNAMESIZE t[i+1].end - t[i+1].start\r
+       while(i<count) {\r
+               if(jsoneq(js, &(t[i]), "layers") == 0) {\r
+                       i++;\r
+                       inner_end = t[i].end;\r
+                       k = 0;\r
+                       while(t[i].start < inner_end) {\r
+//#define DEBUG_DUMPVARS\r
+//#ifdef DEBUG_DUMPVARS\r
+//                             printf("t[%d].start=%d, %d\n", i, t[i].start, inner_end);\r
+//#endif\r
+                               if(!objlay){\r
+                               if(jsoneq(js, &(t[i]), "data") == 0) {\r
+#ifdef DEBUG_MAPDATA\r
+                                       printf("Layer %d data: (size is %d)[\n", k, t[i+1].size);\r
+#endif\r
+                                       map->layerdata[k].data = malloc(sizeof(byte) * t[i+1].size);//TODO: USE MM_ CA_ AND PM_\r
+                                       for(j = 0; j < t[i+1].size; j++) {\r
+                                               map->layerdata[k].data[j] = (byte)atoi(js + t[i+2+j].start);\r
+#ifdef DEBUG_MAPDATA\r
+                                               printf("%c",  map->layerdata[k].data[j]+44);\r
+#endif\r
+                                       }\r
+                                       i += j + 2;\r
+#ifdef DEBUG_MAPDATA\r
+                                       puts("\n]");\r
+#endif\r
+                               }else if(jsoneq(js, &(t[i]), "name") == 0) {\r
+#ifdef DEBUG_MAPVARS\r
+                                       printf("Layer %d's name: (size is %d)[\n", k, MAPLNAMESIZE);\r
+#endif\r
+                                       //map->layerdata[k].layername = malloc(sizeof(byte) * MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
+                                       strncpy(&(map->layerdata[k].layername), js+t[i+1].start, MAPLNAMESIZE);\r
+                                       if((map->layerdata[k].layername[MAPLNAMESIZE])!=0) map->layerdata[k].layername[MAPLNAMESIZE]='\0';\r
+                                       if(strstr(&map->layerdata[k].layername, "ob")) objlay=1;\r
+#ifdef DEBUG_MAPDATA\r
+                                       printf("%s", map->layerdata[k].layername);\r
+                                       printf("\n]\n");\r
+#endif\r
+                                       k++;\r
+                               }\r
+                               }else{ //objlay\r
+                                       if(jsoneq(js, &(t[i]), "objects") == 0) {\r
+#ifdef DEBUG_OBVARS\r
+                                               printf("objects detected\n");\r
+#endif\r
+#ifdef DEBUG_OBVARS\r
+\r
+#endif\r
+//                                             map->layerdata[k].layername = mAlloc(sizeof(byte) * MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
+//                                             strncpy(map->layerdata[k].layername, js+t[i+1].start, MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
+//                                             if(map->layerdata[k].layername[MAPLNAMESIZE]!=0) map->layerdata[k].layername[MAPLNAMESIZE]='\0';\r
+                                       }else if(jsoneq(js, &(t[i]), "name") == 0) {\r
+#ifdef DEBUG_OBVARS\r
+                                               printf("Object %d's name: ", k);//, MAPLNAMESIZE\r
+                                               printf("'%.*s'\n", t[i+1].end - t[i+1].start, js+t[i+1].start);\r
+#endif\r
+                                       }else if(jsoneq(js, &(t[i]), "properties") == 0) {\r
+#ifdef DEBUG_OBVARS\r
+                                               printf("        properties: %.*s\n", t[i+1].end - t[i+1].start, js+t[i+1].start);\r
+#endif\r
+                                       }else if(jsoneq(js, &(t[i]), "walkable") == 0) {\r
+                                                       printf("                walkable: %d\n", atoi(js + t[i+1].start));\r
+                                       }\r
+\r
+                               }//end objlay\r
+                               i++;//next token\r
+                       }//tokens\r
+               }//layers\r
+\r
+\r
+               if(jsoneq(js, &(t[i]), "tilesets") == 0) {\r
+                       i++;\r
+                       inner_end = t[i].end;\r
+                       k = 0;\r
+                       while(t[i].start < inner_end) {\r
+                               if(jsoneq(js, &(t[i]), "image") == 0) {\r
+                                       map->tiles = malloc(sizeof(tiles_t));//TODO: USE MM_ CA_ AND PM_\r
+                                       s = remove_ext((char *)js+t[i+1].start, '.', '/');\r
+                                       strcpy(map->tiles->imgname, s);\r
+                                       //And move to vrs, probably\r
+//                                     bp = bitmapLoadPcx("data/ed.pcx");\r
+//                                     map->tiles->btdata = &bp;\r
+                                       map->tiles->rows = 1;\r
+                                       map->tiles->cols = 1;\r
+#ifdef __DEBUG_MAP__\r
+                                       dbg_maptext=false;\r
+#endif\r
+                                       i++;\r
+                               }else if(jsoneq(js, &(t[i]), "tileheight") == 0) {\r
+                                       map->tiles->tileHeight = atoi(js + t[i+1].start);\r
+#ifdef DEBUG_MAPVARS\r
+                                       printf("Tile Height: %d\n", map->tiles->tileHeight);\r
+#endif\r
+                                       i++;\r
+                               }else if(jsoneq(js, &(t[i]), "tilewidth") == 0) {\r
+                                       map->tiles->tileWidth = atoi(js + t[i+1].start);\r
+#ifdef DEBUG_MAPVARS\r
+                                       printf("Tile Width: %d\n", map->tiles->tileWidth);\r
+#endif\r
+                                       i++;\r
+                               }\r
+                               i++;\r
+                               k++;\r
+                       }\r
+               }\r
+\r
+               if (jsoneq(js, &(t[i]), "height") == 0 && indent<=1) {\r
+                       map->height = atoi(js + t[i+1].start);\r
+#ifdef DEBUG_MAPVARS\r
+                       printf("Height: %d\n", map->height);\r
+#endif\r
+                       i++;\r
+               }\r
+               else if(jsoneq(js, &(t[i]), "width") == 0 && indent<=1) {\r
+                       map->width = atoi(js + t[i+1].start);\r
+#ifdef DEBUG_MAPVARS\r
+                       printf("Width: %d\n", map->width);\r
+#endif\r
+                       i++;\r
+               }\r
+               i++;\r
+       }\r
+}\r
+\r
+int newloadmap(char *mn, map_t *map) {\r
+       char *js;\r
+\r
+       jsmn_parser p;\r
+       jsmntok_t *tok = NULL;\r
+       size_t tokcount, file_s;\r
+\r
+       FILE *fh = fopen(mn, "r");\r
+       int status;\r
+\r
+       /* Prepare parser */\r
+       jsmn_init(&p);\r
+\r
+       file_s = filesize(fh);\r
+       js = malloc(file_s);//TODO: USE MM_ CA_ AND PM_\r
+       if(js == NULL) {\r
+               fprintf(stderr, "malloc(): errno = %d", 2);\r
+               fclose(fh);\r
+               return 3;\r
+       }\r
+       if(fread(js, 1, file_s, fh) != file_s) {\r
+               fprintf(stderr, "Map read error");\r
+               free(js);\r
+               fclose(fh);\r
+               return 1;\r
+       }\r
+       tokcount = jsmn_parse(&p, js, file_s, NULL, 0);\r
+       tok = malloc(tokcount*sizeof(jsmntok_t));//TODO: USE MM_ CA_ AND PM_\r
+       printf("Allocated %d tokens", tokcount);\r
+       jsmn_init(&p);\r
+       if((status = jsmn_parse(&p, js, file_s, tok, tokcount)) < 0)\r
+       {\r
+               printf("Error: %d\n", status);\r
+               return status;\r
+       }\r
+       else if(status != tokcount) { printf("Warning: used %d tok\n", status);}\r
+       extract_map(js, tok, tokcount, map);\r
+\r
+       free(js);       //TODO: USE MM_ CA_ AND PM_\r
+       free(tok);      //TODO: USE MM_ CA_ AND PM_\r
+       fclose(fh);     //TODO: USE MM_ CA_ AND PM_\r
+\r
+       return 0;\r
+}\r
+\r
+\r
+//======\r
+\r
+\r
+int CA_loadmap(char *mn, map_t *map, global_game_variables_t *gvar)\r
+{\r
+       jsmn_parser p;\r
+       jsmntok_t *tok = NULL;\r
+       size_t tokcount, file_s;\r
+\r
+       FILE *fh = fopen(mn, "r");\r
+       int status;\r
+\r
+       /* Prepare parser */\r
+       jsmn_init(&p);\r
+\r
+       file_s = filesize(fh);\r
+       CA_LoadFile(mn, MEMPTRCONV MAPSEGINLM, gvar);\r
+       tokcount = jsmn_parse(&p, (char const *)MAPSEGINLM, file_s, NULL, 0);\r
+       tok = malloc(tokcount*sizeof(jsmntok_t));//TODO: USE MM_ CA_ AND PM_\r
+//     printf("Allocated %d tokens", tokcount);\r
+       jsmn_init(&p);\r
+       if((status = jsmn_parse(&p, (char const *)MAPSEGINLM, file_s, tok, tokcount)) < 0)\r
+       {\r
+               printf("Error: %d\n", status);\r
+               return status;\r
+       }\r
+       else if(status != tokcount) { printf("Warning: used %d tok\n", status);}\r
+       extract_map((char const *)MAPSEGINLM, tok, tokcount, map);\r
+\r
+//     printf("freeing tok\n");\r
+       free(tok);      //TODO: USE MM_ CA_ AND PM_\r
+//     printf("fclose fh\n");\r
+       fclose(fh);     //TODO: USE MM_ CA_ AND PM_\r
+\r
+       return 0;\r
+}\r