-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGURPSSystemSearcher.plugin.AstroScript
405 lines (324 loc) · 10.8 KB
/
GURPSSystemSearcher.plugin.AstroScript
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#plugin GURPS System Searcher
#author Alan Bartholet
#desc Searchers for body properties added by GURPS System Builder.
'Includes
Include "GURPSSuite.lib.vbs"
'Declare global variables
Dim sector 'as Sector
'Load the sector
sector = GetCurrentSector
'Call the main sub
Main()
Sub Main()
SelectBodyTypeGUI()
End Sub
'------------------------------------------------------------------------------
'GUI for Selecting Body Type
'------------------------------------------------------------------------------
Sub SelectBodyTypeGUI()
'Make the interface
set w = NewDialogWindow()
w.SetPosition 10, 20, 230, 215
w.Centered = TRUE
radio = w.AddRadioGroup()
radio.SetPosition 10, 10, 200, 135
radio.Columns = 1
radio.AddItem "Search for Terrestrial Bodies."
radio.AddItem "Search for Asteroid Belts."
radio.AddItem "Search for Planetoids."
radio.AddItem "Search for Gas Gaints."
radio.AddItem "Search for Stars."
radio.Text = "Search for Terrestrial Bodies."
'Display the display
If w.ShowModal Then
Select Case radio.Text
Case "Search for Terrestrial Bodies."
SearchTerrestrialGUI()
Case "Search for Asteroid Belts."
SearchAsteroidBeltGUI()
Case "Search for Planetoids."
SearchPlanetoidGUI()
Case "Search for Gas Gaints."
SearchGasGiantGUI()
Case "Search for Stars."
SearchStarGUI()
End Select
End If
End Sub
'------------------------------------------------------------------------------
'GUI for Searching Stars
'------------------------------------------------------------------------------
Sub SearchStarGUI()
w = NewDialogWindow()
w.SetPosition 10, 20, 220, 100
w.Centered = TRUE
l = w.AddLabel()
l.SetPosition 10, 10, 100, 24
l.Caption = "Stellar Age:"
stellarAgeTextEdit = w.AddTextEdit()
stellarAgeTextEdit.SetPosition 70, 8, 50, 24
l = w.AddLabel()
l.SetPosition 125, 10, 100, 24
l.Caption = "Billion Years"
'Display the display
If w.ShowModal Then
'Validate the stellar age
If Not IsNumeric(stellarAgeTextEdit.Text) Then
MsgBox "Stellar Age must be a number.",16
SearchStarGUI()
Exit Sub
End If
src = CreateSearcher()
src.BodyType = BODY_TYPE_STAR
src.AddFieldSearch "Stellar Age", FormatNumber(stellarAgeTextEdit.Text,1,,,0)
sector.Search src
ShowSearchResults src
FreeObject src
End If
End Sub
'------------------------------------------------------------------------------
'GUI for Searching Asteroid Belts
'------------------------------------------------------------------------------
Sub SearchAsteroidBeltGUI()
w = NewDialogWindow()
w.SetPosition 10, 20, 250, 110
w.Centered = TRUE
l = w.AddLabel()
l.SetPosition 10, 10, 100, 24
l.Caption = "Resource Value:"
resourceValueDropList = w.AddDropList()
resourceValueDropList.SetPosition 95, 8, 120, 24
For i = 1 To Ubound(RESOURCE_VALUE_ARRAY) + 1
resourceValueDropList.AddItem RESOURCE_VALUE_ARRAY(i - 1)
Next
'Display the display
If w.ShowModal Then
If resourceValueDropList.Text = "" Then
MsgBox "Resource Value is required.",16
SearchAsteroidBeltGUI()
Exit Sub
End If
src = CreateSearcher()
src.BodyType = BODY_TYPE_ASTEROIDBELT
src.AddFieldSearch "Resource Value", resourceValueDropList.Text
sector.Search src
ShowSearchResults src
FreeObject src
End If
End Sub
'------------------------------------------------------------------------------
'GUI for Searching Planetoids
'------------------------------------------------------------------------------
Sub SearchPlanetoidGUI()
w = NewDialogWindow()
w.SetPosition 10, 20, 250, 110
w.Centered = TRUE
l = w.AddLabel()
l.SetPosition 10, 10, 100, 24
l.Caption = "Resource Value:"
resourceValueDropList = w.AddDropList()
resourceValueDropList.SetPosition 95, 8, 120, 24
For i = 1 To Ubound(RESOURCE_VALUE_ARRAY) + 1
resourceValueDropList.AddItem RESOURCE_VALUE_ARRAY(i - 1)
Next
'Display the display
If w.ShowModal Then
If resourceValueDropList.Text = "" Then
MsgBox "Resource Value is required.",16
SearchPlanetoidGUI()
Exit Sub
End If
src = CreateSearcher()
src.BodyType = BODY_TYPE_PLANETOID
src.AddFieldSearch "Resource Value", resourceValueDropList.Text
sector.Search src
ShowSearchResults src
FreeObject src
End If
End Sub
'------------------------------------------------------------------------------
'GUI for Searching Gas Gaints
'------------------------------------------------------------------------------
Sub SearchGasGiantGUI()
w = NewDialogWindow()
w.SetPosition 10, 20, 200, 110
w.Centered = TRUE
l = w.AddLabel()
l.SetPosition 10, 10, 100, 24
l.Caption = "Size:"
gasSizeDropList = w.AddDropList()
gasSizeDropList.SetPosition 40, 8, 120, 24
For i = 1 To Ubound(GAS_SIZE_ARRAY) + 1
gasSizeDropList.AddItem GAS_SIZE_ARRAY(i - 1)
Next
'Display the display
If w.ShowModal Then
If gasSizeDropList.Text = "" Then
MsgBox "Gas Giant size is required.",16
SearchGasGiantGUI()
Exit Sub
End If
src = CreateSearcher()
src.BodyType = BODY_TYPE_GASGIANT
src.AddFieldSearch "Gas Giant Size", gasSizeDropList.Text
sector.Search src
ShowSearchResults src
FreeObject src
End If
End Sub
'------------------------------------------------------------------------------
'GUI for Searching Terrestrial
'------------------------------------------------------------------------------
Sub SearchTerrestrialGUI()
w = NewDialogWindow()
w.SetPosition 10, 20, 375, 380
w.Centered = TRUE
l = w.AddLabel()
l.SetPosition 10, 10, 100, 24
l.Caption = "Size:"
terrestrialSizeDropList = w.AddDropList()
terrestrialSizeDropList.SetPosition 40, 8, 80, 24
For i = 1 To Ubound(TERRESTRIAL_SIZE_ARRAY) + 1
terrestrialSizeDropList.AddItem TERRESTRIAL_SIZE_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 130, 10, 100, 24
l.Caption = "Type:"
terrestrialTypeDropList = w.AddDropList()
terrestrialTypeDropList.SetPosition 165, 8, 90, 24
For i = 1 To Ubound(TERRESTRIAL_TYPE_ARRAY) + 1
terrestrialTypeDropList.AddItem TERRESTRIAL_TYPE_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 45, 100, 24
l.Caption = "Atmosphere Composition:"
atmosphericCompositionDropList = w.AddDropList()
atmosphericCompositionDropList.SetPosition 132, 43, 225, 24
For i = 1 To Ubound(ATMOSPHERIC_COMPOSITION_ARRAY) + 1
atmosphericCompositionDropList.AddItem ATMOSPHERIC_COMPOSITION_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 80, 100, 24
l.Caption = "Atmosphere Density:"
atmosphericDensityDropList = w.AddDropList()
atmosphericDensityDropList.SetPosition 112, 78, 80, 24
For i = 1 To Ubound(ATMOSPHERIC_DENSITY_ARRAY) + 1
atmosphericDensityDropList.AddItem ATMOSPHERIC_DENSITY_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 115, 100, 24
l.Caption = "Climate:"
climateTypeDropList = w.AddDropList()
climateTypeDropList.SetPosition 50, 113, 80, 24
For i = 1 To Ubound(CLIMATE_TYPE_ARRAY) + 1
climateTypeDropList.AddItem CLIMATE_TYPE_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 150, 100, 24
l.Caption = "Volcanic Activity:"
volcanicActivityDropList = w.AddDropList()
volcanicActivityDropList.SetPosition 95, 148, 80, 24
For i = 1 To Ubound(GEOLOGICAL_ACTIVITY_ARRAY) + 1
volcanicActivityDropList.AddItem GEOLOGICAL_ACTIVITY_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 185, 100, 24
l.Caption = "Tectonic Activity:"
tectonicActivityDropList = w.AddDropList()
tectonicActivityDropList.SetPosition 95, 183, 80, 24
For i = 1 To Ubound(GEOLOGICAL_ACTIVITY_ARRAY) + 1
tectonicActivityDropList.AddItem GEOLOGICAL_ACTIVITY_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 220, 100, 24
l.Caption = "Resource Value:"
resourceValueDropList = w.AddDropList()
resourceValueDropList.SetPosition 95, 218, 120, 24
For i = 3 To Ubound(RESOURCE_VALUE_ARRAY) - 1
resourceValueDropList.AddItem RESOURCE_VALUE_ARRAY(i - 1)
Next
l = w.AddLabel()
l.SetPosition 10, 255, 100, 24
l.Caption = "Habitability Value:"
habitabilityValueDropList = w.AddDropList()
habitabilityValueDropList.SetPosition 95, 253, 50, 24
For i = -2 To 8
habitabilityValueDropList.AddItem GetSign(i)
Next
l = w.AddLabel()
l.SetPosition 10, 290, 100, 24
l.Caption = "Affinity Score:"
affinityScoreDropList = w.AddDropList()
affinityScoreDropList.SetPosition 95, 288, 50, 24
For i = -5 To 10
affinityScoreDropList.AddItem GetSign(i)
Next
'Display the display
If w.ShowModal Then
searchFlag = FALSE
src = CreateSearcher()
src.BodyType = BODY_TYPE_TERRESTRIAL
If terrestrialSizeDropList.Text <> "" Then
src.AddFieldSearch "Terrestrial Size", terrestrialSizeDropList.Text
searchFlag = TRUE
End If
If terrestrialTypeDropList.Text <> "" Then
src.AddFieldSearch "Terrestrial Type", terrestrialTypeDropList.Text
searchFlag = TRUE
End If
If atmosphericCompositionDropList.Text <> "" Then
src.AddFieldSearch "Atmospheric Composition", "." & atmosphericCompositionDropList.Text & "."
searchFlag = TRUE
End If
If atmosphericDensityDropList.Text <> "" Then
src.AddFieldSearch "Atmospheric Density", "." & atmosphericDensityDropList.Text & "."
searchFlag = TRUE
End If
If climateTypeDropList.Text <> "" Then
src.AddFieldSearch "Climate", climateTypeDropList.Text
searchFlag = TRUE
End If
If volcanicActivityDropList.Text <> "" Then
src.AddFieldSearch "Volcanic Activity", volcanicActivityDropList.Text
searchFlag = TRUE
End If
If tectonicActivityDropList.Text <> "" Then
src.AddFieldSearch "Tectonic Activity", tectonicActivityDropList.Text
searchFlag = TRUE
End If
If resourceValueDropList.Text <> "" Then
src.AddFieldSearch "Resource Value", resourceValueDropList.Text
searchFlag = TRUE
End If
If habitabilityValueDropList.Text <> "" Then
src.AddFieldSearch "Habitability Value", habitabilityValueDropList.Text
searchFlag = TRUE
End If
If affinityScoreDropList.Text <> "" Then
src.AddFieldSearch "Affinity Score", affinityScoreDropList.Text
searchFlag = TRUE
End If
If searchFlag = TRUE Then
sector.Search src
ShowSearchResults src
FreeObject src
Else
MsgBox "No search parameters selected.",16
SearchTerrestrialGUI()
Exit Sub
End If
End If
End Sub
'------------------------------------------------------------------------------
'Include Files
'------------------------------------------------------------------------------
Sub Include(FilePath)
Dim FSO, s, TS
Set FSO = CreateObject("Scripting.FileSystemObject")
Set TS = FSO.OpenTextFile(PluginDirectory() & "\" & FilePath, 1, FALSE)
s = TS.ReadAll
TS.Close
Set TS = Nothing
Set FSO = Nothing
ExecuteGlobal s
End Sub