281b29a94bca9d1d1ee9b4608add892ac8cd2ea4
[henge/apc.git] / src / ir.c
1 /*!@file
2 \brief IR Memory Implementation
3 \details Intermediary memory management
4 \author Jordan Lavatai
5 \date Aug 2016
6 ----------------------------------------------------------------------------*/
7 #include <stdlib.h>
8 #include <stdio.h>
9 #include <unitypes.h> //uint8_t as a char
10 #include <unistr.h> //u32_cpy
11 #include <stdint.h> //uint64_t
12 #include <string.h> //memset
13 #include <unistd.h> //u8_* functions
14 #include "apc.h"
15
16
17 extern
18 int
19 name_u8_cpy(struct name*, struct name*);
20
21 extern
22 int
23 name_u8_cmp(struct name*, struct name*);
24
25 extern
26 int
27 name_u8_set(struct name*, ucs4_t);
28
29 int
30 ir_init(void);
31 struct cdat*
32 alloc_cdat(void);
33 struct odat*
34 alloc_odat(void);
35 void
36 alloc_vdat(void);
37 struct link*
38 alloc_link(void);
39 struct ref*
40 alloc_ref(void);
41 struct set*
42 alloc_set(void);
43 struct cdat*
44 curr_cdat(void);
45 struct odat*
46 curr_odat(void);
47 struct vdat*
48 curr_vdat(void);
49 struct map*
50 curr_map(void);
51 struct set*
52 curr_cdat_set(void);
53 struct set*
54 curr_set(void);
55 struct ref*
56 curr_ref(void);
57 struct model*
58 curr_model(void);
59
60 /* ir.c */
61 void
62 inc_posts(void);
63 void
64 push_cdat(struct name*);
65 void
66 pop_cdat(void);
67 void
68 insert_refid(int);
69 void
70 insert_link_name(struct name*);
71 void
72 insert_link_namelist(struct name*);
73 void
74 insert_ss_name(struct name*);
75 void
76 insert_ss_namelist(struct name*);
77 void
78 insert_mlink(struct name*, int);
79 void
80 insert_vlink(struct name*, int);
81 void
82 insert_ref(struct odat*, int);
83 void
84 alloc_vdat(void);
85 void
86 insert_vdat(void);
87 void
88 insert_map(struct name*, int, int, int, int, uint8_t*);
89 void
90 insert_framesheet(struct name*, int, int, int, int, uint8_t*);
91
92
93
94 //type safety handled by macro expansion (do not call these directly from code, make dependent macros for access to these)
95 #define CHUNKS_LEN(STACK) ((STACK).csp - (STACK).chunks)
96 #define CURRENT_CHUNK(STACK) ((STACK).chunks[CHUNKS_LEN(STACK) - 1])
97 #define CHUNKS_FULL(STACK) ( (STACK).csp >= \
98 (STACK).chunks + MAX_CHUNKS * (STACK).chunk_size)
99 #define CURRENT_DSP(STACK,TYPE) ((TYPE*) ((STACK).dsp[CHUNKS_LEN(STACK) - 1]))
100 #define DATA_FULL(STACK,TYPE) ((void*) CURRENT_DSP(STACK,TYPE) >= \
101 (CURRENT_CHUNK(STACK) + (STACK).chunk_size))
102 #define CSP_PUSH(STACK) (*(++(STACK).csp) = malloc((STACK).chunk_size))
103 #define CURRENT_DATP(STACK,TYPE) (((TYPE**)(STACK).dsp)[CHUNKS_LEN(STACK) - 1])
104 #define PREVIOUS_DATP(STACK,TYPE) (((TYPE**)(STACK).dsp)[CHUNKS_LEN(STACK) - 2])
105 #define ALLOC_DAT(STACK,TYPE) (++CURRENT_DATP(STACK,TYPE))
106 #define INIT_STACK(STACK,TYPE) \
107 { int i; \
108 (STACK).chunk_size = PAGES_PER_CHUNK * pagesize; \
109 (STACK).max_dats = (STACK).chunk_size / sizeof (TYPE); \
110 CSP_PUSH(STACK); \
111 for( i = 0; i < MAX_CHUNKS; i++){ \
112 (STACK).dsp[i] += pagesize; \
113 } \
114 }
115 //Stack-specific macros (called directly from code (safety enforcement)
116 #define INIT_ODAT() (INIT_STACK(ocs, struct odat))
117 #define CURRENT_ODAT() (CURRENT_DATP(ocs,struct odat))
118 #define ODAT_FULL() (DATA_FULL(ocs,struct odat))
119 #define ODAT_ALLOC() (ALLOC_DAT(ocs,struct odat))
120 #define OCS_FULL() (CHUNKS_FULL(ocs))
121 #define INIT_VDAT() (INIT_STACK(vcs, struct vdat))
122 #define CURRENT_VDAT() (CURRENT_DATP(vcs,struct vdat))
123 #define VDAT_FULL() (DATA_FULL(vcs,struct vdat))
124 #define VDAT_ALLOC() (ALLOC_DAT(vcs,struct vdat))
125 #define VCS_FULL() (CHUNKS_FULL(vcs))
126 #define INIT_CDAT() (INIT_STACK(ccs, struct cdat))
127 #define CURRENT_CDAT() (CURRENT_DATP(ccs,struct cdat))
128 #define CDAT_FULL() (DATA_FULL(ccs, struct cdat))
129 #define CDAT_ALLOC() (ALLOC_DAT(ccs, struct cdat))
130 #define CCS_FULL() (CHUNKS_FULL(ccs))
131 #define INIT_SET() (INIT_STACK(scs, struct set))
132 #define CURRENT_SET() (CURRENT_DATP(scs, struct set))
133 #define SET_FULL() (DATA_FULL(scs, struct set))
134 #define SET_ALLOC() (ALLOC_DAT(scs, struct set))
135 #define SCS_FULL() (CHUNKS_FULL(scs))
136 #define INIT_LINK() (INIT_STACK(lcs, struct link))
137 #define CURRENT_LINK() (CURRENT_DATP(lcs,struct link))
138 #define LDAT_FULL() (DATA_FULL(lcs, struct link))
139 #define LDAT_ALLOC() (ALLOC_DAT(lcs, struct link))
140 #define LCS_FULL() (CHUNKS_FULL(lcs))
141 #define INIT_POST() (INIT_STACK(rcs, struct ref))
142 #define CURRENT_POST() (CURRENT_DATP(pcs,struct ref))
143 #define POST_FULL() (DATA_FULL(pcs,struct ref))
144 #define POST_ALLOC() (ALLOC_DAT(pcs,struct ref))
145 #define PCS_FULL() (CHUNKS_FULL(pcs))
146 #define INIT_REF() (INIT_STACK(rcs, struct ref))
147 #define CURRENT_REF() (CURRENT_DATP(rcs,struct ref))
148 #define PREVIOUS_REF() (PREVIOUS_DATP(rcs, struct ref))
149 #define REF_FULL() (DATA_FULL(rcs,struct ref))
150 #define REF_ALLOC() (ALLOC_DAT(rcs,struct ref))
151 #define RCS_FULL() (CHUNKS_FULL(rcs))
152 //Metadata
153 #define CURRENT_MODEL() (CURRENT_VDAT()->model_list[CURRENT_VDAT()->num_models])
154
155
156
157 /* Dynamically allocate memory for a class data structure, */
158 /* or cdat, after a class has been identified in a grammar. */
159 /* We also create a stack of class pointers so that */
160 /* we can access the cdat during processing of that */
161 /* cdats sets and elements, a requirement because the */
162 /* nature of recursive classes prevents us from accessing */
163 /* the cdat based on the previous index into cdat_buf, */
164 /* which is a list of all allocated cdats */
165 /* Cdats: A cdat is a class data structure. Cdats serve as the central */
166 /* data types of the IR. Cdats contain pointers to their subclasses so that the relationship between */
167 /* classes can be determined, but the subclasses are not represented inside */
168 /* of the cdat itself but rather in subsequent cdats in cdat_buf. We */
169 /* can determine the number of subclasses (the last index into cdat_buf */
170 /* that represents a subclass of some arbitrary cdat) each cdat has by */
171 /* incrementing num_classes during parse time. */
172 /* TODO: Should classes point to their parent class? */
173 /* TODO: Talk more about cdat set structure */
174 struct cdat {
175 struct name name;
176 int idx;
177 int num_classes;
178 int num_sets;
179 struct cdat* class_list[MAX_CLASSES];
180 struct set* set_list[MAX_SETS];
181 };
182
183
184 /* Sets: What is a set?
185 Instantiation?
186 Associations?
187 Containment?
188 Usage?
189 The set is populated at parse time AFTER the elements are populated, due to
190 the nature of bottom up parsing. */
191 struct set {
192 int cdat_idx;
193 int num_sets;
194 struct set* set_list[MAX_SETS];
195 };
196
197 /* Refs: Each set/ele has a reference to its object data (odat) through a refid.
198 refids are unsigned 64 byte integers that map to the hex values RGBA. During
199 the construction of the directory structure, users can choose a RGBA value for
200 each object that any other object can refer to via links (see link). If a user
201 does not choose an RGBA value, then the object is given one from the system space.
202 We maintain a doubly linked list of refs in the ref_buf at parse time so that
203 links can be resolved after the parsing of the directory structure is complete.
204 For every 16th ref, we create a post so that we can reduce on the search time for
205 a random access. */
206
207 struct ref {
208 int type; //TODO: Is this needed?
209 struct ref* nextref;
210 struct ref* lastref;
211 struct odat* odatp;
212 int refid; //0xFFFFFF->digit
213 };
214
215 /* Links: At parse time, a set/ele can include a link in their
216 grammar representation instead of the actual data and this signifies
217 to the APC that that set/ele wishes to use the data of another
218 set/ele, either its video data (vdat) or object data (odat). The link
219 itself contains the type of link it is, the refid OR name, and
220 which set/ele created the link. During parse time, links can be made
221 to o/vdats that have yet to be parsed. In order to accomodate for this,
222 we resolve all links AFTER parse time by iterating through the link_buf,
223 finding the refid that was stored for some object (if the refid exists),
224 and creating a relative pointer from the original object to the data that
225 was linked */
226
227 /* TODO: Explain links more betta */
228
229 struct olink {
230 int src_refid;
231 };
232
233 struct vlink {
234 int src_refid;
235 struct name src_animname;
236 struct name src_namelist[MAX_DEPTH];
237 };
238
239 struct mlink {
240 int src_refid;
241 struct name src_mapname;
242 struct name src_namelist[MAX_DEPTH];
243
244 };
245
246 union link_t {
247 struct vlink vlink;
248 struct mlink mlink;
249 struct olink olink;
250 };
251
252
253 /* From: src odat ()To: dest odat (refid)*/
254 struct link {
255 int type; //1 = olink, 2 = vlink, 3 = mlink
256 union link_t link_t;
257 int dest_refid; //if it exists
258 struct odat* dest_odatp;
259
260 };
261
262 struct map {
263 struct name name;
264 int height;
265 int width;
266 uint8_t filepath[FPATH_MAX];
267 };
268
269 /* Odats: Odats consist of the object data necessary for
270 each object. Odats are sometimes referred to as archetypes
271 at compile-time, in order to distinguish the difference from
272 a runtime object and a compile-time object.
273 TODO: Need more info about objects at runtime, to described
274 the reasoning behind odat structure at compile-time*/
275 struct odat {
276 struct name name;
277 int refid;
278 int ismap;
279 int vdat_idx;
280 struct link* linkp;
281 struct vdat* vdatp;
282 struct odat* parent_odatp; // odat == set ? null : set refid
283 struct ref* refp; /* pointer to it's ref on ref_list */
284 struct map map; //only valid if odat ismap
285
286 };
287
288 /* A framesheet is a grouping of animation frames in
289 a single direction (N,W,S,E) */
290 struct framesheet {
291 int width;
292 int height;
293 uint8_t filepath[FPATH_MAX];
294 int num_frames;
295
296 };
297
298 /* A model is a collection of framesheets for every
299 direction (N,W,S,E,NW,NE,SW,SE)*/
300 /* NAMED spritesheet */
301 struct model {
302 struct name name;
303 struct framesheet spritesheet[8]; //one for each
304 };
305
306 /* Vdat: Vdats are the video data of each object. They can not be
307 created as a stand alone object (because they consist solely
308 of animation information and not the map which the
309 animation manipulates). Vdats have a list of models for every
310 animation that the vdats odat can do for that vdat*/
311 struct vdat {
312 struct odat* creator; //pointer to odat that made this vdat
313 int num_models;
314 uint8_t filename[FNAME_MAX];
315 int height;
316 int width;
317 uint8_t filepath[FPATH_MAX];
318 struct model model_list[MAX_MODELS];
319 };
320
321
322 struct set_frame
323 { struct name namelist[MAX_DEPTH];
324 int num_names;
325 struct set* setp;
326 struct odat* odatp;
327 } ;
328
329
330
331 struct set_stack
332 { struct set_frame set_frames[MAX_DEPTH];
333 int curr_depth; //used to get most recently created set/odat + to check for undefined parents of namelists
334 };
335
336
337 //"type free" chunk stacking
338 struct chunk_stack
339 { void* chunks[MAX_CHUNKS];
340 void* *csp; //chunk stack pointer
341 void* dsp[MAX_CHUNKS]; //dat stack pointer (per chunk)
342 int chunk_size; //size of a chunk (including its forfeited page)
343 int max_dats; //number of dats per chunk for this stack
344 } ocs, vcs, ccs, rcs, lcs, pcs, scs; //odat, vdat, cdat, ref, link, post stacks
345
346
347
348
349 /* The cdat_stack is a stack pointers to cdat pointers, the top of which is
350 the cdat that is currently being parsed. Whenever a new cdat is recognized
351 by the grammar (CLOPEN), a cdat is pushed onto the cdat_stack, and we refer
352 to this cdat through the macro CURR_CDAT. By keeping a cdat_stack, we have
353 access to the current cdat so that the elements and sets can populate themselves
354 in the cdat accordingly. */
355
356
357 struct cdat* cdat_stack[MAX_CLASSES];
358 struct cdat** cdat_stackp;
359
360 struct set_stack ss;
361 struct name set_namelist[MAX_DEPTH];
362 int set_numnames = 0;
363
364 struct name link_namelist[MAX_DEPTH];
365 int link_numnames = 0;
366
367 int num_cdats = 0;
368 int num_odats = 0;
369 int num_vdats = 0;
370 int num_sets = 0;
371 int num_refs = 0;
372 int ss_refid = 0x0FFFFFFF; /* system space for refids */
373 int num_posts = 0;
374 int num_links = 0;
375 int num_models = 0;
376 long pagesize = 0;
377
378
379 /* The initalization function of the IR. */
380 int
381 ir_init()
382 { struct name name;
383
384
385 uint8_t root[4] = "root";
386
387 u8_stpncpy(name.name, root, 4);
388
389 pagesize = sysconf(_SC_PAGESIZE);
390
391 INIT_CDAT();
392 *cdat_stackp = CURRENT_CDAT();
393 name_u8_cpy(&(*cdat_stackp)->name, &name);
394
395 INIT_ODAT();
396 INIT_VDAT();
397 VDAT_ALLOC(); //NULL vdat
398 VDAT_ALLOC(); //First vdat req. because alloc_vdat happens after vdat is reduced
399 INIT_SET();
400 INIT_LINK();
401 INIT_REF();
402 INIT_POST();
403
404
405 return 0;
406
407 }
408
409 void
410 ir_quit()
411 {
412 int i;
413
414 for(i = 0; i < CHUNKS_LEN(ccs) ; i++)
415 {
416 free(ccs.chunks[i]);
417 }
418 for(i = 0; i < CHUNKS_LEN(ocs); i++)
419 {
420 free(ocs.chunks[i]);
421 }
422 for(i = 0; i < CHUNKS_LEN(vcs) ; i++)
423 {
424 free(vcs.chunks[i]);
425 }
426 for(i = 0; i < CHUNKS_LEN(rcs); i++)
427 {
428 free(rcs.chunks[i]);
429 }
430 for(i = 0; i < CHUNKS_LEN(lcs); i++)
431 {
432 free(lcs.chunks[i]);
433 }
434 for(i = 0; i < CHUNKS_LEN(pcs); i++)
435 {
436 free(pcs.chunks[i]);
437 }
438
439 }
440
441 struct cdat*
442 alloc_cdat()
443 {
444 num_cdats++;
445 if(CDAT_FULL())
446 { if(CCS_FULL())
447 { fprintf(stderr, "You have allocated to many (%d) cdats ", num_cdats);
448 exit(EXIT_FAILURE);
449 }
450 else
451 CSP_PUSH(ccs);
452 }
453 else
454 CDAT_ALLOC();
455
456 return CURRENT_CDAT();
457 }
458
459 //these should probably be inline
460 struct odat*
461 alloc_odat
462 ()
463 {
464 num_odats++;
465 if(ODAT_FULL())
466 { if(!OCS_FULL())
467 { fprintf(stderr, "You have allocated to many (%d) odats ", num_odats);
468 exit(EXIT_FAILURE);
469 }
470 else
471 CSP_PUSH(ocs);
472 }
473 else
474 ODAT_ALLOC();
475
476 return CURRENT_ODAT();
477 }
478
479 void
480 alloc_vdat
481 ()
482 { num_vdats++;
483 if(VDAT_FULL())
484 { if(!VCS_FULL())
485 { fprintf(stderr, "You have allocated to many (%d) vdats ", num_vdats);
486 exit(EXIT_FAILURE);
487 }
488 else
489 CSP_PUSH(vcs);
490 }
491 else
492 VDAT_ALLOC();
493
494
495 }
496
497 struct set*
498 alloc_set
499 ()
500 { num_sets++;
501 if(SET_FULL())
502 { if(!SCS_FULL())
503 { fprintf(stderr, "You have allocated to many (%d) sets ", num_sets);
504 exit(EXIT_FAILURE);
505 }
506 else
507 CSP_PUSH(scs);
508 }
509 else
510 SET_ALLOC();
511
512 return CURRENT_SET();
513 }
514
515
516 struct link*
517 alloc_link
518 ()
519 { num_links++;
520 if(LDAT_FULL())
521 { if(!LCS_FULL())
522 { fprintf(stderr, "You have allocated to many (%d) links ", num_links);
523 exit(EXIT_FAILURE);
524 }
525 else
526 CSP_PUSH(lcs);
527 }
528 else
529 LDAT_ALLOC();
530
531 return CURRENT_LINK();
532
533 }
534
535 struct ref*
536 alloc_ref
537 ()
538 { num_refs++;
539 if(REF_FULL())
540 { if(!RCS_FULL())
541 { fprintf(stderr, "You have allocated to many (%d) refs ", num_refs);
542 exit(EXIT_FAILURE);
543 }
544 else
545 CSP_PUSH(rcs);
546 }
547 else
548 REF_ALLOC();
549
550
551 if(num_refs % 16 == 0)
552 { CURRENT_POST() = CURRENT_REF();
553 inc_posts();
554 }
555
556 return CURRENT_REF();
557 }
558
559 void
560 inc_posts()
561 { num_posts++;
562 if(POST_FULL())
563 { if(!PCS_FULL())
564 { fprintf(stderr, "You have allocated to many (%d) refs ", num_posts);
565 exit(EXIT_FAILURE);
566 }
567 else
568 CSP_PUSH(pcs);
569 }
570 else
571 POST_ALLOC();
572
573 }
574
575 struct cdat*
576 curr_cdat
577 ()
578 {
579 return (*cdat_stackp);
580 }
581
582 struct odat*
583 curr_odat
584 ()
585 {
586 return CURRENT_ODAT();
587 }
588
589 struct vdat*
590 curr_vdat
591 ()
592 {
593 return CURRENT_VDAT();
594 }
595
596 struct set*
597 curr_cdat_set
598 ()
599 {
600 return CURRENT_SET();
601 }
602
603 struct set*
604 curr_set
605 ()
606 {
607 return CURRENT_SET();
608 }
609
610 struct ref*
611 curr_ref
612 ()
613 {
614 return CURRENT_REF();
615 }
616 struct ref*
617 prev_ref
618 ()
619 {
620 return PREVIOUS_REF();
621 }
622 struct model*
623 curr_model
624 ()
625 {
626 return &CURRENT_MODEL();
627 }
628
629 /* IR.C*/
630 void
631 push_cdat
632 ( name )
633 struct name* name;
634 {
635 struct cdat* curr_cdatp;
636
637 curr_cdatp = alloc_cdat();
638
639 name_u8_cpy(&curr_cdatp->name, name);
640 curr_cdatp->idx = num_cdats;
641
642 /* Set the cdat as a subclass of the previous cdat */
643 (*cdat_stackp)->class_list[(*cdat_stackp)->num_classes] = curr_cdatp;
644 /* Push the cdat onto the cdat_stack */
645 *++cdat_stackp = curr_cdatp;
646
647 }
648
649 void
650 pop_cdat
651 ()
652 {
653 cdat_stackp--;
654 }
655
656
657 void
658 insert_set_name
659 ( name )
660 struct name* name;
661 {
662 //Push name onto current namelist, set the set_namelist.
663 name_u8_cpy(&set_namelist[set_numnames++], name);
664
665
666 }
667
668
669 void
670 insert_set_namelist
671 ( name )
672 struct name* name;
673 { int depth, nameidx, i;
674
675 insert_set_name(name);
676
677 //Check if entire string matches first? Only possible if namelist is contiguous (uint8_t strings seperated by \0)
678 //Create odats/sets for each name in namelist where nameidx > ns_depth
679 //first check if any parts of namelist matches what is currently on namestack
680 //we can gauruntee that from ns_depth + 1 -> set_numnames namelists dont match. x
681
682
683 //if name_list doesnt match, from the first depth at which namelist doesnt match
684 //remove the nameframes namelist (zero out ones below?) and replace with current namelist,
685 //then allocate a new odat and set it to the current set_frame.
686 for( depth = 0; depth < set_numnames ; depth++ )
687 { for (nameidx = 0; nameidx <= depth; nameidx++)
688 { if( name_u8_cmp(&set_namelist[nameidx], &ss.set_frames[depth].namelist[nameidx]) != 0 )
689 { /* Populate the namelist of the set at the current depth */
690 for(i = 0; i <= depth; i++)
691 name_u8_cpy(&ss.set_frames[depth].namelist[i], &set_namelist[i]);
692
693 /* Alloc set and odat */
694 ss.set_frames[depth].odatp = alloc_odat();
695 ss.set_frames[depth].setp = alloc_set();
696
697 /* populate set/odat name and cdat_idx */
698 name_u8_cpy(&ss.set_frames[depth].odatp->name, &set_namelist[depth]);
699 ss.set_frames[depth].setp->cdat_idx = ( *cdat_stackp)->idx;
700
701 /* Insert allocated set and odat into their respective trees if there is a depth
702 (they have parents) */
703 if(depth)
704 { ss.set_frames[depth].odatp->parent_odatp = ss.set_frames[depth-1].odatp;
705 if(ss.set_frames[depth-1].setp->num_sets < MAX_SETS)
706 ss.set_frames[depth-1].setp->set_list[ss.set_frames[depth-1].setp->num_sets++] = ss.set_frames[depth].setp;
707 else
708 { printf("you have allocated too many sets in insert_namelist()\n");
709 //TODO: EXIT()
710 }
711 }
712 else /* no parent set, so assign to cdat set_list */
713 { ss.set_frames[depth].odatp->parent_odatp = NULL; //no parent odat = NULL.
714 if(curr_cdat_set()->num_sets < MAX_SETS)
715 curr_cdat_set()->set_list[curr_cdat_set()->num_sets++] = ss.set_frames[depth].setp;
716 else
717 { printf("you have allocated too many sets in insert_namelist()\n");
718 //TODO: EXIT()
719 }
720 }
721
722
723 ss.set_frames[depth].num_names = set_numnames;
724 ss.curr_depth = depth;
725 }
726
727 }
728
729 }
730 }
731
732 /*. We create new odats for each map variant that are children of the current odat/set
733 , set their name as the map name, and identify them by marking them as a map. This lets
734 us distinguish between sibling odatsthat have the same name because the map of the parent
735 odat had the same name as another, regular odat*/
736 #define CURR_SS_FRAME() (ss.set_frames[ss.curr_depth])
737 #define CURR_SS_SETP() (CURR_SS_FRAME().setp)
738 #define CURR_SS_ODATP() (CURR_SS_FRAME().odatp)
739 void
740 insert_map
741 ( name, direction, height, width, refid, filepath )
742 struct name* name;
743 int direction, height, width, refid;
744 uint8_t* filepath;
745 { int i;
746 struct odat* curr_mem_odatp; //pointer to odat in odat_buf
747 struct set* curr_mem_setp; //pointer to set in set_buf
748 struct link* linkp;
749
750 curr_mem_odatp = alloc_odat();
751 curr_mem_setp = alloc_set();
752 //Create a new odat, make its parent be the set. Make a set for mdat, its name should
753 //be the name of the odat + name of model. That makes a conflict beween odats that are named
754 //the same thing as the model of a sibling odat that was created from a map. They can have
755 //same name if the map odat is marked. So mark the map odat.
756
757 //insert parent odat
758 curr_mem_odatp->parent_odatp = CURR_SS_ODATP();
759 //insert into set_list
760 if(CURR_SS_SETP()->num_sets < MAX_SETS)
761 CURR_SS_SETP()->set_list[CURR_SS_SETP()->num_sets++] = curr_mem_setp;
762 else
763 { printf("You have allocated to many sets, error in insert_map()\n");
764 //TODO: EXIT()
765 }
766
767 //indicate that newly created odat is a map
768 curr_mem_odatp->ismap = 1;
769 //set odat and set name
770 name_u8_cpy(&curr_mem_odatp->name, name);
771
772 /* set cdat idx values for both set and odat */
773 curr_mem_setp->cdat_idx = num_cdats;
774
775 /* TODO: INSERT MAP HEIGHT/WIDTH/NAME/FILEPATH INTO ODAT */
776
777
778 /* Generate refid if needed, put into ref_buf */
779 if(!refid)
780 refid = ss_refid++;
781
782 insert_ref(curr_mem_odatp, refid);
783
784 /* If current odatp on stack has a link, then we need to make our own link. just set the vdat_idx */
785 if(CURR_SS_ODATP()->vdat_idx == 0)
786 { //alloc a link
787 linkp = alloc_link();
788 linkp->type = CURR_SS_ODATP()->linkp->type;
789 linkp->dest_odatp = CURR_SS_ODATP();
790 linkp->dest_refid = refid;
791 linkp->link_t.mlink.src_refid = CURR_SS_ODATP()->linkp->link_t.mlink.src_refid;
792
793 /* Copy the animation name of the vlink*/
794 name_u8_cpy(&linkp->link_t.vlink.src_animname, &CURR_SS_ODATP()->linkp->link_t.vlink.src_animname);
795 /* Copy the namelist of the vlink*/
796 for(i = 0; i < MAX_DEPTH; i++)
797 name_u8_cpy(&linkp->link_t.vlink.src_namelist[i], &CURR_SS_ODATP()->linkp->link_t.vlink.src_namelist[i]);
798 }
799 else
800 curr_mem_odatp->vdat_idx = CURR_SS_ODATP()->vdat_idx;
801
802
803
804
805 }
806
807
808 /* 11/22 Each vdat has a multiple models. Each model has 8 framesheets, one in each
809 direction, that create a spritesheet. Inserting framesheets into the correct
810 model is just a matter of checking whether or not the last models name matches
811
812 the current one. We can never get a framesheet that is for the same model before
813 AND after some other model, due to alphasorting of the files in each directory */
814 void
815 insert_framesheet
816 ( model_name, direction, height, width, refid, filepath )
817 struct name* model_name;
818 int direction, height, width, refid;
819 uint8_t* filepath;
820 { struct vdat* curr_vdatp;
821 struct model* curr_modelp;
822 static struct name last_model_name[32];
823
824
825 curr_vdatp = curr_vdat();
826
827 /* If the model name changed, that means there are no more
828 framesheets for that model to be processed, a guaruntee we make
829 b/c the filenames are alphabetically sorted */
830 if(!name_u8_cmp(last_model_name, model_name))
831 { if(curr_vdatp->num_models)
832 curr_vdatp->num_models++;
833 num_models++; // total number of models
834 }
835
836
837 if(CURR_SS_ODATP()->refid == 0)
838 { if(!refid)
839 refid = ss_refid++;
840 insert_ref(CURR_SS_ODATP(), refid);//given a odatp and a refid, insert the odatp into the ref_buf.
841 //push ref into ref_buf.
842 }
843 else
844 printf("error: redefining a previously set refid\n");
845
846 curr_modelp = curr_model();
847
848 name_u8_cpy(&curr_modelp->name, model_name);
849 curr_modelp->spritesheet[direction].height = height;
850 curr_modelp->spritesheet[direction].width = width;
851 /* TODO: INSERT FILEPATH INTO VDAT */
852 u8_stpncpy(curr_modelp->spritesheet[direction].filepath, filepath, FPATH_MAX);
853
854 name_u8_cpy(last_model_name, model_name);
855
856
857 }
858
859
860
861 //src_path is stored in link_namelist
862 void
863 insert_mlink
864 ( src_mapname, src_refid)
865 struct name* src_mapname;
866 int src_refid;
867 { struct link* linkp;
868 int i;
869
870 linkp = alloc_link();
871
872 /* set type */
873 linkp->type = 3;
874 /* set the name of the src map for the link, if a name exists */
875 if(src_mapname)
876 name_u8_cpy(&linkp->link_t.mlink.src_mapname, src_mapname);
877 /* Set the source ref id of the link */
878 linkp->link_t.mlink.src_refid = src_refid;
879 /* Copy the entire namelist of the link, if it exists */
880 for(i = 0; i < link_numnames; i--) //TODO MAX_DEPTH -> link_namelist_num??
881 { name_u8_cpy(&linkp->link_t.mlink.src_namelist[i], &link_namelist[i]);
882 name_u8_set(&link_namelist[i], (ucs4_t) 0);
883 }
884 link_numnames = 0;
885
886 linkp->dest_odatp = CURR_SS_ODATP();//current odat on set_stack
887
888 }
889
890 void
891 insert_link_name
892 ( name )
893 struct name* name;
894 {
895 //Push name onto current namelist, set the set_namelist.
896 name_u8_cpy(&link_namelist[link_numnames++], name);
897
898 }
899
900 /* Nearly identical to mlink */
901 void
902 insert_vlink
903 ( src_animname, src_refid )
904 struct name* src_animname;
905 int src_refid;
906 { struct link* linkp;
907 int i;
908
909 linkp = alloc_link();
910
911 /* set type */
912 linkp->type = 2;
913
914 /* set the name of the src animname for the link, if a name exists */
915 if(src_animname)
916 name_u8_cpy(&linkp->link_t.vlink.src_animname, src_animname);
917
918 /* Set the source ref id of the link */
919 linkp->link_t.mlink.src_refid = src_refid;
920
921 /* Copy the entire namelist of the link, if it exists */
922 for(i = 0; i < link_numnames; i++) //TODO MAX_DEPTH -> link_namelist_num??
923 { name_u8_cpy(&linkp->link_t.vlink.src_namelist[i], &link_namelist[i]);
924 name_u8_set(&link_namelist[i], (ucs4_t) 0);//set to null for next link_namelist
925 }
926
927 linkp->dest_odatp = CURR_SS_ODATP();//current odat on set_stack
928
929 }
930
931
932 /* TODO: Do we really need to store the prev/next pointer? iterating through the
933 ref_buf could be achieved by iterating until the num_refs anyway. */
934 void
935 insert_ref
936 ( odatp, refid )
937 struct odat* odatp;
938 int refid;
939 { struct ref* curr_refp;
940 struct ref* prev_refp;
941
942 curr_refp = alloc_ref();
943 prev_refp = prev_ref();
944
945 prev_refp->nextref = curr_refp;
946 curr_refp->lastref = prev_refp;
947
948 curr_refp->odatp = odatp;
949 curr_refp->refid = refid;
950
951 if(refid % 16)
952 { POST_ALLOC();
953 CURRENT_POST()->refid = refid;
954 CURRENT_POST()->odatp = odatp;
955 }
956
957
958
959 }
960
961 void
962 insert_vdat
963 ()
964 { struct vdat* curr_vdatp;
965
966 curr_vdatp = curr_vdat();
967
968 curr_vdatp->creator = CURR_SS_ODATP();
969 CURR_SS_ODATP()->vdat_idx = num_vdats;
970 CURR_SS_ODATP()->vdatp = curr_vdatp;
971 alloc_vdat();
972 }
973
974 void
975 insert_refid
976 ( refid )
977 int refid;
978 { CURR_SS_ODATP()->refid = refid;
979 }
980 #if 0
981
982
983 /* Called in the reduction of a set. While both odats (eles and sets)
984 have identical label terminals, we are unable to give a single grammatical rule
985 for both due to how we allocate odats in the odat buf. Due to the
986 nature of bottom up parsing, the set label is recognized first, and then the
987 sets elements are recognized. This means that after we have processed the sets elemenets,
988 the curr_odat is going to be the last element and NOT the set that was first allocated.
989 To get around this, we create a global variable set_odatp that will store the pointer
990 to the odat when it is first allocated (in insert_set_label()) so that insert_set() can
991 have access to it. Curr set points the sets representation in the cdat, curr_set_odatp
992 points to the sets representation as an odat*/
993
994 //TODO: Add insert_set_ref()
995 //TODO: Is this the correct allocation scheme? No do the one ken suggested
996 void
997 insert_s_name
998 ( struct name* name
999 )
1000 {
1001
1002 struct set* curr_setp;
1003
1004 curr_setp = curr_set();
1005 curr_set_odatp = alloc_odat();
1006
1007 u8_cpy(curr_set_odatp->name, name, 32);
1008 u8_cpy(curr_setp->name, name, 32);
1009 curr_set_odatp->parent_odatp = NULL;
1010
1011
1012 }
1013
1014 /* Inserting a olink instead of a set. Set is really just a placeholder
1015 for another set. Allocate the memory for the set so taht it can be populated*/
1016 void
1017 insert_set_olink
1018 ( int refid
1019 )
1020 {
1021 struct set* curr_setp;
1022
1023 curr_setp = curr_set();
1024
1025 curr_setp->refid = refid;
1026
1027 }
1028
1029 void
1030 insert_set_vlink
1031 ( int refid,
1032 uint8_t* anim_name
1033 )
1034 {
1035 struct cdat* curr_cdatp;
1036 struct odat* curr_odatp;
1037 struct link* curr_linkp;
1038
1039
1040 curr_cdatp = curr_cdat();
1041 curr_odatp = curr_odat();
1042 curr_linkp = alloc_link();
1043
1044 /* Insert vlink into link_stack so that it gets processed at
1045 output time */
1046 curr_linkp->type = 2;
1047 /* Store the target odat information*/
1048 curr_linkp->link_t.vlink.refid = refid;
1049 u8_cpy(curr_linkp->link_t.vlink.anim_name, anim_name, 32);
1050 /* Store the linking odat/cdat information */
1051 curr_linkp->classp = curr_cdatp;
1052 curr_linkp->odatp = curr_odatp;
1053 curr_linkp->set_idx = curr_cdatp->num_sets;
1054 // curr_linkp->ele_idx = -1;
1055
1056 }
1057
1058 /* Svlinks dont have animation names */
1059 void
1060 insert_set_svlink
1061 ( int refid
1062 )
1063 {
1064 struct cdat* curr_cdatp;
1065 struct link* curr_linkp;
1066
1067 curr_cdatp = curr_cdat();
1068 curr_linkp = alloc_link();
1069
1070 /* Insert svlink into link_stack so that it gets processed at
1071 output time */
1072 curr_linkp->type = 3;
1073 curr_linkp->classp = curr_cdatp;
1074 curr_linkp->set_idx = curr_cdatp->num_sets;
1075 // curr_linkp->ele_idx = -1;
1076 curr_linkp->link_t.svlink.refid = refid;
1077
1078 }
1079
1080 /* At the point of reducing to a set, most of the
1081 sets odat information has already been populated
1082 during the reduction of its right hand side
1083 non terminals (hitbox, root, quad_list). */
1084 void
1085 insert_set
1086 ()
1087 { int refid;
1088 struct odat* curr_odatp;
1089 struct cdat* curr_cdatp;
1090 struct set* curr_setp;
1091 struct ref* prev_refp;
1092 struct ref* curr_refp;
1093 struct vdat* curr_vdatp;
1094
1095 curr_odatp = curr_set_odatp; //allocated at insert_set_label
1096 curr_cdatp = curr_cdat();
1097 curr_setp = curr_set();
1098 prev_refp = curr_ref();
1099 curr_refp = alloc_ref();
1100 curr_vdatp = curr_vdat();
1101
1102 curr_vdatp->creator = curr_set_odatp;
1103
1104 curr_setp->cdat_idx = curr_cdatp->idx; //does a set need its class idx?
1105 u8_cpy(curr_setp->name, curr_odatp->name, 32);
1106 curr_cdatp->num_sets++;
1107
1108 curr_odatp->cdat_idx = curr_cdatp->idx;
1109 curr_odatp->refp = curr_refp;
1110
1111 refid = curr_setp->refid; // refid set by insert_set_label(name, refid)
1112
1113 curr_refp->refid = refid;
1114 curr_refp->lastref = prev_refp;
1115 curr_refp->odatp = curr_odatp;
1116 prev_refp->nextref = curr_refp;
1117
1118
1119
1120 }
1121 /* Created as a seperate function, instead of setting the ODATS vdat_id and
1122 calling inc_vdat() inside of insert_set(), to account for the set reduction
1123 where a vdat is not created (o/v/svlinks). */
1124 void
1125 insert_set_vdatid
1126 ()
1127 {
1128 struct vdat* curr_vdatp;
1129
1130 curr_vdatp = curr_vdat();
1131
1132 curr_set_odatp->vdat_id = num_vdats; //no vdat_id for odats that have vlinks/svlinks
1133 curr_set_odatp->vdatp = curr_vdatp;
1134 curr_set_odatp = NULL; //This sets odat shouldnt be modified after populating odats vdat info
1135 }
1136
1137 /* Populates the odat name and refid for odat, allocate the odat here for the rest of
1138 the functions to use via curr_odat(). */
1139 void
1140 insert_ele_label
1141 ( uint8_t* name,
1142 int refid
1143 )
1144 {
1145 struct odat* curr_odatp;
1146
1147 curr_odatp = alloc_odat();
1148
1149 u8_cpy(curr_odatp->name, name, 32);
1150 curr_odatp->map[0] = 0;
1151
1152 if(refid != -1)
1153 curr_odatp->refid = refid;
1154 else
1155 curr_odatp->refid = ss_refid++;
1156
1157 }
1158
1159 /* We don't make an odat here, at output time we will resolve
1160 the refid to the corresponding odat. */
1161 void
1162 insert_ele_olink
1163 ( int refid
1164 )
1165 {
1166 /* Do nothing because we already know the refid that
1167 the odat needs for this element (in the quad_file) */
1168 }
1169
1170 void
1171 insert_ele_vlink
1172 ( int refid,
1173 uint8_t* anim_name
1174 )
1175 {
1176 struct cdat* curr_cdatp;
1177 struct set* curr_setp;
1178 struct link* curr_linkp;
1179
1180 curr_cdatp = curr_cdat();
1181 curr_setp = curr_set();
1182 curr_linkp = alloc_link();
1183
1184 /* Insert vlink into link_stack so that it gets processed at
1185 output time */
1186 curr_linkp->classp = curr_cdatp;
1187 curr_linkp->type = 2;
1188 curr_linkp->set_idx = curr_cdatp->num_sets;
1189 //curr_linkp->ele_idx = curr_setp->num_ele;
1190 curr_linkp->link_t.vlink.refid = refid;
1191 u8_cpy(curr_linkp->link_t.vlink.anim_name, anim_name, 32);
1192
1193 }
1194
1195 void
1196 insert_ele_svlink
1197 ( int refid
1198 )
1199 {
1200 struct cdat* curr_cdatp;
1201 struct set* curr_setp;
1202 struct link* curr_linkp;
1203
1204 curr_cdatp = curr_cdat();
1205 curr_setp = curr_set();
1206 curr_linkp = alloc_link();
1207
1208 curr_linkp->classp = curr_cdatp;
1209 curr_linkp->type = 3;
1210
1211 //curr_linkp->ele_idx = curr_setp->num_ele;
1212 curr_linkp->link_t.svlink.refid = refid;
1213
1214
1215 }
1216
1217 //Insert element into odat_buf and cdatpages
1218 void
1219 insert_ele()
1220 {
1221 int refid;
1222 struct cdat* curr_cdatp;
1223 struct odat* curr_odatp;
1224 struct vdat* curr_vdatp;
1225 struct set* curr_setp;
1226 struct ele* curr_elep;
1227 struct ref* curr_refp;
1228 struct ref* prev_refp;
1229
1230
1231 curr_odatp = curr_odat(); //malloced @ insert_ele_label
1232 curr_vdatp = curr_vdat();
1233 curr_setp = curr_set();
1234 prev_refp = curr_ref();
1235 curr_refp = alloc_ref();
1236
1237 curr_vdatp->creator = curr_odatp;
1238
1239 /* Populate odat for ele */
1240 curr_odatp->cdat_idx = curr_cdatp->idx;
1241 curr_odatp->refp = curr_refp;
1242 curr_odatp->parent_odatp = curr_set_odatp;
1243
1244 refid = curr_odatp->refid;
1245
1246 curr_refp->refid = refid;
1247 curr_refp->lastref = prev_refp;
1248 curr_refp->odatp = curr_odatp;
1249 prev_refp->nextref = curr_refp;
1250
1251 }
1252
1253 void
1254 insert_ele_vdatid
1255 ()
1256 { struct odat* curr_odatp;
1257 curr_odatp = curr_odat();
1258 curr_odatp->vdat_id = num_vdats;
1259 }
1260
1261
1262
1263 #endif
1264
1265
1266
1267
1268 /* void */
1269 /* insert_quad */
1270 /* ( int x, int y, int z, int refid */
1271 /* ) */
1272 /* { */
1273 /* struct quad* curr_quadp; */
1274
1275 /* curr_quadp = curr_quad(); */
1276
1277 /* curr_quadp->x = x; */
1278 /* curr_quadp->y = y; */
1279 /* curr_quadp->z = z; */
1280 /* curr_quadp->refid = refid; */
1281
1282
1283
1284 /* } */
1285
1286 /* /\* serting the hitbox into the set */
1287 /* odat. Elements that don't have */
1288 /* a hitbox will use the sets root. *\/ */
1289 /* void */
1290 /* insert_hitbox */
1291 /* ( int hitbox */
1292 /* ) */
1293 /* { struct odat* curr_odatp; */
1294
1295 /* curr_odatp = curr_odat(); */
1296 /* curr_odatp->hitbox = hitbox; */
1297 /* } */
1298
1299 /* /\* Inserting the root into the set */
1300 /* odat. Elements that don't have */
1301 /* a root will use the sets root. *\/ */
1302 /* void */
1303 /* insert_root */
1304 /* ( int x, */
1305 /* int y, */
1306 /* int z */
1307 /* ) */
1308 /* { struct odat* curr_odatp; */
1309
1310 /* curr_odatp = curr_odat(); */
1311 /* curr_odatp->root.x = x; */
1312 /* curr_odatp->root.y = y; */
1313 /* curr_odatp->root.z = z; */
1314 /* } */
1315
1316
1317
1318
1319 /* void */
1320 /* insert_frame_pointer */
1321 /* ( uint8_t direction, */
1322 /* void* frame */
1323 /* ) */
1324 /* { struct model* curr_modelp; */
1325
1326 /* curr_modelp = curr_model(); */
1327
1328 /* curr_modelp->spritesheet[(int)direction].frames[curr_modelp->spritesheet[(int)direction].num_frames++] = frame; */
1329 /* } */
1330