-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOM_1PathfinderPack - Sheet Manuevers.dat
259 lines (220 loc) · 7.34 KB
/
COM_1PathfinderPack - Sheet Manuevers.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?xml version="1.0" encoding="UTF-8"?>
<document signature="Hero Lab Data">
<!--
Created by: Tim Shadow
Date: December 5, 2016
This is a community created sheet.
-->
<!-- Generate the text for a Maneuvers title label on the Manuevers printout -->
<procedure id="PoWManLbl" scripttype="label"><![CDATA[
var level as number
var desc as string
@text &= hero.actorname & " - Level " & level & " " & desc
]]></procedure>
<!-- NOTE: The global variable pwmanout can have the following values:
0 - output full descriptions
1 - output summaries
-->
<!-- Manuever lists -->
<portal
id="oManTbl"
style="outtable">
<output_table
component="PWManuever"
showtemplate="oManPick"
showpicks="yes"
varyheight="yes"
showsortset="SpellOut">
<list><![CDATA[
PathOfWar.Manuever & !Helper.Obsolete & !Helper.Helper
]]></list>
</output_table>
</portal>
<!-- Stances lists -->
<portal
id="oStanceTbl"
style="outtable">
<output_table
component="PWManuever"
showtemplate="oManPick"
showpicks="yes"
varyheight="yes"
showsortset="SpellOut">
<list><![CDATA[
PathOfWar.Stance & !Helper.Obsolete & !Helper.Helper
]]></list>
</output_table>
</portal>
<!-- Manuever and Stances Header -->
<template
id="omHeader"
name="Manuever and Stances Display Header"
compset="Totals">
<portal
id="text"
style="oNormal">
<output_label>
<labeltext><![CDATA[
foreach pick in hero from PWManList
@text = splice(@text,eachpick.field[name].text & " " & eachpick.field[cIL].value," / ")
nexteach
@text = splice(hero.actorname,@text,", ")
~& " " & chr(150) & " Maneuvers"
]]></labeltext>
</output_label>
</portal>
<position><![CDATA[
perform portal[text].centerhorz
height = portal[text].height
]]></position>
</template>
<!-- Maneuvers and Stances pick -->
<template
id="oManPick"
name="Output Maneuvers and Stances Table"
compset="PWManuever">
<portal
id="mName"
style="oSplTitle">
<output_label>
<labeltext><![CDATA[
@text = "{align left}{horz 15}" & tagnames[Ability.?] & " (" & tagnames[ClsCountAs.?] & ")"
]]></labeltext>
</output_label>
</portal>
<portal
id="mLevel"
style="oSplTitle">
<output_label>
<labeltext><![CDATA[
@text = tagnames[mLevel.?]
]]></labeltext>
</output_label>
</portal>
<portal
id="mText"
style="oSmall">
<output_label>
<labeltext><![CDATA[
~ TODO: Update this to use the new PWManSumm procedure once
~ we are not updating the Thing text.
@text = field[descript].text
]]></labeltext>
</output_label>
</portal>
<portal
id="mSummary"
style="oSmall">
<output_label>
<labeltext><![CDATA[
@text = field[abSumm].text
]]></labeltext>
</output_label>
</portal>
<position><![CDATA[
~ The level portal has centered text, so by adding twice the padding we
~ want, we get a small gap at it's right-hand side, so that the number
~ doesn't bump right against the edge of the grey section.
~ The name accomplishes the same thing with a horz element, but the level
~ seems to be ignoring horz's and spaces at the end of the text
portal[mLevel].width += 30
portal[mName].width = width - portal[mLevel].width
perform portal[mLevel].alignedge[right,0]
if (scenevalue[pwmanout] = 1) then
portal[mSummary].width = width
perform portal[mSummary].autoheight
perform portal[mSummary].alignrel[ttob,mName,10]
height = portal[mSummary].bottom + 30
portal[mText].visible = 0
else
portal[mText].width = width
perform portal[mText].autoheight
perform portal[mText].alignrel[ttob,mName,10]
height = portal[mText].bottom + 30
portal[mSummary].visible = 0
endif
]]></position>
</template>
<layout
id="oManeuvers">
<portalref portal="oManTbl"/>
<portalref portal="oStanceTbl"/>
<position><![CDATA[
perform portal[oManTbl].autoplace
perform portal[oStanceTbl].autoplace
]]></position>
</layout>
<layout
id="omHeader">
<templateref template="omHeader" thing="Totals" ispick="yes"/>
<position><![CDATA[
template[omHeader].width = width
perform template[omHeader].render
height = template[omHeader].bottom
]]></position>
</layout>
<sheet
id="shPWManDes"
name="Maneuvers Sheet (Description)"
spillover="yes">
<layoutref layout="oManeuvers" reference="left"/>
<layoutref layout="oManeuvers" reference="right"/>
<layoutref layout="omHeader"/>
<position><![CDATA[
~ Set our global variable to 'output description'
scenevalue[pwmanout] = 0
~ Setup the gap to be used between the various sections of the character sheet
autogap = 40
scenevalue[sectiongap] = autogap
layout[omHeader].width = width
perform layout[omHeader].render
layout[left].top = layout[omHeader].bottom + 40
layout[right].top = layout[omHeader].bottom + 40
~ Calculate the width of the two columns of the character sheet, leaving a
~ Suitable center gap between them
var colwidth as number
colwidth = (width - 50) / 2
~ Output the layout on the lefthand side with whatever information will fit
layout[left].width = colwidth
layout[left].height = height - layout[left].top
perform layout[left].render
~ Output the layout on the righthand side with whatever information will fit
layout[right].width = colwidth
layout[right].height = height - layout[right].top
layout[right].left = width - colwidth
perform layout[right].render
]]></position>
</sheet>
<sheet
id="shPWManSum"
name="Maneuvers Sheet (Summaries)"
spillover="yes">
<layoutref layout="oManeuvers" reference="left"/>
<layoutref layout="oManeuvers" reference="right"/>
<layoutref layout="omHeader"/>
<position><![CDATA[
~ Set our global variable to 'output summaries'
scenevalue[pwmanout] = 1
~setup the gap to be used between the various sections of the character sheet
autogap = 40
scenevalue[sectiongap] = autogap
layout[omHeader].width = width
perform layout[omHeader].render
layout[left].top = layout[omHeader].bottom + 40
layout[right].top = layout[omHeader].bottom + 40
~ Calculate the width of the two columns of the character sheet, leaving a
~ suitable center gap between them
var colwidth as number
colwidth = (width - 50) / 2
~ Output the layout on the lefthand side with whatever information will fit
layout[left].width = colwidth
layout[left].height = height - layout[left].top
perform layout[left].render
~ Output the layout on the righthand side with whatever information will fit
layout[right].width = colwidth
layout[right].height = height - layout[right].top
layout[right].left = width - colwidth
perform layout[right].render
]]></position>
</sheet>
</document>