]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_map.c
palette is now arrays
[16.git] / src / lib / 16_map.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */\r
22 \r
23 #include "src/lib/16_map.h"\r
24 \r
25 // Ideally, preprocess json during compilation and read serialized data\r
26 \r
27 int jsoneq(const char *json, jsmntok_t *tok, const char *s) {\r
28         if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&\r
29                         strncmp(json + tok->start, s, tok->end - tok->start) == 0) {\r
30                 return 0;\r
31         }\r
32         return -1;\r
33 }\r
34 \r
35 void extract_map(const char *js, jsmntok_t *t, size_t count, map_t *map) {\r
36         int i, j, k, indent=0, inner_end;\r
37         char *s;\r
38         boolean objlay=0;\r
39         //bitmap_t bp;\r
40 \r
41         i = 0;\r
42 #define MAPLNAMESIZE t[i+1].end - t[i+1].start\r
43         while(i<count) {\r
44                 if(jsoneq(js, &(t[i]), "layers") == 0) {\r
45                         i++;\r
46                         inner_end = t[i].end;\r
47                         k = 0;\r
48                         while(t[i].start < inner_end) {\r
49 #ifdef DEBUG_DUMPVARS\r
50                                 printf("t[%d].start=%d, %d\n", i, t[i].start, inner_end);\r
51 #endif\r
52                                 if(!objlay){\r
53                                 if(jsoneq(js, &(t[i]), "data") == 0) {\r
54 #ifdef DEBUG_MAPDATA\r
55                                         printf("Layer %d data: (size is %d)[\n", k, t[i+1].size);\r
56 #endif\r
57                                         map->layerdata[k].data = malloc(sizeof(byte) * t[i+1].size);//TODO: USE MM_ CA_ AND PM_\r
58 //                                      map->data = (map->layerdata[k].data); //for backwards compatibility for rest of code\r
59                                         for(j = 0; j < t[i+1].size; j++) {\r
60                                                 //map->layerdata[k][j] = (byte)atoi(js + t[i+2+j].start);\r
61                                                 map->layerdata[k].data[j] = (byte)atoi(js + t[i+2+j].start);\r
62 #ifdef DEBUG_MAPDATA\r
63                                                 //printf("[%d,%d]%d", k, j, map->MAPDATAPTK[j]);\r
64                                                 printf("%c",  map->MAPDATAPTK[j]+44);\r
65                                                 //fprintf(stdout, "%c", map->data[j]+44);\r
66 #endif\r
67                                         }\r
68                                         i += j + 2;\r
69 #ifdef DEBUG_MAPDATA\r
70                                         puts("\n]");\r
71 #endif\r
72                                 }else if(jsoneq(js, &(t[i]), "name") == 0) {\r
73 #ifdef DEBUG_MAPDATA\r
74                                         printf("Layer %d's name: (size is %d)[\n", k, MAPLNAMESIZE);\r
75 #endif\r
76                                         map->layerdata[k].layername = malloc(sizeof(byte) * MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
77                                         strncpy(map->layerdata[k].layername, js+t[i+1].start, MAPLNAMESIZE);\r
78                                         if(map->layerdata[k].layername[MAPLNAMESIZE]!=0) map->layerdata[k].layername[MAPLNAMESIZE]='\0';\r
79                                         if(strstr(map->layerdata[k].layername, "ob")) objlay=1;\r
80 #ifdef DEBUG_MAPDATA\r
81                                         printf("%s", map->layerdata[k].layername);\r
82                                         printf("\n]\n");\r
83 #endif\r
84                                         k++;\r
85                                 }\r
86                                 }else{ //objlay\r
87                                 if(jsoneq(js, &(t[i]), "objects") == 0) {\r
88 #ifdef DEBUG_MAPDATA\r
89                                         printf("objects detected\n");\r
90 #endif\r
91 //                                      map->layerdata[k].layername = malloc(sizeof(byte) * MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
92 //                                      strncpy(map->layerdata[k].layername, js+t[i+1].start, MAPLNAMESIZE);//TODO: USE MM_ CA_ AND PM_\r
93 //                                      if(map->layerdata[k].layername[MAPLNAMESIZE]!=0) map->layerdata[k].layername[MAPLNAMESIZE]='\0';\r
94                                 }else if(jsoneq(js, &(t[i]), "name") == 0) {\r
95 #ifdef DEBUG_MAPDATA\r
96                                         printf("Object %d's name: (size is %d)[\n", k, MAPLNAMESIZE);\r
97                                         printf("'%.*s'", t[i+1].end - t[i+1].start, js+t[i+1].start);\r
98                                         printf("\n]\n");\r
99 #endif\r
100                                         }\r
101                                 }\r
102                                 i++;\r
103                         }\r
104                 }\r
105 \r
106 \r
107                 if(jsoneq(js, &(t[i]), "tilesets") == 0) {\r
108                         i++;\r
109                         inner_end = t[i].end;\r
110                         k = 0;\r
111                         while(t[i].start < inner_end) {\r
112                                 if(jsoneq(js, &(t[i]), "image") == 0) {\r
113                                         map->tiles = malloc(sizeof(tiles_t));//TODO: USE MM_ CA_ AND PM_\r
114                                         s = remove_ext((char *)js+t[i+1].start, '.', '/');\r
115                                         strcpy(map->tiles->imgname, s);\r
116                                         //And move to vrs, probably\r
117 //                                      bp = bitmapLoadPcx("data/ed.pcx");\r
118 //                                      map->tiles->btdata = &bp;\r
119                                         map->tiles->rows = 1;\r
120                                         map->tiles->cols = 1;\r
121 #ifdef __DEBUG_MAP__\r
122                                         dbg_maptext=false;\r
123 #endif\r
124                                         i++;\r
125                                 }else if(jsoneq(js, &(t[i]), "tileheight") == 0) {\r
126                                         map->tiles->tileHeight = atoi(js + t[i+1].start);\r
127 #ifdef DEBUG_MAPVAR\r
128                                         printf("Tile Height: %d\n", map->tiles->tileHeight);\r
129 #endif\r
130                                         i++;\r
131                                 }else if(jsoneq(js, &(t[i]), "tilewidth") == 0) {\r
132                                         map->tiles->tileWidth = atoi(js + t[i+1].start);\r
133 #ifdef DEBUG_MAPVAR\r
134                                         printf("Tile Width: %d\n", map->tiles->tileWidth);\r
135 #endif\r
136                                         i++;\r
137                                 }\r
138                                 i++;\r
139                                 k++;\r
140                         }\r
141                 }\r
142 \r
143                 if (jsoneq(js, &(t[i]), "height") == 0 && indent<=1) {\r
144                         map->height = atoi(js + t[i+1].start);\r
145 #ifdef DEBUG_MAPVAR\r
146                         printf("Height: %d\n", map->height);\r
147 #endif\r
148                         i++;\r
149                 }\r
150                 else if(jsoneq(js, &(t[i]), "width") == 0 && indent<=1) {\r
151                         map->width = atoi(js + t[i+1].start);\r
152 #ifdef DEBUG_MAPVAR\r
153                         printf("Width: %d\n", map->width);\r
154 #endif\r
155                         i++;\r
156                 }\r
157                 i++;\r
158         }\r
159 }\r
160 \r
161 int newloadmap(char *mn, map_t *map) {\r
162         char *js;\r
163 \r
164         jsmn_parser p;\r
165         jsmntok_t *tok = NULL;\r
166         size_t tokcount, file_s;\r
167 \r
168         FILE *fh = fopen(mn, "r");\r
169         int status;\r
170 \r
171         /* Prepare parser */\r
172         jsmn_init(&p);\r
173 \r
174         file_s = filesize(fh);\r
175         js = malloc(file_s);//TODO: USE MM_ CA_ AND PM_\r
176         if(js == NULL) {\r
177                 fprintf(stderr, "malloc(): errno = %d", 2);\r
178                 fclose(fh);\r
179                 return 3;\r
180         }\r
181         if(fread(js, 1, file_s, fh) != file_s) {\r
182                 fprintf(stderr, "Map read error");\r
183                 free(js);\r
184                 fclose(fh);\r
185                 return 1;\r
186         }\r
187         tokcount = jsmn_parse(&p, js, file_s, NULL, 0);\r
188         tok = malloc(tokcount*sizeof(jsmntok_t));//TODO: USE MM_ CA_ AND PM_\r
189         printf("Allocated %d tokens", tokcount);\r
190         jsmn_init(&p);\r
191         if((status = jsmn_parse(&p, js, file_s, tok, tokcount)) < 0)\r
192         {\r
193                 printf("Error: %d\n", status);\r
194                 return status;\r
195         }\r
196         else if(status != tokcount) { printf("Warning: used %d tok\n", status);}\r
197         extract_map(js, tok, tokcount, map);\r
198 \r
199         free(js);\r
200         free(tok);\r
201         fclose(fh);\r
202 \r
203         return 0;\r
204 }\r
205 \r
206 \r
207 //======\r
208 \r
209 \r
210 #define MAPBUFINLM (gvar->ca.camap.mapsegs)\r
211 int CA_loadmap(char *mn, map_t *map, global_game_variables_t *gvar)\r
212 {\r
213         jsmn_parser p;\r
214         jsmntok_t *tok = NULL;\r
215         size_t tokcount, file_s;\r
216 \r
217         FILE *fh = fopen(mn, "r");\r
218         int status;\r
219 \r
220         /* Prepare parser */\r
221         jsmn_init(&p);\r
222 \r
223         file_s = filesize(fh);\r
224         CA_LoadFile(mn, &MAPBUFINLM, gvar);\r
225         tokcount = jsmn_parse(&p, MAPBUFINLM, file_s, NULL, 0);\r
226         tok = malloc(tokcount*sizeof(jsmntok_t));\r
227 //      printf("Allocated %d tokens", tokcount);\r
228         jsmn_init(&p);\r
229         if((status = jsmn_parse(&p, MAPBUFINLM, file_s, tok, tokcount)) < 0)\r
230         {\r
231                 printf("Error: %d\n", status);\r
232                 return status;\r
233         }\r
234         else if(status != tokcount) { printf("Warning: used %d tok\n", status);}\r
235         extract_map(MAPBUFINLM, tok, tokcount, map);\r
236 \r
237         free(tok);\r
238         fclose(fh);\r
239 \r
240         return 0;\r
241 }\r