@px-lsp/server 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +334 -0
  3. package/THIRD-PARTY-NOTICES.md +83 -0
  4. package/data/ck3/dataTypes.json +2195 -0
  5. package/data/ck3/data_types/data_types_common.txt +2040 -0
  6. package/data/ck3/data_types/data_types_gui.txt +5264 -0
  7. package/data/ck3/data_types/data_types_internalclausewitzgui.txt +14843 -0
  8. package/data/ck3/data_types/data_types_script.txt +4251 -0
  9. package/data/ck3/data_types/data_types_uncategorized.txt +109984 -0
  10. package/data/ck3/freqs.json +1 -0
  11. package/data/ck3/guiSchema.json +6344 -0
  12. package/data/ck3/script_docs/effects.log +16059 -0
  13. package/data/ck3/script_docs/event_targets.log +2098 -0
  14. package/data/ck3/script_docs/modifiers.log +2228 -0
  15. package/data/ck3/script_docs/on_actions.log +5275 -0
  16. package/data/ck3/script_docs/triggers.log +11991 -0
  17. package/data/ck3/structures.json +9743 -0
  18. package/data/ck3/wikidocs/ATTRIBUTION.md +18 -0
  19. package/data/ck3/wikidocs/Data_types.md +2568 -0
  20. package/data/ck3/wikidocs/Effects_list.md +1176 -0
  21. package/data/ck3/wikidocs/Scopes_list.md +341 -0
  22. package/data/ck3/wikidocs/Triggers_list.md +1097 -0
  23. package/data/eu5/data_types/data_types_common.txt +2087 -0
  24. package/data/eu5/data_types/data_types_gui.txt +6732 -0
  25. package/data/eu5/data_types/data_types_internalclausewitzgui.txt +19276 -0
  26. package/data/eu5/data_types/data_types_script.txt +5688 -0
  27. package/data/eu5/data_types/data_types_uncategorized.txt +135569 -0
  28. package/data/vic3/data_types/data_types_common.txt +2021 -0
  29. package/data/vic3/data_types/data_types_gui.txt +5592 -0
  30. package/data/vic3/data_types/data_types_internalclausewitzgui.txt +17304 -0
  31. package/data/vic3/data_types/data_types_script.txt +2817 -0
  32. package/data/vic3/data_types/data_types_uncategorized.txt +84354 -0
  33. package/data/vic3/freqs.json +1 -0
  34. package/data/vic3/guiSchema.json +5578 -0
  35. package/data/vic3/script_docs/effects.log +38135 -0
  36. package/data/vic3/script_docs/event_targets.log +2028 -0
  37. package/data/vic3/script_docs/modifiers.log +18954 -0
  38. package/data/vic3/script_docs/on_actions.log +1561 -0
  39. package/data/vic3/script_docs/triggers.log +15738 -0
  40. package/data/vic3/structures.json +10189 -0
  41. package/dist/server.js +63668 -0
  42. package/media/px-lsp.svg +12 -0
  43. package/package.json +50 -0
  44. package/src/clientMode.ts +60 -0
  45. package/src/coa/coa.ts +184 -0
  46. package/src/coa/coaParse.ts +267 -0
  47. package/src/context.ts +78 -0
  48. package/src/contextKeywords.ts +224 -0
  49. package/src/data/dataBindingMacros.ts +82 -0
  50. package/src/data/dataFnDocs.ts +152 -0
  51. package/src/data/dataFnUsage.ts +431 -0
  52. package/src/data/dataTypes.ts +279 -0
  53. package/src/data/defines.ts +123 -0
  54. package/src/data/docsParser.ts +453 -0
  55. package/src/data/keywordDocs.ts +98 -0
  56. package/src/data/modifierTemplates.ts +143 -0
  57. package/src/data/textFormatting.ts +165 -0
  58. package/src/data/wikiDocs.ts +187 -0
  59. package/src/dds/decoder.ts +1007 -0
  60. package/src/dds/encode.ts +235 -0
  61. package/src/dds/index.ts +58 -0
  62. package/src/dds/png.ts +96 -0
  63. package/src/dds/tga.ts +62 -0
  64. package/src/documents.ts +35 -0
  65. package/src/features/assetPaths.ts +169 -0
  66. package/src/features/codeActions.ts +148 -0
  67. package/src/features/colors.ts +244 -0
  68. package/src/features/completion.ts +961 -0
  69. package/src/features/datafunction.ts +729 -0
  70. package/src/features/definition.ts +84 -0
  71. package/src/features/diagnostics.ts +244 -0
  72. package/src/features/folding.ts +106 -0
  73. package/src/features/formatting.ts +60 -0
  74. package/src/features/guiLanguage.ts +366 -0
  75. package/src/features/guiNavigation.ts +140 -0
  76. package/src/features/guiTree.ts +97 -0
  77. package/src/features/hover.ts +817 -0
  78. package/src/features/hoverRender.ts +222 -0
  79. package/src/features/inlayHints.ts +147 -0
  80. package/src/features/locFormatting.ts +127 -0
  81. package/src/features/references.ts +70 -0
  82. package/src/features/rename.ts +135 -0
  83. package/src/features/scopeAt.ts +65 -0
  84. package/src/features/semanticTokens.ts +188 -0
  85. package/src/features/signatureHelp.ts +72 -0
  86. package/src/features/symbols.ts +241 -0
  87. package/src/features/textureHover.ts +143 -0
  88. package/src/features/workspaceSymbols.ts +69 -0
  89. package/src/games/active.ts +19 -0
  90. package/src/games/ck3/ambientScopes.ts +273 -0
  91. package/src/games/ck3/index.ts +38 -0
  92. package/src/games/ck3/meta.ts +28 -0
  93. package/src/games/ck3/modifierPlaceholders.ts +61 -0
  94. package/src/games/ck3/saveSchema.ts +134 -0
  95. package/src/games/ck3/scaffolds.ts +197 -0
  96. package/src/games/ck3/schema.ts +422 -0
  97. package/src/games/ck3/structures.ts +887 -0
  98. package/src/games/eu5/index.ts +75 -0
  99. package/src/games/eu5/meta.ts +44 -0
  100. package/src/games/eu5/scaffolds.ts +49 -0
  101. package/src/games/eu5/schema.generated.ts +1043 -0
  102. package/src/games/jomini/variables.ts +134 -0
  103. package/src/games/profile.ts +205 -0
  104. package/src/games/registry.ts +27 -0
  105. package/src/games/vic3/index.ts +52 -0
  106. package/src/games/vic3/meta.ts +55 -0
  107. package/src/games/vic3/saveSchema.ts +77 -0
  108. package/src/games/vic3/scaffolds.ts +135 -0
  109. package/src/games/vic3/schema.ts +650 -0
  110. package/src/games/vic3/structures.ts +33 -0
  111. package/src/gui/anchorSpec.ts +66 -0
  112. package/src/gui/declMarkers.ts +30 -0
  113. package/src/gui/fillGeometry.ts +101 -0
  114. package/src/gui/guiDefs.ts +386 -0
  115. package/src/gui/guiDependencies.ts +352 -0
  116. package/src/gui/guiLinks.ts +64 -0
  117. package/src/gui/layoutEngine.ts +1998 -0
  118. package/src/gui/layoutService.ts +221 -0
  119. package/src/gui/measuredMetrics.ts +21 -0
  120. package/src/gui/previewService.ts +89 -0
  121. package/src/gui/saveSchema.ts +220 -0
  122. package/src/gui/saveValues.ts +399 -0
  123. package/src/gui/saveZip.ts +60 -0
  124. package/src/gui/sourceEdit.ts +535 -0
  125. package/src/gui/sourceEditService.ts +439 -0
  126. package/src/gui/sourceModel.ts +603 -0
  127. package/src/gui/textResolve.ts +145 -0
  128. package/src/gui/textureInfo.ts +106 -0
  129. package/src/gui/vocabulary.ts +149 -0
  130. package/src/gui/widgetEdit.ts +52 -0
  131. package/src/gui/widgetInfo.ts +245 -0
  132. package/src/index/docComments.ts +103 -0
  133. package/src/index/extract.ts +252 -0
  134. package/src/index/indexer.ts +369 -0
  135. package/src/index/intern.ts +101 -0
  136. package/src/index/lazyRefs.ts +145 -0
  137. package/src/index/modOrigin.ts +69 -0
  138. package/src/index/references.ts +534 -0
  139. package/src/overview/dependencies.ts +240 -0
  140. package/src/overview/eventBanner.ts +95 -0
  141. package/src/overview/eventDetail.ts +482 -0
  142. package/src/overview/eventGraph.ts +617 -0
  143. package/src/overview/eventVocabulary.ts +214 -0
  144. package/src/overview/locCoverage.ts +138 -0
  145. package/src/overview/modOverview.ts +29 -0
  146. package/src/overview/overrides.ts +89 -0
  147. package/src/parseCache.ts +81 -0
  148. package/src/parser/cst.ts +257 -0
  149. package/src/parser/encoding.ts +106 -0
  150. package/src/parser/index.ts +7 -0
  151. package/src/parser/lexer.ts +245 -0
  152. package/src/parser/locParser.ts +276 -0
  153. package/src/parser/parser.ts +360 -0
  154. package/src/schema/freqs.ts +70 -0
  155. package/src/schema/loader.ts +113 -0
  156. package/src/schema/types.ts +142 -0
  157. package/src/scopes/inference.ts +478 -0
  158. package/src/scopes/model.ts +148 -0
  159. package/src/scopes/varTypes.ts +290 -0
  160. package/src/server.ts +1894 -0
  161. package/src/serverData.ts +98 -0
  162. package/src/structure.ts +56 -0
  163. package/src/wordAt.ts +49 -0
@@ -0,0 +1,2021 @@
1
+ Application
2
+ Definition type: Global promote
3
+ Return type: Application
4
+
5
+ -----------------------
6
+
7
+ GetVariableSystem
8
+ Description: Access the global variable system
9
+ Definition type: Global promote
10
+ Return type: VariableSystem
11
+
12
+ -----------------------
13
+
14
+ Abs_CFixedPoint( Arg0 )
15
+ Definition type: Global function
16
+ Return type: CFixedPoint
17
+
18
+ -----------------------
19
+
20
+ Abs_float( Arg0 )
21
+ Definition type: Global function
22
+ Return type: float
23
+
24
+ -----------------------
25
+
26
+ Abs_int32( Arg0 )
27
+ Definition type: Global function
28
+ Return type: int32
29
+
30
+ -----------------------
31
+
32
+ Abs_int64( Arg0 )
33
+ Definition type: Global function
34
+ Return type: int64
35
+
36
+ -----------------------
37
+
38
+ AddLocalizationIf( Arg0, Arg1 )
39
+ Definition type: Global function
40
+ Return type: CString
41
+
42
+ -----------------------
43
+
44
+ AddTextIf( Arg0, Arg1 )
45
+ Definition type: Global function
46
+ Return type: CString
47
+
48
+ -----------------------
49
+
50
+ Add_CFixedPoint( Arg0, Arg1 )
51
+ Definition type: Global function
52
+ Return type: CFixedPoint
53
+
54
+ -----------------------
55
+
56
+ Add_CVector2f( Arg0, Arg1 )
57
+ Definition type: Global function
58
+ Return type: CVector2f
59
+
60
+ -----------------------
61
+
62
+ Add_float( Arg0, Arg1 )
63
+ Definition type: Global function
64
+ Return type: float
65
+
66
+ -----------------------
67
+
68
+ Add_int32( Arg0, Arg1 )
69
+ Definition type: Global function
70
+ Return type: int32
71
+
72
+ -----------------------
73
+
74
+ Add_int64( Arg0, Arg1 )
75
+ Definition type: Global function
76
+ Return type: int64
77
+
78
+ -----------------------
79
+
80
+ Add_uint32( Arg0, Arg1 )
81
+ Definition type: Global function
82
+ Return type: uint32
83
+
84
+ -----------------------
85
+
86
+ Add_uint64( Arg0, Arg1 )
87
+ Definition type: Global function
88
+ Return type: uint64
89
+
90
+ -----------------------
91
+
92
+ And( Arg0, Arg1 )
93
+ Description: If both arguments are true
94
+ Definition type: Global function
95
+ Return type: bool
96
+
97
+ -----------------------
98
+
99
+ And3( Arg0, Arg1, Arg2 )
100
+ Description: If all 3 arguments are true
101
+ Definition type: Global function
102
+ Return type: bool
103
+
104
+ -----------------------
105
+
106
+ And4( Arg0, Arg1, Arg2, Arg3 )
107
+ Description: If all 4 arguments are true
108
+ Definition type: Global function
109
+ Return type: bool
110
+
111
+ -----------------------
112
+
113
+ And5( Arg0, Arg1, Arg2, Arg3, Arg4 )
114
+ Description: If all 5 arguments are true
115
+ Definition type: Global function
116
+ Return type: bool
117
+
118
+ -----------------------
119
+
120
+ And6( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5 )
121
+ Description: If all 6 arguments are true
122
+ Definition type: Global function
123
+ Return type: bool
124
+
125
+ -----------------------
126
+
127
+ And7( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6 )
128
+ Description: If all 7 arguments are true
129
+ Definition type: Global function
130
+ Return type: bool
131
+
132
+ -----------------------
133
+
134
+ And8( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7 )
135
+ Description: If all 8 arguments are true
136
+ Definition type: Global function
137
+ Return type: bool
138
+
139
+ -----------------------
140
+
141
+ AndEvalAll( Arg0, Arg1 )
142
+ Description: Evaluates all arguments and then checks if both arguments are true. Using 'And' is preferred.
143
+ Definition type: Global function
144
+ Return type: bool
145
+
146
+ -----------------------
147
+
148
+ BetweenInclusiveOfMax_CFixedPoint( Arg0, Arg1, Arg2 )
149
+ Definition type: Global function
150
+ Return type: bool
151
+
152
+ -----------------------
153
+
154
+ BetweenInclusiveOfMax_float( Arg0, Arg1, Arg2 )
155
+ Definition type: Global function
156
+ Return type: bool
157
+
158
+ -----------------------
159
+
160
+ BetweenInclusiveOfMax_int32( Arg0, Arg1, Arg2 )
161
+ Definition type: Global function
162
+ Return type: bool
163
+
164
+ -----------------------
165
+
166
+ BetweenInclusiveOfMax_int64( Arg0, Arg1, Arg2 )
167
+ Definition type: Global function
168
+ Return type: bool
169
+
170
+ -----------------------
171
+
172
+ BetweenInclusiveOfMax_uint32( Arg0, Arg1, Arg2 )
173
+ Definition type: Global function
174
+ Return type: bool
175
+
176
+ -----------------------
177
+
178
+ BetweenInclusiveOfMax_uint64( Arg0, Arg1, Arg2 )
179
+ Definition type: Global function
180
+ Return type: bool
181
+
182
+ -----------------------
183
+
184
+ BetweenInclusiveOfMin_CFixedPoint( Arg0, Arg1, Arg2 )
185
+ Definition type: Global function
186
+ Return type: bool
187
+
188
+ -----------------------
189
+
190
+ BetweenInclusiveOfMin_float( Arg0, Arg1, Arg2 )
191
+ Definition type: Global function
192
+ Return type: bool
193
+
194
+ -----------------------
195
+
196
+ BetweenInclusiveOfMin_int32( Arg0, Arg1, Arg2 )
197
+ Definition type: Global function
198
+ Return type: bool
199
+
200
+ -----------------------
201
+
202
+ BetweenInclusiveOfMin_int64( Arg0, Arg1, Arg2 )
203
+ Definition type: Global function
204
+ Return type: bool
205
+
206
+ -----------------------
207
+
208
+ BetweenInclusiveOfMin_uint32( Arg0, Arg1, Arg2 )
209
+ Definition type: Global function
210
+ Return type: bool
211
+
212
+ -----------------------
213
+
214
+ BetweenInclusiveOfMin_uint64( Arg0, Arg1, Arg2 )
215
+ Definition type: Global function
216
+ Return type: bool
217
+
218
+ -----------------------
219
+
220
+ BetweenInclusive_CFixedPoint( Arg0, Arg1, Arg2 )
221
+ Definition type: Global function
222
+ Return type: bool
223
+
224
+ -----------------------
225
+
226
+ BetweenInclusive_float( Arg0, Arg1, Arg2 )
227
+ Definition type: Global function
228
+ Return type: bool
229
+
230
+ -----------------------
231
+
232
+ BetweenInclusive_int32( Arg0, Arg1, Arg2 )
233
+ Definition type: Global function
234
+ Return type: bool
235
+
236
+ -----------------------
237
+
238
+ BetweenInclusive_int64( Arg0, Arg1, Arg2 )
239
+ Definition type: Global function
240
+ Return type: bool
241
+
242
+ -----------------------
243
+
244
+ BetweenInclusive_uint32( Arg0, Arg1, Arg2 )
245
+ Definition type: Global function
246
+ Return type: bool
247
+
248
+ -----------------------
249
+
250
+ BetweenInclusive_uint64( Arg0, Arg1, Arg2 )
251
+ Definition type: Global function
252
+ Return type: bool
253
+
254
+ -----------------------
255
+
256
+ Between_CFixedPoint( Arg0, Arg1, Arg2 )
257
+ Definition type: Global function
258
+ Return type: bool
259
+
260
+ -----------------------
261
+
262
+ Between_float( Arg0, Arg1, Arg2 )
263
+ Definition type: Global function
264
+ Return type: bool
265
+
266
+ -----------------------
267
+
268
+ Between_int32( Arg0, Arg1, Arg2 )
269
+ Definition type: Global function
270
+ Return type: bool
271
+
272
+ -----------------------
273
+
274
+ Between_int64( Arg0, Arg1, Arg2 )
275
+ Definition type: Global function
276
+ Return type: bool
277
+
278
+ -----------------------
279
+
280
+ Between_uint32( Arg0, Arg1, Arg2 )
281
+ Definition type: Global function
282
+ Return type: bool
283
+
284
+ -----------------------
285
+
286
+ Between_uint64( Arg0, Arg1, Arg2 )
287
+ Definition type: Global function
288
+ Return type: bool
289
+
290
+ -----------------------
291
+
292
+ BoolTo1And2( Arg0 )
293
+ Definition type: Global function
294
+ Return type: int32
295
+
296
+ -----------------------
297
+
298
+ BoolTo2And1( Arg0 )
299
+ Definition type: Global function
300
+ Return type: int32
301
+
302
+ -----------------------
303
+
304
+ ConcatIfNeitherEmpty( Arg0, Arg1 )
305
+ Definition type: Global function
306
+ Return type: CString
307
+
308
+ -----------------------
309
+
310
+ Concatenate( Arg0, Arg1 )
311
+ Definition type: Global function
312
+ Return type: CString
313
+
314
+ -----------------------
315
+
316
+ Concatenate3( Arg0, Arg1, Arg2 )
317
+ Definition type: Global function
318
+ Return type: CString
319
+
320
+ -----------------------
321
+
322
+ Concatenate4( Arg0, Arg1, Arg2, Arg3 )
323
+ Definition type: Global function
324
+ Return type: CString
325
+
326
+ -----------------------
327
+
328
+ Concatenate5( Arg0, Arg1, Arg2, Arg3, Arg4 )
329
+ Definition type: Global function
330
+ Return type: CString
331
+
332
+ -----------------------
333
+
334
+ Concatenate6( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5 )
335
+ Definition type: Global function
336
+ Return type: CString
337
+
338
+ -----------------------
339
+
340
+ Concatenate7( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6 )
341
+ Definition type: Global function
342
+ Return type: CString
343
+
344
+ -----------------------
345
+
346
+ Concatenate8( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7 )
347
+ Definition type: Global function
348
+ Return type: CString
349
+
350
+ -----------------------
351
+
352
+ CurrentAndMaxToProgressbarValueInt32( Arg0, Arg1 )
353
+ Description: Get the progress (0.0-100.0) of CurrentArg to MaxArg. Value is clamped between 0 and 100.
354
+ Definition type: Global function
355
+ Return type: float
356
+
357
+ -----------------------
358
+
359
+ DataModelFirst( Arg0, Arg1 )
360
+ Definition type: Global function
361
+ Return type: [unregistered]
362
+
363
+ -----------------------
364
+
365
+ DataModelHasItems( Arg0 )
366
+ Definition type: Global function
367
+ Return type: bool
368
+
369
+ -----------------------
370
+
371
+ DataModelLast( Arg0, Arg1 )
372
+ Definition type: Global function
373
+ Return type: [unregistered]
374
+
375
+ -----------------------
376
+
377
+ DataModelRepeatedItem( Arg0 )
378
+ Description: The data function used for mocking empty list items, requires int32 (number of items) as a parameter. Example: datamodel = [RepeatedItem( '(int32)4' )]
379
+ Definition type: Global function
380
+ Return type: [unregistered]
381
+
382
+ -----------------------
383
+
384
+ DataModelSkipFirst( Arg0, Arg1 )
385
+ Definition type: Global function
386
+ Return type: [unregistered]
387
+
388
+ -----------------------
389
+
390
+ DataModelSkipLast( Arg0, Arg1 )
391
+ Definition type: Global function
392
+ Return type: [unregistered]
393
+
394
+ -----------------------
395
+
396
+ DataModelSubSpan( Arg0, Arg1, Arg2 )
397
+ Definition type: Global function
398
+ Return type: [unregistered]
399
+
400
+ -----------------------
401
+
402
+ Divide_CFixedPoint( Arg0, Arg1 )
403
+ Definition type: Global function
404
+ Return type: CFixedPoint
405
+
406
+ -----------------------
407
+
408
+ Divide_CVector2f( Arg0, Arg1 )
409
+ Definition type: Global function
410
+ Return type: CVector2f
411
+
412
+ -----------------------
413
+
414
+ Divide_float( Arg0, Arg1 )
415
+ Definition type: Global function
416
+ Return type: float
417
+
418
+ -----------------------
419
+
420
+ Divide_int32( Arg0, Arg1 )
421
+ Definition type: Global function
422
+ Return type: int32
423
+
424
+ -----------------------
425
+
426
+ Divide_int64( Arg0, Arg1 )
427
+ Definition type: Global function
428
+ Return type: int64
429
+
430
+ -----------------------
431
+
432
+ Divide_uint32( Arg0, Arg1 )
433
+ Definition type: Global function
434
+ Return type: uint32
435
+
436
+ -----------------------
437
+
438
+ Divide_uint64( Arg0, Arg1 )
439
+ Definition type: Global function
440
+ Return type: uint64
441
+
442
+ -----------------------
443
+
444
+ DoubleToFloat( Arg0 )
445
+ Definition type: Global function
446
+ Return type: float
447
+
448
+ -----------------------
449
+
450
+ EqualTo_CFixedPoint( Arg0, Arg1 )
451
+ Definition type: Global function
452
+ Return type: bool
453
+
454
+ -----------------------
455
+
456
+ EqualTo_CVector2f( Arg0, Arg1 )
457
+ Definition type: Global function
458
+ Return type: bool
459
+
460
+ -----------------------
461
+
462
+ EqualTo_float( Arg0, Arg1 )
463
+ Definition type: Global function
464
+ Return type: bool
465
+
466
+ -----------------------
467
+
468
+ EqualTo_int32( Arg0, Arg1 )
469
+ Definition type: Global function
470
+ Return type: bool
471
+
472
+ -----------------------
473
+
474
+ EqualTo_int64( Arg0, Arg1 )
475
+ Definition type: Global function
476
+ Return type: bool
477
+
478
+ -----------------------
479
+
480
+ EqualTo_string( Arg0, Arg1 )
481
+ Definition type: Global function
482
+ Return type: bool
483
+
484
+ -----------------------
485
+
486
+ EqualTo_uint32( Arg0, Arg1 )
487
+ Definition type: Global function
488
+ Return type: bool
489
+
490
+ -----------------------
491
+
492
+ EqualTo_uint64( Arg0, Arg1 )
493
+ Definition type: Global function
494
+ Return type: bool
495
+
496
+ -----------------------
497
+
498
+ FixedPointToFloat( Arg0 )
499
+ Definition type: Global function
500
+ Return type: float
501
+
502
+ -----------------------
503
+
504
+ FixedPointToInt( Arg0 )
505
+ Definition type: Global function
506
+ Return type: int32
507
+
508
+ -----------------------
509
+
510
+ FixedPointToProgressbarValue( Arg0 )
511
+ Description: Convert to a progress percentage value (by multiplying with 100, unclamped).
512
+ Definition type: Global function
513
+ Return type: float
514
+
515
+ -----------------------
516
+
517
+ GetDataModelSize( Arg0 )
518
+ Definition type: Global function
519
+ Return type: int32
520
+
521
+ -----------------------
522
+
523
+ GetDefine( Arg0, Arg1 )
524
+ Definition type: Global function
525
+ Return type: [unregistered]
526
+
527
+ -----------------------
528
+
529
+ GetDefineAtIndex( Arg0, Arg1, Arg2 )
530
+ Definition type: Global function
531
+ Return type: [unregistered]
532
+
533
+ -----------------------
534
+
535
+ GetGameVersionDisplay
536
+ Definition type: Global function
537
+ Return type: CString
538
+
539
+ -----------------------
540
+
541
+ GetLocalizedDefine( Arg0, Arg1 )
542
+ Definition type: Global function
543
+ Return type: CString
544
+
545
+ -----------------------
546
+
547
+ GetLocalizedDefineAtIndex( Arg0, Arg1, Arg2 )
548
+ Definition type: Global function
549
+ Return type: CString
550
+
551
+ -----------------------
552
+
553
+ GetNumberAbove_int32( Arg0, Arg1 )
554
+ Definition type: Global function
555
+ Return type: int32
556
+
557
+ -----------------------
558
+
559
+ GetString_CPdxFloatRect( Arg0 )
560
+ Definition type: Global function
561
+ Return type: CString
562
+
563
+ -----------------------
564
+
565
+ GetString_CPdxIntRect( Arg0 )
566
+ Definition type: Global function
567
+ Return type: CString
568
+
569
+ -----------------------
570
+
571
+ GetString_CVector2f( Arg0 )
572
+ Definition type: Global function
573
+ Return type: CString
574
+
575
+ -----------------------
576
+
577
+ GetString_CVector2i( Arg0 )
578
+ Definition type: Global function
579
+ Return type: CString
580
+
581
+ -----------------------
582
+
583
+ GetString_CVector3f( Arg0 )
584
+ Definition type: Global function
585
+ Return type: CString
586
+
587
+ -----------------------
588
+
589
+ GetString_CVector3i( Arg0 )
590
+ Definition type: Global function
591
+ Return type: CString
592
+
593
+ -----------------------
594
+
595
+ GetString_CVector4f( Arg0 )
596
+ Definition type: Global function
597
+ Return type: CString
598
+
599
+ -----------------------
600
+
601
+ GetString_CVector4i( Arg0 )
602
+ Definition type: Global function
603
+ Return type: CString
604
+
605
+ -----------------------
606
+
607
+ GreaterThanOrEqualTo_CFixedPoint( Arg0, Arg1 )
608
+ Definition type: Global function
609
+ Return type: bool
610
+
611
+ -----------------------
612
+
613
+ GreaterThanOrEqualTo_float( Arg0, Arg1 )
614
+ Definition type: Global function
615
+ Return type: bool
616
+
617
+ -----------------------
618
+
619
+ GreaterThanOrEqualTo_int32( Arg0, Arg1 )
620
+ Definition type: Global function
621
+ Return type: bool
622
+
623
+ -----------------------
624
+
625
+ GreaterThanOrEqualTo_int64( Arg0, Arg1 )
626
+ Definition type: Global function
627
+ Return type: bool
628
+
629
+ -----------------------
630
+
631
+ GreaterThanOrEqualTo_uint32( Arg0, Arg1 )
632
+ Definition type: Global function
633
+ Return type: bool
634
+
635
+ -----------------------
636
+
637
+ GreaterThanOrEqualTo_uint64( Arg0, Arg1 )
638
+ Definition type: Global function
639
+ Return type: bool
640
+
641
+ -----------------------
642
+
643
+ GreaterThan_CFixedPoint( Arg0, Arg1 )
644
+ Definition type: Global function
645
+ Return type: bool
646
+
647
+ -----------------------
648
+
649
+ GreaterThan_float( Arg0, Arg1 )
650
+ Definition type: Global function
651
+ Return type: bool
652
+
653
+ -----------------------
654
+
655
+ GreaterThan_int32( Arg0, Arg1 )
656
+ Definition type: Global function
657
+ Return type: bool
658
+
659
+ -----------------------
660
+
661
+ GreaterThan_int64( Arg0, Arg1 )
662
+ Definition type: Global function
663
+ Return type: bool
664
+
665
+ -----------------------
666
+
667
+ GreaterThan_uint32( Arg0, Arg1 )
668
+ Definition type: Global function
669
+ Return type: bool
670
+
671
+ -----------------------
672
+
673
+ GreaterThan_uint64( Arg0, Arg1 )
674
+ Definition type: Global function
675
+ Return type: bool
676
+
677
+ -----------------------
678
+
679
+ InDebugMode
680
+ Description: Is the game in Debug mode?
681
+ Definition type: Global function
682
+ Return type: bool
683
+
684
+ -----------------------
685
+
686
+ InReleaseMode
687
+ Description: Is the game in Release mode?
688
+ Definition type: Global function
689
+ Return type: bool
690
+
691
+ -----------------------
692
+
693
+ IntToFixedPoint( Arg0 )
694
+ Definition type: Global function
695
+ Return type: float
696
+
697
+ -----------------------
698
+
699
+ IntToFloat( Arg0 )
700
+ Definition type: Global function
701
+ Return type: float
702
+
703
+ -----------------------
704
+
705
+ IntToFrameIndex( Arg0 )
706
+ Description: Adds 1 to Arg1.
707
+ Definition type: Global function
708
+ Return type: int32
709
+
710
+ -----------------------
711
+
712
+ IntToUnsigned( Arg0 )
713
+ Definition type: Global function
714
+ Return type: float
715
+
716
+ -----------------------
717
+
718
+ IsDataModelEmpty( Arg0 )
719
+ Definition type: Global function
720
+ Return type: bool
721
+
722
+ -----------------------
723
+
724
+ IsEven_int32( Arg0 )
725
+ Definition type: Global function
726
+ Return type: bool
727
+
728
+ -----------------------
729
+
730
+ IsEven_int64( Arg0 )
731
+ Definition type: Global function
732
+ Return type: bool
733
+
734
+ -----------------------
735
+
736
+ IsEven_uint32( Arg0 )
737
+ Definition type: Global function
738
+ Return type: bool
739
+
740
+ -----------------------
741
+
742
+ IsEven_uint64( Arg0 )
743
+ Definition type: Global function
744
+ Return type: bool
745
+
746
+ -----------------------
747
+
748
+ IsOdd_int32( Arg0 )
749
+ Definition type: Global function
750
+ Return type: bool
751
+
752
+ -----------------------
753
+
754
+ IsOdd_int64( Arg0 )
755
+ Definition type: Global function
756
+ Return type: bool
757
+
758
+ -----------------------
759
+
760
+ IsOdd_uint32( Arg0 )
761
+ Definition type: Global function
762
+ Return type: bool
763
+
764
+ -----------------------
765
+
766
+ IsOdd_uint64( Arg0 )
767
+ Definition type: Global function
768
+ Return type: bool
769
+
770
+ -----------------------
771
+
772
+ JoinText( Arg0, Arg1, Arg2 )
773
+ Definition type: Global function
774
+ Return type: CString
775
+
776
+ -----------------------
777
+
778
+ LessThanOrEqualTo_CFixedPoint( Arg0, Arg1 )
779
+ Definition type: Global function
780
+ Return type: bool
781
+
782
+ -----------------------
783
+
784
+ LessThanOrEqualTo_float( Arg0, Arg1 )
785
+ Definition type: Global function
786
+ Return type: bool
787
+
788
+ -----------------------
789
+
790
+ LessThanOrEqualTo_int32( Arg0, Arg1 )
791
+ Definition type: Global function
792
+ Return type: bool
793
+
794
+ -----------------------
795
+
796
+ LessThanOrEqualTo_int64( Arg0, Arg1 )
797
+ Definition type: Global function
798
+ Return type: bool
799
+
800
+ -----------------------
801
+
802
+ LessThanOrEqualTo_uint32( Arg0, Arg1 )
803
+ Definition type: Global function
804
+ Return type: bool
805
+
806
+ -----------------------
807
+
808
+ LessThanOrEqualTo_uint64( Arg0, Arg1 )
809
+ Definition type: Global function
810
+ Return type: bool
811
+
812
+ -----------------------
813
+
814
+ LessThan_CFixedPoint( Arg0, Arg1 )
815
+ Definition type: Global function
816
+ Return type: bool
817
+
818
+ -----------------------
819
+
820
+ LessThan_float( Arg0, Arg1 )
821
+ Definition type: Global function
822
+ Return type: bool
823
+
824
+ -----------------------
825
+
826
+ LessThan_int32( Arg0, Arg1 )
827
+ Definition type: Global function
828
+ Return type: bool
829
+
830
+ -----------------------
831
+
832
+ LessThan_int64( Arg0, Arg1 )
833
+ Definition type: Global function
834
+ Return type: bool
835
+
836
+ -----------------------
837
+
838
+ LessThan_uint32( Arg0, Arg1 )
839
+ Definition type: Global function
840
+ Return type: bool
841
+
842
+ -----------------------
843
+
844
+ LessThan_uint64( Arg0, Arg1 )
845
+ Definition type: Global function
846
+ Return type: bool
847
+
848
+ -----------------------
849
+
850
+ Localize( Arg0 )
851
+ Definition type: Global function
852
+ Return type: CString
853
+
854
+ -----------------------
855
+
856
+ LocalizeInputAction( Arg0 )
857
+ Definition type: Global function
858
+ Return type: CString
859
+
860
+ -----------------------
861
+
862
+ Max_CFixedPoint( Arg0, Arg1 )
863
+ Definition type: Global function
864
+ Return type: CFixedPoint
865
+
866
+ -----------------------
867
+
868
+ Max_float( Arg0, Arg1 )
869
+ Definition type: Global function
870
+ Return type: float
871
+
872
+ -----------------------
873
+
874
+ Max_int32( Arg0, Arg1 )
875
+ Definition type: Global function
876
+ Return type: int32
877
+
878
+ -----------------------
879
+
880
+ Max_int64( Arg0, Arg1 )
881
+ Definition type: Global function
882
+ Return type: int64
883
+
884
+ -----------------------
885
+
886
+ Max_uint32( Arg0, Arg1 )
887
+ Definition type: Global function
888
+ Return type: uint32
889
+
890
+ -----------------------
891
+
892
+ Max_uint64( Arg0, Arg1 )
893
+ Definition type: Global function
894
+ Return type: uint64
895
+
896
+ -----------------------
897
+
898
+ Min_CFixedPoint( Arg0, Arg1 )
899
+ Definition type: Global function
900
+ Return type: CFixedPoint
901
+
902
+ -----------------------
903
+
904
+ Min_float( Arg0, Arg1 )
905
+ Definition type: Global function
906
+ Return type: float
907
+
908
+ -----------------------
909
+
910
+ Min_int32( Arg0, Arg1 )
911
+ Definition type: Global function
912
+ Return type: int32
913
+
914
+ -----------------------
915
+
916
+ Min_int64( Arg0, Arg1 )
917
+ Definition type: Global function
918
+ Return type: int64
919
+
920
+ -----------------------
921
+
922
+ Min_uint32( Arg0, Arg1 )
923
+ Definition type: Global function
924
+ Return type: uint32
925
+
926
+ -----------------------
927
+
928
+ Min_uint64( Arg0, Arg1 )
929
+ Definition type: Global function
930
+ Return type: uint64
931
+
932
+ -----------------------
933
+
934
+ Modulo_int32( Arg0, Arg1 )
935
+ Definition type: Global function
936
+ Return type: int32
937
+
938
+ -----------------------
939
+
940
+ Modulo_int64( Arg0, Arg1 )
941
+ Definition type: Global function
942
+ Return type: int64
943
+
944
+ -----------------------
945
+
946
+ Modulo_uint32( Arg0, Arg1 )
947
+ Definition type: Global function
948
+ Return type: uint32
949
+
950
+ -----------------------
951
+
952
+ Modulo_uint64( Arg0, Arg1 )
953
+ Definition type: Global function
954
+ Return type: uint64
955
+
956
+ -----------------------
957
+
958
+ Multiply_CFixedPoint( Arg0, Arg1 )
959
+ Definition type: Global function
960
+ Return type: CFixedPoint
961
+
962
+ -----------------------
963
+
964
+ Multiply_CVector2f( Arg0, Arg1 )
965
+ Definition type: Global function
966
+ Return type: CVector2f
967
+
968
+ -----------------------
969
+
970
+ Multiply_float( Arg0, Arg1 )
971
+ Definition type: Global function
972
+ Return type: float
973
+
974
+ -----------------------
975
+
976
+ Multiply_int32( Arg0, Arg1 )
977
+ Definition type: Global function
978
+ Return type: int32
979
+
980
+ -----------------------
981
+
982
+ Multiply_int64( Arg0, Arg1 )
983
+ Definition type: Global function
984
+ Return type: int64
985
+
986
+ -----------------------
987
+
988
+ Multiply_uint32( Arg0, Arg1 )
989
+ Definition type: Global function
990
+ Return type: uint32
991
+
992
+ -----------------------
993
+
994
+ Multiply_uint64( Arg0, Arg1 )
995
+ Definition type: Global function
996
+ Return type: uint64
997
+
998
+ -----------------------
999
+
1000
+ Nbsp
1001
+ Definition type: Global function
1002
+ Return type: CString
1003
+
1004
+ -----------------------
1005
+
1006
+ Negate_CFixedPoint( Arg0 )
1007
+ Definition type: Global function
1008
+ Return type: CFixedPoint
1009
+
1010
+ -----------------------
1011
+
1012
+ Negate_float( Arg0 )
1013
+ Definition type: Global function
1014
+ Return type: float
1015
+
1016
+ -----------------------
1017
+
1018
+ Negate_int32( Arg0 )
1019
+ Definition type: Global function
1020
+ Return type: int32
1021
+
1022
+ -----------------------
1023
+
1024
+ Negate_int64( Arg0 )
1025
+ Definition type: Global function
1026
+ Return type: int64
1027
+
1028
+ -----------------------
1029
+
1030
+ Not( Arg0 )
1031
+ Description: If the argument is not true
1032
+ Definition type: Global function
1033
+ Return type: bool
1034
+
1035
+ -----------------------
1036
+
1037
+ NotEqualTo_CFixedPoint( Arg0, Arg1 )
1038
+ Definition type: Global function
1039
+ Return type: bool
1040
+
1041
+ -----------------------
1042
+
1043
+ NotEqualTo_CVector2f( Arg0, Arg1 )
1044
+ Definition type: Global function
1045
+ Return type: bool
1046
+
1047
+ -----------------------
1048
+
1049
+ NotEqualTo_float( Arg0, Arg1 )
1050
+ Definition type: Global function
1051
+ Return type: bool
1052
+
1053
+ -----------------------
1054
+
1055
+ NotEqualTo_int32( Arg0, Arg1 )
1056
+ Definition type: Global function
1057
+ Return type: bool
1058
+
1059
+ -----------------------
1060
+
1061
+ NotEqualTo_int64( Arg0, Arg1 )
1062
+ Definition type: Global function
1063
+ Return type: bool
1064
+
1065
+ -----------------------
1066
+
1067
+ NotEqualTo_uint32( Arg0, Arg1 )
1068
+ Definition type: Global function
1069
+ Return type: bool
1070
+
1071
+ -----------------------
1072
+
1073
+ NotEqualTo_uint64( Arg0, Arg1 )
1074
+ Definition type: Global function
1075
+ Return type: bool
1076
+
1077
+ -----------------------
1078
+
1079
+ ObjectsEqual( Arg0, Arg1 )
1080
+ Definition type: Global function
1081
+ Return type: bool
1082
+
1083
+ -----------------------
1084
+
1085
+ Or( Arg0, Arg1 )
1086
+ Description: If either argument is true
1087
+ Definition type: Global function
1088
+ Return type: bool
1089
+
1090
+ -----------------------
1091
+
1092
+ Or3( Arg0, Arg1, Arg2 )
1093
+ Description: If any of 3 arguments are true
1094
+ Definition type: Global function
1095
+ Return type: bool
1096
+
1097
+ -----------------------
1098
+
1099
+ Or4( Arg0, Arg1, Arg2, Arg3 )
1100
+ Description: If any of 4 arguments are true
1101
+ Definition type: Global function
1102
+ Return type: bool
1103
+
1104
+ -----------------------
1105
+
1106
+ Or5( Arg0, Arg1, Arg2, Arg3, Arg4 )
1107
+ Description: If any of 5 arguments are true
1108
+ Definition type: Global function
1109
+ Return type: bool
1110
+
1111
+ -----------------------
1112
+
1113
+ Or6( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5 )
1114
+ Description: If any of 6 arguments are true
1115
+ Definition type: Global function
1116
+ Return type: bool
1117
+
1118
+ -----------------------
1119
+
1120
+ Or7( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6 )
1121
+ Description: If any of 7 arguments are true
1122
+ Definition type: Global function
1123
+ Return type: bool
1124
+
1125
+ -----------------------
1126
+
1127
+ Or8( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7 )
1128
+ Description: If any of 8 arguments are true
1129
+ Definition type: Global function
1130
+ Return type: bool
1131
+
1132
+ -----------------------
1133
+
1134
+ OrEvalAll( Arg0, Arg1 )
1135
+ Description: Evaluates all arguments and then checks if either argument is true. Using 'Or' is preferred.
1136
+ Definition type: Global function
1137
+ Return type: bool
1138
+
1139
+ -----------------------
1140
+
1141
+ SelectLocalization( Arg0, Arg1, Arg2 )
1142
+ Definition type: Global function
1143
+ Return type: CString
1144
+
1145
+ -----------------------
1146
+
1147
+ Select_CFixedPoint( Arg0, Arg1, Arg2 )
1148
+ Definition type: Global function
1149
+ Return type: CFixedPoint
1150
+
1151
+ -----------------------
1152
+
1153
+ Select_CString( Arg0, Arg1, Arg2 )
1154
+ Definition type: Global function
1155
+ Return type: CString
1156
+
1157
+ -----------------------
1158
+
1159
+ Select_CVector2f( Arg0, Arg1, Arg2 )
1160
+ Definition type: Global function
1161
+ Return type: CVector2f
1162
+
1163
+ -----------------------
1164
+
1165
+ Select_CVector2i( Arg0, Arg1, Arg2 )
1166
+ Definition type: Global function
1167
+ Return type: CVector2i
1168
+
1169
+ -----------------------
1170
+
1171
+ Select_CVector3f( Arg0, Arg1, Arg2 )
1172
+ Definition type: Global function
1173
+ Return type: CVector3f
1174
+
1175
+ -----------------------
1176
+
1177
+ Select_CVector3i( Arg0, Arg1, Arg2 )
1178
+ Definition type: Global function
1179
+ Return type: CVector3i
1180
+
1181
+ -----------------------
1182
+
1183
+ Select_CVector4f( Arg0, Arg1, Arg2 )
1184
+ Definition type: Global function
1185
+ Return type: CVector4f
1186
+
1187
+ -----------------------
1188
+
1189
+ Select_CVector4i( Arg0, Arg1, Arg2 )
1190
+ Definition type: Global function
1191
+ Return type: CVector4i
1192
+
1193
+ -----------------------
1194
+
1195
+ Select_float( Arg0, Arg1, Arg2 )
1196
+ Definition type: Global function
1197
+ Return type: float
1198
+
1199
+ -----------------------
1200
+
1201
+ Select_int16( Arg0, Arg1, Arg2 )
1202
+ Definition type: Global function
1203
+ Return type: int16
1204
+
1205
+ -----------------------
1206
+
1207
+ Select_int32( Arg0, Arg1, Arg2 )
1208
+ Definition type: Global function
1209
+ Return type: int32
1210
+
1211
+ -----------------------
1212
+
1213
+ Select_int64( Arg0, Arg1, Arg2 )
1214
+ Definition type: Global function
1215
+ Return type: int64
1216
+
1217
+ -----------------------
1218
+
1219
+ Select_int8( Arg0, Arg1, Arg2 )
1220
+ Definition type: Global function
1221
+ Return type: int8
1222
+
1223
+ -----------------------
1224
+
1225
+ Select_uint16( Arg0, Arg1, Arg2 )
1226
+ Definition type: Global function
1227
+ Return type: uint16
1228
+
1229
+ -----------------------
1230
+
1231
+ Select_uint32( Arg0, Arg1, Arg2 )
1232
+ Definition type: Global function
1233
+ Return type: uint32
1234
+
1235
+ -----------------------
1236
+
1237
+ Select_uint64( Arg0, Arg1, Arg2 )
1238
+ Definition type: Global function
1239
+ Return type: uint64
1240
+
1241
+ -----------------------
1242
+
1243
+ Select_uint8( Arg0, Arg1, Arg2 )
1244
+ Definition type: Global function
1245
+ Return type: uint8
1246
+
1247
+ -----------------------
1248
+
1249
+ StringIsEmpty( Arg0 )
1250
+ Definition type: Global function
1251
+ Return type: bool
1252
+
1253
+ -----------------------
1254
+
1255
+ Subtract_CFixedPoint( Arg0, Arg1 )
1256
+ Definition type: Global function
1257
+ Return type: CFixedPoint
1258
+
1259
+ -----------------------
1260
+
1261
+ Subtract_CVector2f( Arg0, Arg1 )
1262
+ Definition type: Global function
1263
+ Return type: CVector2f
1264
+
1265
+ -----------------------
1266
+
1267
+ Subtract_float( Arg0, Arg1 )
1268
+ Definition type: Global function
1269
+ Return type: float
1270
+
1271
+ -----------------------
1272
+
1273
+ Subtract_int32( Arg0, Arg1 )
1274
+ Definition type: Global function
1275
+ Return type: int32
1276
+
1277
+ -----------------------
1278
+
1279
+ Subtract_int64( Arg0, Arg1 )
1280
+ Definition type: Global function
1281
+ Return type: int64
1282
+
1283
+ -----------------------
1284
+
1285
+ Subtract_uint32( Arg0, Arg1 )
1286
+ Definition type: Global function
1287
+ Return type: uint32
1288
+
1289
+ -----------------------
1290
+
1291
+ Subtract_uint64( Arg0, Arg1 )
1292
+ Definition type: Global function
1293
+ Return type: uint64
1294
+
1295
+ -----------------------
1296
+
1297
+ ToString_int16( Arg0 )
1298
+ Definition type: Global function
1299
+ Return type: CString
1300
+
1301
+ -----------------------
1302
+
1303
+ ToString_int32( Arg0 )
1304
+ Definition type: Global function
1305
+ Return type: CString
1306
+
1307
+ -----------------------
1308
+
1309
+ ToString_int64( Arg0 )
1310
+ Definition type: Global function
1311
+ Return type: CString
1312
+
1313
+ -----------------------
1314
+
1315
+ ToString_int8( Arg0 )
1316
+ Definition type: Global function
1317
+ Return type: CString
1318
+
1319
+ -----------------------
1320
+
1321
+ ToString_uint16( Arg0 )
1322
+ Definition type: Global function
1323
+ Return type: CString
1324
+
1325
+ -----------------------
1326
+
1327
+ ToString_uint32( Arg0 )
1328
+ Definition type: Global function
1329
+ Return type: CString
1330
+
1331
+ -----------------------
1332
+
1333
+ ToString_uint64( Arg0 )
1334
+ Definition type: Global function
1335
+ Return type: CString
1336
+
1337
+ -----------------------
1338
+
1339
+ ToString_uint8( Arg0 )
1340
+ Definition type: Global function
1341
+ Return type: CString
1342
+
1343
+ -----------------------
1344
+
1345
+ Application
1346
+ Definition type: Type
1347
+
1348
+ -----------------------
1349
+
1350
+ Application.AccessSelf
1351
+ Definition type: Function
1352
+ Return type: [unregistered]
1353
+
1354
+ -----------------------
1355
+
1356
+ Application.Quit
1357
+ Definition type: Function
1358
+ Return type: void
1359
+
1360
+ -----------------------
1361
+
1362
+ Application.Self
1363
+ Definition type: Function
1364
+ Return type: [unregistered]
1365
+
1366
+ -----------------------
1367
+
1368
+ CFixedPoint
1369
+ Description: Number stored with 6 digits of precision.
1370
+ Definition type: Type
1371
+
1372
+ -----------------------
1373
+
1374
+ CFixedPoint.AccessSelf
1375
+ Definition type: Function
1376
+ Return type: [unregistered]
1377
+
1378
+ -----------------------
1379
+
1380
+ CFixedPoint.GetFixedPoint
1381
+ Definition type: Function
1382
+ Return type: [unregistered]
1383
+
1384
+ -----------------------
1385
+
1386
+ CFixedPoint.Self
1387
+ Definition type: Function
1388
+ Return type: [unregistered]
1389
+
1390
+ -----------------------
1391
+
1392
+ CPdxFloatRect
1393
+ Description: Rectangle within an 2D float space.
1394
+ Definition type: Type
1395
+
1396
+ -----------------------
1397
+
1398
+ CPdxFloatRect.AccessSelf
1399
+ Definition type: Function
1400
+ Return type: [unregistered]
1401
+
1402
+ -----------------------
1403
+
1404
+ CPdxFloatRect.GetRect
1405
+ Definition type: Function
1406
+ Return type: [unregistered]
1407
+
1408
+ -----------------------
1409
+
1410
+ CPdxFloatRect.Self
1411
+ Definition type: Function
1412
+ Return type: [unregistered]
1413
+
1414
+ -----------------------
1415
+
1416
+ CPdxIntRect
1417
+ Description: Rectangle within an 2D integer space.
1418
+ Definition type: Type
1419
+
1420
+ -----------------------
1421
+
1422
+ CPdxIntRect.AccessSelf
1423
+ Definition type: Function
1424
+ Return type: [unregistered]
1425
+
1426
+ -----------------------
1427
+
1428
+ CPdxIntRect.GetRect
1429
+ Definition type: Function
1430
+ Return type: [unregistered]
1431
+
1432
+ -----------------------
1433
+
1434
+ CPdxIntRect.Self
1435
+ Definition type: Function
1436
+ Return type: [unregistered]
1437
+
1438
+ -----------------------
1439
+
1440
+ CString
1441
+ Definition type: Type
1442
+
1443
+ -----------------------
1444
+
1445
+ CString.AccessSelf
1446
+ Definition type: Function
1447
+ Return type: [unregistered]
1448
+
1449
+ -----------------------
1450
+
1451
+ CString.GetString
1452
+ Definition type: Function
1453
+ Return type: [unregistered]
1454
+
1455
+ -----------------------
1456
+
1457
+ CString.Self
1458
+ Definition type: Function
1459
+ Return type: [unregistered]
1460
+
1461
+ -----------------------
1462
+
1463
+ CUTF8String
1464
+ Definition type: Type
1465
+
1466
+ -----------------------
1467
+
1468
+ CUTF8String.AccessSelf
1469
+ Definition type: Function
1470
+ Return type: [unregistered]
1471
+
1472
+ -----------------------
1473
+
1474
+ CUTF8String.GetString
1475
+ Definition type: Function
1476
+ Return type: [unregistered]
1477
+
1478
+ -----------------------
1479
+
1480
+ CUTF8String.Self
1481
+ Definition type: Function
1482
+ Return type: [unregistered]
1483
+
1484
+ -----------------------
1485
+
1486
+ CVector2f
1487
+ Description: Type containing two float numbers.
1488
+ Definition type: Type
1489
+
1490
+ -----------------------
1491
+
1492
+ CVector2f.AccessSelf
1493
+ Definition type: Function
1494
+ Return type: [unregistered]
1495
+
1496
+ -----------------------
1497
+
1498
+ CVector2f.GetVector
1499
+ Definition type: Function
1500
+ Return type: [unregistered]
1501
+
1502
+ -----------------------
1503
+
1504
+ CVector2f.Self
1505
+ Definition type: Function
1506
+ Return type: [unregistered]
1507
+
1508
+ -----------------------
1509
+
1510
+ CVector2i
1511
+ Description: Type containing two integer numbers.
1512
+ Definition type: Type
1513
+
1514
+ -----------------------
1515
+
1516
+ CVector2i.AccessSelf
1517
+ Definition type: Function
1518
+ Return type: [unregistered]
1519
+
1520
+ -----------------------
1521
+
1522
+ CVector2i.GetVector
1523
+ Definition type: Function
1524
+ Return type: [unregistered]
1525
+
1526
+ -----------------------
1527
+
1528
+ CVector2i.Self
1529
+ Definition type: Function
1530
+ Return type: [unregistered]
1531
+
1532
+ -----------------------
1533
+
1534
+ CVector3f
1535
+ Description: Type containing three float numbers.
1536
+ Definition type: Type
1537
+
1538
+ -----------------------
1539
+
1540
+ CVector3f.AccessSelf
1541
+ Definition type: Function
1542
+ Return type: [unregistered]
1543
+
1544
+ -----------------------
1545
+
1546
+ CVector3f.GetVector
1547
+ Definition type: Function
1548
+ Return type: [unregistered]
1549
+
1550
+ -----------------------
1551
+
1552
+ CVector3f.Self
1553
+ Definition type: Function
1554
+ Return type: [unregistered]
1555
+
1556
+ -----------------------
1557
+
1558
+ CVector3i
1559
+ Description: Type containing three integer numbers.
1560
+ Definition type: Type
1561
+
1562
+ -----------------------
1563
+
1564
+ CVector3i.AccessSelf
1565
+ Definition type: Function
1566
+ Return type: [unregistered]
1567
+
1568
+ -----------------------
1569
+
1570
+ CVector3i.GetVector
1571
+ Definition type: Function
1572
+ Return type: [unregistered]
1573
+
1574
+ -----------------------
1575
+
1576
+ CVector3i.Self
1577
+ Definition type: Function
1578
+ Return type: [unregistered]
1579
+
1580
+ -----------------------
1581
+
1582
+ CVector4f
1583
+ Description: Type containing four float numbers.
1584
+ Definition type: Type
1585
+
1586
+ -----------------------
1587
+
1588
+ CVector4f.AccessSelf
1589
+ Definition type: Function
1590
+ Return type: [unregistered]
1591
+
1592
+ -----------------------
1593
+
1594
+ CVector4f.GetVector
1595
+ Definition type: Function
1596
+ Return type: [unregistered]
1597
+
1598
+ -----------------------
1599
+
1600
+ CVector4f.Self
1601
+ Definition type: Function
1602
+ Return type: [unregistered]
1603
+
1604
+ -----------------------
1605
+
1606
+ CVector4i
1607
+ Description: Type containing four integer numbers.
1608
+ Definition type: Type
1609
+
1610
+ -----------------------
1611
+
1612
+ CVector4i.AccessSelf
1613
+ Definition type: Function
1614
+ Return type: [unregistered]
1615
+
1616
+ -----------------------
1617
+
1618
+ CVector4i.GetVector
1619
+ Definition type: Function
1620
+ Return type: [unregistered]
1621
+
1622
+ -----------------------
1623
+
1624
+ CVector4i.Self
1625
+ Definition type: Function
1626
+ Return type: [unregistered]
1627
+
1628
+ -----------------------
1629
+
1630
+ Date
1631
+ Description: Jomini Historical Date
1632
+ Definition type: Type
1633
+
1634
+ -----------------------
1635
+
1636
+ Date.AccessSelf
1637
+ Definition type: Function
1638
+ Return type: [unregistered]
1639
+
1640
+ -----------------------
1641
+
1642
+ Date.Format( Arg0 )
1643
+ Definition type: Function
1644
+ Return type: CString
1645
+
1646
+ -----------------------
1647
+
1648
+ Date.GetString
1649
+ Definition type: Function
1650
+ Return type: CString
1651
+
1652
+ -----------------------
1653
+
1654
+ Date.Self
1655
+ Definition type: Function
1656
+ Return type: [unregistered]
1657
+
1658
+ -----------------------
1659
+
1660
+ Playable
1661
+ Description: Jomini Playable
1662
+ Definition type: Type
1663
+
1664
+ -----------------------
1665
+
1666
+ Playable.AccessCountry
1667
+ Definition type: Promote
1668
+ Return type: Country
1669
+
1670
+ -----------------------
1671
+
1672
+ Playable.GetCountry
1673
+ Definition type: Promote
1674
+ Return type: Country
1675
+
1676
+ -----------------------
1677
+
1678
+ Playable.AccessSelf
1679
+ Definition type: Function
1680
+ Return type: [unregistered]
1681
+
1682
+ -----------------------
1683
+
1684
+ Playable.Self
1685
+ Definition type: Function
1686
+ Return type: [unregistered]
1687
+
1688
+ -----------------------
1689
+
1690
+ VariableSystem
1691
+ Definition type: Type
1692
+
1693
+ -----------------------
1694
+
1695
+ VariableSystem.AccessSelf
1696
+ Definition type: Function
1697
+ Return type: [unregistered]
1698
+
1699
+ -----------------------
1700
+
1701
+ VariableSystem.Clear( Arg0 )
1702
+ Definition type: Function
1703
+ Return type: void
1704
+
1705
+ -----------------------
1706
+
1707
+ VariableSystem.ClearIf( Arg0, Arg1 )
1708
+ Definition type: Function
1709
+ Return type: void
1710
+
1711
+ -----------------------
1712
+
1713
+ VariableSystem.ClearMultiple( Arg0, Arg1 )
1714
+ Definition type: Function
1715
+ Return type: void
1716
+
1717
+ -----------------------
1718
+
1719
+ VariableSystem.Exists( Arg0 )
1720
+ Definition type: Function
1721
+ Return type: bool
1722
+
1723
+ -----------------------
1724
+
1725
+ VariableSystem.Get( Arg0 )
1726
+ Definition type: Function
1727
+ Return type: CString
1728
+
1729
+ -----------------------
1730
+
1731
+ VariableSystem.HasValue( Arg0, Arg1 )
1732
+ Definition type: Function
1733
+ Return type: bool
1734
+
1735
+ -----------------------
1736
+
1737
+ VariableSystem.Self
1738
+ Definition type: Function
1739
+ Return type: [unregistered]
1740
+
1741
+ -----------------------
1742
+
1743
+ VariableSystem.Set( Arg0, Arg1 )
1744
+ Definition type: Function
1745
+ Return type: void
1746
+
1747
+ -----------------------
1748
+
1749
+ VariableSystem.SetIf( Arg0, Arg1, Arg2 )
1750
+ Definition type: Function
1751
+ Return type: void
1752
+
1753
+ -----------------------
1754
+
1755
+ VariableSystem.SetOrToggle( Arg0, Arg1 )
1756
+ Definition type: Function
1757
+ Return type: void
1758
+
1759
+ -----------------------
1760
+
1761
+ VariableSystem.Toggle( Arg0 )
1762
+ Definition type: Function
1763
+ Return type: bool
1764
+
1765
+ -----------------------
1766
+
1767
+ bool
1768
+ Definition type: Type
1769
+
1770
+ -----------------------
1771
+
1772
+ bool.AccessSelf
1773
+ Definition type: Function
1774
+ Return type: [unregistered]
1775
+
1776
+ -----------------------
1777
+
1778
+ bool.Self
1779
+ Definition type: Function
1780
+ Return type: [unregistered]
1781
+
1782
+ -----------------------
1783
+
1784
+ double
1785
+ Description: Number stored with `double float` precision.
1786
+ Definition type: Type
1787
+
1788
+ -----------------------
1789
+
1790
+ double.AccessSelf
1791
+ Definition type: Function
1792
+ Return type: [unregistered]
1793
+
1794
+ -----------------------
1795
+
1796
+ double.Self
1797
+ Definition type: Function
1798
+ Return type: [unregistered]
1799
+
1800
+ -----------------------
1801
+
1802
+ float
1803
+ Description: Number stored with `float` precision.
1804
+ Definition type: Type
1805
+
1806
+ -----------------------
1807
+
1808
+ float.AccessSelf
1809
+ Definition type: Function
1810
+ Return type: [unregistered]
1811
+
1812
+ -----------------------
1813
+
1814
+ float.Self
1815
+ Definition type: Function
1816
+ Return type: [unregistered]
1817
+
1818
+ -----------------------
1819
+
1820
+ int16
1821
+ Definition type: Type
1822
+
1823
+ -----------------------
1824
+
1825
+ int16.AccessSelf
1826
+ Definition type: Function
1827
+ Return type: [unregistered]
1828
+
1829
+ -----------------------
1830
+
1831
+ int16.GetInt
1832
+ Definition type: Function
1833
+ Return type: [unregistered]
1834
+
1835
+ -----------------------
1836
+
1837
+ int16.Self
1838
+ Definition type: Function
1839
+ Return type: [unregistered]
1840
+
1841
+ -----------------------
1842
+
1843
+ int32
1844
+ Definition type: Type
1845
+
1846
+ -----------------------
1847
+
1848
+ int32.AccessSelf
1849
+ Definition type: Function
1850
+ Return type: [unregistered]
1851
+
1852
+ -----------------------
1853
+
1854
+ int32.GetInt
1855
+ Definition type: Function
1856
+ Return type: [unregistered]
1857
+
1858
+ -----------------------
1859
+
1860
+ int32.Self
1861
+ Definition type: Function
1862
+ Return type: [unregistered]
1863
+
1864
+ -----------------------
1865
+
1866
+ int64
1867
+ Definition type: Type
1868
+
1869
+ -----------------------
1870
+
1871
+ int64.AccessSelf
1872
+ Definition type: Function
1873
+ Return type: [unregistered]
1874
+
1875
+ -----------------------
1876
+
1877
+ int64.GetInt
1878
+ Definition type: Function
1879
+ Return type: [unregistered]
1880
+
1881
+ -----------------------
1882
+
1883
+ int64.Self
1884
+ Definition type: Function
1885
+ Return type: [unregistered]
1886
+
1887
+ -----------------------
1888
+
1889
+ int8
1890
+ Definition type: Type
1891
+
1892
+ -----------------------
1893
+
1894
+ int8.AccessSelf
1895
+ Definition type: Function
1896
+ Return type: [unregistered]
1897
+
1898
+ -----------------------
1899
+
1900
+ int8.GetInt
1901
+ Definition type: Function
1902
+ Return type: [unregistered]
1903
+
1904
+ -----------------------
1905
+
1906
+ int8.Self
1907
+ Definition type: Function
1908
+ Return type: [unregistered]
1909
+
1910
+ -----------------------
1911
+
1912
+ uint16
1913
+ Definition type: Type
1914
+
1915
+ -----------------------
1916
+
1917
+ uint16.AccessSelf
1918
+ Definition type: Function
1919
+ Return type: [unregistered]
1920
+
1921
+ -----------------------
1922
+
1923
+ uint16.GetUint
1924
+ Definition type: Function
1925
+ Return type: [unregistered]
1926
+
1927
+ -----------------------
1928
+
1929
+ uint16.Self
1930
+ Definition type: Function
1931
+ Return type: [unregistered]
1932
+
1933
+ -----------------------
1934
+
1935
+ uint32
1936
+ Definition type: Type
1937
+
1938
+ -----------------------
1939
+
1940
+ uint32.AccessSelf
1941
+ Definition type: Function
1942
+ Return type: [unregistered]
1943
+
1944
+ -----------------------
1945
+
1946
+ uint32.GetUint
1947
+ Definition type: Function
1948
+ Return type: [unregistered]
1949
+
1950
+ -----------------------
1951
+
1952
+ uint32.Self
1953
+ Definition type: Function
1954
+ Return type: [unregistered]
1955
+
1956
+ -----------------------
1957
+
1958
+ uint64
1959
+ Definition type: Type
1960
+
1961
+ -----------------------
1962
+
1963
+ uint64.AccessSelf
1964
+ Definition type: Function
1965
+ Return type: [unregistered]
1966
+
1967
+ -----------------------
1968
+
1969
+ uint64.GetUint
1970
+ Definition type: Function
1971
+ Return type: [unregistered]
1972
+
1973
+ -----------------------
1974
+
1975
+ uint64.Self
1976
+ Definition type: Function
1977
+ Return type: [unregistered]
1978
+
1979
+ -----------------------
1980
+
1981
+ uint8
1982
+ Definition type: Type
1983
+
1984
+ -----------------------
1985
+
1986
+ uint8.AccessSelf
1987
+ Definition type: Function
1988
+ Return type: [unregistered]
1989
+
1990
+ -----------------------
1991
+
1992
+ uint8.GetUint
1993
+ Definition type: Function
1994
+ Return type: [unregistered]
1995
+
1996
+ -----------------------
1997
+
1998
+ uint8.Self
1999
+ Definition type: Function
2000
+ Return type: [unregistered]
2001
+
2002
+ -----------------------
2003
+
2004
+ void
2005
+ Description: Unspecified type / empty type.
2006
+ Definition type: Type
2007
+
2008
+ -----------------------
2009
+
2010
+ void.AccessSelf
2011
+ Definition type: Function
2012
+ Return type: [unregistered]
2013
+
2014
+ -----------------------
2015
+
2016
+ void.Self
2017
+ Definition type: Function
2018
+ Return type: [unregistered]
2019
+
2020
+ -----------------------
2021
+