-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIconEditor.sb
1854 lines (1765 loc) · 46.3 KB
/
IconEditor.sb
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
' Plain PPM Editor
' Version 0.9.2b
' Copyright © 2015-2017 Nonki Takahashi. The MIT License.
' Last update 2017-09-24
' Program ID RFT686-9
' Repository https://github.com/nonkit/IconEditor
' TODO:
' [ ] #10 Support other image format in Open
' [ ] #9 Workaround for Silverlight
' [ ] #8 Add unit test feature
' set graphics window title
title = "Icon Editor 0.9.2b"
fname = "Untitled"
GraphicsWindow.Title = fname + " - " + title
' define variables as constants or functions
debug = "False"
If debug Then
TextWindow.Title = "Debug - " + title
Timer.Interval = 500
Timer.Tick = Mouse_OnTick
EndIf
CR = Text.GetCharacter(13)
LF = Text.GetCharacter(10)
TAB = Text.GetCharacter(9)
DIGIT = "0123456789"
Not = "False=True;True=False;"
' width/height [%] of each character in Trebuchet MS font
ratio = "32=30;48=58;49=58;50=58;51=58;52=58;53=58;54=58;55=58;56=58;"
ratio = ratio + "57=58;65=63;66=59;67=61;68=64;69=57;70=58;71=67;"
ratio = ratio + "72=68;73=28;74=53;75=62;76=55;77=74;78=67;79=70;"
ratio = ratio + "80=59;81=71;82=61;83=51;84=61;85=68;86=62;87=88;"
ratio = ratio + "88=60;89=61;90=56;97=53;98=58;99=51;100=58;101=57;"
ratio = ratio + "102=37;103=50;104=59;105=30;106=37;107=55;108=29;"
ratio = ratio + "109=86;110=59;111=56;112=58;113=58;114=43;115=43;"
ratio = ratio + "116=39;117=59;118=53;119=78;120=55;121=53;122=53;"
' initialize mouse and keyboard events
Mouse_Init()
KB_Init()
' show menu, white icon, and edit field in graphics window
pcolor = GraphicsWindow.PenColor
Form()
GraphicsWindow.FontSize = 12
Color_Init()
Msg_Init()
Macro_Init()
While "True"
If clicked Then
' find clicked object - menu item or pixel of the icon
Mouse_DetectObject()
' create message (command) for the object if found
If name = "pen color" Then
param = "cmd=color;"
Msg_Set()
ElseIf name = "icon" Then
Icon_MouseToXY()
If 0 <= x And 0 <= y Then
param = "cmd=pixel;x=" + x + ";y=" + y + ";"
Msg_Set()
EndIf
ElseIf name <> "" Then
param = "cmd=" + name + ";"
Msg_Set()
EndIf
clicked = "False"
EndIf
While keyOut < keyIn
KB_InKey()
' create message (command) for the shortcut if found
If c = "^N" Then
param = "cmd=new;"
Msg_Set()
c = ""
ElseIf c = "^O" Then
param = "cmd=open;"
Msg_Set()
c = ""
ElseIf c = "^S" Then
param = "cmd=save;"
Msg_Set()
c = ""
ElseIf c = "^Z" Then
param = "cmd=undo;"
Msg_Set()
c = ""
ElseIf c = "^Y" Then
param = "cmd=redo;"
Msg_Set()
c = ""
ElseIf debug Then
TextWindow.ForegroundColor = "Red"
TextWindow.WriteLine("Unknown cmd: '" + c + "'")
TextWindow.ForegroundColor = "Gray"
c = ""
EndIf
EndWhile
If msgOut < msgIn Then
' do action for the message (command)
msgOut = msgOut + 1
msg = message[msgOut]
If msg["cmd"] = "new" Then
New()
ElseIf msg["cmd"] = "open" Then
Open()
ElseIf msg["cmd"] = "save" Then
Save()
ElseIf msg["cmd"] = "undo" Then
Macro_Undo()
ElseIf msg["cmd"] = "redo" Then
Macro_Redo()
ElseIf msg["cmd"] = "color" Then
color = pcolor
CS_ShowPopup()
pcolor = color
Color_SetPenColor()
ElseIf msg["cmd"] = "pixel" Then
x = msg["x"]
y = msg["y"]
Icon_GetPixel()
msg["from"] = color
msg["to"] = pcolor
Macro_Add()
color = pcolor
Icon_SetPixel()
Else
GraphicsWindow.Title = msg["cmd"] + " - " + title
EndIf
EndIf
If debug Then
Debug_StateChanged()
If changed Then
Debug_Dump()
EndIf
EndIf
EndWhile
Sub Form
' Draw GUI form
gw = 598
gh = 428
GraphicsWindow.Width = gw
GraphicsWindow.Height = gh
GraphicsWindow.BackgroundColor = "DimGray"
sizes[1] = "iw=16;ih=16;dot=16;"
sizes[2] = "iw=32;ih=32;dot=8;"
sizes[3] = "iw=40;ih=40;dot=6;"
id = 2
iconWidth = sizes[id]["iw"]
iconHeight = sizes[id]["ih"]
itemSize = 40
itemGap = 10
menuHeight = 60
size = sizes[id]["dot"]
gap = 2
Menu_Draw()
xEdit = Math.Floor((gw - (size + gap + 1) * iconWidth) / 2) + iconWidth
yEdit = Math.Floor((gh - menuHeight - (size + gap) * iconHeight) / 2) + menuHeight
xIcon = Math.Floor((xEdit - iconWidth) / 2)
yIcon = yEdit
add = "True"
Icon_Clear()
add = "False"
EndSub
Sub New
' New command - start new icon edit
yes = "True"
If Text.IsSubText(GraphicsWindow.Title, "*") Then
caution = "Are you sure to clear the icon?"
Dialog_YesNo()
EndIf
If yes Then
Icon_Clear()
fname = "Untitled"
relPath = ""
Macro_Init()
EndIf
EndSub
Sub Open
'--
' Open command - open PPM file
File_Open()
Parse_PPM()
If match And relPath <> "" Then
fname = relPath
Macro_Init()
EndIf
EndSub
Sub Save
'--
' Save command - save PPM file
File_GeneratePPM()
File_Save()
EndSub
Sub Array_GetIndexOfValue
' Array | Get index of value
' param arry - array
' param value - value to get index
' return index - index if found or "" if not found
nValue = Array.GetItemCount(arry)
indices = Array.GetAllIndices(arry)
index = ""
For iArry = 1 To nValue
If value = arry[indices[iArry]] Then
index = indices[iArry]
iArry = nValue + 1 ' break
EndIf
EndFor
EndSub
Sub Color_ColorToRGB
' Color | Convert Color to RGB
' param sColor - "#rrggbb"
' return iR, iG, iB - [0, 255]
sR = Text.GetSubText(sColor, 2, 2)
sG = Text.GetSubText(sColor, 4, 2)
sB = Text.GetSubText(sColor, 6, 2)
sHex = sR
Math_Hex2Dec()
iR = iDec
sHex = sG
Math_Hex2Dec()
iG = iDec
sHex = sB
Math_Hex2Dec()
iB = iDec
EndSub
Sub Color_HSLtoRGB
' Color | Convert HSL to RGB
' param rHue - [0, 360) or UNDEFINED
' param rLightness - [0, 1]
' param rSaturation - [0, 1]
' return iR, iG, iB - RGB color
' return sColor - "#rrggbb"
If rLightness <= 0.5 Then
rN2 = rLightness * (1 + rSaturation)
Else
rN2 = rLightness + rSaturation - rLightness * rSaturation
EndIf
rN1 = 2 * rLightness - rN2
If rSaturation = 0 Then
iR = Math.Round(rLightness * 255)
iG = Math.Round(rLightness * 255)
iB = Math.Round(rLightness * 255)
Else
rH = rHue + 120
Color_Value()
iR = iValue
rH = rHue
Color_Value()
iG = iValue
rH = rHue - 120
Color_Value()
iB = iValue
EndIf
sColor = GraphicsWindow.GetColorFromRGB(iR, iG, iB)
EndSub
Sub Color_Init
' Color | Initialize for colors
Popup_Init()
Color_SetPenColor()
CS_InitPalette() ' initialize palette for color slider
EndSub
Sub Color_RGBtoHSL
' Color | Convert RGB to HSL
' param sColor - "#rrggbb"
' return rHue - [0, 360) or UNDEFINED
' return rLightness - (0, 1)
' return rSaturation - (0, 1)
Color_ColorToRGB()
' rR = iR / 255 ' occurs Math.Max() bug
rR = Math.Round(iR / 255 * 10000) / 10000
' rG = iG / 255 ' occurs Math.Max() bug
rG = Math.Round(iG / 255 * 10000) / 10000
' rB = iB / 255 ' occurs Math.Max() bug
rB = Math.Round(iB / 255 * 10000) / 10000
rMax = Math.Max(rR, rG)
rMax = Math.Max(rMax, rB)
rMin = Math.Min(rR, rG)
rMin = Math.Min(rMin, rB)
rLightness = (rMax + rMin) / 2
If rMax = rMin Then ' rR = rG = rB
rSaturation = 0
rHue = UNDEFINED
Else
If rLightness <= 0.5 Then
rSaturation = (rMax - rMin) / (rMax + rMin)
Else
rSaturation = (rMax - rMin) / (2 - rMax - rMin)
EndIf
rRC = (rMax - rR) / (rMax - rMin)
rGC = (rMax - rG) / (rMax - rMin)
rBC = (rMax - rB) / (rMax - rMin)
If rR = rMax Then ' between Yellow and Magenta
rHue = rBC - rGC
ElseIf rG = rMax Then ' between Cyan and Yellow
rHue = 2 + rRC - rBC
ElseIf rB = rMax Then ' between Magenta and Cyan
rHue = 4 + rGC - rRC
Else
TextWindow.WriteLine("Error:")
TextWindow.WriteLine("rMax=" + rMax)
TextWindow.WriteLine("rR=" + rR + ",sR=" + sR)
TextWindow.WriteLine("rG=" + rG + ",sG=" + sG)
TextWindow.WriteLine("rB=" + rB + ",sB=" + sB)
EndIf
rHue = rHue * 60
If rHue < 0 Then
rHue = rHue + 360
EndIf
EndIf
EndSub
Sub Color_Value
' Color | Function value
' param rN1, rN2
' param rH - [-120, 480)
' return iValue - 0..255
If rH >= 360 Then
rH = rH - 360
EndIF
If rH < 0 Then
rH = rH + 360
EndIF
If rH < 60 Then
rV = rN1 + (rN2 - rN1) * rH / 60
ElseIf rH < 180 Then
rV = rN2
ElseIf rH < 240 Then
rV = rN1 + (rN2 - rN1) * (240 - rH) / 60
Else
rV = rN1
EndIf
iValue = Math.Round(rV * 255)
EndSub
Sub CS_AddColorToPalette
' Color Selector | Add color to palette
' param color - color to set
' param maxPalette
' param nPalette
' param palette
' param tPalette - target palette
Stack.PushValue("local", i)
For i = 1 To nPalette
pltt = palette[i]
If color = pltt["color"] Then
Goto csactp_not_new_color
EndIf
EndFor
pltt = palette[tPalette]
pltt["color"] = color
palette[tPalette] = pltt
If nPalette < maxPalette Then
nPalette = nPalette + 1
EndIf
tPalette = tPalette + 1
If maxPalette < tPalette Then
tPalette = 1
EndIf
csactp_not_new_color:
i = Stack.PopValue("local")
EndSub
Sub CS_AdjustSlider
' Color Selector | Adjust slider
' param iSlider - moved slider
Stack.PushValue("local", iSlider)
If iSlider = iHue Or iSlider = iLightness Or iSlider = iSaturation Then
If iSlider = iHue Then
Slider_GetLevel()
rHue = level
ElseIf iSlider = iLightness Then
Slider_GetLevel()
rLightness = level / 100
Else
Slider_GetLevel()
rSaturation = level / 100
EndIf
Color_HSLtoRGB()
iSlider = iRed
level = iR
Slider_SetLevel()
iSlider = iGreen
level = iG
Slider_SetLevel()
iSlider = iBlue
level = iB
Slider_SetLevel()
Else
CS_GetColorFromSlider()
sColor = GraphicsWindow.GetColorFromRGB(red, green, blue)
Color_RGBtoHSL()
If rHue = UNDEFINED Then
rHue = 0
EndIf
iSlider = iHue
level = Math.Floor(rHue)
Slider_SetLevel()
iSlider = iSaturation
level = Math.Floor(rSaturation * 100)
Slider_SetLevel()
iSlider = iLightness
level = Math.Floor(rLightness * 100)
Slider_SetLevel()
EndIf
iSlider = Stack.PopValue("local")
EndSub
Sub CS_DoObject
' Color Selector | Do object
' param obj - object to do
While obj <> ""
CS_DoSlider()
If obj <> "" Then
CS_DoPalette()
EndIf
EndWhile
EndSub
Sub CS_DoPalette
' Color Selector | Do palette
' param obj - clicked object
If Text.StartsWith(obj, "palette") Then
iPalette = Text.GetSubTextToEnd(obj, 8)
pltt = palette[iPalette]
color = pltt["color"]
CS_SetColorToSlider() ' set color to slider
CS_ShowNewColor() ' show new color name
CS_DrawColorRect() ' draw new color rectangle
obj = ""
param = "down=True;move=False;up=False;" ' wait to click
Mouse_SetHandler()
EndIf
EndSub
Sub CS_DoSlider
' Color Selector | Do slider
' param obj - clicked object
' param iSlider - index of slider
If Text.StartsWith(obj, "slider") Then
Slider_WaitToRelease()
obj = ""
param = "down=True;move=False;up=False;" ' wait to click
Mouse_SetHandler()
EndIf
EndSub
Sub CS_DrawColorRect
' Color Selector | Draw color rectangle
' param color - color of rectangle
' param x, y, width, height - position and size of rectangle
' return oRect - rectangle object
GraphicsWindow.BrushColor = color
GraphicsWindow.PenColor = BORDERCOLOR
If oRect <> "" Then
Shapes.Remove(oRect)
EndIf
oRect = Shapes.AddRectangle(width, height)
Shapes.Move(oRect, x, y)
EndSub
Sub CS_DrawPalette
' Color Selector | Draw palette
' param palette[] - color palette
' param nPalette - number of color in palette
' param x, y, width, height - position and size of rectangle
' return oPalette[] - palette object array
Stack.PushValue("local", i)
GraphicsWindow.PenColor = BORDERCOLOR
For i = 1 To nPalette
pltt = palette[i]
GraphicsWindow.BrushColor = pltt["color"]
pltt["oCell"] = Shapes.AddRectangle(width, height)
dx = Math.Remainder((i - 1), (maxPalette / 2)) * (width + 4)
dy = Math.Floor((i - 1) / (maxPalette / 2)) * (height + 4)
Shapes.Move(pltt["oCell"], x + dx, y + dy)
pltt["x"] = x + dx
pltt["y"] = y + dy
pltt["width"] = width
pltt["height"] = height
palette[i] = pltt
EndFor
i = Stack.PopValue("local")
EndSub
Sub CS_GetColorFromSlider
' Color Selector | Get color from slider
' return color
Stack.PushValue("local", iSlider)
iSlider = iRed ' slider index
Slider_GetLevel()
red = level
iSlider = iGreen ' slider index
Slider_GetLevel()
green = level
iSlider = iBlue ' slider index
Slider_GetLevel()
blue = level
color = GraphicsWindow.GetColorFromRGB(red, green, blue)
iSlider = Stack.PopValue("local")
EndSub
Sub CS_Init
' Color Selector | Initialize sliders
width = 256
min = 0
max = 255
left = 190
' add red slider
top = TOPY
caption = "R"
Slider_Add()
iRed = iSlider ' index of slider
' add green slider
top = top + DELTAY
caption = "G"
Slider_Add()
iGreen = iSlider ' index of slider
' add blue slider
top = top + DELTAY
caption = "B"
Slider_Add()
iBlue = iSlider ' index of slider
' add hue slider
width = 360
top = top + DELTAY
max = 360
caption = "H"
Slider_Add()
iHue = iSlider ' index of slider
' add saturation slider
width = 100
top = top + DELTAY
max = 100
caption = "S"
Slider_Add()
iSaturation = iSlider ' index of slider
' add lightness slider
width = 100
top = top + DELTAY
max = 100
caption = "L"
Slider_Add()
iLightness = iSlider ' index of slider
' draw color rectangle
CS_GetColorFromSlider()
CS_ShowNewColor()
x = LEFTX
y = TOPY + DELTAY * 4
width = 100
height = 100
CS_DrawColorRect()
' add text box
GraphicsWindow.BrushColor = CAPTIONCOLOR
top = y + height + 4
oNewColor = Shapes.AddText("")
Shapes.Move(oNewColor, LEFTX, top)
EndSub
Sub CS_DumpSlider
' Color Selector | Dump slider for debug
For i = 1 To numSlider
TextWindow.WriteLine("slider" + i)
TextWindow.WriteLine(slider[i])
EndFor
EndSub
Sub CS_InitPalette
' Color Selector | Initialize palette
' This subroutine should be called before CS_ShowPopup().
pcolor = GraphicsWindow.PenColor
If Text.GetLength(pcolor) = 9 Then ' for Silverlight
pcolor = "#" + Text.GetSubText(pcolor, 4, 6)
EndIf
maxPalette = 24 ' max cell number of palette
nPalette = 1 ' number of palette in use
tPalette = 2 ' index of update target cell
pltt = palette[1]
pltt["color"] = pcolor
palette[1] = pltt
EndSub
Sub CS_RemovePalette
' Color Selector | Remove palette
' param nPalette - number of color in palette
' return oPalette[] - palette object array
Stack.PushValue("local", i)
For i = 1 To nPalette
oPalette = "Palette" + i
pltt = palette[i]
Shapes.Remove(pltt["oCell"])
EndFor
i = Stack.PopValue("local")
EndSub
Sub CS_RemoveSliders
' Color Selector | Remove sliders
For iSlider = 1 To numSlider
Slider_Remove()
EndFor
numSlider = 0
EndSub
Sub CS_SearchClickedObject
' Color Selector | Check slider clicked
' param mxD, myD - clicked point
' return obj - clicked slider or palette
' return iSlider - index if obj is slider
' return iPalette - index if obj is palette
Stack.PushValue("local", i)
For iSlider = 1 To numSlider
obj = "slider" + iSlider
sldr = slider[iSlider]
x2 = sldr["x2"]
y2 = sldr["y2"]
x3 = sldr["x3"]
y3 = sldr["y3"]
If x2 <= mxD And mxD <= x3 And y2 <= myD And myD <= y3 Then
Goto scco_obj_found
EndIf
EndFor
For iPalette = 1 To nPalette
obj = "palette" + iPalette
pltt = palette[iPalette]
x2 = pltt["x"]
y2 = pltt["y"]
x3 = pltt["x"] + pltt["width"]
y3 = pltt["y"] + pltt["height"]
If x2 <= mxD And mxD <= x3 And y2 <= myD And myD <= y3 Then
Goto scco_obj_found
EndIf
EndFor
obj = ""
scco_obj_found:
i = Stack.PopValue("local")
EndSub
Sub CS_SetColorToSlider
' Color Selector | Set color to slider
' param color
Stack.PushValue("local", iSlider)
sColor = color
Color_ColorToRGB()
iSlider = iRed
level = iR
Slider_SetLevel()
iSlider = iGreen
level = iG
Slider_SetLevel()
iSlider = iBlue
level = iB
Slider_SetLevel()
CS_AdjustSlider()
iSlider = Stack.PopValue("local")
EndSub
Sub CS_ShowNewColor
'--
' Color Selector | Show new color
' param oColor
' param color
Shapes.SetText(oNewColor, color)
EndSub
Sub CS_ShowPopup
'--
' Color Selector | Show popup
' param color - current color
' return color - new color
' define constant
Stack.PushValue("local", cont)
fs = 12
GraphicsWindow.FontSize = fs
GraphicsWindow.FontBold = "False"
GraphicsWindow.BrushColor = "Black"
colorInit = color ' initial color
GraphicsWindow.PenWidth = 2
GraphicsWindow.PenColor = POPUPCOLOR
GraphicsWindow.BrushColor = POPUPCOLOR
oPopup = Shapes.AddRectangle(gw, gh)
Shapes.SetOpacity(oPopup, 64)
Shapes.Move(oPopup, LEFTX - 10, TOPY - 10)
GraphicsWindow.BrushColor = CAPTIONCOLOR
oOK = Controls.AddButton("OK", gw - 100, gh - 34)
oCancel = Controls.AddButton("Cancel", gw - 60, gh - 34)
Controls.ButtonClicked = CS_OnButtonClicked
CS_Init()
Stack.PushValue("local", y)
y = TOPY
color = colorInit
CS_DrawColorRect() ' original color
oRectCurrent = oRect
oRect = "" ' keep current color
If Text.GetLength(color) = 9 Then ' for Silverlight
color = "#" + Text.GetSubText(color, 4, 6)
EndIf
GraphicsWindow.BrushColor = CAPTIONCOLOR
oColor = Shapes.AddText(colorInit)
Shapes.Move(oColor, x, y + height + 2)
y = Stack.PopValue("local")
CS_SetColorToSlider()
CS_DrawColorRect() ' draw new color rectangle
CS_ShowNewColor() ' show new color name
Stack.PushValue("local", x)
Stack.PushValue("local", y)
Stack.PushValue("local", width)
Stack.PushValue("local", height)
x = x + width + 30
y = TOPY + height * 2 + 24
width = 30
height = 30
CS_DrawPalette()
height = Stack.PopValue("local")
width = Stack.PopValue("local")
y = Stack.PopValue("local")
x = Stack.PopValue("local")
cont = "True" ' continue
param = "down=True;move=False;up=False;" ' wait click
Mouse_SetHandler()
While cont
If clicked Then
CS_SearchClickedObject()
CS_DoObject()
clicked = "False"
Else
Program.Delay(100)
EndIf
EndWhile
If cancel Then
color = colorInit
Else
CS_AddColorToPalette()
EndIf
CS_RemovePalette()
CS_RemoveSliders()
Shapes.Remove(oColor)
Shapes.Remove(oNewColor)
Shapes.Remove(oRectCurrent)
Shapes.Remove(oRect)
Controls.Remove(oOK)
Controls.Remove(oCancel)
Shapes.Remove(oPopup)
cont = Stack.PopValue("local")
EndSub
Sub CS_OnButtonClicked
' Color Selector | Event handler on button clicked
cont = "False"
If Controls.LastClickedButton = oCancel Then
cancel = "True"
Else
cancel = "False"
EndIf
EndSub
Sub Color_SetPenColor
' Color | Set pen color
' param pcolor
GraphicsWindow.BrushColor = pcolor
padding = 4
arry = item
value = "Pen Color"
Array_GetIndexOfValue()
y = Math.Floor((menuHeight - itemSize - 10) / 2) + padding
x = (index - 1) * (itemSize + itemGap) + itemGap + padding
GraphicsWindow.FillRectangle(x, y, itemSize - 2 * padding, itemSize - 2 * padding)
EndSub
Sub Debug_StateChanged
' Debug | Check state changed
' return changed - "True" if state changed
changed = "False"
If keyIn <> lastKeyIn Then
lastKeyIn = keyIn
changed = "True"
EndIf
If keyOut <> lastKeyOut Then
lastKeyOut = keyOut
changed = "True"
EndIf
If msgIn <> lastMsgIn Then
lastMsgIn = msgIn
changed = "True"
EndIf
If msgOut <> lastMsgOut Then
lastMsgOut = msgOut
changed = "True"
EndIf
EndSub
Sub Debug_Dump
' Debug | Dump state
TextWindow.WriteLine("fifo = " + fifo)
TextWindow.WriteLine("keyIn = " + keyIn)
TextWindow.WriteLine("keyOut = " + keyOut)
TextWindow.WriteLine("message = " + message)
TextWindow.WriteLine("msgIn = " + msgIn)
TextWindow.WriteLine("msgOut = " + msgOut)
EndSub
Sub Dialog_YesNo
' Dialog to select yes or no
' param caution - message
' return yes - if [Yes] pushed
yes = "True"
GraphicsWindow.PenWidth = 0
GraphicsWindow.BrushColor = POPUPCOLOR
oMsgBox = Shapes.AddRectangle(gw, gh)
Shapes.SetOpacity(oMsgBox, 64)
GraphicsWindow.BrushColor = CAPTIONCOLOR
oCaution = Shapes.AddText(caution)
yCaution = (gh - 80) / 2
Shapes.Move(oCaution, 150, yCaution)
oYes = Controls.AddButton("Yes", 360, yCaution + 50)
oNo = Controls.AddButton("No", 400, yCaution + 50)
cont = "True" ' continue
Controls.ButtonClicked = File_OnButtonClicked
While cont
Program.Delay(500)
EndWhile
If Controls.LastClickedButton = oNo Then
yes = "False"
EndIf
Controls.Remove(oNo)
Controls.Remove(oYes)
Shapes.Remove(oCaution)
Shapes.Remove(oMsgBox)
EndSub
Sub File_GetAbsPath
' File | Get absolute path
' param curDir - current directory
' param relPath - relative path
' return absPath - absolute path
If Text.IsSubText(relPath, ":") Or Text.StartsWith(relPath, "\") Or relPath = "" Then
absPath = relPath
Else
absPath = curDir + "\" + relPath
File_RemoveDots()
EndIf
EndSub
Sub File_RemoveDots
' File | Get Remove dots from absolute path
' param absPath - with dots
' return absPath - without dots
path = absPath
folder = ""
n = 0
While Text.IsSubText(path, "\")
n = n + 1
p = Text.GetIndexOf(path, "\")
folder[n] = Text.GetSubText(path, 1, p - 1)
path = Text.GetSubTextToEnd(path, p + 1)
EndWhile
If path <> "" Then
n = n + 1
folder[n] = path
EndIf
While Array.ContainsValue(folder, ".") Or Array.ContainsValue(folder, "..")
For i = 1 To n
If folder[i] = "." Then
File_RemoveEntry()
i = n + 1 ' break
ElseIf folder[i] = ".." Then
i = i - 1
File_RemoveEntry()
File_RemoveEntry()
i = n + 1 ' break
EndIf
EndFor
EndWhile
absPath = folder[1]
For i = 2 To n
absPath = absPath + "\" + folder[i]
EndFor
EndSub
Sub File_RemoveEntry
' File | Remove entry
' param folder - entry array
' param i - entry index
' return folder - updated entry array
' return n
For _i = i To n - 1
folder[_i] = folder[_i + 1]
EndFor
folder[n] = ""
n = n - 1
EndSub
Sub File_CloseDialog
' File | Close dialog for Open/Save
' param oPopup
' param oCaption
' param oFilename
' param oText
' param oMsg
' param oCancel
Controls.Remove(oCancel)
Controls.Remove(oMsg)
Controls.Remove(oText)
Controls.Remove(oFilename)
Controls.Remove(oCaption)
Controls.Remove(oPopup)
EndSub
Sub File_GeneratePPM
' File | Generate PPM in buf
' return buf - buffer
buf = "P3" + CR + LF
buf = buf + iconWidth + " " + iconHeight + CR + LF
buf = buf + "255" + CR + LF
nRGB = 0
For y = 0 To iconHeight - 1
nCol = 0
For x = 0 To iconWidth - 1
Icon_GetPixel()
sColor = color
Color_ColorToRGB()
len = Text.GetLength(iR)
sp = Text.GetSubTextToEnd(" ", len)
buf = buf + sp + iR + " "
len = Text.GetLength(iG)
sp = Text.GetSubTextToEnd(" ", len)
buf = buf + sp + iG + " "
len = Text.GetLength(iB)
sp = Text.GetSubTextToEnd(" ", len)
buf = buf + sp + iB
If (Math.Remainder(nCol, 5) = 4) Or (nCol = iconWidth - 1) Then
buf = buf + CR + LF
Else
buf = buf + " "
EndIf
nCol = nCol + 1
EndFor
EndFor
EndSub
Sub File_GetBasename
' FIle | Get basename from filename
' param filename
' return basename
' return ext - extension
pFilename = 1
While Text.IsSubText(Text.GetSubTextToEnd(filename, pFilename), "\")
iBackslash = Text.GetIndexOf(Text.GetSubTextToEnd(filename, pFilename), "\")
pFilename = pFilename + iBackslash
EndWhile
iDot = Text.GetIndexOf(Text.GetSubTextToEnd(filename, pFilename), ".")
If 0 < iDot Then
basename = Text.GetSubText(filename, pFilename, iDot - 1)
ext = Text.GetSubTextToEnd(filename, pFilename + iDot)
Else
basename = Text.GetSubTextToEnd(filename, pFilename)
ext = ""
EndIf
EndSub
Sub File_Open
' File | Show input code to open
' return buf
' return filename
Stack.PushValue("local", cont)
relPath = ""
filename = ""
File_OpenDialog()
oOpen = Controls.AddButton("Open", 486, gh - 34)
Shapes.SetText(oMsg, "You can also click above, push Ctrl+V to paste from clipboard")
Controls.ButtonClicked = File_OnButtonClicked
Controls.TextTyped = File_OnTextTyped
subname = "Shapes_Init"
typed = "False"
done = "False"
While Not[done]
cont = "True" ' continue
While cont
If typed Then
curDir = Program.Directory
relPath = Controls.GetTextBoxText(oFilename)
File_GetAbsPath()
filename = absPath
buf = ""
buf = File.ReadContents(filename)
Controls.SetTextBoxText(oText, buf)
typed = "False"
Else
Program.Delay(200)
EndIf
EndWhile
If Controls.LastClickedButton = oOpen Then