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
|
' 2D Vewctor Object desinger.
' Looks a bit odd as ripped from another in-game designer.
'
' Copyright 2005 Ian Cowburn
'
' $Id$
'
Strict
Import noddybox.vectorgfx
Import noddybox.bitmapfont
Import noddybox.simplegui
' Included binaries
'
Incbin "font.bmf"
Incbin "pointer.png"
' Initialise
'
SeedRnd(MilliSecs())
SetGraphicsDriver GLMax2DDriver()
Graphics 800,600
HideMouse
SetBlend(ALPHABLEND)
SetAlpha(1.0)
' Globals
'
Global font:TBitmapFont=TBitmapFont.Load("incbin::font.bmf",0)
Global pointer:TImage=LoadImage("incbin::pointer.png",0)
TSGUIFont.font=font
Global quit:Int=False
Global filename:String="default.vec2d"
Global scale:Double=1.0
' **** Main
'
If AppArgs.length>1
DoDesigner(AppArgs[1])
Else
DoDesigner(Null)
EndIf
EndGraphics
End
' **** Types
'
Type TDesObj Abstract
Field selsize:Int
Function LoadFromObject:TDesObj(o:Object) Abstract
Method CreateForObject:Object() Abstract
Method Draw(normals:Int) Abstract
Method DrawSelect() Abstract
Method MouseOver:Int(x:Int, y:Int) Abstract
Method Drag(x:Int, y:Int, show:Int) Abstract
Method Edit() Abstract
Method SetInfo(w:TLabel) Abstract
Method Snap() Abstract
Method DrawSelBox(x:Double, y:Double)
Local x1:Int=x*scale-selsize
Local y1:Int=y*scale-selsize
Local x2:Int=x*scale+selsize
Local y2:Int=y*scale+selsize
SetColor(255,255,255)
DrawLine(x1,y1,x2,y1)
DrawLine(x2,y1,x2,y2)
DrawLine(x2,y2,x1,y2)
DrawLine(x1,y2,x1,y1)
End Method
Method InSelBox(px:Double, py:Double, x:Double, y:Double)
Local x1:Int=x*scale-selsize
Local y1:Int=y*scale-selsize
Local x2:Int=x*scale+selsize
Local y2:Int=y*scale+selsize
Return px>=x1 And px<=x2 And py>=y1 And py<=y2
End Method
Method DrawCoord(x:Int, y:Int)
font.Draw(x+","+y,0,0)
End Method
Method DrawCoords(x1:Int, y1:Int, x2:Int, y2:Int)
font.Draw(x1+","+y1+" -> "+x2+","+y2,0,0)
End Method
Method DoubleString:String(v:Double)
Local s:String=v
If s.Find(".")<>-1
While s.length>1 And s[s.length-1]=Asc("0")
s=s[..s.length-1]
Wend
While s.length>1 And s[s.length-1]=Asc(".")
s=s[..s.length-1]
Wend
EndIf
Return s
End Method
Method BoolString:String(b:Int)
If b
Return "Yes"
Else
Return "No "
EndIf
End Method
Method CalcSnap:Int(p:Int)
Return (p+(Designer.GRID/2*Sgn(p)))/Designer.GRID*Designer.GRID
End Method
End Type
Type TDesLine Extends TDesObj
Field p1:TDesPoint
Field p2:TDesPoint
Field r:Int
Field g:Int
Field b:Int
Field id:Int
Function Create:TDesLine(p1:TDesPoint,p2:TDesPoint)
Local o:TDesLine=New TDesLine
o.p1=p1
o.p2=p2
o.r=255
o.g=255
o.b=255
o.selsize=3
Return o
End Function
Function LoadFromObject:TDesObj(o:Object)
Local lp:TVectorGfxLine=TVectorGfxLine(o)
Local no:TDesLine=New TDesLine
no.p1=FindPoint(lp.i1)
no.p2=FindPoint(lp.i2)
no.r=lp.r
no.g=lp.g
no.b=lp.b
no.id=lp.id
no.selsize=3
Return no
End Function
Method CreateForObject:Object()
Return TVectorGfxLine.Create(FindPointIndex(p1),FindPointIndex(p2),r,g,b,id)
End Method
Method CX:Double()
Return p1.x+(p2.x-p1.x)/2.0
End Method
Method CY:Double()
Return p1.y+(p2.y-p1.y)/2.0
End Method
Method Draw(normals:Int)
If normals
Local v:TVector=TVector.Create(p2.y-p1.y,p1.x-p2.x)
v.Normalise()
SetColor(r/2,g/2,b/2)
DrawLine(CX()*scale,CY()*scale,CX()*scale+v.x*10,CY()*scale+v.y*10)
EndIf
SetColor(r,g,b)
DrawLine(p1.lx()*scale,p1.ly()*scale,p2.lx()*scale,p2.ly()*scale)
End Method
Method DrawSelect()
DrawSelBox(CX(),CY())
End Method
Method MouseOver:Int(x:Int, y:Int)
Return InSelBox(x,y,CX(),CY())
End Method
Method Drag(x:Int, y:Int, show:Int)
x:-CX()
y:-CY()
p1.x:+x
p2.x:+x
p1.y:+y
p2.y:+y
If show
DrawCoords(p1.x,p1.y,p2.x,p2.y)
EndIf
End Method
Method Edit()
Designer.ld_red.text = r
Designer.ld_green.text = g
Designer.ld_blue.text = b
Designer.ld_id.text = id
If GUIDialog(Designer.ldialog,Designer.ld_ok,Designer.ld_cancel,pointer)
r = Min(255,Designer.ld_red.text.ToInt())
g = Min(255,Designer.ld_green.text.ToInt())
b = Min(255,Designer.ld_blue.text.ToInt())
id = Designer.ld_id.text.ToInt()
EndIf
End Method
Method SetInfo(w:TLabel)
w.text=p1.x+","+p1.y+" -> "+p2.x+","+p2.y+" ID:"+id
EndMethod
Method Snap()
p1.x=CalcSnap(p1.x)
p1.y=CalcSnap(p1.y)
p2.x=CalcSnap(p2.x)
p2.y=CalcSnap(p2.y)
End Method
Method FlipNormal()
Local t:TDesPoint=p1
p1=p2
p2=t
End Method
End Type
Type TDesPoint Extends TDesObj
Field x:Int
Field y:Int
Field dx:Double
Field dy:Double
Function Create:TDesObj(x:Int, y:Int)
Local o:TDesPoint=New TDesPoint
o.x=x
o.y=y
o.selsize=3
Return o
End Function
Function LoadFromObject:TDesObj(o:Object)
Local lp:TVectorGfxPoint=TVectorGfxPoint(o)
Local no:TDesPoint=New TDesPoint
no.x=lp.x
no.y=lp.y
no.selsize=3
Return no
End Function
Method CreateForObject:Object()
Return TVectorGfxPoint.Create(x,y)
End Method
Method Draw(normals:Int)
SetColor(255,255,255)
DrawRect(lx()*scale-1,ly()*scale-1,3,3)
End Method
Method DrawSelect()
DrawSelBox(lx(),ly())
End Method
Method MouseOver:Int(x:Int, y:Int)
Return InSelBox(x,y,Self.x,Self.y)
End Method
Method Drag(x:Int, y:Int, show:Int)
Self.x=x
Self.y=y
If show
DrawCoord(x,y)
EndIf
End Method
Method DragDelta(x:Double, y:Double)
dx=x
dy=y
End Method
Method CompleteDragDelta()
x=lx()
y=ly()
dx=0
dy=0
End Method
Method Edit()
End Method
Method SetInfo(w:TLabel)
w.text=x+","+y
EndMethod
Method Snap()
x=CalcSnap(x)
y=CalcSnap(y)
End Method
Method lx:Int()
Return x+dx
End Method
Method ly:Int()
Return y+dy
End Method
End Type
' **** Globals
'
' This type acts as a namespace for global variables
'
Type Designer
Global GRID:Int=5
Global init:Int=False
Global obj:TList
Global gfx:TVectorGfxObject
Global done:Int
Global gui:TGUIHandler
Global fname_txt:TLabel
Global fname_load:TButton
Global fname_save:TButton
Global fname_new:TButton
Global scale_number:TNumberInt
Global grid_number:TNumberInt
Global info:TLabel
Global grid_check:TCheckbox
Global normal_check:TCheckbox
Global quitbut:TButton
Global ldialog:TGUIHandler
Global ld_red:TText
Global ld_green:TText
Global ld_blue:TText
Global ld_id:TText
Global ld_ok:TButton
Global ld_cancel:TButton
Function Initialise()
If Not init
Local l:TLabel
Local p:TPanel
obj = CreateList()
gfx = New TVectorGfxObject
gui = TGUIHandler.Create()
fname_txt = TLabel.Create(gui,0,0,filename)
fname_load = TButton.Create(gui,0,15,50,17,"Load",LoadCallback)
fname_save = TButton.Create(gui,fname_load.x+fname_load.w+10,15,50,fname_load.h,"Save",SaveCallback)
fname_new = TButton.Create(gui,fname_save.x+fname_save.w+10,15,50,fname_load.h,"New",NewCallback)
TLabel.Create(gui,0,40,"Scale")
scale_number = TNumberInt.Create(gui,70,40,ScaleCallback)
scale_number.value=scale
scale_number.minval=1
scale_number.maxval=10
scale_number.change=1
TLabel.Create(gui,150,40,"Grid size")
grid_number = TNumberInt.Create(gui,220,40,GridSizeCallback)
grid_number.value=GRID
grid_number.minval=2
grid_number.maxval=10
grid_number.change=1
info = TLabel.Create(gui,0,50,"")
grid_check = TCheckbox.Create(gui,740,0,"Grid")
normal_check = TCheckbox.Create(gui,740,15,"Normals")
grid_check.checked= True
quitbut = TButton.Create(gui,750,570,49,29,"Quit",QuitCallback)
ldialog = TGUIHandler.Create()
p = TPanel.Create(ldialog,-1,-1,400,150)
l = TLabel.Create(ldialog,p.x+5,p.y+10,"Red:")
ld_red = TText.Create(ldialog,l.x+l.w+10,l.y,"",3,TText.NUMERIC|TText.INTEGER|TText.POSITIVE)
l = TLabel.Create(ldialog,p.x+5,p.y+30,"Green:")
ld_green = TText.Create(ldialog,l.x+l.w+10,l.y,"",3,TText.NUMERIC|TText.INTEGER|TText.POSITIVE)
l = TLabel.Create(ldialog,p.x+5,p.y+50,"Blue:")
ld_blue = TText.Create(ldialog,l.x+l.w+10,l.y,"",3,TText.NUMERIC|TText.INTEGER|TText.POSITIVE)
l = TLabel.Create(ldialog,p.x+5,p.y+70,"Collision ID:")
ld_id = TText.Create(ldialog,l.x+l.w+10,l.y,"",30,TText.NUMERIC|TText.INTEGER|TText.POSITIVE)
ld_ok = TButton.Create(ldialog,p.x+5,p.y+p.h-25,p.w/2-10,20,"OK",Null)
ld_cancel = TButton.Create(ldialog,p.x+p.w/2+5,p.y+p.h-25,p.w/2-10,20,"Cancel",Null)
init=True
EndIf
done = False
LoadObject()
End Function
Function SaveObject()
Local lines:TList=CreateList()
Local points:TList=CreateList()
For Local d:TDesObj=EachIn obj
If IsPoint(d)
points.AddLast(d.CreateForObject())
Else
lines.AddLast(d.CreateForObject())
EndIf
Next
gfx.SetPoints(points.ToArray())
gfx.SetLines(lines.ToArray())
End Function
Function LoadObject()
obj.Clear()
For Local p:TVectorGfxPoint=EachIn gfx.points
obj.AddLast(TDesPoint.LoadFromObject(p))
Next
For Local l:TVectorGfxLine=EachIn gfx.lines
obj.AddLast(TDesLine.LoadFromObject(l))
Next
End Function
End Type
' **** Main Loop
'
Function DoDesigner(loadfile:String)
Designer.Initialise()
If loadfile
Local o:TVectorGfxObject=TVectorGfxObject.Load(loadfile)
If o<>Null
filename=loadfile
Designer.fname_txt.text=filename
Designer.gfx=o
Designer.gfx.x=0
Designer.gfx.y=0
Designer.gfx.ang=0
Designer.LoadObject()
Else
GUINotify("Failed to load '" + Designer.fname_txt.text + "'",pointer)
EndIf
EndIf
Designer.done=False
Const NORMAL_MODE:Int=0
Const LINE_MODE:Int=1
Const DOT_TO_DOT_MODE:Int=2
Const DOT_TO_DOT_SNAP_MODE:Int=3
Const LINE_TO_LINE_MODE:Int=4
Const DRAG_NONE:Int=0
Const DRAG_SINGLE:Int=1
Const DRAG_MULTI:Int=2
Local sel:TDesObj=Null
Local line_sel:TDesPoint=Null
Local drag:Int=DRAG_NONE
Local sellist:TList=CreateList()
Local mode:Int=NORMAL_MODE
Local dragx:Double
Local dragy:Double
While Not Designer.done
Cls
' **** START CENTRED
'
SetOrigin(GraphicsWidth()/2,GraphicsHeight()/2)
If Designer.grid_check.checked
SetAlpha(0.7)
Local x:Int=0
While x>-400
x:-Designer.GRID
Wend
While x<=400
If x=0
SetColor(50,50,255)
Else
SetColor(50,50,128)
EndIf
DrawLine(x*scale,-300,x*scale,300)
x:+Designer.GRID
Wend
Local y:Int=0
While y>-300
y:-Designer.GRID
Wend
While y<=300
If y=0
SetColor(50,50,255)
Else
SetColor(50,50,128)
EndIf
DrawLine(-400,y*scale,400,y*scale)
y:+Designer.GRID
Wend
SetAlpha(1)
EndIf
Local x:Int=(MouseX()-GraphicsWidth()/2)
Local y:Int=(MouseY()-GraphicsHeight()/2)
If drag=DRAG_NONE
sel=Null
EndIf
For Local o:TDesObj=EachIn Designer.obj
o.Draw(Designer.normal_check.checked)
If sel=Null And o.MouseOver(x,y)
sel=o
EndIf
Next
If sel<>Null
sel.SetInfo(Designer.info)
Select mode
Case LINE_MODE
sellist.Clear()
sellist.AddLast(sel)
If IsPoint(sel)
If line_sel=Null
line_sel=TDesPoint(sel)
Else
If sel<>line_sel
mode=NORMAL_MODE
Designer.obj.AddLast(TDesLine.Create(line_sel,TDesPoint(sel)))
EndIf
EndIf
EndIf
Case LINE_TO_LINE_MODE
sellist.Clear()
sellist.AddLast(sel)
If IsPoint(sel)
If line_sel=Null
line_sel=TDesPoint(sel)
Else
If sel<>line_sel
Designer.obj.AddLast(TDesLine.Create(line_sel,TDesPoint(sel)))
line_sel=TDesPoint(sel)
EndIf
EndIf
EndIf
Case NORMAL_MODE
If KeyDown(KEY_LSHIFT) Or KeyDown(KEY_RSHIFT)
If IsPoint(sel) And Not sellist.Contains(sel)
sellist.AddLast(sel)
EndIf
Else
sellist.Clear()
sellist.AddLast(sel)
EndIf
End Select
Else
If mode<>NORMAL_MODE Or (Not KeyDown(KEY_LSHIFT) And Not KeyDown(KEY_RSHIFT))
sellist.Clear()
EndIf
EndIf
For Local o:TDesObj=EachIn sellist
o.DrawSelect()
Next
If drag=DRAG_SINGLE
sel.Drag(x/scale,y/scale,True)
ElseIf drag=DRAG_MULTI
For Local o:TDesPoint=EachIn sellist
o.DragDelta((x-dragx)/scale,(y-dragy)/scale)
Next
EndIf
SetOrigin(0,0)
'
' **** END CENTRED
If drag=DRAG_NONE And mode=NORMAL_MODE
Designer.gui.EventLoop()
EndIf
If mode=NORMAL_MODE
If KeyHit(KEY_DELETE)
If sellist.Count()>1
For Local o:TDesPoint=EachIn sellist
DeletePoint(o)
Next
sellist.Clear()
ElseIf sel<>Null
If IsPoint(sel)
DeletePoint(TDesPoint(sel))
Else
Designer.obj.Remove(sel)
EndIf
sel=Null
EndIf
EndIf
If KeyHit(KEY_S)
If sellist.Count()>1
For Local o:TDesPoint=EachIn sellist
o.Snap()
Next
sellist.Clear()
ElseIf sel<>Null
sel.Snap()
sel=Null
EndIf
EndIf
If KeyHit(KEY_F)
If sel<>Null And IsLine(sel)
Local l:TDesLine=TDesLine(sel)
l.FlipNormal()
sel=Null
EndIf
EndIf
If KeyHit(KEY_E)
If sel<>Null And IsLine(sel)
sel.Edit()
sel=Null
EndIf
EndIf
If KeyHit(KEY_F12)
ConfigAllLines()
EndIf
EndIf
If mode=NORMAL_MODE And MouseHit(2)
If sellist.Count()>1
Select GUIMenu("Point Menu",["Snap to grid","Delete"],MouseX(),MouseY(),pointer)
Case 0
For Local o:TDesPoint=EachIn sellist
o.Snap()
Next
sellist.Clear()
Case 1
For Local o:TDesPoint=EachIn sellist
DeletePoint(o)
Next
sellist.Clear()
EndSelect
ElseIf sel<>Null
If IsPoint(sel)
Select GUIMenu("Point Menu",["Snap to grid","Delete"],MouseX(),MouseY(),pointer)
Case 0
sel.Snap()
Case 1
DeletePoint(TDesPoint(sel))
End Select
Else
Local l:TDesLine=TDesLine(sel)
Select GUIMenu("Line Menu",["Edit","Snap to grid","Flip","Delete"],MouseX(),MouseY(),pointer)
Case 0
l.Edit()
Case 1
l.Snap()
Case 2
l.FlipNormal()
Case 3
Designer.obj.Remove(l)
End Select
EndIf
Else
Select GUIMenu("Menu",["Create Point","Create Line","Create Points","Create Points (Snapped)","Create Lines","Config all Lines"],MouseX(),MouseY(),pointer)
Case 0
Designer.obj.AddLast(TDesPoint.Create(x/scale,y/scale))
Case 1
sellist.Clear()
sel=Null
line_sel=Null
mode=LINE_MODE
Case 2
sellist.Clear()
sel=Null
mode=DOT_TO_DOT_MODE
Case 3
sellist.Clear()
sel=Null
mode=DOT_TO_DOT_SNAP_MODE
Case 4
sellist.Clear()
sel=Null
line_sel=Null
mode=LINE_TO_LINE_MODE
Case 5
ConfigAllLines()
End Select
EndIf
sel=Null
EndIf
SetColor(255,255,255)
Select mode
Case NORMAL_MODE
If drag=DRAG_NONE
If MouseDown(1)
If sel<>Null And Not KeyDown(KEY_LSHIFT) And Not KeyDown(KEY_RSHIFT)
drag=DRAG_SINGLE
ElseIf (KeyDown(KEY_LSHIFT) Or KeyDown(KEY_RSHIFT)) And sellist.Count()>0
drag=DRAG_MULTI
dragx=x
dragy=y
EndIf
EndIf
Else
If Not MouseDown(1)
If drag=DRAG_MULTI
For Local o:TDesPoint=EachIn sellist
o.CompleteDragDelta()
Next
EndIf
drag=DRAG_NONE
EndIf
EndIf
Case LINE_MODE
If line_sel=Null
Tip("Move to first point")
Else
Tip("Move to second point")
EndIf
Case DOT_TO_DOT_MODE
Tip("Press Button to place")
If MouseHit(1)
Local p:TDesPoint=TDesPoint(TDesPoint.Create(x/scale,y/scale))
Designer.obj.AddLast(p)
EndIf
Case DOT_TO_DOT_SNAP_MODE
Tip("Press Button to place")
If MouseHit(1)
Local p:TDesPoint=TDesPoint(TDesPoint.Create(x/scale,y/scale))
p.Snap()
Designer.obj.AddLast(p)
EndIf
Case LINE_TO_LINE_MODE
If line_sel=Null
Tip("Move to first point")
Else
Tip("Move to next point")
EndIf
End Select
If KeyHit(KEY_ESCAPE)
mode=NORMAL_MODE
FlushKeys()
EndIf
DrawImage(pointer,MouseX(),MouseY())
Flip
Wend
End Function
Function Tip(s:String)
font.Draw(s+" [ESC to cancel]",MouseX()+12,MouseY()+12)
End Function
Function IsLine:Int(o:Object)
Local p:TDesLine=TDesLine(o)
Return p<>Null
End Function
Function IsPoint:Int(o:Object)
Local p:TDesPoint=TDesPoint(o)
Return p<>Null
End Function
Function FindPoint:TDesPoint(i:Int)
For Local o:Object=EachIn Designer.obj
If IsPoint(o)
If i=0
Return TDesPoint(o)
EndIf
i:-1
EndIf
Next
Return Null
End Function
Function FindPointIndex:Int(p:TDesPoint)
Local i:Int=0
For Local o:Object=EachIn Designer.obj
If IsPoint(o)
If o=p
Return i
EndIf
i:+1
EndIf
Next
Return 0
End Function
' **** Callbacks
'
Function QuitCallback(w:TWidget)
Designer.done=GUIYesNo("Quit?",pointer)
End Function
Function LoadCallback(w:TWidget)
Local fn:String=GUIFileSelect("Select object to load",filename,False,pointer)
If fn<>Null
Local o:TVectorGfxObject=TVectorGfxObject.Load(fn)
If o<>Null
filename=fn
Designer.fname_txt.text=filename
Designer.gfx=o
Designer.gfx.x=0
Designer.gfx.y=0
Designer.gfx.ang=0
Designer.LoadObject()
Else
GUINotify("Failed to load '" + Designer.fname_txt.text + "'",pointer)
EndIf
EndIf
End Function
Function SaveCallback(w:TWidget)
Local fn:String=GUIFileSelect("Select object to save",filename,True,pointer)
If fn<>Null
filename=fn
Designer.fname_txt.text=filename
Designer.SaveObject()
Designer.gfx.Save(filename)
EndIf
End Function
Function NewCallback(w:TWidget)
If GUIYesNo("Lose current object?",pointer)
Designer.gfx=New TVectorGfxObject
Designer.LoadObject()
EndIf
End Function
Function ScaleCallback(w:TWidget)
Local c:TNumberInt=TNumberInt(w)
scale=c.value
End Function
Function GridSizeCallback(w:TWidget)
Local c:TNumberInt=TNumberInt(w)
Designer.GRID=c.value
End Function
Function DeletePoint(o:TDesPoint)
Designer.obj.Remove(o)
For Local d:TDesLine=EachIn Designer.obj
If d<>Null And (d.p1=o Or d.p2=o)
Designer.obj.Remove(d)
EndIf
Next
End Function
Function ConfigAllLines()
Designer.ld_red.text = 0
Designer.ld_green.text = 0
Designer.ld_blue.text = 0
Designer.ld_id.text = 0
If GUIDialog(Designer.ldialog,Designer.ld_ok,Designer.ld_cancel,pointer)
Local r:Int = Min(255,Designer.ld_red.text.ToInt())
Local g:Int = Min(255,Designer.ld_green.text.ToInt())
Local b:Int = Min(255,Designer.ld_blue.text.ToInt())
Local id:Int = Designer.ld_id.text.ToInt()
For Local o:TDesLine=EachIn Designer.obj
If o<>Null
o.r=r
o.g=g
o.b=b
o.id=id
EndIf
Next
EndIf
End Function
|