-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSynHighlighterPex.pas
More file actions
10440 lines (9545 loc) · 377 KB
/
Copy pathSynHighlighterPex.pas
File metadata and controls
10440 lines (9545 loc) · 377 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
Code template generated with SynGen.
The original code is: D:\Dev\Projets\Fallout4Translator\SynHighlighterPex.pas, released 2016-05-29.
Description: Syntax Parser/Highlighter
The initial author of this file is stef.
Copyright (c) 2016, all rights reserved.
Contributors to the SynEdit and mwEdit projects are listed in the
Contributors.txt file.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
$Id: $
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
-------------------------------------------------------------------------------}
{$IFNDEF QSYNHIGHLIGHTERPEX}
unit SynHighlighterPex;
{$ENDIF}
{$I SynEdit.inc}
interface
uses
{$IFDEF SYN_CLX}
QGraphics,
QSynEditTypes,
QSynEditHighlighter,
QSynUnicode,
{$ELSE}
Graphics,
SynEditTypes,
SynEditHighlighter,
SynUnicode,
{$ENDIF}
SysUtils,
Classes;
type
TtkTokenKind = (
tkComment2,
tkComment3,
tkIdentifier,
tkKey,
tkNull,
tkPapyrus,
tkSpace,
tkString,
tkUnknown,
tkword0,
tkword2,
tkword3);
TRangeState = (rsUnKnown, rsBracket2Comment, rsBracketComment, rsString);
TProcTableProc = procedure of object;
PIdentFuncTableFunc = ^TIdentFuncTableFunc;
TIdentFuncTableFunc = function (Index: Integer): TtkTokenKind of object;
type
TSynSampleSyn = class(TSynCustomHighlighter)
private
fRange: TRangeState;
fTokenID: TtkTokenKind;
fIdentFuncTable: array[0..23268] of TIdentFuncTableFunc;
fComment2Attri: TSynHighlighterAttributes;
fComment3Attri: TSynHighlighterAttributes;
fIdentifierAttri: TSynHighlighterAttributes;
fKeyAttri: TSynHighlighterAttributes;
fPapyrusAttri: TSynHighlighterAttributes;
fSpaceAttri: TSynHighlighterAttributes;
fStringAttri: TSynHighlighterAttributes;
fword0Attri: TSynHighlighterAttributes;
fword2Attri: TSynHighlighterAttributes;
fword3Attri: TSynHighlighterAttributes;
function HashKey(Str: PWideChar): Cardinal;
function Func95fo4(Index: Integer): TtkTokenKind;
function FuncAbs(Index: Integer): TtkTokenKind;
function FuncAcos(Index: Integer): TtkTokenKind;
function FuncAction(Index: Integer): TtkTokenKind;
function FuncActivate(Index: Integer): TtkTokenKind;
function FuncActivator(Index: Integer): TtkTokenKind;
function FuncActivemagiceffect(Index: Integer): TtkTokenKind;
function FuncActor(Index: Integer): TtkTokenKind;
function FuncActorbase(Index: Integer): TtkTokenKind;
function FuncAdd(Index: Integer): TtkTokenKind;
function FuncAddachievement(Index: Integer): TtkTokenKind;
function FuncAdddependentanimatedobjectreference(Index: Integer): TtkTokenKind;
function FuncAddform(Index: Integer): TtkTokenKind;
function FuncAddhavokballandsocketconstraint(Index: Integer): TtkTokenKind;
function FuncAddinventoryeventfilter(Index: Integer): TtkTokenKind;
function FuncAdditem(Index: Integer): TtkTokenKind;
function FuncAddperk(Index: Integer): TtkTokenKind;
function FuncAddshout(Index: Integer): TtkTokenKind;
function FuncAddspell(Index: Integer): TtkTokenKind;
function FuncAddtextreplacementdata(Index: Integer): TtkTokenKind;
function FuncAddtofaction(Index: Integer): TtkTokenKind;
function FuncAddtomap(Index: Integer): TtkTokenKind;
function FuncAdvanceskill(Index: Integer): TtkTokenKind;
function FuncAlias(Index: Integer): TtkTokenKind;
function FuncAllowbleedoutdialogue(Index: Integer): TtkTokenKind;
function FuncAllowpcdialogue(Index: Integer): TtkTokenKind;
function FuncAmmo(Index: Integer): TtkTokenKind;
function FuncApparatus(Index: Integer): TtkTokenKind;
function FuncApply(Index: Integer): TtkTokenKind;
function FuncApplycrossfade(Index: Integer): TtkTokenKind;
function FuncApplyhavokimpulse(Index: Integer): TtkTokenKind;
function FuncArmor(Index: Integer): TtkTokenKind;
function FuncAs(Index: Integer): TtkTokenKind;
function FuncAsin(Index: Integer): TtkTokenKind;
function FuncAssociationtype(Index: Integer): TtkTokenKind;
function FuncAtan(Index: Integer): TtkTokenKind;
function FuncAttachashpile(Index: Integer): TtkTokenKind;
function FuncAuto(Index: Integer): TtkTokenKind;
function FuncAutoreadonly(Index: Integer): TtkTokenKind;
function FuncAutostatename(Index: Integer): TtkTokenKind;
function FuncAutovarname(Index: Integer): TtkTokenKind;
function FuncBlockactivation(Index: Integer): TtkTokenKind;
function FuncBook(Index: Integer): TtkTokenKind;
function FuncBool(Index: Integer): TtkTokenKind;
function FuncCalculateencounterlevel(Index: Integer): TtkTokenKind;
function FuncCalculatefavorcost(Index: Integer): TtkTokenKind;
function FuncCanfasttraveltomarker(Index: Integer): TtkTokenKind;
function FuncCanpaycrimegold(Index: Integer): TtkTokenKind;
function FuncCaptureframerate(Index: Integer): TtkTokenKind;
function FuncCast(Index: Integer): TtkTokenKind;
function FuncCeiling(Index: Integer): TtkTokenKind;
function FuncCell(Index: Integer): TtkTokenKind;
function FuncCenteroncell(Index: Integer): TtkTokenKind;
function FuncCenteroncellandwait(Index: Integer): TtkTokenKind;
function FuncClass(Index: Integer): TtkTokenKind;
function FuncClear(Index: Integer): TtkTokenKind;
function FuncCleararrested(Index: Integer): TtkTokenKind;
function FuncCleardestruction(Index: Integer): TtkTokenKind;
function FuncClearextraarrows(Index: Integer): TtkTokenKind;
function FuncClearforcedmovement(Index: Integer): TtkTokenKind;
function FuncClearkeepoffsetfromactor(Index: Integer): TtkTokenKind;
function FuncClearlookat(Index: Integer): TtkTokenKind;
function FuncClearprison(Index: Integer): TtkTokenKind;
function FuncCleartempeffects(Index: Integer): TtkTokenKind;
function FuncCloseuserlog(Index: Integer): TtkTokenKind;
function FuncCompleteallobjectives(Index: Integer): TtkTokenKind;
function FuncCompletequest(Index: Integer): TtkTokenKind;
function FuncComputer(Index: Integer): TtkTokenKind;
function FuncConditional(Index: Integer): TtkTokenKind;
function FuncConstructibleobject(Index: Integer): TtkTokenKind;
function FuncContainer(Index: Integer): TtkTokenKind;
function FuncCos(Index: Integer): TtkTokenKind;
function FuncCreatedetectionevent(Index: Integer): TtkTokenKind;
function FuncDamageactorvalue(Index: Integer): TtkTokenKind;
function FuncDamageav(Index: Integer): TtkTokenKind;
function FuncDamageobject(Index: Integer): TtkTokenKind;
function FuncDbsendplayerposition(Index: Integer): TtkTokenKind;
function FuncDebug(Index: Integer): TtkTokenKind;
function FuncDebugchannelnotify(Index: Integer): TtkTokenKind;
function FuncDebugtablecount(Index: Integer): TtkTokenKind;
function FuncDegreestoradians(Index: Integer): TtkTokenKind;
function FuncDelete(Index: Integer): TtkTokenKind;
function FuncDeletewhenable(Index: Integer): TtkTokenKind;
function FuncDisable(Index: Integer): TtkTokenKind;
function FuncDisablenowait(Index: Integer): TtkTokenKind;
function FuncDisableplayercontrols(Index: Integer): TtkTokenKind;
function FuncDispel(Index: Integer): TtkTokenKind;
function FuncDispelallspells(Index: Integer): TtkTokenKind;
function FuncDispelspell(Index: Integer): TtkTokenKind;
function FuncDocombatspellapply(Index: Integer): TtkTokenKind;
function FuncDoor(Index: Integer): TtkTokenKind;
function FuncDropobject(Index: Integer): TtkTokenKind;
function FuncDumpaliasdata(Index: Integer): TtkTokenKind;
function FuncEffectshader(Index: Integer): TtkTokenKind;
function FuncEnable(Index: Integer): TtkTokenKind;
function FuncEnableai(Index: Integer): TtkTokenKind;
function FuncEnablefasttravel(Index: Integer): TtkTokenKind;
function FuncEnablenowait(Index: Integer): TtkTokenKind;
function FuncEnableplayercontrols(Index: Integer): TtkTokenKind;
function FuncEnchantment(Index: Integer): TtkTokenKind;
function FuncEncounterzone(Index: Integer): TtkTokenKind;
function FuncEndframeratecapture(Index: Integer): TtkTokenKind;
function FuncEndfunction(Index: Integer): TtkTokenKind;
function FuncEndproperty(Index: Integer): TtkTokenKind;
function FuncEndstate(Index: Integer): TtkTokenKind;
function FuncEquipitem(Index: Integer): TtkTokenKind;
function FuncEquipshout(Index: Integer): TtkTokenKind;
function FuncEquipspell(Index: Integer): TtkTokenKind;
function FuncEvaluatepackage(Index: Integer): TtkTokenKind;
function FuncExplosion(Index: Integer): TtkTokenKind;
function FuncExtends(Index: Integer): TtkTokenKind;
function FuncFaction(Index: Integer): TtkTokenKind;
function FuncFadeoutgame(Index: Integer): TtkTokenKind;
function FuncFailallobjectives(Index: Integer): TtkTokenKind;
function FuncFalse(Index: Integer): TtkTokenKind;
function FuncFasttravel(Index: Integer): TtkTokenKind;
function FuncFind(Index: Integer): TtkTokenKind;
function FuncFindclosestactor(Index: Integer): TtkTokenKind;
function FuncFindclosestreferenceofanytypeinlist(Index: Integer): TtkTokenKind;
function FuncFindclosestreferenceoftype(Index: Integer): TtkTokenKind;
function FuncFindrandomactor(Index: Integer): TtkTokenKind;
function FuncFindrandomreferenceofanytypeinlist(Index: Integer): TtkTokenKind;
function FuncFindrandomreferenceoftype(Index: Integer): TtkTokenKind;
function FuncFindstruct(Index: Integer): TtkTokenKind;
function FuncFindweather(Index: Integer): TtkTokenKind;
function FuncFire(Index: Integer): TtkTokenKind;
function FuncFlags(Index: Integer): TtkTokenKind;
function FuncFloat(Index: Integer): TtkTokenKind;
function FuncFloor(Index: Integer): TtkTokenKind;
function FuncFlora(Index: Integer): TtkTokenKind;
function FuncForceactive(Index: Integer): TtkTokenKind;
function FuncForceactorvalue(Index: Integer): TtkTokenKind;
function FuncForceaddragdolltoworld(Index: Integer): TtkTokenKind;
function FuncForceav(Index: Integer): TtkTokenKind;
function FuncForcefirstperson(Index: Integer): TtkTokenKind;
function FuncForcelocationto(Index: Integer): TtkTokenKind;
function FuncForcemovementdirection(Index: Integer): TtkTokenKind;
function FuncForcemovementdirectionramp(Index: Integer): TtkTokenKind;
function FuncForcemovementrotationspeed(Index: Integer): TtkTokenKind;
function FuncForcemovementrotationspeedramp(Index: Integer): TtkTokenKind;
function FuncForcemovementspeed(Index: Integer): TtkTokenKind;
function FuncForcemovementspeedramp(Index: Integer): TtkTokenKind;
function FuncForcerefto(Index: Integer): TtkTokenKind;
function FuncForceremoveragdollfromworld(Index: Integer): TtkTokenKind;
function FuncForcestart(Index: Integer): TtkTokenKind;
function FuncForcetargetangle(Index: Integer): TtkTokenKind;
function FuncForcetargetdirection(Index: Integer): TtkTokenKind;
function FuncForcetargetspeed(Index: Integer): TtkTokenKind;
function FuncForcethirdperson(Index: Integer): TtkTokenKind;
function FuncForm(Index: Integer): TtkTokenKind;
function FuncFormlist(Index: Integer): TtkTokenKind;
function FuncFunction(Index: Integer): TtkTokenKind;
function FuncFunctions(Index: Integer): TtkTokenKind;
function FuncFurniture(Index: Integer): TtkTokenKind;
function FuncGame(Index: Integer): TtkTokenKind;
function FuncGametimetostring(Index: Integer): TtkTokenKind;
function FuncGet(Index: Integer): TtkTokenKind;
function FuncGetactorbase(Index: Integer): TtkTokenKind;
function FuncGetactorowner(Index: Integer): TtkTokenKind;
function FuncGetactorreference(Index: Integer): TtkTokenKind;
function FuncGetactorvalue(Index: Integer): TtkTokenKind;
function FuncGetactorvaluepercentage(Index: Integer): TtkTokenKind;
function FuncGetalias(Index: Integer): TtkTokenKind;
function FuncGetanglex(Index: Integer): TtkTokenKind;
function FuncGetangley(Index: Integer): TtkTokenKind;
function FuncGetanglez(Index: Integer): TtkTokenKind;
function FuncGetanimationvariablebool(Index: Integer): TtkTokenKind;
function FuncGetanimationvariablefloat(Index: Integer): TtkTokenKind;
function FuncGetanimationvariableint(Index: Integer): TtkTokenKind;
function FuncGetassociatedskill(Index: Integer): TtkTokenKind;
function FuncGetat(Index: Integer): TtkTokenKind;
function FuncGetav(Index: Integer): TtkTokenKind;
function FuncGetaverageframerate(Index: Integer): TtkTokenKind;
function FuncGetavpercentage(Index: Integer): TtkTokenKind;
function FuncGetbaseactorvalue(Index: Integer): TtkTokenKind;
function FuncGetbaseav(Index: Integer): TtkTokenKind;
function FuncGetbaseobject(Index: Integer): TtkTokenKind;
function FuncGetbribeamount(Index: Integer): TtkTokenKind;
function FuncGetbudgetcount(Index: Integer): TtkTokenKind;
function FuncGetbudgetname(Index: Integer): TtkTokenKind;
function FuncGetcasteractor(Index: Integer): TtkTokenKind;
function FuncGetclass(Index: Integer): TtkTokenKind;
function FuncGetclassification(Index: Integer): TtkTokenKind;
function FuncGetcombatstate(Index: Integer): TtkTokenKind;
function FuncGetcombattarget(Index: Integer): TtkTokenKind;
function FuncGetconfigname(Index: Integer): TtkTokenKind;
function FuncGetcrimefaction(Index: Integer): TtkTokenKind;
function FuncGetcrimegold(Index: Integer): TtkTokenKind;
function FuncGetcrimegoldnonviolent(Index: Integer): TtkTokenKind;
function FuncGetcrimegoldviolent(Index: Integer): TtkTokenKind;
function FuncGetcurrentbudget(Index: Integer): TtkTokenKind;
function FuncGetcurrentdestructionstage(Index: Integer): TtkTokenKind;
function FuncGetcurrentgametime(Index: Integer): TtkTokenKind;
function FuncGetcurrentlocation(Index: Integer): TtkTokenKind;
function FuncGetcurrentmemory(Index: Integer): TtkTokenKind;
function FuncGetcurrentpackage(Index: Integer): TtkTokenKind;
function FuncGetcurrentrealtime(Index: Integer): TtkTokenKind;
function FuncGetcurrentscene(Index: Integer): TtkTokenKind;
function FuncGetcurrentstageid(Index: Integer): TtkTokenKind;
function FuncGetcurrentweather(Index: Integer): TtkTokenKind;
function FuncGetcurrentweathertransition(Index: Integer): TtkTokenKind;
function FuncGetdeadcount(Index: Integer): TtkTokenKind;
function FuncGetdialoguetarget(Index: Integer): TtkTokenKind;
function FuncGetdistance(Index: Integer): TtkTokenKind;
function FuncGeteditorlocation(Index: Integer): TtkTokenKind;
function FuncGetequippeditemtype(Index: Integer): TtkTokenKind;
function FuncGetequippedshield(Index: Integer): TtkTokenKind;
function FuncGetequippedshout(Index: Integer): TtkTokenKind;
function FuncGetequippedspell(Index: Integer): TtkTokenKind;
function FuncGetequippedweapon(Index: Integer): TtkTokenKind;
function FuncGetfactionowner(Index: Integer): TtkTokenKind;
function FuncGetfactionrank(Index: Integer): TtkTokenKind;
function FuncGetfactionreaction(Index: Integer): TtkTokenKind;
function FuncGetfavorpoints(Index: Integer): TtkTokenKind;
function FuncGetflyingstate(Index: Integer): TtkTokenKind;
function FuncGetforcedlandingmarker(Index: Integer): TtkTokenKind;
function FuncGetform(Index: Integer): TtkTokenKind;
function FuncGetformid(Index: Integer): TtkTokenKind;
function FuncGetgamesettingfloat(Index: Integer): TtkTokenKind;
function FuncGetgamesettingint(Index: Integer): TtkTokenKind;
function FuncGetgamesettingstring(Index: Integer): TtkTokenKind;
function FuncGetgiftfilter(Index: Integer): TtkTokenKind;
function FuncGetgoldamount(Index: Integer): TtkTokenKind;
function FuncGetgoldvalue(Index: Integer): TtkTokenKind;
function FuncGetheadingangle(Index: Integer): TtkTokenKind;
function FuncGetheight(Index: Integer): TtkTokenKind;
function FuncGethigestrelationshiprank(Index: Integer): TtkTokenKind;
function FuncGethighestrelationshiprank(Index: Integer): TtkTokenKind;
function FuncGetinfamy(Index: Integer): TtkTokenKind;
function FuncGetinfamynonviolent(Index: Integer): TtkTokenKind;
function FuncGetinfamyviolent(Index: Integer): TtkTokenKind;
function FuncGetitemcount(Index: Integer): TtkTokenKind;
function FuncGetitemhealthpercent(Index: Integer): TtkTokenKind;
function FuncGetkey(Index: Integer): TtkTokenKind;
function FuncGetkeyworddata(Index: Integer): TtkTokenKind;
function FuncGetkiller(Index: Integer): TtkTokenKind;
function FuncGetlength(Index: Integer): TtkTokenKind;
function FuncGetlevel(Index: Integer): TtkTokenKind;
function FuncGetleveledactorbase(Index: Integer): TtkTokenKind;
function FuncGetlightlevel(Index: Integer): TtkTokenKind;
function FuncGetlinkedref(Index: Integer): TtkTokenKind;
function FuncGetlocation(Index: Integer): TtkTokenKind;
function FuncGetlocklevel(Index: Integer): TtkTokenKind;
function FuncGetlowestrelationshiprank(Index: Integer): TtkTokenKind;
function FuncGetmass(Index: Integer): TtkTokenKind;
function FuncGetmaxframerate(Index: Integer): TtkTokenKind;
function FuncGetminframerate(Index: Integer): TtkTokenKind;
function FuncGetnobleedoutrecovery(Index: Integer): TtkTokenKind;
function FuncGetnthlinkedref(Index: Integer): TtkTokenKind;
function FuncGetopenstate(Index: Integer): TtkTokenKind;
function FuncGetoutgoingweather(Index: Integer): TtkTokenKind;
function FuncGetowningquest(Index: Integer): TtkTokenKind;
function FuncGetparentcell(Index: Integer): TtkTokenKind;
function FuncGetplatformname(Index: Integer): TtkTokenKind;
function FuncGetplayer(Index: Integer): TtkTokenKind;
function FuncGetplayercontrols(Index: Integer): TtkTokenKind;
function FuncGetplayergrabbedref(Index: Integer): TtkTokenKind;
function FuncGetplayerslastriddenhorse(Index: Integer): TtkTokenKind;
function FuncGetpositionx(Index: Integer): TtkTokenKind;
function FuncGetpositiony(Index: Integer): TtkTokenKind;
function FuncGetpositionz(Index: Integer): TtkTokenKind;
function FuncGetrace(Index: Integer): TtkTokenKind;
function FuncGetreaction(Index: Integer): TtkTokenKind;
function FuncGetrealhourspassed(Index: Integer): TtkTokenKind;
function FuncGetref(Index: Integer): TtkTokenKind;
function FuncGetreference(Index: Integer): TtkTokenKind;
function FuncGetreftypealivecount(Index: Integer): TtkTokenKind;
function FuncGetreftypedeadcount(Index: Integer): TtkTokenKind;
function FuncGetregard(Index: Integer): TtkTokenKind;
function FuncGetrelationshiprank(Index: Integer): TtkTokenKind;
function FuncGetreputation(Index: Integer): TtkTokenKind;
function FuncGetscale(Index: Integer): TtkTokenKind;
function FuncGetsex(Index: Integer): TtkTokenKind;
function FuncGetsitstate(Index: Integer): TtkTokenKind;
function FuncGetsize(Index: Integer): TtkTokenKind;
function FuncGetskymode(Index: Integer): TtkTokenKind;
function FuncGetsleepstate(Index: Integer): TtkTokenKind;
function FuncGetstage(Index: Integer): TtkTokenKind;
function FuncGetstagedone(Index: Integer): TtkTokenKind;
function FuncGetstate(Index: Integer): TtkTokenKind;
function FuncGetstolenitemvaluecrime(Index: Integer): TtkTokenKind;
function FuncGetstolenitemvaluenocrime(Index: Integer): TtkTokenKind;
function FuncGettargetactor(Index: Integer): TtkTokenKind;
function FuncGettemplate(Index: Integer): TtkTokenKind;
function FuncGettriggerobjectcount(Index: Integer): TtkTokenKind;
function FuncGetvalue(Index: Integer): TtkTokenKind;
function FuncGetvalueint(Index: Integer): TtkTokenKind;
function FuncGetversionnumber(Index: Integer): TtkTokenKind;
function FuncGetvoicerecoverytime(Index: Integer): TtkTokenKind;
function FuncGetvoicetype(Index: Integer): TtkTokenKind;
function FuncGetwidth(Index: Integer): TtkTokenKind;
function FuncGetworldspace(Index: Integer): TtkTokenKind;
function FuncGlobal(Index: Integer): TtkTokenKind;
function FuncGlobalvariable(Index: Integer): TtkTokenKind;
function FuncGotostate(Index: Integer): TtkTokenKind;
function FuncGtlocklevel(Index: Integer): TtkTokenKind;
function FuncHasassociation(Index: Integer): TtkTokenKind;
function FuncHascommonparent(Index: Integer): TtkTokenKind;
function FuncHaseffectkeyword(Index: Integer): TtkTokenKind;
function FuncHasfamilyrelationship(Index: Integer): TtkTokenKind;
function FuncHasform(Index: Integer): TtkTokenKind;
function FuncHaskeyword(Index: Integer): TtkTokenKind;
function FuncHaslos(Index: Integer): TtkTokenKind;
function FuncHasmagiceffect(Index: Integer): TtkTokenKind;
function FuncHasmagiceffectwithkeyword(Index: Integer): TtkTokenKind;
function FuncHasnode(Index: Integer): TtkTokenKind;
function FuncHasparentrelationship(Index: Integer): TtkTokenKind;
function FuncHasperk(Index: Integer): TtkTokenKind;
function FuncHasreftype(Index: Integer): TtkTokenKind;
function FuncHasspell(Index: Integer): TtkTokenKind;
function FuncHazard(Index: Integer): TtkTokenKind;
function FuncHidden(Index: Integer): TtkTokenKind;
function FuncHidetitlesequencemenu(Index: Integer): TtkTokenKind;
function FuncIdle(Index: Integer): TtkTokenKind;
function FuncIf(Index: Integer): TtkTokenKind;
function FuncIgnorefriendlyhits(Index: Integer): TtkTokenKind;
function FuncImagespacemodifier(Index: Integer): TtkTokenKind;
function FuncImpactdataset(Index: Integer): TtkTokenKind;
function FuncIncrementskill(Index: Integer): TtkTokenKind;
function FuncIncrementskillby(Index: Integer): TtkTokenKind;
function FuncIncrementstat(Index: Integer): TtkTokenKind;
function FuncIngredient(Index: Integer): TtkTokenKind;
function FuncInt(Index: Integer): TtkTokenKind;
function FuncInterruptcast(Index: Integer): TtkTokenKind;
function FuncIs(Index: Integer): TtkTokenKind;
function FuncIs3dloaded(Index: Integer): TtkTokenKind;
function FuncIsactioncomplete(Index: Integer): TtkTokenKind;
function FuncIsactivatechild(Index: Integer): TtkTokenKind;
function FuncIsactivatecontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsactivationblocked(Index: Integer): TtkTokenKind;
function FuncIsactive(Index: Integer): TtkTokenKind;
function FuncIsalarmed(Index: Integer): TtkTokenKind;
function FuncIsalerted(Index: Integer): TtkTokenKind;
function FuncIsallowedtofly(Index: Integer): TtkTokenKind;
function FuncIsarrested(Index: Integer): TtkTokenKind;
function FuncIsarrestingtarget(Index: Integer): TtkTokenKind;
function FuncIsattached(Index: Integer): TtkTokenKind;
function FuncIsbleedingout(Index: Integer): TtkTokenKind;
function FuncIsbribed(Index: Integer): TtkTokenKind;
function FuncIscamswitchcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIschild(Index: Integer): TtkTokenKind;
function FuncIscleared(Index: Integer): TtkTokenKind;
function FuncIscommandedactor(Index: Integer): TtkTokenKind;
function FuncIscompleted(Index: Integer): TtkTokenKind;
function FuncIsdead(Index: Integer): TtkTokenKind;
function FuncIsdetectedby(Index: Integer): TtkTokenKind;
function FuncIsdisabled(Index: Integer): TtkTokenKind;
function FuncIsdoingfavor(Index: Integer): TtkTokenKind;
function FuncIsequipped(Index: Integer): TtkTokenKind;
function FuncIsessential(Index: Integer): TtkTokenKind;
function FuncIseuiped(Index: Integer): TtkTokenKind;
function FuncIsfactionincrimegroup(Index: Integer): TtkTokenKind;
function FuncIsfasttravelenabled(Index: Integer): TtkTokenKind;
function FuncIsfightingcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsflying(Index: Integer): TtkTokenKind;
function FuncIsfurnitureinuse(Index: Integer): TtkTokenKind;
function FuncIsfurnituremarkerinuse(Index: Integer): TtkTokenKind;
function FuncIsghost(Index: Integer): TtkTokenKind;
function FuncIsguard(Index: Integer): TtkTokenKind;
function FuncIshostile(Index: Integer): TtkTokenKind;
function FuncIshostiletoactor(Index: Integer): TtkTokenKind;
function FuncIsignoringfriendlyhits(Index: Integer): TtkTokenKind;
function FuncIsincombat(Index: Integer): TtkTokenKind;
function FuncIsindialoguewithplayer(Index: Integer): TtkTokenKind;
function FuncIsinfaction(Index: Integer): TtkTokenKind;
function FuncIsininterior(Index: Integer): TtkTokenKind;
function FuncIsinkillmove(Index: Integer): TtkTokenKind;
function FuncIsinmenumode(Index: Integer): TtkTokenKind;
function FuncIsinterior(Index: Integer): TtkTokenKind;
function FuncIsintimidated(Index: Integer): TtkTokenKind;
function FuncIsinvulnerable(Index: Integer): TtkTokenKind;
function FuncIsjournalcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsloaded(Index: Integer): TtkTokenKind;
function FuncIslockbroken(Index: Integer): TtkTokenKind;
function FuncIslocked(Index: Integer): TtkTokenKind;
function FuncIslookingcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsmapmarkervisible(Index: Integer): TtkTokenKind;
function FuncIsmenucontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsmovementcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIsobjectivecompleted(Index: Integer): TtkTokenKind;
function FuncIsobjectivedisplayed(Index: Integer): TtkTokenKind;
function FuncIsobjectivefailed(Index: Integer): TtkTokenKind;
function FuncIsplayerexpelled(Index: Integer): TtkTokenKind;
function FuncIsplayerslastriddenhorse(Index: Integer): TtkTokenKind;
function FuncIsplayerteammate(Index: Integer): TtkTokenKind;
function FuncIsplaying(Index: Integer): TtkTokenKind;
function FuncIsprotected(Index: Integer): TtkTokenKind;
function FuncIsrunning(Index: Integer): TtkTokenKind;
function FuncIssamelocation(Index: Integer): TtkTokenKind;
function FuncIssneaking(Index: Integer): TtkTokenKind;
function FuncIssneakingcontrolsenabled(Index: Integer): TtkTokenKind;
function FuncIssprinting(Index: Integer): TtkTokenKind;
function FuncIsstagedone(Index: Integer): TtkTokenKind;
function FuncIsstartin(Index: Integer): TtkTokenKind;
function FuncIsstarting(Index: Integer): TtkTokenKind;
function FuncIsstopped(Index: Integer): TtkTokenKind;
function FuncIsstopping(Index: Integer): TtkTokenKind;
function FuncIstrespassing(Index: Integer): TtkTokenKind;
function FuncIsunconscious(Index: Integer): TtkTokenKind;
function FuncIsunique(Index: Integer): TtkTokenKind;
function FuncIsweapondrawn(Index: Integer): TtkTokenKind;
function FuncIswordunlocked(Index: Integer): TtkTokenKind;
function FuncJump(Index: Integer): TtkTokenKind;
function FuncKeepoffsetfromactor(Index: Integer): TtkTokenKind;
function FuncKey(Index: Integer): TtkTokenKind;
function FuncKeyword(Index: Integer): TtkTokenKind;
function FuncKill(Index: Integer): TtkTokenKind;
function FuncKillsilent(Index: Integer): TtkTokenKind;
function FuncKnockareaeffect(Index: Integer): TtkTokenKind;
function FuncLearnalleffects(Index: Integer): TtkTokenKind;
function FuncLearneffect(Index: Integer): TtkTokenKind;
function FuncLearnnexteffect(Index: Integer): TtkTokenKind;
function FuncLength(Index: Integer): TtkTokenKind;
function FuncLeveledactor(Index: Integer): TtkTokenKind;
function FuncLeveleditem(Index: Integer): TtkTokenKind;
function FuncLeveledspell(Index: Integer): TtkTokenKind;
function FuncLight(Index: Integer): TtkTokenKind;
function FuncLocal(Index: Integer): TtkTokenKind;
function FuncLocation(Index: Integer): TtkTokenKind;
function FuncLocationalias(Index: Integer): TtkTokenKind;
function FuncLocationreftype(Index: Integer): TtkTokenKind;
function FuncLock(Index: Integer): TtkTokenKind;
function FuncMagiceffect(Index: Integer): TtkTokenKind;
function FuncMath(Index: Integer): TtkTokenKind;
function FuncMessage(Index: Integer): TtkTokenKind;
function FuncMessagebox(Index: Integer): TtkTokenKind;
function FuncMiscobject(Index: Integer): TtkTokenKind;
function FuncModactorvalue(Index: Integer): TtkTokenKind;
function FuncModav(Index: Integer): TtkTokenKind;
function FuncModcrimegold(Index: Integer): TtkTokenKind;
function FuncModfactionrank(Index: Integer): TtkTokenKind;
function FuncModfavorpoints(Index: Integer): TtkTokenKind;
function FuncModfavorpointswithglobal(Index: Integer): TtkTokenKind;
function FuncModreaction(Index: Integer): TtkTokenKind;
function FuncModregard(Index: Integer): TtkTokenKind;
function FuncMoveto(Index: Integer): TtkTokenKind;
function FuncMovetointeractionlocation(Index: Integer): TtkTokenKind;
function FuncMovetomyeditorlocation(Index: Integer): TtkTokenKind;
function FuncMovetonode(Index: Integer): TtkTokenKind;
function FuncMovetopackagelocation(Index: Integer): TtkTokenKind;
function FuncMovetowhenunloaded(Index: Integer): TtkTokenKind;
function FuncMusictype(Index: Integer): TtkTokenKind;
function FuncMute(Index: Integer): TtkTokenKind;
function FuncNew(Index: Integer): TtkTokenKind;
function FuncNone(Index: Integer): TtkTokenKind;
function FuncNot(Index: Integer): TtkTokenKind;
function FuncNotification(Index: Integer): TtkTokenKind;
function FuncObjectname(Index: Integer): TtkTokenKind;
function FuncObjectreference(Index: Integer): TtkTokenKind;
function FuncObjectscount(Index: Integer): TtkTokenKind;
function FuncOnactivate(Index: Integer): TtkTokenKind;
function FuncOnanimationevent(Index: Integer): TtkTokenKind;
function FuncOnattachedtocell(Index: Integer): TtkTokenKind;
function FuncOnbeginstate(Index: Integer): TtkTokenKind;
function FuncOncellattach(Index: Integer): TtkTokenKind;
function FuncOncelldetach(Index: Integer): TtkTokenKind;
function FuncOncellload(Index: Integer): TtkTokenKind;
function FuncOnclose(Index: Integer): TtkTokenKind;
function FuncOncombatstatechanged(Index: Integer): TtkTokenKind;
function FuncOncontainerchanged(Index: Integer): TtkTokenKind;
function FuncOndeath(Index: Integer): TtkTokenKind;
function FuncOndestructionstagechanged(Index: Integer): TtkTokenKind;
function FuncOndetachedfromcell(Index: Integer): TtkTokenKind;
function FuncOndying(Index: Integer): TtkTokenKind;
function FuncOneffectfinish(Index: Integer): TtkTokenKind;
function FuncOneffectstart(Index: Integer): TtkTokenKind;
function FuncOnendstate(Index: Integer): TtkTokenKind;
function FuncOnenterbleedout(Index: Integer): TtkTokenKind;
function FuncOnequipped(Index: Integer): TtkTokenKind;
function FuncOngainlos(Index: Integer): TtkTokenKind;
function FuncOngetup(Index: Integer): TtkTokenKind;
function FuncOngrab(Index: Integer): TtkTokenKind;
function FuncOnhit(Index: Integer): TtkTokenKind;
function FuncOninit(Index: Integer): TtkTokenKind;
function FuncOnitemadded(Index: Integer): TtkTokenKind;
function FuncOnitemremoved(Index: Integer): TtkTokenKind;
function FuncOnload(Index: Integer): TtkTokenKind;
function FuncOnlocationchange(Index: Integer): TtkTokenKind;
function FuncOnlockstatechanged(Index: Integer): TtkTokenKind;
function FuncOnlostlos(Index: Integer): TtkTokenKind;
function FuncOnmagiceffectapply(Index: Integer): TtkTokenKind;
function FuncOnobjectequipped(Index: Integer): TtkTokenKind;
function FuncOnobjectunequipped(Index: Integer): TtkTokenKind;
function FuncOnopen(Index: Integer): TtkTokenKind;
function FuncOnpackagechange(Index: Integer): TtkTokenKind;
function FuncOnpackageend(Index: Integer): TtkTokenKind;
function FuncOnpackagestart(Index: Integer): TtkTokenKind;
function FuncOnraceswitchcomplete(Index: Integer): TtkTokenKind;
function FuncOnread(Index: Integer): TtkTokenKind;
function FuncOnrelease(Index: Integer): TtkTokenKind;
function FuncOnreset(Index: Integer): TtkTokenKind;
function FuncOnsell(Index: Integer): TtkTokenKind;
function FuncOnsleepstart(Index: Integer): TtkTokenKind;
function FuncOnsleepstop(Index: Integer): TtkTokenKind;
function FuncOnstoryactivateactor(Index: Integer): TtkTokenKind;
function FuncOnstoryaddtoplayer(Index: Integer): TtkTokenKind;
function FuncOnstoryarrest(Index: Integer): TtkTokenKind;
function FuncOnstoryassaultactor(Index: Integer): TtkTokenKind;
function FuncOnstorybribenpc(Index: Integer): TtkTokenKind;
function FuncOnstorycastmagic(Index: Integer): TtkTokenKind;
function FuncOnstorychangelocation(Index: Integer): TtkTokenKind;
function FuncOnstorycraftitem(Index: Integer): TtkTokenKind;
function FuncOnstorycrimegold(Index: Integer): TtkTokenKind;
function FuncOnstorycure(Index: Integer): TtkTokenKind;
function FuncOnstorydialogue(Index: Integer): TtkTokenKind;
function FuncOnstorydiscoverdeadbody(Index: Integer): TtkTokenKind;
function FuncOnstoryescapejail(Index: Integer): TtkTokenKind;
function FuncOnstoryflatternpc(Index: Integer): TtkTokenKind;
function FuncOnstoryhello(Index: Integer): TtkTokenKind;
function FuncOnstoryincreaselevel(Index: Integer): TtkTokenKind;
function FuncOnstoryincreaseskill(Index: Integer): TtkTokenKind;
function FuncOnstoryinfection(Index: Integer): TtkTokenKind;
function FuncOnstoryintimidatenpc(Index: Integer): TtkTokenKind;
function FuncOnstoryjail(Index: Integer): TtkTokenKind;
function FuncOnstorykillactor(Index: Integer): TtkTokenKind;
function FuncOnstorynewvoicepower(Index: Integer): TtkTokenKind;
function FuncOnstorypayfine(Index: Integer): TtkTokenKind;
function FuncOnstorypicklock(Index: Integer): TtkTokenKind;
function FuncOnstoryplayergetsfavor(Index: Integer): TtkTokenKind;
function FuncOnstoryrelationshipchange(Index: Integer): TtkTokenKind;
function FuncOnstoryremovefromplayer(Index: Integer): TtkTokenKind;
function FuncOnstoryscript(Index: Integer): TtkTokenKind;
function FuncOnstoryservedtime(Index: Integer): TtkTokenKind;
function FuncOnstorytrespass(Index: Integer): TtkTokenKind;
function FuncOntrackedstatsevent(Index: Integer): TtkTokenKind;
function FuncOntranslationalmostcomplete(Index: Integer): TtkTokenKind;
function FuncOntranslationcomplete(Index: Integer): TtkTokenKind;
function FuncOntranslationfailed(Index: Integer): TtkTokenKind;
function FuncOntraphit(Index: Integer): TtkTokenKind;
function FuncOntraphitstart(Index: Integer): TtkTokenKind;
function FuncOntraphitstop(Index: Integer): TtkTokenKind;
function FuncOntrigger(Index: Integer): TtkTokenKind;
function FuncOntriggerenter(Index: Integer): TtkTokenKind;
function FuncOntriggerleave(Index: Integer): TtkTokenKind;
function FuncOnunequipped(Index: Integer): TtkTokenKind;
function FuncOnunload(Index: Integer): TtkTokenKind;
function FuncOnupdate(Index: Integer): TtkTokenKind;
function FuncOnupdategametime(Index: Integer): TtkTokenKind;
function FuncOnwardhit(Index: Integer): TtkTokenKind;
function FuncOpeninventory(Index: Integer): TtkTokenKind;
function FuncOpenuserlog(Index: Integer): TtkTokenKind;
function FuncOutfit(Index: Integer): TtkTokenKind;
function FuncOverbudget(Index: Integer): TtkTokenKind;
function FuncPackage(Index: Integer): TtkTokenKind;
function FuncPapyrusversion(Index: Integer): TtkTokenKind;
function FuncParent(Index: Integer): TtkTokenKind;
function FuncPathtoreference(Index: Integer): TtkTokenKind;
function FuncPause(Index: Integer): TtkTokenKind;
function FuncPerk(Index: Integer): TtkTokenKind;
function FuncPlaceactoratme(Index: Integer): TtkTokenKind;
function FuncPlaceatme(Index: Integer): TtkTokenKind;
function FuncPlay(Index: Integer): TtkTokenKind;
function FuncPlayandwait(Index: Integer): TtkTokenKind;
function FuncPlayanimation(Index: Integer): TtkTokenKind;
function FuncPlayanimationandwait(Index: Integer): TtkTokenKind;
function FuncPlayerknows(Index: Integer): TtkTokenKind;
function FuncPlayermovetoandwait(Index: Integer): TtkTokenKind;
function FuncPlayerpaycrimegold(Index: Integer): TtkTokenKind;
function FuncPlaygamebryoanimation(Index: Integer): TtkTokenKind;
function FuncPlayidle(Index: Integer): TtkTokenKind;
function FuncPlayidlewithtarget(Index: Integer): TtkTokenKind;
function FuncPlayimpacteffect(Index: Integer): TtkTokenKind;
function FuncPlaysubgraphanimation(Index: Integer): TtkTokenKind;
function FuncPlaysyncedanimationandwaitss(Index: Integer): TtkTokenKind;
function FuncPlaysyncedanimationss(Index: Integer): TtkTokenKind;
function FuncPlayterraineffect(Index: Integer): TtkTokenKind;
function FuncPopto(Index: Integer): TtkTokenKind;
function FuncPotion(Index: Integer): TtkTokenKind;
function FuncPow(Index: Integer): TtkTokenKind;
function FuncPrecachechargen(Index: Integer): TtkTokenKind;
function FuncPrecachechargenclear(Index: Integer): TtkTokenKind;
function FuncProcesstraphit(Index: Integer): TtkTokenKind;
function FuncProjectile(Index: Integer): TtkTokenKind;
function FuncProperties(Index: Integer): TtkTokenKind;
function FuncProperty(Index: Integer): TtkTokenKind;
function FuncPushactoraway(Index: Integer): TtkTokenKind;
function FuncQuerystat(Index: Integer): TtkTokenKind;
function FuncQuest(Index: Integer): TtkTokenKind;
function FuncQuitgame(Index: Integer): TtkTokenKind;
function FuncQuittomainmenu(Index: Integer): TtkTokenKind;
function FuncRace(Index: Integer): TtkTokenKind;
function FuncRadianstodegrees(Index: Integer): TtkTokenKind;
function FuncRandomfloat(Index: Integer): TtkTokenKind;
function FuncRandomint(Index: Integer): TtkTokenKind;
function FuncReferencealias(Index: Integer): TtkTokenKind;
function FuncRegisterforanimationevent(Index: Integer): TtkTokenKind;
function FuncRegisterforlos(Index: Integer): TtkTokenKind;
function FuncRegisterforremoteevent(Index: Integer): TtkTokenKind;
function FuncRegisterforsinglelosgain(Index: Integer): TtkTokenKind;
function FuncRegisterforsingleloslost(Index: Integer): TtkTokenKind;
function FuncRegisterforsingleupdate(Index: Integer): TtkTokenKind;
function FuncRegisterforsingleupdategametime(Index: Integer): TtkTokenKind;
function FuncRegisterforsleep(Index: Integer): TtkTokenKind;
function FuncRegisterfortrackedstatsevent(Index: Integer): TtkTokenKind;
function FuncRegisterfortutorialevent(Index: Integer): TtkTokenKind;
function FuncRegisterforupdate(Index: Integer): TtkTokenKind;
function FuncRegisterforupdategametime(Index: Integer): TtkTokenKind;
function FuncReleaseoverride(Index: Integer): TtkTokenKind;
function FuncRemotecast(Index: Integer): TtkTokenKind;
function FuncRemove(Index: Integer): TtkTokenKind;
function FuncRemoveaddedform(Index: Integer): TtkTokenKind;
function FuncRemoveallinventoryeventfilters(Index: Integer): TtkTokenKind;
function FuncRemoveallitems(Index: Integer): TtkTokenKind;
function FuncRemovecrossfade(Index: Integer): TtkTokenKind;
function FuncRemovedependentanimatedobjectreference(Index: Integer): TtkTokenKind;
function FuncRemovefromallfactions(Index: Integer): TtkTokenKind;
function FuncRemovefromfaction(Index: Integer): TtkTokenKind;
function FuncRemovehavokconstraints(Index: Integer): TtkTokenKind;
function FuncRemoveinventoryeventfilter(Index: Integer): TtkTokenKind;
function FuncRemoveitem(Index: Integer): TtkTokenKind;
function FuncRemovelast(Index: Integer): TtkTokenKind;
function FuncRemoveperk(Index: Integer): TtkTokenKind;
function FuncRemoveshout(Index: Integer): TtkTokenKind;
function FuncRemovespell(Index: Integer): TtkTokenKind;
function FuncRequestautosave(Index: Integer): TtkTokenKind;
function FuncRequestmodel(Index: Integer): TtkTokenKind;
function FuncRequestsave(Index: Integer): TtkTokenKind;
function FuncReset(Index: Integer): TtkTokenKind;
function FuncResethealthandlimbs(Index: Integer): TtkTokenKind;
function FuncResethelpmessage(Index: Integer): TtkTokenKind;
function FuncRestoreactorvalue(Index: Integer): TtkTokenKind;
function FuncRestoreav(Index: Integer): TtkTokenKind;
function FuncResurrect(Index: Integer): TtkTokenKind;
function FuncReturn(Index: Integer): TtkTokenKind;
function FuncRevert(Index: Integer): TtkTokenKind;
function FuncRfind(Index: Integer): TtkTokenKind;
function FuncRfindstruct(Index: Integer): TtkTokenKind;
function FuncSay(Index: Integer): TtkTokenKind;
function FuncScene(Index: Integer): TtkTokenKind;
function FuncScript(Index: Integer): TtkTokenKind;
function FuncScroll(Index: Integer): TtkTokenKind;
function FuncSelf(Index: Integer): TtkTokenKind;
function FuncSendanimationevent(Index: Integer): TtkTokenKind;
function FuncSendassaultalarm(Index: Integer): TtkTokenKind;
function FuncSendcustomevent(Index: Integer): TtkTokenKind;
function FuncSendplayertojail(Index: Integer): TtkTokenKind;
function FuncSendstealalarm(Index: Integer): TtkTokenKind;
function FuncSendstoryevent(Index: Integer): TtkTokenKind;
function FuncSendstoryeventandwait(Index: Integer): TtkTokenKind;
function FuncSendtrespassalarm(Index: Integer): TtkTokenKind;
function FuncSendwerewolftransformation(Index: Integer): TtkTokenKind;
function FuncServetime(Index: Integer): TtkTokenKind;
function FuncSet(Index: Integer): TtkTokenKind;
function FuncSetactive(Index: Integer): TtkTokenKind;
function FuncSetactorcause(Index: Integer): TtkTokenKind;
function FuncSetactorowner(Index: Integer): TtkTokenKind;
function FuncSetactorvalue(Index: Integer): TtkTokenKind;
function FuncSetalert(Index: Integer): TtkTokenKind;
function FuncSetallowflying(Index: Integer): TtkTokenKind;
function FuncSetally(Index: Integer): TtkTokenKind;
function FuncSetalpha(Index: Integer): TtkTokenKind;
function FuncSetangle(Index: Integer): TtkTokenKind;
function FuncSetanimationvariablebool(Index: Integer): TtkTokenKind;
function FuncSetanimationvariablefloat(Index: Integer): TtkTokenKind;
function FuncSetanimationvariableint(Index: Integer): TtkTokenKind;
function FuncSetattackactoronsight(Index: Integer): TtkTokenKind;
function FuncSetav(Index: Integer): TtkTokenKind;
function FuncSetbeastform(Index: Integer): TtkTokenKind;
function FuncSetbribed(Index: Integer): TtkTokenKind;
function FuncSetcameratarget(Index: Integer): TtkTokenKind;
function FuncSetcleared(Index: Integer): TtkTokenKind;
function FuncSetcrimefaction(Index: Integer): TtkTokenKind;
function FuncSetcrimegold(Index: Integer): TtkTokenKind;
function FuncSetcrimegoldviolent(Index: Integer): TtkTokenKind;
function FuncSetcriticalstage(Index: Integer): TtkTokenKind;
function FuncSetcurrentstageid(Index: Integer): TtkTokenKind;
function FuncSetdestroyed(Index: Integer): TtkTokenKind;
function FuncSetdoingfavor(Index: Integer): TtkTokenKind;
function FuncSetenemy(Index: Integer): TtkTokenKind;
function FuncSetessential(Index: Integer): TtkTokenKind;
function FuncSetfactionowner(Index: Integer): TtkTokenKind;
function FuncSetfactionrank(Index: Integer): TtkTokenKind;
function FuncSetfogplanes(Index: Integer): TtkTokenKind;
function FuncSetfogpower(Index: Integer): TtkTokenKind;
function FuncSetfootik(Index: Integer): TtkTokenKind;
function FuncSetforcedlandingmarker(Index: Integer): TtkTokenKind;
function FuncSetfrequency(Index: Integer): TtkTokenKind;
function FuncSetghost(Index: Integer): TtkTokenKind;
function FuncSetgodmode(Index: Integer): TtkTokenKind;
function FuncSetheadtracking(Index: Integer): TtkTokenKind;
function FuncSethudcartmode(Index: Integer): TtkTokenKind;
function FuncSetinchargen(Index: Integer): TtkTokenKind;
function FuncSetinibool(Index: Integer): TtkTokenKind;
function FuncSetinifloat(Index: Integer): TtkTokenKind;
function FuncSetiniint(Index: Integer): TtkTokenKind;
function FuncSetinistring(Index: Integer): TtkTokenKind;
function FuncSetinstancevolume(Index: Integer): TtkTokenKind;
function FuncSetintimidated(Index: Integer): TtkTokenKind;
function FuncSetinvulnerable(Index: Integer): TtkTokenKind;
function FuncSetkeyworddata(Index: Integer): TtkTokenKind;
function FuncSetlocklevel(Index: Integer): TtkTokenKind;
function FuncSetlookat(Index: Integer): TtkTokenKind;
function FuncSetmotiontype(Index: Integer): TtkTokenKind;
function FuncSetnobleedoutrecovery(Index: Integer): TtkTokenKind;
function FuncSetnofavorallowed(Index: Integer): TtkTokenKind;
function FuncSetnotshowonstealthmeter(Index: Integer): TtkTokenKind;
function FuncSetobjectivecompleted(Index: Integer): TtkTokenKind;
function FuncSetobjectivedisplayed(Index: Integer): TtkTokenKind;
function FuncSetobjectivefailed(Index: Integer): TtkTokenKind;
function FuncSetopen(Index: Integer): TtkTokenKind;
function FuncSetoutfit(Index: Integer): TtkTokenKind;
function FuncSetplayeraidriven(Index: Integer): TtkTokenKind;
function FuncSetplayercontrols(Index: Integer): TtkTokenKind;
function FuncSetplayerenemy(Index: Integer): TtkTokenKind;
function FuncSetplayerexpelled(Index: Integer): TtkTokenKind;
function FuncSetplayerreportcrime(Index: Integer): TtkTokenKind;
function FuncSetplayerresistingarrest(Index: Integer): TtkTokenKind;
function FuncSetplayerteammate(Index: Integer): TtkTokenKind;
function FuncSetposition(Index: Integer): TtkTokenKind;
function FuncSetprotected(Index: Integer): TtkTokenKind;
function FuncSetpublic(Index: Integer): TtkTokenKind;
function FuncSetrace(Index: Integer): TtkTokenKind;
function FuncSetraction(Index: Integer): TtkTokenKind;
function FuncSetreaction(Index: Integer): TtkTokenKind;
function FuncSetrelationshiprank(Index: Integer): TtkTokenKind;
function FuncSetrestrained(Index: Integer): TtkTokenKind;
function FuncSetscale(Index: Integer): TtkTokenKind;
function FuncSetsittingrotation(Index: Integer): TtkTokenKind;
function FuncSetstage(Index: Integer): TtkTokenKind;
function FuncSetunconscious(Index: Integer): TtkTokenKind;
function FuncSetvalue(Index: Integer): TtkTokenKind;
function FuncSetvalueint(Index: Integer): TtkTokenKind;
function FuncSetvehicle(Index: Integer): TtkTokenKind;
function FuncSetvoicerecoverytime(Index: Integer): TtkTokenKind;
function FuncSetvolume(Index: Integer): TtkTokenKind;
function FuncShakecamera(Index: Integer): TtkTokenKind;
function FuncShakecontroller(Index: Integer): TtkTokenKind;
function FuncShout(Index: Integer): TtkTokenKind;
function FuncShow(Index: Integer): TtkTokenKind;
function FuncShowashelpmessage(Index: Integer): TtkTokenKind;
function FuncShowbartermenu(Index: Integer): TtkTokenKind;
function FuncShowfirstpersongeometry(Index: Integer): TtkTokenKind;
function FuncShowgiftmenu(Index: Integer): TtkTokenKind;
function FuncShowracemenu(Index: Integer): TtkTokenKind;
function FuncShowrefposition(Index: Integer): TtkTokenKind;
function FuncShowtitlesequencemenu(Index: Integer): TtkTokenKind;
function FuncShowtrainingmenu(Index: Integer): TtkTokenKind;
function FuncSin(Index: Integer): TtkTokenKind;
function FuncSoulgem(Index: Integer): TtkTokenKind;
function FuncSound(Index: Integer): TtkTokenKind;
function FuncSoundcategory(Index: Integer): TtkTokenKind;
function FuncSpell(Index: Integer): TtkTokenKind;
function FuncSplinetranslateto(Index: Integer): TtkTokenKind;
function FuncSplinetranslatetorefnode(Index: Integer): TtkTokenKind;
function FuncSqrt(Index: Integer): TtkTokenKind;
function FuncStart(Index: Integer): TtkTokenKind;
function FuncStartcannibal(Index: Integer): TtkTokenKind;
function FuncStartcombat(Index: Integer): TtkTokenKind;
function FuncStartframeratecapture(Index: Integer): TtkTokenKind;
function FuncStartobjectprofiling(Index: Integer): TtkTokenKind;
function FuncStartscriptprofiling(Index: Integer): TtkTokenKind;
function FuncStartstackprofiling(Index: Integer): TtkTokenKind;
function FuncStarttitlesequence(Index: Integer): TtkTokenKind;
function FuncStartvampirefeed(Index: Integer): TtkTokenKind;
function FuncState(Index: Integer): TtkTokenKind;
function FuncStatic(Index: Integer): TtkTokenKind;
function FuncStop(Index: Integer): TtkTokenKind;
function FuncStopcombat(Index: Integer): TtkTokenKind;
function FuncStopcombatalarm(Index: Integer): TtkTokenKind;
function FuncStopinstance(Index: Integer): TtkTokenKind;
function FuncStopobjectprofiling(Index: Integer): TtkTokenKind;
function FuncStopscriptprofiling(Index: Integer): TtkTokenKind;
function FuncStopstackprofiling(Index: Integer): TtkTokenKind;
function FuncStoptranslation(Index: Integer): TtkTokenKind;
function FuncString(Index: Integer): TtkTokenKind;
function FuncStringtablecount(Index: Integer): TtkTokenKind;
function FuncTakescreenshot(Index: Integer): TtkTokenKind;
function FuncTalkingactivator(Index: Integer): TtkTokenKind;
function FuncTan(Index: Integer): TtkTokenKind;
function FuncTeachword(Index: Integer): TtkTokenKind;
function FuncTethertohorse(Index: Integer): TtkTokenKind;
function FuncThen(Index: Integer): TtkTokenKind;
function FuncTimedata(Index: Integer): TtkTokenKind;
function FuncToggleai(Index: Integer): TtkTokenKind;
function FuncTogglecollisions(Index: Integer): TtkTokenKind;
function FuncTogglemenus(Index: Integer): TtkTokenKind;
function FuncTopic(Index: Integer): TtkTokenKind;
function FuncTopicinfo(Index: Integer): TtkTokenKind;
function FuncTrace(Index: Integer): TtkTokenKind;
function FuncTraceconditional(Index: Integer): TtkTokenKind;
function FuncTracestack(Index: Integer): TtkTokenKind;
function FuncTraceuser(Index: Integer): TtkTokenKind;
function FuncTranslateto(Index: Integer): TtkTokenKind;
function FuncTrapsoul(Index: Integer): TtkTokenKind;
function FuncTriggerscreenblood(Index: Integer): TtkTokenKind;
function FuncTrue(Index: Integer): TtkTokenKind;
function FuncTrytoaddtofaction(Index: Integer): TtkTokenKind;
function FuncTrytodisable(Index: Integer): TtkTokenKind;
function FuncTrytoenable(Index: Integer): TtkTokenKind;
function FuncTrytoevaluatepackage(Index: Integer): TtkTokenKind;
function FuncTrytokill(Index: Integer): TtkTokenKind;
function FuncTrytomoveto(Index: Integer): TtkTokenKind;
function FuncTrytoremovefromfaction(Index: Integer): TtkTokenKind;
function FuncTrytoreset(Index: Integer): TtkTokenKind;
function FuncTrytostopcombat(Index: Integer): TtkTokenKind;
function FuncUnequipall(Index: Integer): TtkTokenKind;
function FuncUnequipitem(Index: Integer): TtkTokenKind;
function FuncUnequipshout(Index: Integer): TtkTokenKind;
function FuncUnequipspell(Index: Integer): TtkTokenKind;
function FuncUnlockowneddoorsincell(Index: Integer): TtkTokenKind;
function FuncUnlockword(Index: Integer): TtkTokenKind;
function FuncUnmute(Index: Integer): TtkTokenKind;
function FuncUnpause(Index: Integer): TtkTokenKind;
function FuncUnregisterforanimationevent(Index: Integer): TtkTokenKind;
function FuncUnregisterforlos(Index: Integer): TtkTokenKind;
function FuncUnregisterforremoteevent(Index: Integer): TtkTokenKind;
function FuncUnregisterforsleep(Index: Integer): TtkTokenKind;
function FuncUnregisterfortrackedstatsevent(Index: Integer): TtkTokenKind;
function FuncUnregisterfortutorialevent(Index: Integer): TtkTokenKind;
function FuncUnregisterforupdate(Index: Integer): TtkTokenKind;
function FuncUnregisterforupdategametime(Index: Integer): TtkTokenKind;
function FuncUpdatecurrentinstanceglobal(Index: Integer): TtkTokenKind;
function FuncUser(Index: Integer): TtkTokenKind;
function FuncUserflagscount(Index: Integer): TtkTokenKind;
function FuncUsinggamepad(Index: Integer): TtkTokenKind;
function FuncUtility(Index: Integer): TtkTokenKind;
function FuncVars(Index: Integer): TtkTokenKind;
function FuncVisualeffect(Index: Integer): TtkTokenKind;
function FuncVoicetype(Index: Integer): TtkTokenKind;
function FuncWait(Index: Integer): TtkTokenKind;
function FuncWaitforanimationevent(Index: Integer): TtkTokenKind;
function FuncWaitgametime(Index: Integer): TtkTokenKind;
function FuncWaitmenumode(Index: Integer): TtkTokenKind;
function FuncWeapon(Index: Integer): TtkTokenKind;
function FuncWeather(Index: Integer): TtkTokenKind;
function FuncWillintimidatesucceed(Index: Integer): TtkTokenKind;
function FuncWordofpower(Index: Integer): TtkTokenKind;
function FuncWorldspace(Index: Integer): TtkTokenKind;
function FuncWornhaskeyword(Index: Integer): TtkTokenKind;
procedure IdentProc;
procedure UnknownProc;
function AltFunc(Index: Integer): TtkTokenKind;
procedure InitIdent;
function IdentKind(MayBe: PWideChar): TtkTokenKind;
procedure NullProc;
procedure SpaceProc;
procedure CRProc;
procedure LFProc;
procedure Bracket2CommentOpenProc;
procedure Bracket2CommentProc;
procedure BracketCommentOpenProc;
procedure BracketCommentProc;
procedure StringOpenProc;
procedure StringProc;
protected
function GetSampleSource: UnicodeString; override;
function IsFilterStored: Boolean; override;
public
constructor Create(AOwner: TComponent); override;
class function GetFriendlyLanguageName: UnicodeString; override;
class function GetLanguageName: string; override;
function GetRange: Pointer; override;
procedure ResetRange; override;
procedure SetRange(Value: Pointer); override;
function GetDefaultAttribute(Index: Integer): TSynHighlighterAttributes; override;
function GetEol: Boolean; override;
function GetKeyWords(TokenKind: Integer): UnicodeString; override;
function GetTokenID: TtkTokenKind;
function GetTokenAttribute: TSynHighlighterAttributes; override;
function GetTokenKind: Integer; override;
function IsIdentChar(AChar: WideChar): Boolean; override;
procedure Next; override;
published
property Comment2Attri: TSynHighlighterAttributes read fComment2Attri write fComment2Attri;
property Comment3Attri: TSynHighlighterAttributes read fComment3Attri write fComment3Attri;
property IdentifierAttri: TSynHighlighterAttributes read fIdentifierAttri write fIdentifierAttri;
property KeyAttri: TSynHighlighterAttributes read fKeyAttri write fKeyAttri;
property PapyrusAttri: TSynHighlighterAttributes read fPapyrusAttri write fPapyrusAttri;
property SpaceAttri: TSynHighlighterAttributes read fSpaceAttri write fSpaceAttri;
property StringAttri: TSynHighlighterAttributes read fStringAttri write fStringAttri;
property word0Attri: TSynHighlighterAttributes read fword0Attri write fword0Attri;
property word2Attri: TSynHighlighterAttributes read fword2Attri write fword2Attri;
property word3Attri: TSynHighlighterAttributes read fword3Attri write fword3Attri;
end;
implementation
uses
{$IFDEF SYN_CLX}
QSynEditStrConst;
{$ELSE}
SynEditStrConst;
{$ENDIF}
resourcestring
SYNS_FilterPex = '*.pex';
SYNS_LangPex = 'Pex';
SYNS_FriendlyLangPex = 'Pex';
SYNS_AttrComment2 = 'Comment2';
SYNS_FriendlyAttrComment2 = 'Comment2';
SYNS_AttrComment3 = 'Comment3';
SYNS_FriendlyAttrComment3 = 'Comment3';
SYNS_AttrPapyrus = 'Papyrus';
SYNS_FriendlyAttrPapyrus = 'Papyrus';
SYNS_Attrword0 = 'word0';
SYNS_FriendlyAttrword0 = 'word0';
SYNS_Attrword2 = 'word2';
SYNS_FriendlyAttrword2 = 'word2';
SYNS_Attrword3 = 'word3';
SYNS_FriendlyAttrword3 = 'word3';
const