-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsumm_basics.dat
224 lines (189 loc) · 5.83 KB
/
summ_basics.dat
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file contains the definition of the "Basics" summary panel. This panel
contains the list of attributes and derived traits for the character.
Since all of the tables shown within this summary panel should fit within the
available vertical space, no scroller is required, so we turn off the scroller
for each table so that Hero Lab doesn't leave space for one.
All public visual elements used with summary panels start with the prefix "sm"
to associate them with the various summary panels.
-->
<document signature="Hero Lab Data">
<!-- smAttrib portal - table of attributes
-->
<portal
id="smAttrSys"
style="tblInvisSm">
<table_fixed
component="AttrSys"
showtemplate="asShow"
showsortset="explicit"
scrollable="no"
alwaysupdate="yes">
<headertitle><![CDATA[
@text = #summtitle_decoration[] & " " & herofield[acASHdrTxt].text & "s " & #summtitle_decoration[]
]]></headertitle>
</table_fixed>
</portal>
<!-- smDiscDept portal - table of disciplines / departments
-->
<portal
id="smDiscDept"
style="tblInvisSm">
<table_fixed
component="DiscDept"
showtemplate="ddShow"
showsortset="explicit"
scrollable="no"
alwaysupdate="yes">
<headertitle><![CDATA[
@text = #summtitle_decoration[] & " " & herofield[acDDHdrTxt].text & "s " & #summtitle_decoration[]
]]></headertitle>
</table_fixed>
</portal>
<!-- smFocus portal - table of derived traits
-->
<portal
id="smFocus"
style="tblInvisSm">
<table_fixed
component="Focus"
showtemplate="focShow"
showsortset="explicit"
scrollable="no"
alwaysupdate="yes">
<headertitle><![CDATA[
@text = #summtitle_decoration[] & " Focuses " & #summtitle_decoration[]
]]></headertitle>
</table_fixed>
</portal>
<!-- asShow template
This template shows the name and final value of the given trait, providing
mouse-over behavior to show the details of each trait.
-->
<template
id="asShow"
name="Summary Trait Pick"
compset="AttrSys">
<portal
id="value"
style="lblSummary">
<label
field="abiFinal">
</label>
</portal>
<portal
id="name"
style="lblSummary">
<label
field="asNameSumm">
</label>
<mouseinfo/>
</portal>
<position><![CDATA[
~set up our height based on our tallest portal
height = portal[name].height
~if this is a "sizing" calculation, we're done
doneif (issizing <> 0)
~position the value on the left in a limited span and the name on the right
portal[value].width = 30
perform portal[name].alignrel[ltor,value,5]
]]></position>
</template>
<!-- asShow template
This template shows the name and final value of the given trait, providing
mouse-over behavior to show the details of each trait.
-->
<template
id="ddShow"
name="Summary DiscDept Pick"
compset="DiscDept">
<portal
id="value"
style="lblSummary">
<label
field="abiFinal">
</label>
</portal>
<portal
id="name"
style="lblSummary">
<label
field="ddName">
</label>
<mouseinfo/>
</portal>
<position><![CDATA[
~set up our height based on our tallest portal
height = portal[name].height
~if this is a "sizing" calculation, we're done
doneif (issizing <> 0)
~position the value on the left in a limited span and the name on the right
portal[value].width = 30
perform portal[name].alignrel[ltor,value,5]
]]></position>
</template>
<!-- smTalent template
This template shows the names of each special ability ability, providing
mouse-over behavior to show the details of each ability.
-->
<template
id="focShow"
name="Summary Focus Pick"
compset="Focus">
<portal
id="name"
style="lblSummary">
<label
field="name">
</label>
<mouseinfo/>
</portal>
<position><![CDATA[
~set up our height based on our tallest portal
height = portal[name].height
~if this is a "sizing" calculation, we're done
doneif (issizing <> 0)
~the name is the only portal to position
portal[name].left = 0
portal[name].top = 0
]]></position>
</template>
<!-- smBasics layout
This layout contains the table of attributes and derived traits for the
character.
-->
<layout
id="smBasics">
<portalref portal="smAttrSys"/>
<portalref portal="smDiscDept"/>
<portalref portal="smFocus"/>
<position><![CDATA[
~position and size the tables to span the full layout
perform portal[smAttrSys].autoplace
perform portal[smDiscDept].autoplace[10]
perform portal[smFocus].autoplace[10]
]]></position>
</layout>
<!-- smBasics panel
This panel is designated as a summary panel and given an order that positions
it properly amongst the other defined summary panels. We setup a small margin
to indent the layout from the edges of the panel.
The panel is assigned a "live" tagexpr so that its visibility can be
controlled for different types of characters. While not really useful in the
sample data files, this approach can be quite useful when the data files
expand to govern creation of widely varying characters, such as vampires vs.
ghosts vs. mortals in the World of Darkness game system.
-->
<panel
id="smBasics"
name="Basics"
order="10010"
marginhorz="2"
marginvert="2"
issummary="yes">
<live>!HideTab.smBasics</live>
<layoutref layout="smBasics"/>
<position><![CDATA[
]]></position>
</panel>
</document>