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