ir compiling!
[henge/apc.git] / src / ir.h
1 /*!@file
2
3 \brief Intermediate Representation (IR) between Directory Structure and Engine
4 Input
5
6 \details The IR serves as a storage structure that is populated during the
7 parsing of the input directory structure. After parsing is complete,
8 the IR will be condensed (removed of excess allocated space) and then
9 output as the input for the engine. In this file we describe the
10 semantic actions that are called at each step, and the memory buffers
11 that they populate. See parser.y for the description on how the input
12 grammar is constructed, and where/when semantic actions are called.
13
14 All input values are duplicated internally and their memory may be
15 freed.
16
17 \author Jordan Lavatai
18 \date Aug 2016
19 ----------------------------------------------------------------------------*/
20 #ifndef _IR_H_
21 #define _IR_H_
22 #include <unitypes.h>
23 #include "apc.h"
24
25 typedef union ir_setdata_t* ir_setdata;
26 typedef struct ir_set_t* ir_set;
27 typedef struct ir_class_t* ir_class;
28 typedef struct ir_setld_t* ir_setld;
29 typedef struct ir_classld_t* ir_classld;
30
31 enum dtype { FSDAT, MSDAT, ADAT, LDAT, FBDAT };
32 enum ltype { OLINK, MLINK, VLINK, ALINK };
33 /* Classes and Sets
34 Classes are rooted at a special root class, representing the current working
35 directory at scan-time, named ".". The root class can always be identified
36 with ir_class_root, and children may be added to it. The add series of
37 functions will return a reference to the newly created object, which may also
38 be used the root for further add functions.
39
40 E.G.
41 ir_class x = ir_class_root();
42 x = ir_class_addchild(x, "mychild");
43 x = ir_class_addchild(x, "child of mychild");
44
45 Sets, like classes, must be rooted. Unlike classes, sets may be rooted on
46 other sets, in addition to classes. ir_class_addset will return a set rooted
47 on the class specified, while ir_set_addchild will return a set rooted on the
48 specified set.
49 */
50 ir_class ir_class_root(void);
51 ir_class ir_class_addchild(ir_class, uint8_t*);
52 ir_set ir_class_addset(ir_class,uint8_t*);
53 ir_set ir_set_addchild(ir_set,uint8_t*);
54 /* Set Data
55 Each set can contain up to FACING_MAX each of framesheets and mapsheets, one
56 sheet for each facing, per label. Each set can contain any number of audio
57 objects, supplied by label. Repeat assignment of conflicting data (e.g. two
58 SFACE framesheets assigned to the same set and label, or two audio objects
59 with the same label) causes an internal error.
60 Each set may also contain any number of link objects, which will be linked in
61 the order that they are encountered. At link time, repeated assignments of
62 conflicting data cause data to be silently overwritten for those sets. This
63 is an intentional side-effect of the linker.
64 Each setdata may have a path associated with it. If the data depends on the
65 data of an associated file at that path and no path is provided, the data
66 will be entered null.
67 */
68 void ir_set_assign_data(ir_set,ir_setdata);
69 void ir_set_assign_ref(ir_set,long long);
70 void ir_data_assign_path(ir_setdata,uint8_t*);
71 ir_setdata ir_framesheet(uint8_t*, apc_facing, int,int);
72 ir_setdata ir_mapsheet(uint8_t*, apc_facing, int,int);
73 ir_setdata ir_audio(uint8_t*);
74 ir_setdata ir_link(enum ltype, ir_setld, uint8_t*);
75 ir_setdata ir_link_odat(ir_setld);
76 ir_setdata ir_link_vdat(ir_setld,uint8_t*);
77 ir_setdata ir_link_mdat(ir_setld,uint8_t*);
78 ir_setdata ir_link_adat(ir_setld,uint8_t*);
79 /* Reference Linking Data
80 Create linking data to sets or classes that will be resolved at a later
81 stage. Class references can be created from an ir_class object, if
82 available, or from the root class. Set references can be created from a
83 64-bit integer ID, or from a class linking data and a child name. Once
84 created, both Class and Set link data can traverse children, specified by
85 name, which will be resolved at the linking stage as well.
86 */
87 ir_classld ir_classld_from_class(ir_class);
88 ir_classld ir_classld_from_root(void);
89 ir_classld ir_classld_addchild(ir_classld,uint8_t*);
90 ir_setld ir_setld_from_ref(long long);
91 ir_setld ir_setld_from_classld(ir_classld,uint8_t*);
92 ir_setld ir_setld_addchild(ir_setld,uint8_t*);
93 #endif //_IR_H_