@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,2087 @@
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
+ CurrentAndMaxToProgressbarValueInt32( Arg0, Arg1 )
317
+ Description: Get the progress (0.0-100.0) of CurrentArg to MaxArg. Value is clamped between 0 and 100.
318
+ Definition type: Global function
319
+ Return type: float
320
+
321
+ -----------------------
322
+
323
+ DataModelFirst( Arg0, Arg1 )
324
+ Definition type: Global function
325
+ Return type: [unregistered]
326
+
327
+ -----------------------
328
+
329
+ DataModelHasItems( Arg0 )
330
+ Definition type: Global function
331
+ Return type: bool
332
+
333
+ -----------------------
334
+
335
+ DataModelLast( Arg0, Arg1 )
336
+ Definition type: Global function
337
+ Return type: [unregistered]
338
+
339
+ -----------------------
340
+
341
+ DataModelRepeatedItem( Arg0 )
342
+ Description: The data function used for mocking empty list items, requires int32 (number of items) as a parameter. Example: datamodel = [RepeatedItem( '(int32)4' )]
343
+ Definition type: Global function
344
+ Return type: [unregistered]
345
+
346
+ -----------------------
347
+
348
+ DataModelSkipFirst( Arg0, Arg1 )
349
+ Definition type: Global function
350
+ Return type: [unregistered]
351
+
352
+ -----------------------
353
+
354
+ DataModelSkipLast( Arg0, Arg1 )
355
+ Definition type: Global function
356
+ Return type: [unregistered]
357
+
358
+ -----------------------
359
+
360
+ DataModelSubSpan( Arg0, Arg1, Arg2 )
361
+ Definition type: Global function
362
+ Return type: [unregistered]
363
+
364
+ -----------------------
365
+
366
+ Divide_CFixedPoint( Arg0, Arg1 )
367
+ Definition type: Global function
368
+ Return type: CFixedPoint
369
+
370
+ -----------------------
371
+
372
+ Divide_CVector2f( Arg0, Arg1 )
373
+ Definition type: Global function
374
+ Return type: CVector2f
375
+
376
+ -----------------------
377
+
378
+ Divide_float( Arg0, Arg1 )
379
+ Definition type: Global function
380
+ Return type: float
381
+
382
+ -----------------------
383
+
384
+ Divide_int32( Arg0, Arg1 )
385
+ Definition type: Global function
386
+ Return type: int32
387
+
388
+ -----------------------
389
+
390
+ Divide_int64( Arg0, Arg1 )
391
+ Definition type: Global function
392
+ Return type: int64
393
+
394
+ -----------------------
395
+
396
+ Divide_uint32( Arg0, Arg1 )
397
+ Definition type: Global function
398
+ Return type: uint32
399
+
400
+ -----------------------
401
+
402
+ Divide_uint64( Arg0, Arg1 )
403
+ Definition type: Global function
404
+ Return type: uint64
405
+
406
+ -----------------------
407
+
408
+ DoubleToFloat( Arg0 )
409
+ Definition type: Global function
410
+ Return type: float
411
+
412
+ -----------------------
413
+
414
+ EqualTo_CFixedPoint( Arg0, Arg1 )
415
+ Definition type: Global function
416
+ Return type: bool
417
+
418
+ -----------------------
419
+
420
+ EqualTo_CVector2f( Arg0, Arg1 )
421
+ Definition type: Global function
422
+ Return type: bool
423
+
424
+ -----------------------
425
+
426
+ EqualTo_float( Arg0, Arg1 )
427
+ Definition type: Global function
428
+ Return type: bool
429
+
430
+ -----------------------
431
+
432
+ EqualTo_int32( Arg0, Arg1 )
433
+ Definition type: Global function
434
+ Return type: bool
435
+
436
+ -----------------------
437
+
438
+ EqualTo_int64( Arg0, Arg1 )
439
+ Definition type: Global function
440
+ Return type: bool
441
+
442
+ -----------------------
443
+
444
+ EqualTo_string( Arg0, Arg1 )
445
+ Definition type: Global function
446
+ Return type: bool
447
+
448
+ -----------------------
449
+
450
+ EqualTo_uint32( Arg0, Arg1 )
451
+ Definition type: Global function
452
+ Return type: bool
453
+
454
+ -----------------------
455
+
456
+ EqualTo_uint64( Arg0, Arg1 )
457
+ Definition type: Global function
458
+ Return type: bool
459
+
460
+ -----------------------
461
+
462
+ FixedPointToFloat( Arg0 )
463
+ Definition type: Global function
464
+ Return type: float
465
+
466
+ -----------------------
467
+
468
+ FixedPointToInt( Arg0 )
469
+ Definition type: Global function
470
+ Return type: int32
471
+
472
+ -----------------------
473
+
474
+ FixedPointToProgressbarValue( Arg0 )
475
+ Description: Convert to a progress percentage value (by multiplying with 100, unclamped).
476
+ Definition type: Global function
477
+ Return type: float
478
+
479
+ -----------------------
480
+
481
+ GetDataModelSize( Arg0 )
482
+ Definition type: Global function
483
+ Return type: int32
484
+
485
+ -----------------------
486
+
487
+ GetDefine( Arg0, Arg1 )
488
+ Definition type: Global function
489
+ Return type: [unregistered]
490
+
491
+ -----------------------
492
+
493
+ GetDefineAtIndex( Arg0, Arg1, Arg2 )
494
+ Definition type: Global function
495
+ Return type: [unregistered]
496
+
497
+ -----------------------
498
+
499
+ GetGameVersionDisplay
500
+ Definition type: Global function
501
+ Return type: CString
502
+
503
+ -----------------------
504
+
505
+ GetLocalizedDefine( Arg0, Arg1 )
506
+ Definition type: Global function
507
+ Return type: CString
508
+
509
+ -----------------------
510
+
511
+ GetLocalizedDefineAtIndex( Arg0, Arg1, Arg2 )
512
+ Definition type: Global function
513
+ Return type: CString
514
+
515
+ -----------------------
516
+
517
+ GetNumberAbove_int32( Arg0, Arg1 )
518
+ Definition type: Global function
519
+ Return type: int32
520
+
521
+ -----------------------
522
+
523
+ GetString_CPdxFloatRect( Arg0 )
524
+ Definition type: Global function
525
+ Return type: CString
526
+
527
+ -----------------------
528
+
529
+ GetString_CPdxIntRect( Arg0 )
530
+ Definition type: Global function
531
+ Return type: CString
532
+
533
+ -----------------------
534
+
535
+ GetString_CVector2f( Arg0 )
536
+ Definition type: Global function
537
+ Return type: CString
538
+
539
+ -----------------------
540
+
541
+ GetString_CVector2i( Arg0 )
542
+ Definition type: Global function
543
+ Return type: CString
544
+
545
+ -----------------------
546
+
547
+ GetString_CVector3f( Arg0 )
548
+ Definition type: Global function
549
+ Return type: CString
550
+
551
+ -----------------------
552
+
553
+ GetString_CVector3i( Arg0 )
554
+ Definition type: Global function
555
+ Return type: CString
556
+
557
+ -----------------------
558
+
559
+ GetString_CVector4f( Arg0 )
560
+ Definition type: Global function
561
+ Return type: CString
562
+
563
+ -----------------------
564
+
565
+ GetString_CVector4i( Arg0 )
566
+ Definition type: Global function
567
+ Return type: CString
568
+
569
+ -----------------------
570
+
571
+ GreaterThanOrEqualTo_CFixedPoint( Arg0, Arg1 )
572
+ Definition type: Global function
573
+ Return type: bool
574
+
575
+ -----------------------
576
+
577
+ GreaterThanOrEqualTo_float( Arg0, Arg1 )
578
+ Definition type: Global function
579
+ Return type: bool
580
+
581
+ -----------------------
582
+
583
+ GreaterThanOrEqualTo_int32( Arg0, Arg1 )
584
+ Definition type: Global function
585
+ Return type: bool
586
+
587
+ -----------------------
588
+
589
+ GreaterThanOrEqualTo_int64( Arg0, Arg1 )
590
+ Definition type: Global function
591
+ Return type: bool
592
+
593
+ -----------------------
594
+
595
+ GreaterThanOrEqualTo_uint32( Arg0, Arg1 )
596
+ Definition type: Global function
597
+ Return type: bool
598
+
599
+ -----------------------
600
+
601
+ GreaterThanOrEqualTo_uint64( Arg0, Arg1 )
602
+ Definition type: Global function
603
+ Return type: bool
604
+
605
+ -----------------------
606
+
607
+ GreaterThan_CFixedPoint( Arg0, Arg1 )
608
+ Definition type: Global function
609
+ Return type: bool
610
+
611
+ -----------------------
612
+
613
+ GreaterThan_float( Arg0, Arg1 )
614
+ Definition type: Global function
615
+ Return type: bool
616
+
617
+ -----------------------
618
+
619
+ GreaterThan_int32( Arg0, Arg1 )
620
+ Definition type: Global function
621
+ Return type: bool
622
+
623
+ -----------------------
624
+
625
+ GreaterThan_int64( Arg0, Arg1 )
626
+ Definition type: Global function
627
+ Return type: bool
628
+
629
+ -----------------------
630
+
631
+ GreaterThan_uint32( Arg0, Arg1 )
632
+ Definition type: Global function
633
+ Return type: bool
634
+
635
+ -----------------------
636
+
637
+ GreaterThan_uint64( Arg0, Arg1 )
638
+ Definition type: Global function
639
+ Return type: bool
640
+
641
+ -----------------------
642
+
643
+ InDebugMode
644
+ Description: Is the game in Debug mode?
645
+ Definition type: Global function
646
+ Return type: bool
647
+
648
+ -----------------------
649
+
650
+ InReleaseMode
651
+ Description: Is the game in Release mode?
652
+ Definition type: Global function
653
+ Return type: bool
654
+
655
+ -----------------------
656
+
657
+ IntToFixedPoint( Arg0 )
658
+ Definition type: Global function
659
+ Return type: float
660
+
661
+ -----------------------
662
+
663
+ IntToFloat( Arg0 )
664
+ Definition type: Global function
665
+ Return type: float
666
+
667
+ -----------------------
668
+
669
+ IntToFrameIndex( Arg0 )
670
+ Description: Adds 1 to Arg1.
671
+ Definition type: Global function
672
+ Return type: int32
673
+
674
+ -----------------------
675
+
676
+ IntToUnsigned( Arg0 )
677
+ Definition type: Global function
678
+ Return type: float
679
+
680
+ -----------------------
681
+
682
+ IsDataModelEmpty( Arg0 )
683
+ Definition type: Global function
684
+ Return type: bool
685
+
686
+ -----------------------
687
+
688
+ IsEven_int32( Arg0 )
689
+ Definition type: Global function
690
+ Return type: bool
691
+
692
+ -----------------------
693
+
694
+ IsEven_int64( Arg0 )
695
+ Definition type: Global function
696
+ Return type: bool
697
+
698
+ -----------------------
699
+
700
+ IsEven_uint32( Arg0 )
701
+ Definition type: Global function
702
+ Return type: bool
703
+
704
+ -----------------------
705
+
706
+ IsEven_uint64( Arg0 )
707
+ Definition type: Global function
708
+ Return type: bool
709
+
710
+ -----------------------
711
+
712
+ IsOdd_int32( Arg0 )
713
+ Definition type: Global function
714
+ Return type: bool
715
+
716
+ -----------------------
717
+
718
+ IsOdd_int64( Arg0 )
719
+ Definition type: Global function
720
+ Return type: bool
721
+
722
+ -----------------------
723
+
724
+ IsOdd_uint32( Arg0 )
725
+ Definition type: Global function
726
+ Return type: bool
727
+
728
+ -----------------------
729
+
730
+ IsOdd_uint64( Arg0 )
731
+ Definition type: Global function
732
+ Return type: bool
733
+
734
+ -----------------------
735
+
736
+ JoinText( Arg0, Arg1, Arg2 )
737
+ Definition type: Global function
738
+ Return type: CString
739
+
740
+ -----------------------
741
+
742
+ LessThanOrEqualTo_CFixedPoint( Arg0, Arg1 )
743
+ Definition type: Global function
744
+ Return type: bool
745
+
746
+ -----------------------
747
+
748
+ LessThanOrEqualTo_float( Arg0, Arg1 )
749
+ Definition type: Global function
750
+ Return type: bool
751
+
752
+ -----------------------
753
+
754
+ LessThanOrEqualTo_int32( Arg0, Arg1 )
755
+ Definition type: Global function
756
+ Return type: bool
757
+
758
+ -----------------------
759
+
760
+ LessThanOrEqualTo_int64( Arg0, Arg1 )
761
+ Definition type: Global function
762
+ Return type: bool
763
+
764
+ -----------------------
765
+
766
+ LessThanOrEqualTo_uint32( Arg0, Arg1 )
767
+ Definition type: Global function
768
+ Return type: bool
769
+
770
+ -----------------------
771
+
772
+ LessThanOrEqualTo_uint64( Arg0, Arg1 )
773
+ Definition type: Global function
774
+ Return type: bool
775
+
776
+ -----------------------
777
+
778
+ LessThan_CFixedPoint( Arg0, Arg1 )
779
+ Definition type: Global function
780
+ Return type: bool
781
+
782
+ -----------------------
783
+
784
+ LessThan_float( Arg0, Arg1 )
785
+ Definition type: Global function
786
+ Return type: bool
787
+
788
+ -----------------------
789
+
790
+ LessThan_int32( Arg0, Arg1 )
791
+ Definition type: Global function
792
+ Return type: bool
793
+
794
+ -----------------------
795
+
796
+ LessThan_int64( Arg0, Arg1 )
797
+ Definition type: Global function
798
+ Return type: bool
799
+
800
+ -----------------------
801
+
802
+ LessThan_uint32( Arg0, Arg1 )
803
+ Definition type: Global function
804
+ Return type: bool
805
+
806
+ -----------------------
807
+
808
+ LessThan_uint64( Arg0, Arg1 )
809
+ Definition type: Global function
810
+ Return type: bool
811
+
812
+ -----------------------
813
+
814
+ Localize( Arg0 )
815
+ Definition type: Global function
816
+ Return type: CString
817
+
818
+ -----------------------
819
+
820
+ LocalizeInputAction( Arg0 )
821
+ Definition type: Global function
822
+ Return type: CString
823
+
824
+ -----------------------
825
+
826
+ Max_CFixedPoint( Arg0, Arg1 )
827
+ Definition type: Global function
828
+ Return type: CFixedPoint
829
+
830
+ -----------------------
831
+
832
+ Max_CVector2f( Arg0, Arg1 )
833
+ Definition type: Global function
834
+ Return type: CVector2f
835
+
836
+ -----------------------
837
+
838
+ Max_float( Arg0, Arg1 )
839
+ Definition type: Global function
840
+ Return type: float
841
+
842
+ -----------------------
843
+
844
+ Max_int32( Arg0, Arg1 )
845
+ Definition type: Global function
846
+ Return type: int32
847
+
848
+ -----------------------
849
+
850
+ Max_int64( Arg0, Arg1 )
851
+ Definition type: Global function
852
+ Return type: int64
853
+
854
+ -----------------------
855
+
856
+ Max_uint32( Arg0, Arg1 )
857
+ Definition type: Global function
858
+ Return type: uint32
859
+
860
+ -----------------------
861
+
862
+ Max_uint64( Arg0, Arg1 )
863
+ Definition type: Global function
864
+ Return type: uint64
865
+
866
+ -----------------------
867
+
868
+ Min_CFixedPoint( Arg0, Arg1 )
869
+ Definition type: Global function
870
+ Return type: CFixedPoint
871
+
872
+ -----------------------
873
+
874
+ Min_CVector2f( Arg0, Arg1 )
875
+ Definition type: Global function
876
+ Return type: CVector2f
877
+
878
+ -----------------------
879
+
880
+ Min_float( Arg0, Arg1 )
881
+ Definition type: Global function
882
+ Return type: float
883
+
884
+ -----------------------
885
+
886
+ Min_int32( Arg0, Arg1 )
887
+ Definition type: Global function
888
+ Return type: int32
889
+
890
+ -----------------------
891
+
892
+ Min_int64( Arg0, Arg1 )
893
+ Definition type: Global function
894
+ Return type: int64
895
+
896
+ -----------------------
897
+
898
+ Min_uint32( Arg0, Arg1 )
899
+ Definition type: Global function
900
+ Return type: uint32
901
+
902
+ -----------------------
903
+
904
+ Min_uint64( Arg0, Arg1 )
905
+ Definition type: Global function
906
+ Return type: uint64
907
+
908
+ -----------------------
909
+
910
+ Modulo_int32( Arg0, Arg1 )
911
+ Definition type: Global function
912
+ Return type: int32
913
+
914
+ -----------------------
915
+
916
+ Modulo_int64( Arg0, Arg1 )
917
+ Definition type: Global function
918
+ Return type: int64
919
+
920
+ -----------------------
921
+
922
+ Modulo_uint32( Arg0, Arg1 )
923
+ Definition type: Global function
924
+ Return type: uint32
925
+
926
+ -----------------------
927
+
928
+ Modulo_uint64( Arg0, Arg1 )
929
+ Definition type: Global function
930
+ Return type: uint64
931
+
932
+ -----------------------
933
+
934
+ Multiply_CFixedPoint( Arg0, Arg1 )
935
+ Definition type: Global function
936
+ Return type: CFixedPoint
937
+
938
+ -----------------------
939
+
940
+ Multiply_CVector2f( Arg0, Arg1 )
941
+ Definition type: Global function
942
+ Return type: CVector2f
943
+
944
+ -----------------------
945
+
946
+ Multiply_float( Arg0, Arg1 )
947
+ Definition type: Global function
948
+ Return type: float
949
+
950
+ -----------------------
951
+
952
+ Multiply_int32( Arg0, Arg1 )
953
+ Definition type: Global function
954
+ Return type: int32
955
+
956
+ -----------------------
957
+
958
+ Multiply_int64( Arg0, Arg1 )
959
+ Definition type: Global function
960
+ Return type: int64
961
+
962
+ -----------------------
963
+
964
+ Multiply_uint32( Arg0, Arg1 )
965
+ Definition type: Global function
966
+ Return type: uint32
967
+
968
+ -----------------------
969
+
970
+ Multiply_uint64( Arg0, Arg1 )
971
+ Definition type: Global function
972
+ Return type: uint64
973
+
974
+ -----------------------
975
+
976
+ Nbsp
977
+ Definition type: Global function
978
+ Return type: CString
979
+
980
+ -----------------------
981
+
982
+ Negate_CFixedPoint( Arg0 )
983
+ Definition type: Global function
984
+ Return type: CFixedPoint
985
+
986
+ -----------------------
987
+
988
+ Negate_float( Arg0 )
989
+ Definition type: Global function
990
+ Return type: float
991
+
992
+ -----------------------
993
+
994
+ Negate_int32( Arg0 )
995
+ Definition type: Global function
996
+ Return type: int32
997
+
998
+ -----------------------
999
+
1000
+ Negate_int64( Arg0 )
1001
+ Definition type: Global function
1002
+ Return type: int64
1003
+
1004
+ -----------------------
1005
+
1006
+ Not( Arg0 )
1007
+ Description: If the argument is not true
1008
+ Definition type: Global function
1009
+ Return type: bool
1010
+
1011
+ -----------------------
1012
+
1013
+ NotEqualTo_CFixedPoint( Arg0, Arg1 )
1014
+ Definition type: Global function
1015
+ Return type: bool
1016
+
1017
+ -----------------------
1018
+
1019
+ NotEqualTo_CVector2f( Arg0, Arg1 )
1020
+ Definition type: Global function
1021
+ Return type: bool
1022
+
1023
+ -----------------------
1024
+
1025
+ NotEqualTo_float( Arg0, Arg1 )
1026
+ Definition type: Global function
1027
+ Return type: bool
1028
+
1029
+ -----------------------
1030
+
1031
+ NotEqualTo_int32( Arg0, Arg1 )
1032
+ Definition type: Global function
1033
+ Return type: bool
1034
+
1035
+ -----------------------
1036
+
1037
+ NotEqualTo_int64( Arg0, Arg1 )
1038
+ Definition type: Global function
1039
+ Return type: bool
1040
+
1041
+ -----------------------
1042
+
1043
+ NotEqualTo_uint32( Arg0, Arg1 )
1044
+ Definition type: Global function
1045
+ Return type: bool
1046
+
1047
+ -----------------------
1048
+
1049
+ NotEqualTo_uint64( Arg0, Arg1 )
1050
+ Definition type: Global function
1051
+ Return type: bool
1052
+
1053
+ -----------------------
1054
+
1055
+ ObjectsEqual( Arg0, Arg1 )
1056
+ Definition type: Global function
1057
+ Return type: bool
1058
+
1059
+ -----------------------
1060
+
1061
+ Or( Arg0, Arg1 )
1062
+ Description: If either argument is true
1063
+ Definition type: Global function
1064
+ Return type: bool
1065
+
1066
+ -----------------------
1067
+
1068
+ Or3( Arg0, Arg1, Arg2 )
1069
+ Description: If any of 3 arguments are true
1070
+ Definition type: Global function
1071
+ Return type: bool
1072
+
1073
+ -----------------------
1074
+
1075
+ Or4( Arg0, Arg1, Arg2, Arg3 )
1076
+ Description: If any of 4 arguments are true
1077
+ Definition type: Global function
1078
+ Return type: bool
1079
+
1080
+ -----------------------
1081
+
1082
+ Or5( Arg0, Arg1, Arg2, Arg3, Arg4 )
1083
+ Description: If any of 5 arguments are true
1084
+ Definition type: Global function
1085
+ Return type: bool
1086
+
1087
+ -----------------------
1088
+
1089
+ Or6( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5 )
1090
+ Description: If any of 6 arguments are true
1091
+ Definition type: Global function
1092
+ Return type: bool
1093
+
1094
+ -----------------------
1095
+
1096
+ Or7( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6 )
1097
+ Description: If any of 7 arguments are true
1098
+ Definition type: Global function
1099
+ Return type: bool
1100
+
1101
+ -----------------------
1102
+
1103
+ Or8( Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7 )
1104
+ Description: If any of 8 arguments are true
1105
+ Definition type: Global function
1106
+ Return type: bool
1107
+
1108
+ -----------------------
1109
+
1110
+ OrEvalAll( Arg0, Arg1 )
1111
+ Description: Evaluates all arguments and then checks if either argument is true. Using 'Or' is preferred.
1112
+ Definition type: Global function
1113
+ Return type: bool
1114
+
1115
+ -----------------------
1116
+
1117
+ SelectLocalization( Arg0, Arg1, Arg2 )
1118
+ Definition type: Global function
1119
+ Return type: CString
1120
+
1121
+ -----------------------
1122
+
1123
+ Select_CFixedPoint( Arg0, Arg1, Arg2 )
1124
+ Definition type: Global function
1125
+ Return type: CFixedPoint
1126
+
1127
+ -----------------------
1128
+
1129
+ Select_CString( Arg0, Arg1, Arg2 )
1130
+ Definition type: Global function
1131
+ Return type: CString
1132
+
1133
+ -----------------------
1134
+
1135
+ Select_CVector2f( Arg0, Arg1, Arg2 )
1136
+ Definition type: Global function
1137
+ Return type: CVector2f
1138
+
1139
+ -----------------------
1140
+
1141
+ Select_CVector2i( Arg0, Arg1, Arg2 )
1142
+ Definition type: Global function
1143
+ Return type: CVector2i
1144
+
1145
+ -----------------------
1146
+
1147
+ Select_CVector3f( Arg0, Arg1, Arg2 )
1148
+ Definition type: Global function
1149
+ Return type: CVector3f
1150
+
1151
+ -----------------------
1152
+
1153
+ Select_CVector3i( Arg0, Arg1, Arg2 )
1154
+ Definition type: Global function
1155
+ Return type: CVector3i
1156
+
1157
+ -----------------------
1158
+
1159
+ Select_CVector4f( Arg0, Arg1, Arg2 )
1160
+ Definition type: Global function
1161
+ Return type: CVector4f
1162
+
1163
+ -----------------------
1164
+
1165
+ Select_CVector4i( Arg0, Arg1, Arg2 )
1166
+ Definition type: Global function
1167
+ Return type: CVector4i
1168
+
1169
+ -----------------------
1170
+
1171
+ Select_float( Arg0, Arg1, Arg2 )
1172
+ Definition type: Global function
1173
+ Return type: float
1174
+
1175
+ -----------------------
1176
+
1177
+ Select_int16( Arg0, Arg1, Arg2 )
1178
+ Definition type: Global function
1179
+ Return type: int16
1180
+
1181
+ -----------------------
1182
+
1183
+ Select_int32( Arg0, Arg1, Arg2 )
1184
+ Definition type: Global function
1185
+ Return type: int32
1186
+
1187
+ -----------------------
1188
+
1189
+ Select_int64( Arg0, Arg1, Arg2 )
1190
+ Definition type: Global function
1191
+ Return type: int64
1192
+
1193
+ -----------------------
1194
+
1195
+ Select_int8( Arg0, Arg1, Arg2 )
1196
+ Definition type: Global function
1197
+ Return type: int8
1198
+
1199
+ -----------------------
1200
+
1201
+ Select_uint16( Arg0, Arg1, Arg2 )
1202
+ Definition type: Global function
1203
+ Return type: uint16
1204
+
1205
+ -----------------------
1206
+
1207
+ Select_uint32( Arg0, Arg1, Arg2 )
1208
+ Definition type: Global function
1209
+ Return type: uint32
1210
+
1211
+ -----------------------
1212
+
1213
+ Select_uint64( Arg0, Arg1, Arg2 )
1214
+ Definition type: Global function
1215
+ Return type: uint64
1216
+
1217
+ -----------------------
1218
+
1219
+ Select_uint8( Arg0, Arg1, Arg2 )
1220
+ Definition type: Global function
1221
+ Return type: uint8
1222
+
1223
+ -----------------------
1224
+
1225
+ StringIsEmpty( Arg0 )
1226
+ Definition type: Global function
1227
+ Return type: bool
1228
+
1229
+ -----------------------
1230
+
1231
+ Subtract_CFixedPoint( Arg0, Arg1 )
1232
+ Definition type: Global function
1233
+ Return type: CFixedPoint
1234
+
1235
+ -----------------------
1236
+
1237
+ Subtract_CVector2f( Arg0, Arg1 )
1238
+ Definition type: Global function
1239
+ Return type: CVector2f
1240
+
1241
+ -----------------------
1242
+
1243
+ Subtract_float( Arg0, Arg1 )
1244
+ Definition type: Global function
1245
+ Return type: float
1246
+
1247
+ -----------------------
1248
+
1249
+ Subtract_int32( Arg0, Arg1 )
1250
+ Definition type: Global function
1251
+ Return type: int32
1252
+
1253
+ -----------------------
1254
+
1255
+ Subtract_int64( Arg0, Arg1 )
1256
+ Definition type: Global function
1257
+ Return type: int64
1258
+
1259
+ -----------------------
1260
+
1261
+ Subtract_uint32( Arg0, Arg1 )
1262
+ Definition type: Global function
1263
+ Return type: uint32
1264
+
1265
+ -----------------------
1266
+
1267
+ Subtract_uint64( Arg0, Arg1 )
1268
+ Definition type: Global function
1269
+ Return type: uint64
1270
+
1271
+ -----------------------
1272
+
1273
+ ToString_int16( Arg0 )
1274
+ Definition type: Global function
1275
+ Return type: CString
1276
+
1277
+ -----------------------
1278
+
1279
+ ToString_int32( Arg0 )
1280
+ Definition type: Global function
1281
+ Return type: CString
1282
+
1283
+ -----------------------
1284
+
1285
+ ToString_int64( Arg0 )
1286
+ Definition type: Global function
1287
+ Return type: CString
1288
+
1289
+ -----------------------
1290
+
1291
+ ToString_int8( Arg0 )
1292
+ Definition type: Global function
1293
+ Return type: CString
1294
+
1295
+ -----------------------
1296
+
1297
+ ToString_uint16( Arg0 )
1298
+ Definition type: Global function
1299
+ Return type: CString
1300
+
1301
+ -----------------------
1302
+
1303
+ ToString_uint32( Arg0 )
1304
+ Definition type: Global function
1305
+ Return type: CString
1306
+
1307
+ -----------------------
1308
+
1309
+ ToString_uint64( Arg0 )
1310
+ Definition type: Global function
1311
+ Return type: CString
1312
+
1313
+ -----------------------
1314
+
1315
+ ToString_uint8( Arg0 )
1316
+ Definition type: Global function
1317
+ Return type: CString
1318
+
1319
+ -----------------------
1320
+
1321
+ ActiveResolutionContainer
1322
+ Description: Base class for resolution containers
1323
+ Definition type: Type
1324
+
1325
+ -----------------------
1326
+
1327
+ ActiveResolutionContainer.GetActiveResolution( Arg0 )
1328
+ Definition type: Promote
1329
+ Return type: ActiveResolution
1330
+
1331
+ -----------------------
1332
+
1333
+ ActiveResolutionContainer.GetActiveResolutionFromKey( Arg0 )
1334
+ Definition type: Promote
1335
+ Return type: ActiveResolution
1336
+
1337
+ -----------------------
1338
+
1339
+ ActiveResolutionContainer.AccessSelf
1340
+ Definition type: Function
1341
+ Return type: [unregistered]
1342
+
1343
+ -----------------------
1344
+
1345
+ ActiveResolutionContainer.GetActiveResolution( Arg0 )
1346
+ Definition type: Function
1347
+ Return type: [unregistered]
1348
+
1349
+ -----------------------
1350
+
1351
+ ActiveResolutionContainer.GetActiveResolutionFromKey( Arg0 )
1352
+ Definition type: Function
1353
+ Return type: [unregistered]
1354
+
1355
+ -----------------------
1356
+
1357
+ ActiveResolutionContainer.HasActiveResolution( Arg0 )
1358
+ Definition type: Function
1359
+ Return type: bool
1360
+
1361
+ -----------------------
1362
+
1363
+ ActiveResolutionContainer.HasActiveResolutionFromKey( Arg0 )
1364
+ Definition type: Function
1365
+ Return type: bool
1366
+
1367
+ -----------------------
1368
+
1369
+ ActiveResolutionContainer.ResolutionIsActive( Arg0 )
1370
+ Definition type: Function
1371
+ Return type: bool
1372
+
1373
+ -----------------------
1374
+
1375
+ ActiveResolutionContainer.Self
1376
+ Definition type: Function
1377
+ Return type: [unregistered]
1378
+
1379
+ -----------------------
1380
+
1381
+ Application
1382
+ Definition type: Type
1383
+
1384
+ -----------------------
1385
+
1386
+ Application.AccessSelf
1387
+ Definition type: Function
1388
+ Return type: [unregistered]
1389
+
1390
+ -----------------------
1391
+
1392
+ Application.Quit
1393
+ Definition type: Function
1394
+ Return type: void
1395
+
1396
+ -----------------------
1397
+
1398
+ Application.Self
1399
+ Definition type: Function
1400
+ Return type: [unregistered]
1401
+
1402
+ -----------------------
1403
+
1404
+ CFixedPoint
1405
+ Description: Number stored with 6 digits of precision.
1406
+ Definition type: Type
1407
+
1408
+ -----------------------
1409
+
1410
+ CFixedPoint.AccessSelf
1411
+ Definition type: Function
1412
+ Return type: [unregistered]
1413
+
1414
+ -----------------------
1415
+
1416
+ CFixedPoint.GetFixedPoint
1417
+ Definition type: Function
1418
+ Return type: [unregistered]
1419
+
1420
+ -----------------------
1421
+
1422
+ CFixedPoint.Self
1423
+ Definition type: Function
1424
+ Return type: [unregistered]
1425
+
1426
+ -----------------------
1427
+
1428
+ CPdxFloatRect
1429
+ Description: Rectangle within an 2D float space.
1430
+ Definition type: Type
1431
+
1432
+ -----------------------
1433
+
1434
+ CPdxFloatRect.AccessSelf
1435
+ Definition type: Function
1436
+ Return type: [unregistered]
1437
+
1438
+ -----------------------
1439
+
1440
+ CPdxFloatRect.GetRect
1441
+ Definition type: Function
1442
+ Return type: [unregistered]
1443
+
1444
+ -----------------------
1445
+
1446
+ CPdxFloatRect.Self
1447
+ Definition type: Function
1448
+ Return type: [unregistered]
1449
+
1450
+ -----------------------
1451
+
1452
+ CPdxIntRect
1453
+ Description: Rectangle within an 2D integer space.
1454
+ Definition type: Type
1455
+
1456
+ -----------------------
1457
+
1458
+ CPdxIntRect.AccessSelf
1459
+ Definition type: Function
1460
+ Return type: [unregistered]
1461
+
1462
+ -----------------------
1463
+
1464
+ CPdxIntRect.GetRect
1465
+ Definition type: Function
1466
+ Return type: [unregistered]
1467
+
1468
+ -----------------------
1469
+
1470
+ CPdxIntRect.Self
1471
+ Definition type: Function
1472
+ Return type: [unregistered]
1473
+
1474
+ -----------------------
1475
+
1476
+ CString
1477
+ Definition type: Type
1478
+
1479
+ -----------------------
1480
+
1481
+ CString.AccessSelf
1482
+ Definition type: Function
1483
+ Return type: [unregistered]
1484
+
1485
+ -----------------------
1486
+
1487
+ CString.GetString
1488
+ Definition type: Function
1489
+ Return type: [unregistered]
1490
+
1491
+ -----------------------
1492
+
1493
+ CString.IsStringNumberZero
1494
+ Definition type: Function
1495
+ Return type: bool
1496
+
1497
+ -----------------------
1498
+
1499
+ CString.Self
1500
+ Definition type: Function
1501
+ Return type: [unregistered]
1502
+
1503
+ -----------------------
1504
+
1505
+ CUTF8String
1506
+ Definition type: Type
1507
+
1508
+ -----------------------
1509
+
1510
+ CUTF8String.AccessSelf
1511
+ Definition type: Function
1512
+ Return type: [unregistered]
1513
+
1514
+ -----------------------
1515
+
1516
+ CUTF8String.GetString
1517
+ Definition type: Function
1518
+ Return type: [unregistered]
1519
+
1520
+ -----------------------
1521
+
1522
+ CUTF8String.Self
1523
+ Definition type: Function
1524
+ Return type: [unregistered]
1525
+
1526
+ -----------------------
1527
+
1528
+ CVector2f
1529
+ Description: Type containing two float numbers.
1530
+ Definition type: Type
1531
+
1532
+ -----------------------
1533
+
1534
+ CVector2f.AccessSelf
1535
+ Definition type: Function
1536
+ Return type: [unregistered]
1537
+
1538
+ -----------------------
1539
+
1540
+ CVector2f.GetVector
1541
+ Definition type: Function
1542
+ Return type: [unregistered]
1543
+
1544
+ -----------------------
1545
+
1546
+ CVector2f.Self
1547
+ Definition type: Function
1548
+ Return type: [unregistered]
1549
+
1550
+ -----------------------
1551
+
1552
+ CVector2i
1553
+ Description: Type containing two integer numbers.
1554
+ Definition type: Type
1555
+
1556
+ -----------------------
1557
+
1558
+ CVector2i.AccessSelf
1559
+ Definition type: Function
1560
+ Return type: [unregistered]
1561
+
1562
+ -----------------------
1563
+
1564
+ CVector2i.GetVector
1565
+ Definition type: Function
1566
+ Return type: [unregistered]
1567
+
1568
+ -----------------------
1569
+
1570
+ CVector2i.Self
1571
+ Definition type: Function
1572
+ Return type: [unregistered]
1573
+
1574
+ -----------------------
1575
+
1576
+ CVector3f
1577
+ Description: Type containing three float numbers.
1578
+ Definition type: Type
1579
+
1580
+ -----------------------
1581
+
1582
+ CVector3f.AccessSelf
1583
+ Definition type: Function
1584
+ Return type: [unregistered]
1585
+
1586
+ -----------------------
1587
+
1588
+ CVector3f.GetVector
1589
+ Definition type: Function
1590
+ Return type: [unregistered]
1591
+
1592
+ -----------------------
1593
+
1594
+ CVector3f.Self
1595
+ Definition type: Function
1596
+ Return type: [unregistered]
1597
+
1598
+ -----------------------
1599
+
1600
+ CVector3i
1601
+ Description: Type containing three integer numbers.
1602
+ Definition type: Type
1603
+
1604
+ -----------------------
1605
+
1606
+ CVector3i.AccessSelf
1607
+ Definition type: Function
1608
+ Return type: [unregistered]
1609
+
1610
+ -----------------------
1611
+
1612
+ CVector3i.GetVector
1613
+ Definition type: Function
1614
+ Return type: [unregistered]
1615
+
1616
+ -----------------------
1617
+
1618
+ CVector3i.Self
1619
+ Definition type: Function
1620
+ Return type: [unregistered]
1621
+
1622
+ -----------------------
1623
+
1624
+ CVector4f
1625
+ Description: Type containing four float numbers.
1626
+ Definition type: Type
1627
+
1628
+ -----------------------
1629
+
1630
+ CVector4f.AccessSelf
1631
+ Definition type: Function
1632
+ Return type: [unregistered]
1633
+
1634
+ -----------------------
1635
+
1636
+ CVector4f.GetVector
1637
+ Definition type: Function
1638
+ Return type: [unregistered]
1639
+
1640
+ -----------------------
1641
+
1642
+ CVector4f.Self
1643
+ Definition type: Function
1644
+ Return type: [unregistered]
1645
+
1646
+ -----------------------
1647
+
1648
+ CVector4i
1649
+ Description: Type containing four integer numbers.
1650
+ Definition type: Type
1651
+
1652
+ -----------------------
1653
+
1654
+ CVector4i.AccessSelf
1655
+ Definition type: Function
1656
+ Return type: [unregistered]
1657
+
1658
+ -----------------------
1659
+
1660
+ CVector4i.GetVector
1661
+ Definition type: Function
1662
+ Return type: [unregistered]
1663
+
1664
+ -----------------------
1665
+
1666
+ CVector4i.Self
1667
+ Definition type: Function
1668
+ Return type: [unregistered]
1669
+
1670
+ -----------------------
1671
+
1672
+ Date
1673
+ Description: Jomini Historical Date
1674
+ Definition type: Type
1675
+
1676
+ -----------------------
1677
+
1678
+ Date.AccessSelf
1679
+ Definition type: Function
1680
+ Return type: [unregistered]
1681
+
1682
+ -----------------------
1683
+
1684
+ Date.Self
1685
+ Definition type: Function
1686
+ Return type: [unregistered]
1687
+
1688
+ -----------------------
1689
+
1690
+ Playable
1691
+ Description: Jomini Playable
1692
+ Definition type: Type
1693
+
1694
+ -----------------------
1695
+
1696
+ Playable.GetCountry
1697
+ Definition type: Promote
1698
+ Return type: Country
1699
+
1700
+ -----------------------
1701
+
1702
+ Playable.GetJominiPlayableCountryRef
1703
+ Definition type: Promote
1704
+ Return type: Country
1705
+
1706
+ -----------------------
1707
+
1708
+ Playable.AccessSelf
1709
+ Definition type: Function
1710
+ Return type: [unregistered]
1711
+
1712
+ -----------------------
1713
+
1714
+ Playable.GetJominiPlayableCountryRef
1715
+ Definition type: Function
1716
+ Return type: [unregistered]
1717
+
1718
+ -----------------------
1719
+
1720
+ Playable.Self
1721
+ Definition type: Function
1722
+ Return type: [unregistered]
1723
+
1724
+ -----------------------
1725
+
1726
+ TagObject
1727
+ Description: Base class for objects featuring custom tags
1728
+ Definition type: Type
1729
+
1730
+ -----------------------
1731
+
1732
+ TagObject.AccessSelf
1733
+ Definition type: Function
1734
+ Return type: [unregistered]
1735
+
1736
+ -----------------------
1737
+
1738
+ TagObject.CanShowTags
1739
+ Definition type: Function
1740
+ Return type: bool
1741
+
1742
+ -----------------------
1743
+
1744
+ TagObject.Self
1745
+ Definition type: Function
1746
+ Return type: [unregistered]
1747
+
1748
+ -----------------------
1749
+
1750
+ TagObject.ShowTags
1751
+ Definition type: Function
1752
+ Return type: CString
1753
+
1754
+ -----------------------
1755
+
1756
+ VariableSystem
1757
+ Definition type: Type
1758
+
1759
+ -----------------------
1760
+
1761
+ VariableSystem.AccessSelf
1762
+ Definition type: Function
1763
+ Return type: [unregistered]
1764
+
1765
+ -----------------------
1766
+
1767
+ VariableSystem.Clear( Arg0 )
1768
+ Definition type: Function
1769
+ Return type: void
1770
+
1771
+ -----------------------
1772
+
1773
+ VariableSystem.ClearIf( Arg0, Arg1 )
1774
+ Definition type: Function
1775
+ Return type: void
1776
+
1777
+ -----------------------
1778
+
1779
+ VariableSystem.ClearMultiple( Arg0, Arg1 )
1780
+ Definition type: Function
1781
+ Return type: void
1782
+
1783
+ -----------------------
1784
+
1785
+ VariableSystem.Exists( Arg0 )
1786
+ Definition type: Function
1787
+ Return type: bool
1788
+
1789
+ -----------------------
1790
+
1791
+ VariableSystem.Get( Arg0 )
1792
+ Definition type: Function
1793
+ Return type: CString
1794
+
1795
+ -----------------------
1796
+
1797
+ VariableSystem.HasValue( Arg0, Arg1 )
1798
+ Definition type: Function
1799
+ Return type: bool
1800
+
1801
+ -----------------------
1802
+
1803
+ VariableSystem.Self
1804
+ Definition type: Function
1805
+ Return type: [unregistered]
1806
+
1807
+ -----------------------
1808
+
1809
+ VariableSystem.Set( Arg0, Arg1 )
1810
+ Definition type: Function
1811
+ Return type: void
1812
+
1813
+ -----------------------
1814
+
1815
+ VariableSystem.SetIf( Arg0, Arg1, Arg2 )
1816
+ Definition type: Function
1817
+ Return type: void
1818
+
1819
+ -----------------------
1820
+
1821
+ VariableSystem.SetOrToggle( Arg0, Arg1 )
1822
+ Definition type: Function
1823
+ Return type: void
1824
+
1825
+ -----------------------
1826
+
1827
+ VariableSystem.Toggle( Arg0 )
1828
+ Definition type: Function
1829
+ Return type: bool
1830
+
1831
+ -----------------------
1832
+
1833
+ bool
1834
+ Definition type: Type
1835
+
1836
+ -----------------------
1837
+
1838
+ bool.AccessSelf
1839
+ Definition type: Function
1840
+ Return type: [unregistered]
1841
+
1842
+ -----------------------
1843
+
1844
+ bool.Self
1845
+ Definition type: Function
1846
+ Return type: [unregistered]
1847
+
1848
+ -----------------------
1849
+
1850
+ double
1851
+ Description: Number stored with `double float` precision.
1852
+ Definition type: Type
1853
+
1854
+ -----------------------
1855
+
1856
+ double.AccessSelf
1857
+ Definition type: Function
1858
+ Return type: [unregistered]
1859
+
1860
+ -----------------------
1861
+
1862
+ double.Self
1863
+ Definition type: Function
1864
+ Return type: [unregistered]
1865
+
1866
+ -----------------------
1867
+
1868
+ float
1869
+ Description: Number stored with `float` precision.
1870
+ Definition type: Type
1871
+
1872
+ -----------------------
1873
+
1874
+ float.AccessSelf
1875
+ Definition type: Function
1876
+ Return type: [unregistered]
1877
+
1878
+ -----------------------
1879
+
1880
+ float.Self
1881
+ Definition type: Function
1882
+ Return type: [unregistered]
1883
+
1884
+ -----------------------
1885
+
1886
+ int16
1887
+ Definition type: Type
1888
+
1889
+ -----------------------
1890
+
1891
+ int16.AccessSelf
1892
+ Definition type: Function
1893
+ Return type: [unregistered]
1894
+
1895
+ -----------------------
1896
+
1897
+ int16.GetInt
1898
+ Definition type: Function
1899
+ Return type: [unregistered]
1900
+
1901
+ -----------------------
1902
+
1903
+ int16.Self
1904
+ Definition type: Function
1905
+ Return type: [unregistered]
1906
+
1907
+ -----------------------
1908
+
1909
+ int32
1910
+ Definition type: Type
1911
+
1912
+ -----------------------
1913
+
1914
+ int32.AccessSelf
1915
+ Definition type: Function
1916
+ Return type: [unregistered]
1917
+
1918
+ -----------------------
1919
+
1920
+ int32.GetInt
1921
+ Definition type: Function
1922
+ Return type: [unregistered]
1923
+
1924
+ -----------------------
1925
+
1926
+ int32.Self
1927
+ Definition type: Function
1928
+ Return type: [unregistered]
1929
+
1930
+ -----------------------
1931
+
1932
+ int64
1933
+ Definition type: Type
1934
+
1935
+ -----------------------
1936
+
1937
+ int64.AccessSelf
1938
+ Definition type: Function
1939
+ Return type: [unregistered]
1940
+
1941
+ -----------------------
1942
+
1943
+ int64.GetInt
1944
+ Definition type: Function
1945
+ Return type: [unregistered]
1946
+
1947
+ -----------------------
1948
+
1949
+ int64.Self
1950
+ Definition type: Function
1951
+ Return type: [unregistered]
1952
+
1953
+ -----------------------
1954
+
1955
+ int8
1956
+ Definition type: Type
1957
+
1958
+ -----------------------
1959
+
1960
+ int8.AccessSelf
1961
+ Definition type: Function
1962
+ Return type: [unregistered]
1963
+
1964
+ -----------------------
1965
+
1966
+ int8.GetInt
1967
+ Definition type: Function
1968
+ Return type: [unregistered]
1969
+
1970
+ -----------------------
1971
+
1972
+ int8.Self
1973
+ Definition type: Function
1974
+ Return type: [unregistered]
1975
+
1976
+ -----------------------
1977
+
1978
+ uint16
1979
+ Definition type: Type
1980
+
1981
+ -----------------------
1982
+
1983
+ uint16.AccessSelf
1984
+ Definition type: Function
1985
+ Return type: [unregistered]
1986
+
1987
+ -----------------------
1988
+
1989
+ uint16.GetUint
1990
+ Definition type: Function
1991
+ Return type: [unregistered]
1992
+
1993
+ -----------------------
1994
+
1995
+ uint16.Self
1996
+ Definition type: Function
1997
+ Return type: [unregistered]
1998
+
1999
+ -----------------------
2000
+
2001
+ uint32
2002
+ Definition type: Type
2003
+
2004
+ -----------------------
2005
+
2006
+ uint32.AccessSelf
2007
+ Definition type: Function
2008
+ Return type: [unregistered]
2009
+
2010
+ -----------------------
2011
+
2012
+ uint32.GetUint
2013
+ Definition type: Function
2014
+ Return type: [unregistered]
2015
+
2016
+ -----------------------
2017
+
2018
+ uint32.Self
2019
+ Definition type: Function
2020
+ Return type: [unregistered]
2021
+
2022
+ -----------------------
2023
+
2024
+ uint64
2025
+ Definition type: Type
2026
+
2027
+ -----------------------
2028
+
2029
+ uint64.AccessSelf
2030
+ Definition type: Function
2031
+ Return type: [unregistered]
2032
+
2033
+ -----------------------
2034
+
2035
+ uint64.GetUint
2036
+ Definition type: Function
2037
+ Return type: [unregistered]
2038
+
2039
+ -----------------------
2040
+
2041
+ uint64.Self
2042
+ Definition type: Function
2043
+ Return type: [unregistered]
2044
+
2045
+ -----------------------
2046
+
2047
+ uint8
2048
+ Definition type: Type
2049
+
2050
+ -----------------------
2051
+
2052
+ uint8.AccessSelf
2053
+ Definition type: Function
2054
+ Return type: [unregistered]
2055
+
2056
+ -----------------------
2057
+
2058
+ uint8.GetUint
2059
+ Definition type: Function
2060
+ Return type: [unregistered]
2061
+
2062
+ -----------------------
2063
+
2064
+ uint8.Self
2065
+ Definition type: Function
2066
+ Return type: [unregistered]
2067
+
2068
+ -----------------------
2069
+
2070
+ void
2071
+ Description: Unspecified type / empty type.
2072
+ Definition type: Type
2073
+
2074
+ -----------------------
2075
+
2076
+ void.AccessSelf
2077
+ Definition type: Function
2078
+ Return type: [unregistered]
2079
+
2080
+ -----------------------
2081
+
2082
+ void.Self
2083
+ Definition type: Function
2084
+ Return type: [unregistered]
2085
+
2086
+ -----------------------
2087
+