-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathJobNetMenu.xaml
More file actions
338 lines (307 loc) · 20.3 KB
/
JobNetMenu.xaml
File metadata and controls
338 lines (307 loc) · 20.3 KB
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<DefaultWindow
xmlns="https://spacestation14.io"
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
Title="Job Network"
MinSize="650 470"
SetSize="650 470">
<BoxContainer Orientation="Vertical" Access="Public" VerticalExpand="True">
<BoxContainer Orientation="Horizontal">
<Label Text="Account Balance:"
StyleClasses="LabelKeyText" />
<Label Name="AccountBalanceLabel" Text="" />
</BoxContainer>
<TabContainer Name="MasterTabContainer" VerticalExpand="True">
<BoxContainer Orientation="Vertical" Access="Public">
<Control MinHeight ="30" />
<BoxContainer Orientation="Horizontal">
<Label Text="Currently Working For:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<OptionButton Name="PossibleJobs" Access="Public"/>
</BoxContainer>
<Control VerticalExpand ="True"/>
<BoxContainer Name="AssignmentDetails" Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<Label Text="Current Assignment:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="CSLabel" Text="Off Duty" Margin="0 0 10 0" />
</BoxContainer>
<Control MinHeight ="30" />
<BoxContainer Orientation="Horizontal">
<Label Text="Wage:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="WageLabel" Text="$0" Margin="0 0 5 0" />
<Label Text="Every 20 Minutes" Margin="0 0 10 0" />
</BoxContainer>
<Control MinHeight ="30" />
<BoxContainer Orientation="Horizontal">
<Label Text="Next Pay In:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="TimeLabel" Text="0" Margin="0 0 5 0" />
</BoxContainer>
<Control MinHeight ="30" />
<BoxContainer Orientation="Horizontal" Name="SLDetails">
<Label Text="Spending Limit:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="SpendingLabel" Text="$0/$100" Margin="0 0 5 0" />
</BoxContainer>
<Control MinHeight ="30" />
</BoxContainer>
</BoxContainer>
<BoxContainer Orientation="Vertical" Access="Public">
<TabContainer Name="HistoryTabContainer" VerticalExpand="True">
<ScrollContainer Name="Achievements" VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical" Access="Public">
<Label Text="Ongoing:" Margin="10 10 10 0"
StyleClasses="LabelKeyText" />
<BoxContainer Name="CurrentObjectives" Orientation="Vertical" Access="Public">
</BoxContainer>
<Label Text="Completed:" Margin="10 10 10 0"
StyleClasses="LabelKeyText" />
<BoxContainer Name="CompletedObjectives" Orientation="Vertical" Access="Public">
</BoxContainer>
</BoxContainer>
</ScrollContainer>
<ScrollContainer Name="Codex" VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical">
<RichTextLabel Name="UnlockedNumberLabel" Access="Public"></RichTextLabel>
<Control MinHeight="20"></Control>
<BoxContainer Orientation="Vertical" Access="Public" Name="CodexContainer">
</BoxContainer>
</BoxContainer>
</ScrollContainer>
</TabContainer>
</BoxContainer>
<ScrollContainer VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical" Margin="15">
<BoxContainer Orientation="Horizontal">
<Label Text="ZENITH SECTOR" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
</BoxContainer>
<Control MinHeight="40" />
<BoxContainer Orientation="Horizontal">
<Label Text="Sector Development:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="SectorDevelopmentLabel" Text="10" Margin="0 0 10 0" />
</BoxContainer>
<Control MinHeight="20" />
<BoxContainer Orientation="Horizontal">
<Label Text="Sector Chaos:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
<Label Name="SectorChaosLabel" Text="100/1500" Margin="0 0 10 0" />
</BoxContainer>
<Control MinHeight="20" />
<BoxContainer Orientation="Horizontal">
<Label Text="Sector Status:" Margin="0 0 10 0"
StyleClasses="LabelKeyText" />
</BoxContainer>
<PanelContainer StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="120" Margin="10 10 10 0">
<RichTextLabel Name="SectorStatusLabel" />
</PanelContainer>
</BoxContainer>
</ScrollContainer>
<ScrollContainer VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical" Margin="15">
<Control MinHeight="5"/>
<BoxContainer Orientation="Horizontal">
<Label Text="Current Network Level:"
StyleClasses="LabelKeyText" />
<Control MinWidth="20"/>
<Label Name="CurrentLevelLabel" Text="Small Faction" />
</BoxContainer>
<BoxContainer Orientation="Horizontal" MinHeight="100">
<PanelContainer VerticalExpand="True"
HorizontalExpand="True"
SizeFlagsStretchRatio="1"
Name="CurrentLevelDescPC">
<PanelContainer.PanelOverride>
<gfx:StyleBoxFlat BackgroundColor="#000000" />
</PanelContainer.PanelOverride>
<RichTextLabel Name="CurrentBenefitsLabel" VerticalExpand="True" HorizontalExpand="True" MinHeight="100"/>
</PanelContainer>
</BoxContainer>
<Control MinHeight="20" />
<BoxContainer Orientation="Horizontal">
<Label Text="Next Network Level:"
StyleClasses="LabelKeyText" />
<Control MinWidth="20"/>
<Label Name="NextLevelLabel" Text="Standard Faction" />
</BoxContainer>
<BoxContainer Orientation="Horizontal" MinHeight="100">
<PanelContainer VerticalExpand="True"
HorizontalExpand="True"
SizeFlagsStretchRatio="1"
Name="NextLevelDescPC">
<PanelContainer.PanelOverride>
<gfx:StyleBoxFlat BackgroundColor="#000000" />
</PanelContainer.PanelOverride>
<RichTextLabel Name="NextBenefitsLabel" VerticalExpand="True" HorizontalExpand="True" MinHeight="100"/>
</PanelContainer>
</BoxContainer>
<BoxContainer Orientation="Horizontal">
<Control HorizontalExpand="True" />
<Label Text="Purchase Upgrade:"
StyleClasses="LabelKeyText" />
<Button Name="LevelPurchaseButton" Access="Public" />
</BoxContainer>
</BoxContainer>
</ScrollContainer>
<ScrollContainer VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False">
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<Control MinWidth="10"/>
<Label Text="Stored Precursor:"
StyleClasses="LabelKeyText" />
<Label Name="PrecursorBalanceLabel" Text="1000" />
<Control HorizontalExpand="True" />
<Label Text="Secret Phrase:"
StyleClasses="LabelKeyText" />
<Label Name="SecretPhraseLabel" Text="Apple Tractor" />
</BoxContainer>
<BoxContainer Orientation="Horizontal">
<Control MinWidth="10"/>
<Label Text="Rogue Level:"
StyleClasses="LabelKeyText" />
<Label Text="Civillian"
Name="PLevelText" />
<Control HorizontalExpand="True" />
<Button Name="PrecursorGuidebook" Text="Guide" Access="Public" />
</BoxContainer>
<BoxContainer Orientation="Horizontal">
<ProgressBar Name="PLevelBar"
HorizontalExpand="True"
MaxValue="1"
MinValue="0"
SetHeight="25"
Margin="10 0 10 0"
VerticalAlignment="Center">
<Label Name="PLevelBarText"
Margin="4 0"
Text="0 %" />
</ProgressBar>
</BoxContainer>
<TabContainer Name="PrecursorTabs" VerticalExpand="True">
<BoxContainer Orientation="Vertical" Name="Objectives" VerticalExpand="True">
<TabContainer Name="PrecursorObjectivesTabs" VerticalExpand="True">
<BoxContainer Orientation="Vertical" Name="Basic" VerticalExpand="True">
<BoxContainer Orientation="Horizontal">
<Label Text="New Basic Objective:"
StyleClasses="LabelKeyText" />
<Label Name="ObjectiveTimerLabel" Text="00:00:30" />
<Control HorizontalExpand="True" />
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="PrecursorObjectives">
</BoxContainer>
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="Network" VerticalExpand="True">
<BoxContainer Orientation="Horizontal" Name="NetworkObjectivesRequirement">
<Label Text="Join a Network to see more objectives"
StyleClasses="LabelKeyText" />
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="RogueNetworkObjectivesBox">
<BoxContainer Orientation="Horizontal">
<Label Text="New Network Objective:"
StyleClasses="LabelKeyText" />
<Label Name="NetworkObjectiveTimerLabel" Text="00:00:30" />
<Control HorizontalExpand="True" />
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="RogueNetworkObjectives">
<PanelContainer Name="HuntedPanel" StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="30" Margin="10 10 10 0">
<BoxContainer
HorizontalExpand="True"
Orientation="Vertical">
<Label Access="Public" Text="Hunted? Enter the Secret Passphrase of those hunting you." />
<BoxContainer Orientation="Horizontal">
<LineEdit Name="HuntedLE"
PlaceHolder="Secret Passphrase"
Access="Public"
HorizontalExpand="True" />
<Button Access="Public" Name="HuntedLEB" Text="Submit" />
</BoxContainer>
<Label Access="Public" Text="Reward: 500 Precursor" />
</BoxContainer>
</PanelContainer>
<PanelContainer Name="HuntPanel" StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="30" Margin="10 10 10 0">
<BoxContainer
HorizontalExpand="True"
Orientation="Vertical">
<Label Name="HuntDescLabel" Access="Public" Text="Hunt Faurns Goldberg and enter their Secret Passphrase." />
<BoxContainer Orientation="Horizontal">
<LineEdit Name="HuntLE"
PlaceHolder="Secret Passphrase"
Access="Public"
HorizontalExpand="True" />
<Button Access="Public" Name="HuntLEB" Text="Submit" />
</BoxContainer>
<Label Access="Public" Text="Reward: 500 Precursor" />
<Label Access="Public" Text="Sector chaos will increase" />
</BoxContainer>
</PanelContainer>
<BoxContainer Name="DealerObjectives" Orientation="Vertical">
</BoxContainer>
</BoxContainer>
</BoxContainer>
</BoxContainer>
</TabContainer>
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="Networks" VerticalExpand="True">
<BoxContainer Orientation="Horizontal" Name="NetworkRequirementLabel">
<Label Text="Reach the rank of Associate to join a Network"
StyleClasses="LabelKeyText" />
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="NetworkContentBox">
<BoxContainer Orientation="Horizontal">
<Control MinWidth="10"/>
<Label Text="Selected Network:"
StyleClasses="LabelKeyText" />
<Label Name="RogueNetworkLabel" Text="None" />
</BoxContainer>
<PanelContainer StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="30" Margin="10 10 10 0">
<BoxContainer Orientation="Vertical">
<Label Text="Dealer -- Produce, Sell and Smuggle Drugs" />
<Button Name="DealerSelect" Text="Select" Access="Public" />
</BoxContainer>
</PanelContainer>
<PanelContainer StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="30" Margin="10 10 10 0">
<BoxContainer Orientation="Vertical">
<Label Text="Bounty Hunter -- Hunt Dealers and Assassins" />
<Button Name="BountyHSelect" Text="Select" Access="Public" />
</BoxContainer>
</PanelContainer>
<PanelContainer StyleClasses="BackgroundPanel" HorizontalExpand="True" MinHeight="30" Margin="10 10 10 0">
<BoxContainer Orientation="Vertical">
<Label Text="Assassin -- Hunt Dealers and Bounty Hunters" />
<Button Name="AssassinSelect" Text="Select" Access="Public" />
</BoxContainer>
</PanelContainer>
</BoxContainer>
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="Purchases" VerticalExpand="True">
<BoxContainer Orientation="Horizontal" Name="PurchaseRequirements">
<Label Text="Join a Network to see available purchases"
StyleClasses="LabelKeyText" />
</BoxContainer>
<BoxContainer Orientation="Vertical" Name="PurchasesContent">
<Label Text="Rank 2:"
StyleClasses="LabelKeyText" />
<BoxContainer Orientation="Vertical" Name="Rank2Content">
</BoxContainer>
<Label Text="Rank 3:"
StyleClasses="LabelKeyText" />
<BoxContainer Orientation="Vertical" Name="Rank3Content">
</BoxContainer>
<Label Text="Rank 4:"
StyleClasses="LabelKeyText" />
<BoxContainer Orientation="Vertical" Name="Rank4Content">
</BoxContainer>
<Label Text="Rank 5:"
StyleClasses="LabelKeyText" />
<BoxContainer Orientation="Vertical" Name="Rank5Content">
</BoxContainer>
</BoxContainer>
</BoxContainer>
</TabContainer>
</BoxContainer>
</ScrollContainer>
</TabContainer>
</BoxContainer>
</DefaultWindow>