forked from DFHack/df-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdf.activity_meeting.xml
27 lines (25 loc) · 1.28 KB
/
df.activity_meeting.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
<data-definition>
<bitfield-type type-name='activity_flag' base-type='int16_t'> bay12: ACTIVITYFLAG_*
<flag-bit name='next_step' comment='SITESEARCHED'/>
<flag-bit name='checked_building' comment='ARRIVEDATSITE'/>
<flag-bit name='add_delay' comment='INITIALDISCUSS'/>
<flag-bit name='topic_discussed' comment='DISCUSSINGTOPIC'/>
<flag-bit name='meeting_done' comment='MEETINGCOMPLETE'/>
</bitfield-type>
<struct-type type-name='activity_info' original-name='activity_meetingst'>
<int32_t name='id' init-value='-1' comment='bay12: save_index; assigned during Save'/>
<int32_t name='unit_actor' ref-target='unit' init-value='-1' comment='diplomat or worker'/>
<int32_t name='unit_noble' ref-target='unit' init-value='-1' comment='meeting recipient'/>
<int32_t name='place' ref-target='building' init-value='-1' comment='bay12: civzone_id'/>
<bitfield base-type='int16_t' name='flags' type-name='activity_flag'/>
<int8_t name='worstroomrank' init-value='3'/>
<int16_t name='delay' init-value='0' comment='discusscount'/>
<int32_t name='tree_quota' init-value='-1' comment='tempvalue'/>
</struct-type>
</data-definition>
<!--
Local Variables:
indent-tabs-mode: nil
nxml-child-indent: 4
End:
-->