-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathdf.flow.xml
98 lines (87 loc) · 4.16 KB
/
df.flow.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<data-definition>
<enum-type type-name='flow_type'> bay12: FlowTypes, no base type
<enum-item name='Miasma'/>
<enum-item name='Steam' comment='bay12: MIST_WATER'/>
<enum-item name='Mist' comment='bay12: MIST_WATERFALL'/>
<enum-item name='MaterialDust'/>
<enum-item name='MagmaMist'/>
<enum-item name='Smoke'/>
<enum-item name='Dragonfire'/>
<enum-item name='Fire'/>
<enum-item name='Web'/>
<enum-item name='MaterialGas'/>
<enum-item name='MaterialVapor'/>
<enum-item name='OceanWave'/>
<enum-item name='SeaFoam'/>
<enum-item name='ItemCloud'/>
</enum-type>
<bitfield-type type-name='event_flow_flag' base-type='uint8_t'> bay12: EVENTFLOW_FLAG_*
<flag-bit name='DEAD'/>
<flag-bit name='FAST'/>
<flag-bit name='CREEPING'/>
</bitfield-type>
<struct-type type-name='flow_info' original-name='event_flowst'>
<enum type-name='flow_type' base-type='int16_t' name='type'/>
<int16_t name='mat_type' ref-target='material' aux-value='$$.mat_index'/>
<int32_t name='mat_index' init-value='-1'/>
<int16_t name='density'/>
<compound name='pos' type-name='coord'/>
<compound name='dest' type-name='coord'/>
<bool name='expanding' init-value='1'/>
<bitfield name='flags' base-type='uint8_t' type-name='event_flow_flag'/>
<int32_t name='guide_id' ref-target='flow_guide'/>
</struct-type>
<bitfield-type type-name='flow_tracker_flag' base-type='uint32_t'> bay12: FLOWTRACKER_FLAG_*
<flag-bit name='active' comment='SOMETHINGDIED'/>
</bitfield-type>
<struct-type type-name='flow_reuse_pool' original-name='flow_trackerst'>
<int32_t name='reuse_idx' init-value='-1'/>
<bitfield name='flags' base-type='uint32_t' type-name='flow_tracker_flag'/>
</struct-type>
<enum-type type-name='flow_guide_type' base-type='int16_t'> bay12: FlowGuideType
<enum-item name='TrailingFlow'/>
<enum-item name='ItemCloud'/>
</enum-type>
<class-type type-name='flow_guide' original-name='flow_guidest'
key-field='id' instance-vector='$global.world.flow_guides.all'>
<int32_t name='id'/>
<bool name='tagged' comment='for culling'/>
<virtual-methods>
<vmethod ret-type='flow_guide_type' name='getType'/>
<vmethod name='shiftCoords'><int16_t name='x'/><int16_t name='y'/><int16_t name='z'/></vmethod>
<vmethod name='write_file'> <pointer name='file' type-name='file_compressorst'/> </vmethod>
<vmethod name='read_file'>
<pointer name='file' type-name='file_compressorst'/>
<enum name='loadversion' type-name='save_version'/>
</vmethod>
<vmethod name='advance_flow'><pointer type-name='flow_info'/></vmethod>
<vmethod is-destructor='true'/>
</virtual-methods>
</class-type>
<class-type type-name='flow_guide_trailing_flowst' inherits-from='flow_guide'>
<static-array name='line' type-name='coord' count='15'/>
</class-type>
<bitfield-type type-name='flow_guide_item_cloud_flag' base-type='uint32_t'> bay12: FLOW_GUIDE_ITEM_CLOUD_FLAG_*
<flag-bit name='undirected'/>
<flag-bit name='trailing'/>
</bitfield-type>
<class-type type-name='flow_guide_item_cloudst' inherits-from='flow_guide'>
<enum name='item_type' type-name='item_type'/>
<int16_t name='item_subtype' refers-to='(item-subtype-target $$._parent.item_type $)'/>
<int16_t name='mattype' ref-target='material' aux-value='$$.matindex'/>
<int32_t name='matindex'/>
<int32_t name="print_variant"/>
<bitfield name='flags' base-type='uint32_t' type-name='flow_guide_item_cloud_flag'/>
<static-array name='line' type-name='coord' count='15'/>
</class-type>
<struct-type type-name='flow_guide_handlerst'>
<stl-vector name='all' pointer-type='flow_guide'/>
<stl-vector name='temp_save' pointer-type='flow_guide' has-bad-pointers='true'/>
</struct-type>
</data-definition>
<!--
Local Variables:
indent-tabs-mode: nil
nxml-child-indent: 4
End:
-->