-
Notifications
You must be signed in to change notification settings - Fork 1
/
resedit_client.lua
4243 lines (3287 loc) · 124 KB
/
resedit_client.lua
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
-- Optimizations
local string = string;
local math = math;
local table = table;
local strsub = string.sub;
local strbyte = string.byte;
local strchar = string.char;
local strlen = string.len;
local strfind = string.find;
local strrep = string.rep;
local ipairs = ipairs;
local pairs = pairs;
local tostring = tostring;
addEvent("onClientScriptLockAcquire", true);
addEvent("onClientScriptLockFree", true);
addEvent("onResourceDataUpdate", true);
local resourceData={};
local resourceList={};
-- Globals
access = false;
transactionPacketBytes=0;
deleteOnQuit=false;
createClientRepository=false;
-- Resource GUI
mainGUI=false;
local pNoteEditor=false;
local pResourceInfo=false;
local pFileList=false;
local pTextbox=false;
local pSaveButton=false;
local pCloseButton=false;
local pTabHolder=false;
local pResourceName=false;
local pResourceType=false;
local pResourceDescription=false;
local pResourceAuthor=false;
local pFilename=false;
local pScriptType=false;
local pFunctionSearch=false;
local pFunctionList=false;
local pMenu=false;
local pRightClickMenu=false;
local pFunctionTabPanel=false;
local preservedStatus=false;
-- General
local charScale, charFont;
local lastKeyPress=false;
local lastKeyTime=0;
local editorMode=0;
local enableHighlighting;
local showLineNumbers;
local notifyOnChange;
local useFileManager;
local useResourceSelect;
local showFunctionsFullscreen;
local enableHints;
local colorFunctions;
local showHintDescription;
local functionlistArguments;
local automaticIndentation;
local soundPreview=false;
local library={};
local functionlist={};
local sortedFunctionlist={};
local internalDefinitions;
local importedDictionary;
local currentResource = false;
local sessions = {};
local currentSession = false;
local requestControlPanel=false;
local serverData;
local version=getVersion();
-- Sub GUI
local pDenyEditorAccessMsg=false;
local pClientConfigGUI=false;
local pServerConfigGUI=false;
local pFileManager=false;
local pSelectGUI=false;
local pScriptDebug=false;
local pUpdateGUI=false;
local pConfigEditor=false;
local pResourceCreation=false;
local pControlPanel=false;
local pPasteGUI=false;
local fileColors = {
png = { 110, 160, 255 },
dff = { 220, 220, 75 },
txd = { 75, 220, 200 },
mp3 = { 75, 220, 140 },
wav = { 75, 220, 140 },
ogg = { 75, 220, 140 },
riff = { 75, 220, 140 },
mod = { 75, 220, 140 },
xm = { 75, 220, 140 },
it = { 75, 220, 140 },
s3m = { 75, 220, 140 }
};
local scriptColors = {
server = { 75, 255, 75 },
client = { 255, 100, 75 },
shared = { 200, 75, 220 }
};
local rowSelect=false;
local curSelectRadius=200;
if not (getClipboard) then
local _setClipboard = setClipboard;
local buffer = "";
function setClipboard(text)
buffer = text;
_setClipboard(text);
return true;
end
function getClipboard()
return buffer;
end
end
function showMessageBox(msg, title, setting)
local msgBox = themeCreateMsgBox(msg, setting);
if (title) then
msgBox.setText(title);
end
return msgBox;
end
local function isEditorClientReady()
if (access) then
return true;
end
return false;
end
_G.isEditorClientReady = isEditorClientReady;
function doWeHaveAccessTo(group, itemId)
if (access.isAdmin) then
return true;
end
if (group == "editor") then
return access.account.editor[itemId];
elseif (group == "controlPanel") then
return access.account.controlPanel[itemId];
elseif (group == "resources") then
return access.resources[itemId];
end
return false;
end
function initLibrary()
library = {};
end
function loadDictionary(node)
local j,k;
local dictionary = {};
for j,k in ipairs(node.children) do
local class = {
functions = {},
vars = {}
};
local functions = xmlFindSubNodeEx(k, "functions");
if (functions) then
local m,n;
for m,n in ipairs(functions.children) do
local details = {
name = n.name,
returnType = n.attr.returnType or "void",
arguments = n.attr.arguments or "",
textColor = n.attr.textColor,
backColor = n.attr.backColor,
type = k.name
};
if (n.attr.description) then
details.description = parseStringInternal(n.attr.description)
end
table.insert(class.functions, details);
end
end
dictionary[k.name] = class;
end
table.insert(library, dictionary);
return dictionary;
end
function importDefinitions(type)
local m,n;
for m,n in ipairs(library) do
local class = n[type];
if (class) then
local x,y;
for x,y in ipairs(class.functions) do
local functions = functionlist[y.name];
if not (functions) then
functions = {};
functionlist[y.name] = functions;
end
table.insert(functions, y);
table.insert(sortedFunctionlist, y);
end
end
end
end
local function getLexicalDefinition(token)
if (token == "client") then
return "Player who sent last event";
elseif (token == "source") then
return "Triggered event's source element";
end
local entry = functionlist[token];
local text = "";
local m,n;
if not (entry) then return false; end;
local m,n;
for m,n in ipairs(entry) do
text = text .. n.returnType .. " " .. token .. " (" .. n.arguments .. ")";
if (showHintDescription) and (n.description) then
text = text .. "\n\n" .. n.description;
end
if not (m == #entry) then
text = text .. "\n\n";
end
end
return text;
end
function updateFunctionList()
if not (mainGUI) then return false; end;
pFunctionList.clearRows();
local find = pFunctionSearch.getText();
local w = 1;
for m,n in ipairs(sortedFunctionlist) do
if (string.find(n.name, find, 1, true)) then
local row = pFunctionList.addRow();
local display = n.name;
if (functionlistArguments) then
display = display .. " (" .. n.arguments .. ")";
end
pFunctionList.setItemText(1, row, display);
pFunctionList.getItemData(1, row).funcName = n.name;
local color = scriptColors[n.type];
if (color) then
local r, g, b = unpack(color);
if ((w % 2) == 0) then
pFunctionList.setRowBackgroundColor(row, r / 2, g / 2, b / 2);
else
pFunctionList.setRowBackgroundColor(row, r / 3, g / 3, b / 3);
end
end
w = w + 1;
end
end
pFunctionList.setColumnWidth(1, math.max(150, pFunctionList.getMinimumColumnWidth(1)));
return true;
end
function clearDefinitions()
functionlist = {};
sortedFunctionlist = {};
pFunctionList.clearRows();
return true;
end
function unloadDictionary(dict)
local m,n;
for m,n in ipairs(library) do
if (n == dict) then
table.remove(library, m);
return true;
end
end
return false;
end
-- Load the configuration files
local pConfigFile = xmlLoadFile("config.xml");
if not (pConfigFile) then
local xml = xmlLoadFile("default/config.xml");
pConfigFile = xmlCopyFile(xml, "config.xml");
xmlUnloadFile(xml);
end
local config;
local editor;
local themes;
local syntax;
local specialsyntax;
local string1;
local string2;
local string3;
local comment1;
local comment2;
local dict;
local clientDict;
local serverDict;
local sharedDict;
local function loadConfig()
config = xmlGetNode(pConfigFile);
editor = findCreateNode(config, "editor");
themes = findCreateNode(config, "themes");
transfer = findCreateNode(config, "transfer"); -- global node
objmgmt = findCreateNode(config, "objmgmt"); -- global node
syntax = findCreateNode(config, "syntax");
specialsyntax = findCreateNode(config, "specialsyntax");
keybinds = findCreateNode(config, "keybinds"); -- global node
string1 = findCreateNode(specialsyntax, "string1");
string2 = findCreateNode(specialsyntax, "string2");
string3 = findCreateNode(specialsyntax, "string3");
comment1 = findCreateNode(specialsyntax, "comment1");
comment2 = findCreateNode(specialsyntax, "comment2");
dict = findCreateNode(config, "dict");
clientDict = findCreateNode(dict, "client");
serverDict = findCreateNode(dict, "server");
sharedDict = findCreateNode(dict, "shared");
-- Share editor node globally
_G.editorNode = editor;
local function isHexDigit(char)
if (char > 96) and (char < 103) or
(char > 47) and (char < 58) or
(char > 64) and (char < 91) then
return true;
end
return false;
end
-- Set up the nodes
local m,n;
function objmgmt.cbAddChild(child)
showMessageBox("Cannot add children to objmgmt node", "Child Creation Failure");
return false;
end
function objmgmt.cbSetAttribute(key, value)
if (key == "enable") then
if (value == "true") or (value == "false") then
objmgmt.attr[key] = value;
return true;
end
showMessageBox("Can be either 'true' or 'false'", "Value Error");
return false;
end
return true;
end
function initSyntaxEntry(node)
function node.cbAddChild(child)
return false;
end
function node.cbSetAttribute(key, value)
if (key == "textColor") or
(key == "backColor") then
local m;
local len = strlen(value);
if not (len == 6) then
showMessageBox("Color has to be 6 hex digits long.", "Color Error");
return false;
end
for m=1,6 do
if not (isHexDigit(strbyte(value, m))) then
showMessageBox("Invalid '" .. key .. "'", "Color Error");
return false;
end
end
-- We set it here to immediatly have effect
node.attr[key] = value;
local n;
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
return true;
end
return true;
end
function node.cbUnsetAttribute(key)
if (key == "textColor") or
(key == "backColor") then
node.attr[key] = nil;
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
end
return true;
end
return true;
end
function initSpecialSyntaxEntry(node)
function node.cbAddChild(child)
return false;
end
function node.cbSetAttribute(key, value)
if (key == "textColor") or
(key == "backColor") then
local m,n;
local len = strlen(value);
if not (len == 6) then
showMessageBox("Color has to be 6 hex digits long.", "Color Error");
return false;
end
for m=1,6 do
if not (isHexDigit(strbyte(value, m))) then
showMessageBox("Invalid '" .. key .. "'", "Color Error");
return false;
end
end
-- We set it here to immediatly have effect
node.attr[key] = value;
-- Update the GUI
if (pClientConfigGUI) then
pClientConfigGUI.updateSyntax(node);
end
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
return true;
end
return true;
end
function node.cbUnsetAttribute(key)
if (key == "textColor") or (key == "backColor") then
node.attr[key] = nil;
-- Update the GUI
if (pClientConfigGUI) then
pClientConfigGUI.updateSyntax(node);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
end
return true;
end
return true;
end
for m,n in ipairs(syntax.children) do
initSyntaxEntry(n);
end
for m,n in ipairs(specialsyntax.children) do
initSpecialSyntaxEntry(n);
end
function config.cbRemoveChild(id)
local node = config.children[id];
if (node.name == "editor")
or (node.name == "transfer")
or (node.name == "syntax")
or (node.name == "specialsyntax")
or (node.name == "dict") then
showMessageBox("You cannot remove '" .. node.name .. "'");
return false;
end
return true;
end
function syntax.cbAddChild(node)
local n;
local len = strlen(node.name);
-- Check if it is a correct name
for n=1,len do
if not (isName(strbyte(node.name, n))) then
showMessageBox("Invalid name given to syntax highlight.", "Invalid Name");
return false;
end
end
initSyntaxEntry(node);
return true;
end
function syntax.cbRemoveChild(id)
local m,n;
-- Remove for immediate effect
syntax.children[id] = nil;
-- Now color parse
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
return true;
end
function syntax.cbSetAttribute(key, value)
if (key == "enable") then
if (value == "true") then
if (pClientConfigGUI) then
pClientConfigGUI.enableSyntax.setSelected(true);
end
enableHighlighting = true;
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().setColorEnabled(true);
end
return true;
elseif (value == "false") then
if (pClientConfigGUI) then
pClientConfigGUI.enableSyntax.setSelected(false);
end
enableHighlighting = false;
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().setColorEnabled(false);
end
return true;
else
showMessageBox("Either 'true' or 'false'.", "Syntax Error");
return false;
end
end
return true;
end
function syntax.cbUnsetAttribute(key)
if (key == "enable") then
showMessageBox("You cannot remove '" .. key .. "'.", "Attribute Error");
return false;
end
return true;
end
function specialsyntax.cbAddChild(node)
showMessageBox("You cannot add children to 'specialsyntax'", "Child Creation Failed");
return false;
end
function specialsyntax.cbRemoveChild(id)
showMessageBox("You cannot remove children from 'specialsyntax'", "Child Removal Failed");
return false;
end
function editor.cbAddChild(node)
showMessageBox("You cannot add children to the editor.", "Child Creation Failed");
return false;
end
function editor.cbSetAttribute(key, value)
if (key == "font") then
if not (value == "default") and
not (value == "default-bold") and
not (value == "clear") and
not (value == "arial") and
not (value == "sans") and
not (value == "pricedown") and
not (value == "bankgothic") and
not (value == "diploma") and
not (value == "beckett") then
showMessageBox("Unknown font");
return false;
end
charFont = value;
if (pClientConfigGUI) then
pClientConfigGUI.font.selectItem(charFont);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().setFont(charScale, charFont);
end
elseif (key == "fontSize") then
local size = tonumber(value);
if not (size) then
showMessageBox("Invalid fontSize");
return false;
end
charScale = size;
if (pClientConfigGUI) then
pClientConfigGUI.fontSize.setText(value);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().setFont(charScale, charFont);
end
elseif (key == "notifyOnChange") then
if (value == "true") then
notifyOnChange = true;
elseif (value == "false") then
notifyOnChange = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.notifyOnChange.setChecked(notifyOnChange);
end
elseif (key == "showLineNumbers") then
if (value == "true") then
showLineNumbers = true;
elseif (value == "false") then
showLineNumbers = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.showLineBar.setChecked(showLineNumbers);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().showLineNumbers(showLineNumbers);
end
elseif (key == "useFileManager") then
if (value == "true") then
useFileManager = true;
if (mainGUI.mode == "file") then
mainGUI.nextFileMode();
showFileManager(true);
end
elseif (value == "false") then
useFileManager = false;
if (pFileManager) and (guiGetVisible(pFileManager.window)) then
showFileManager(false);
mainGUI.nextFileMode();
end
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.useFileManager.setChecked(useFileManager);
end
elseif (key == "useResourceSelect") then
if (value == "true") then
useResourceSelect = true;
elseif (value == "false") then
useResourceSelect = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
elseif (key == "automaticIndentation") then
if (value == "true") then
automaticIndentation = true;
elseif (value == "false") then
automaticIndentation = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.automaticIndentation.setChecked(automaticIndentation);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().setAutoIndentEnabled(automaticIndentation);
end
elseif (key == "showFunctionsFullscreen") then
if (value == "true") then
showFunctionsFullscreen = true;
elseif (value == "false") then
showFunctionsFullscreen = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
setEditorMode(editorMode);
if (pClientConfigGUI) then
pClientConfigGUI.showFunctionsFullscreen.setChecked(showFunctionsFullscreen);
end
end
return true;
end
function editor.cbUnsetAttribute(key)
if (key == "fontSize") or
(key == "font") or
(key == "notifyOnChange") or
(key == "showLineNumbers") or
(key == "useFileManager") or
(key == "showFunctionsFullscreen") or
(key == "automaticIndentation") then
showMessageBox("You cannot remove '" .. key .. "'", "Attribute Error");
return false;
end
return true;
end
local function initKeyBindNode(node)
function node.cbAddChild(child)
return false;
end
function node.cbSetAttribute(key, value)
if (key == "key") then
-- Check if the value is a valid key name.
if not (inputIsValidKey(value)) then
showMessageBox(value .. " is not a valid key name.", "Value Error");
return false;
end
-- OK.
node.attr[key] = value;
return true;
end
return true;
end
return true;
end
function keybinds.cbAddChild(node)
initKeyBindNode(node);
return true;
end
for m,n in ipairs(keybinds.children) do
initKeyBindNode(n);
end
-- Load the internal definitions
internalDefinitions = loadDictionary(dict);
local function initDictionaryNode(node)
function node.cbAddChild()
return false;
end
function node.cbSetAttribute(key, value)
if (key == "description") then
return true;
elseif (key == "returnType") then
return true;
elseif (key == "arguments") then
return true;
elseif (key == "textColor")
or (key == "backColor") then
local m,n;
local len = strlen(value);
if not (len == 6) then
showMessageBox("Color has to be 6 hex digits long.", "Color Error");
return false;
end
for m=1,6 do
if not (isHexDigit(strbyte(value, m))) then
showMessageBox("Invalid '" .. key .. "'", "Color Error");
return false;
end
end
-- We set it here to immediatly have effect
node.attr[key] = value;
-- Update the GUI
if (pClientConfigGUI) then
pClientConfigGUI.updateSyntax(k);
end
parseColor();
return true;
else
showMessageBox("Invalid dictionary attribute '" .. key .. "'", "Invalid Attribute");
return false;
end
end
function node.cbUnsetAttribute(key)
if (key == "textColor") or
(key == "backColor") then
node.attr[key] = nil;
parseColor();
elseif (key == "returnType") or
(key == "arguments") then
showMessageBox("Cannot remove attribute '" .. key .. "'");
return false;
end
return true;
end
end
function initDictionary(node)
local j,k;
local functions = xmlFindSubNodeEx(node, "functions");
if not (functions) then return false; end;
function functions.cbAddChild(node)
if (string.find(node.name, "[^%a%d_.:]")) then
showMessageBox("Invalid dictionary entry name", "Child Creation Failed");
return false
end
node.attr.returnType = "void";
node.attr.arguments = "";
local msgBox = showMessageBox("Give in the description.", "Set description", "input");
addEventHandler("onClientMessageBoxClose", msgBox, function(input)
if not (input) then return false; end;
xmlNotify(node, "set_attribute", "description", input);
node.attr.description = input;
end
);
initDictionaryNode(node);
return true;
end
for j,k in ipairs(functions.children) do
initDictionaryNode(k);
end
end
initDictionary(clientDict);
initDictionary(serverDict);
initDictionary(sharedDict);
function dict.cbAddChild(node)
if not (node.name == "client") and not (node.name == "server") and not (node.name == "shared") then
showMessageBox("Invalid dictionary node '" .. node.name .. "'", "Child Creation Failed");
return false;
end
return true;
end
function dict.cbSetAttribute(key, value)
if (key == "enableHints") then
if (value == "true") then
enableHints = true;
elseif (value == "false") then
enableHints = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.enableHints.setChecked(enableHints);
end
elseif (key == "colorFunctions") then
if (value == "true") then
colorFunctions = true;
elseif (value == "false") then
colorFunctions = false;
else
showMessageBox("Either 'true' or 'false'", "Boolean Required");
return false;
end
if (pClientConfigGUI) then
pClientConfigGUI.colorFunctions.setChecked(colorFunctions);
end
local m,n;
for m,n in ipairs(sessions) do
n.getEditor().parseColor();
end
elseif (key == "showHintDescription") then
if (value == "true") then
showHintDescription = true;
elseif (value == "false") then
showHintDescription = false;
else