forked from Pakz001/Monkey2examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Example - AI taking Cover shooter.monkey2
1183 lines (1085 loc) · 29.7 KB
/
Example - AI taking Cover shooter.monkey2
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
#Import "<std>"
#Import "<mojo>"
Using std..
Using mojo..
Class hud
Field screenwidth:Int,screenheight:Int
Field weapons:String[]=New String[]("gun","RPG")
Method New(screenwidth:Int,screenheight:Int)
Self.screenwidth = screenwidth
Self.screenheight = screenheight
End Method
Method update()
If Keyboard.KeyReleased(Key.Key1)
myplayer.weapon = 1
End If
If Keyboard.KeyReleased(Key.Key2)
myplayer.weapon = 2
End If
End Method
Method draw(canvas:Canvas)
Local x:Int=50
For Local i:Int=0 Until weapons.Length
If myplayer.weapon = i+1
canvas.Color = New Color(.3,.3,.3)
canvas.DrawRect(x,screenheight-42,canvas.Font.TextWidth(weapons[i])+48,20)
End If
canvas.Color = Color.White
canvas.DrawText(i+1+" - "+weapons[i],x,screenheight-40)
'SetColor 0,0,0
x+=canvas.Font.TextWidth(weapons[i])+48
Next
End Method
End Class
Class smoke
Field x:Float,y:Float
Field poly:Float[]
Field w:Int,h:Int
Field dx:Float,dy:Float
Field alpha:Float=Rnd(0.1,0.7)
Field deleteme:Bool
Field timeoutcnt:Int
Method New(x:Int,y:Int)
Self.x = x + Rnd(-15,15)
Self.y = y + Rnd(-15,15)
w = Rnd(10,32)
h = Rnd(10,32)
setpos(Self.x,Self.y)
timeoutcnt = Rnd(40,150)
End Method
Method setpos(x1:Float,y1:Float)
Local angle:Int=Rnd(360)
Local distance:Int=Rnd(0,60)
For Local i:Int=0 Until distance
x1+=Cos(angle)*1
y1+=Sin(angle)*1
If mymap.mapcollide(x1,y1,w,h) Then
w = 0
h = 0
deleteme = True
Return
End If
Next
dx = Cos(angle)*Rnd(.1,.7)
dy = Sin(angle)*Rnd(.1,.7)
Self.x = x1
Self.y = y1
'make the poly
Local numpoly:Int=Rnd(4,10)*2
poly = New Float[numpoly+2]
Local angstep:Int=340/(numpoly/2)
Local d:Int=w
Local s:Int=0
angle=0
While angle<360
Local d2:Int=Rnd(5,d)
poly[s] = Self.x+Cos(angle)*d2
poly[s+1] = Self.y+Sin(angle)*d2
s+=2
angle+=angstep
Wend
End Method
Method update()
timeoutcnt-=1
If timeoutcnt<0 Then deleteme = True
If mymap.mapcollide(x,y,w,w) = False Then
x+=dx ; y+=dy
For Local i:Int=0 Until poly.Length-1 Step 2
poly[i] += dx
poly[i+1] += dy
Next
End If
End Method
Method draw(canvas:Canvas)
canvas.Color = New Color(.6,.6,.6,alpha)
canvas.DrawPoly(poly)
'DrawOval x,y,w,h
End Method
End Class
Class particle
Field x:Float,y:Float
Field w:Float,h:Float
Field size:Float
Field poly:Float[]
Field mx:Float,my:Float
Field speed:Int
Field deleteme:Bool
Field timeout:Int
Field bouncecountdown:Int
Field time:Int
Field hpdamage:Int
Field hp:Int 'how strong is the particle
Field shooter:String
Method New(x:Int,y:Int,shooter:String)
Self.shooter = shooter
Self.x = x+Rnd(-5,5)
Self.y = y+Rnd(-5,5)
speed = Rnd(1,4)
mx = Rnd(0.1,1)
my = Rnd(0.1,1)
If Rnd(1)<.5 Then mx=-mx
If Rnd(1)<.5 Then my=-my
size = Rnd(3,mymap.tilewidth/3)
w = Rnd(3,mymap.tilewidth)
h = Rnd(3,mymap.tileheight)
timeout = Rnd(20,100)
bouncecountdown = Rnd(1,3)
hpdamage = 3
hp = Rnd(1,5)
'make the poly
Local angle:Int=0
Local numpoly:Int=Rnd(4,10)*2
poly = New Float[numpoly+2]
Local angstep:Int=340/(numpoly/2)
Local d:Int=size
Local st:Int=0
angle=0
While angle<360
Local d2:Int=Rnd(5,d)
poly[st] = Self.x+Cos(angle)*d2
poly[st+1] = Self.y+Sin(angle)*d2
st+=2
angle+=angstep
Wend
End Method
Method update()
For Local i:Int=0 Until speed
x+=mx
y+=my
'update the poly
For Local ii:Int=0 Until poly.Length-1 Step 2
poly[ii] += mx
poly[ii+1] += my
Next
If mymap.mapcollide(x,y,size,size) = True Then
mx = -mx
my = -my
'w/=3
'h/=3
bouncecountdown-=1
If bouncecountdown<1 Then
deleteme = True
End If
End If
Next
' if particle collide with enemy
If shooter = "player"
For Local ii:=Eachin myenemy
If distance(x,y,ii.x,ii.y)<size Then
ii.deleteme = True
Return
End If
Next
End If
If shooter = "enemy"
If distance(myplayer.x,myplayer.y,x,y)<size
myplayer.died = True
Return
End If
End If
time+=1
If time>timeout Then deleteme = True
End Method
Method draw(canvas:Canvas)
canvas.Color = Color.Red
'DrawOval x,y,w,h
canvas.DrawPoly(poly)
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class rpg
Field x:Float,y:Float
Field w:Float,h:Float
Field mx:Float
Field my:Float
Field speed:Int 'how many updates per call
Field hpdamage:Int=3
Field deleteme:Bool=False 'when remove from game
Field shooter:String
Method New(x:Int,y:Int,direction:String,shooter:String)
Self.shooter = shooter
speed = 3 'set movement speed
w = myplayer.w / 2
h = myplayer.h / 2
If w<3 Then w = 3
If h<3 Then h = 3
Self.x = x
Self.y = y
Select direction
Case "left"
mx=-1
my+=Rnd(-.04,.04)
Case "right"
mx=1
my+=Rnd(-.04,.04)
Case "up"
my=-1
mx+=Rnd(-.04,.04)
Case "down"
my=1
mx+=Rnd(-.04,.04)
Case "leftup"
mx=-1+Rnd(-0.2,0.2)
my=-1+Rnd(-0.2,0.2)
Case "rightup"
mx=1+Rnd(-0.2,0.2)
my=-1+Rnd(-0.2,0.2)
Case "leftdown"
mx=-1+Rnd(-0.2,0.2)
my=1+Rnd(-0.2,0.2)
Case "rightdown"
mx=1+Rnd(-0.2,0.2)
my=1+Rnd(-0.2,0.2)
End Select
End Method
' rpg logic
Method update()
For Local i:Int=0 Until speed
x+=mx
y+=my
' if collide with map
If mymap.mapcollide(x,y,w,h) Then
deleteme = True
' explode the rpg
For Local ii:Int=0 Until 20
myparticle.AddLast(New particle(x,y,shooter))
Next
For Local ii:Int=0 Until 60
mysmoke.AddLast(New smoke(x,y))
Next
Return
End If
'if collide with enemy
If shooter = "player"
For Local ii:=Eachin myenemy
If distance(x,y,ii.x+(ii.w/2),ii.y+(ii.h/2))<8 Then
deleteme = True
' Explode the rpg
For Local iii:Int=0 Until 10
myparticle.AddLast(New particle(x,y,"player"))
mysmoke.AddLast(New smoke(x,y))
Next
End If
Next
End If
'if collide with player
If shooter = "enemy"
If distance(x,y,myplayer.x+(myplayer.w/2),myplayer.y+(myplayer.h/2))<8 Then
' Explode the rpg
For Local iii:Int=0 Until 10
myparticle.AddLast(New particle(x,y,"enemy"))
mysmoke.AddLast(New smoke(x,y))
Next
End If
End If
Next
End Method
Method draw(canvas:Canvas)
canvas.Color = Color.Yellow
canvas.DrawOval(x,y,w,h)
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class enemy
Field x:Int,y:Int
Field w:Int,h:Int
Field state:String
Field deleteme:Bool
Field cooldown:Int
Field waittime:Int
Field path:List<pathnode> = New List<pathnode>
Method New()
w = mymap.tilewidth-4
h = mymap.tileheight-4
findstartpos()
End Method
Method update()
' enemy shoot diagnal
If Rnd(100)<2 Then
Local px:Int=myplayer.x
Local py:Int=myplayer.y
If distance(px,py,x,y) < 200
If px<x And py<y And mymap.mapcollide(x-5,y-5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"leftup","enemy"))
If checkrpg(x,y,"leftup") Then myrpg.AddLast(New rpg(x,y,"leftup","enemy"))
End If
If px>x And py<y And mymap.mapcollide(x+5,y-5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"rightup","enemy"))
If checkrpg(x,y,"rightup") Then myrpg.AddLast(New rpg(x,y,"rightup","enemy"))
End If
If px<x And py>y And mymap.mapcollide(x-5,y+5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"leftdown","enemy"))
If checkrpg(x,y,"leftdown") Then myrpg.AddLast(New rpg(x,y,"leftdown","enemy"))
End If
If px>x And py>y And mymap.mapcollide(x+5,y+5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"rightdown","enemy"))
If checkrpg(x,y,"rightdown") Then myrpg.AddLast(New rpg(x,y,"rightdown","enemy"))
End If
End If
End If
'enemy shoot horizontal vertical
If Rnd(100)<2 Then
Local px:Int=myplayer.x
Local py:Int=myplayer.y
If distance(px,py,x,y) < 200
If px<x And mymap.mapcollide(x-5,y,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"left","enemy"))
If checkrpg(x,y,"left") Then myrpg.AddLast(New rpg(x,y,"left","enemy"))
End If
If px>x And mymap.mapcollide(x+5,y-5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"right","enemy"))
If checkrpg(x,y,"right") Then myrpg.AddLast(New rpg(x,y,"right","enemy"))
End If
If py>y And mymap.mapcollide(x,y+5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"down","enemy"))
If checkrpg(x,y,"down") Then myrpg.AddLast(New rpg(x,y,"down","enemy"))
End If
If py<y And mymap.mapcollide(x,y-5,w/3,h/3) = False
mybullet.AddLast(New bullet(x,y,"up","enemy"))
If checkrpg(x,y,"down") Then myrpg.AddLast(New rpg(x,y,"down","enemy"))
End If
End If
End If
' move around the enemy
If path.Empty = False
' add 2 to the destination coords or gets stuck
Local dx:Int=path.First.x*mymap.tilewidth+2
Local dy:Int=path.First.y*mymap.tileheight+2
If x<dx And mymap.mapcollide(x+1,y,w,h) = False Then x+=1
If x>dx And mymap.mapcollide(x-1,y,w,h) = False Then x-=1
If y<dy And mymap.mapcollide(x,y+1,w,h) = False Then y+=1
If y>dy And mymap.mapcollide(x,y-1,w,h) = False Then y-=1
'if near destination
If distance(x,y,dx,dy) < 2 Then
path.RemoveFirst()
x = dx
y = dy
End If
End If
'if no more moves left find new cover spot
If path.Empty
If waittime>0 Then waittime-=1
If waittime<=0
For Local i:Int=0 Until 100
Local dx:Int=Rnd(2,mymap.mapwidth-2)
Local dy:Int=Rnd(2,mymap.mapheight-2)
If mymap.covermap[dx,dy] = 1 Then
createpath(dx,dy)
waittime=200
Exit
End If
Next
End If
End If
'if player is nearby then move to closest cover spot
If distance(myplayer.x,myplayer.y,x,y) < 160
If cooldown>0 Then cooldown-=1
If cooldown=0
cooldown=100
Local d:Int=10000
Local destx:Int,desty:Int
Local fnd:Bool=False
' random spots until coverspot, log closest
For Local i:Int=0 Until 250
Local dx:Int=Rnd(2,mymap.mapwidth-2)
Local dy:Int=Rnd(2,mymap.mapheight-2)
If mymap.covermap[dx,dy] = 1 Then
Local d2:Int = distance(dx,dy,x/mymap.tilewidth,y/mymap.tileheight)
If d2 < d Then
d = d2
destx = dx
desty = dy
fnd=True
End If
End If
Next
' if we have a new dest then plan it
If fnd=True Then createpath(destx,desty)
End If
End If
End Method
Method createpath(ex:Int,ey:Int)
path = New List<pathnode>
Local dx:Int=x/mymap.tilewidth
Local dy:Int=y/mymap.tileheight
' x = dx*mymap.tilewidth
' y = dy*mymap.tileheight
myastar.findpath(dx,dy,ex,ey)
For Local i:=Eachin myastar.path
path.AddLast(New pathnode(i.x,i.y))
Next
End Method
Method drawpath(canvas:Canvas)
canvas.Color = Color.Red
For Local i:=Eachin path
canvas.DrawOval(i.x*mymap.tilewidth,i.y*mymap.tileheight,w/2,h/2)
Next
End Method
Method findstartpos()
Local cnt:Int=400
Local cnt2:Int=0
Repeat
Local nx:Int=Rnd(0,mymap.screenwidth-20)
Local ny:Int=Rnd(0,mymap.screenheight-20)
Local found:Bool=True
' if the map position a tile
If mymap.mapcollide(nx,ny,w,h) Then found = False
' if the position is to close other enemy
For Local i:=Eachin myenemy
If i=Self Then Continue
If distance(i.x,i.y,nx,ny) < 30 Then found = False ;Exit
Next
' if the position to close to player
If distance(myplayer.x,myplayer.y,nx,ny) < cnt Then found = False
If found = True Then
x = nx
y = ny
Exit
Else
If cnt>32 Then cnt -=1
End If
Forever
End Method
'
' This method fires a fake rpg to see if it hits the player.
'
Method checkrpg:Bool(x:Int,y:Int,direction:String)
' set how many times the ai uses the rpg
'If Rnd(50)>3 Then Return False
Local mx:Float,my:Float
Select direction
Case "left"
mx=-1;my=0
Case "right"
mx=1;my=0
Case "up"
mx=0;my=-1
Case "down"
mx=0;my=1
Case "leftup"
mx=-1;my=-1
Case "leftdown"
mx=-1;my=1
Case "rightup"
mx=1;my=-1
Case "rightdown"
mx=1;my=1
End Select
Local px:Float=x,py:Float=y
Local dist:Int=256
For Local i:Int=0 Until dist
px += mx
py += my
' if hit wall then check particle hit against player
If mymap.mapcollide(px-5,py-5,10,10) Then
For Local ii:Int=0 Until 50
Local px2:Float=px-Rnd(-10,10)
Local py2:Float=py-Rnd(-10,10)
Local mx2:Float=Rnd(-1,1)
Local my2:Float=Rnd(-1,1)
For Local iii:Int=0 Until 100
px2+=mx2
py2+=my2
If mymap.mapcollide(px2-5,py2-5,10,10) Then Exit
If distance(myplayer.x,myplayer.y,px2,py2) < 10 Then Return True
Next
Next
Return False
End If
If distance(px,py,myplayer.x,myplayer.y) < 50 Then Return True
Next
Return False
End Method
Method draw(canvas:Canvas)
canvas.Color = Color.Brown
canvas.DrawOval(x,y,w,h)
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class bullet
Field x:Float,y:Float
Field w:Int,h:Int
Field mx:Int,my:Int
Field direction:String
Field deleteme:Bool=False
Field speed:Int=2
Field shooter:String
Method New(x:Int,y:Int,direction:String,shooter:String)
Self.x = x
Self.y = y
Self.w = myplayer.w/3
Self.h = myplayer.h/3
Self.shooter = shooter
Self.direction = direction
If direction = "left" Then mx = -1
If direction = "right" Then mx = 1
If direction = "up" Then my = -1
If direction = "down" Then my = 1
If direction = "leftup" Then mx = -1 ; my = -1
If direction = "rightup" Then mx = 1 ; my = -1
If direction = "leftdown" Then mx = -1 ; my = 1
If direction = "rightdown" Then mx = 1 ; my = 1
End Method
Method update()
'move the bullet and see collision with walls
For Local i:Int=0 Until speed
x += mx
y += my
If x < 0 Or x > mymap.screenwidth Then deleteme = True
If y < 0 Or y > mymap.screenheight Then deleteme = True
If mymap.mapcollide(x,y,w,h) Then deleteme = True
Next
' collision with bullet vs enemy
' delete bullet and delete enemy
If shooter = "player"
For Local i:=Eachin myenemy
If distance(i.x+(i.w/2),i.y+(i.h/2),x,y)<myplayer.w/1.5 Then
deleteme = True
i.deleteme = True
End If
Next
End If
' collision with bullet vs player
' delete bullet and kill player
If shooter = "enemy"
If distance(myplayer.x+(myplayer.w/2),myplayer.y+(myplayer.h/2),x,y)<myplayer.w/1.5 Then
deleteme = True
myplayer.died = True
End If
End If
End Method
Method draw(canvas:Canvas)
canvas.Color = Color.Yellow
canvas.DrawOval(x,y,w,h)
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class player
Field x:Float,y:Float
Field w:Int,h:Int
Field direction:String="up"
Field died:Bool=False
Field weapon:Int
Method New()
w = mymap.tilewidth-4
h = mymap.tileheight-4
findstartingpos()
End Method
Method update()
playercontrols()
makecovermap()
End Method
Method playercontrols()
' movement
If Keyboard.KeyDown(Key.Up) And Not mymap.mapcollide(x,y-1,w,h)
y-=1
direction = "up"
End If
If Keyboard.KeyDown(Key.Left) And Not mymap.mapcollide(x-1,y,w,h)
x-=1
direction = "left"
End If
If Keyboard.KeyDown(Key.Right) And Not mymap.mapcollide(x+1,y,w,h)
x+=1
direction = "right"
End If
If Keyboard.KeyDown(Key.Down) And Not mymap.mapcollide(x,y+1,w,h)
y+=1
direction = "down"
End If
If Keyboard.KeyDown(Key.Left) And Keyboard.KeyDown(Key.Up) Then direction = "leftup"
If Keyboard.KeyDown(Key.Right) And Keyboard.KeyDown(Key.Up) Then direction = "rightup"
If Keyboard.KeyDown(Key.Left) And Keyboard.KeyDown(Key.Down) Then direction = "leftdown"
If Keyboard.KeyDown(Key.Right) And Keyboard.KeyDown(Key.Down) Then direction = "rightdown"
' shooting
If Keyboard.KeyHit(Key.F)
If weapon = 1 Then mybullet.AddLast(New bullet(x,y,direction,"player"))
If weapon = 2 Then myrpg.AddLast(New rpg(x,y,direction,"player"))
End If
End Method
Method makecovermap()
If Rnd(60)>2 Then Return
For Local y:Int=0 Until mymap.mapheight
For Local x:Int=0 Until mymap.mapwidth
mymap.covermap[x,y] = 1
If mymap.map[x,y] <> 0 Then mymap.covermap[x,y] = 2
Next
Next
' shoot bullets into random directions around
' the player and see if any position is a cover position
For Local i:Int=0 Until 600
Local x2:Float=x
Local y2:Float=y
Local xa:Float=Rnd(-1,1)
Local ya:Float=Rnd(-1,1)
For Local d:Int=0 Until 40
x2+=xa*Float(mymap.tilewidth/2)
y2+=ya*Float(mymap.tileheight/2)
Local mx:Int=x2/mymap.tilewidth
Local my:Int=y2/mymap.tileheight
If mx>=0 And my>=0 And mx<mymap.mapwidth And my<mymap.mapheight
mymap.covermap[mx,my] = 0
Else
Exit
End If
If mymap.mapcollide(x2,y2,w/3,h/3) Then Exit
Next
Next
'
' Remove every coverpoint except if they
' are near a wall.
For Local y2:Int=0 Until mymap.mapheight
For Local x2:Int=0 Until mymap.mapwidth
Local remove:Bool=True
For Local y3:Int=y2-1 To y2+1
For Local x3:Int=x2-1 To x2+1
If x3<0 Or y3<0 Or x3>=mymap.mapwidth Or y3>=mymap.mapheight Then Continue
If mymap.map[x3,y3] <> 0 Then remove = False ; Exit
Next
Next
If remove = True Then
mymap.covermap[x2,y2] = 0
End If
Next
Next
'if closer to the player then higher movement cost per tile
For Local y2:Int=0 Until mymap.mapheight
For Local x2:Int=0 Until mymap.mapwidth
If myastar.map[x2,y2] <> 1000 Then myastar.map[x2,y2] = 100-distance(myplayer.x/mymap.tilewidth,myplayer.y/mymap.tileheight,x2,y2)
If myastar.map[x2,y2] < 85 Then myastar.map[x2,y2] = 0
If mymap.covermap[x2,y2] = 1 Then myastar.map[x2,y2] = 0
Next
Next
End Method
Method findstartingpos()
Repeat
Local x1:Int = Rnd(0,mymap.mapwidth)
Local y1:Int = Rnd(0,mymap.mapheight)
Local istaken:Bool=False
For Local x2:Int=x1-4 To x1+4
For Local y2:Int=y1-4 To y1+4
If x2<0 Or y2<0 Or x2>=mymap.mapwidth Or y2>=mymap.mapheight Then Continue
If mymap.map[x2,y2] <> 0 Then istaken = True ; Exit
Next
Next
If istaken=False Then
x = x1*mymap.tilewidth
y = y1*mymap.tileheight
Exit
End If
Forever
End Method
Method draw(canvas:Canvas)
canvas.Color = Color.White
canvas.DrawOval(x,y,w,h)
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class astar
Field mapwidth:Int,mapheight:Int
Field sx:Int,sy:Int
Field ex:Int,ey:Int
Field olmap:Int[,]
Field clmap:Int[,]
Field map:Int[,]
Field ol:List<openlist> = New List<openlist>
Field cl:List<closedlist> = New List<closedlist>
Field path:List<pathnode> = New List<pathnode>
Field xstep:Int[] = New int[](0,-1,1,0)
Field ystep:Int[] = New Int[](-1,0,0,1)
Method New()
mapwidth = mymap.mapwidth
mapheight = mymap.mapheight
olmap = New Int[mapwidth,mapheight]
clmap = New Int[mapwidth,mapheight]
map = New Int[mapwidth,mapheight]
' Copy the map into the astar class map
For Local y:Int=0 Until mapheight
For Local x:Int=0 Until mapwidth
map[x,y] = mymap.map[x,y]
Next
Next
End Method
' This creates the map and copies the
' path in the path list
Method findpath:Bool(sx:Int,sy:Int,ex:Int,ey:Int)
If sx = ex And sy = ey Then Return False
Self.sx = sx
Self.sy = sy
Self.ex = ex
Self.ey = ey
For Local y:Int=0 Until mapheight
For Local x:Int=0 Until mapwidth
olmap[x,y] = 0
clmap[x,y] = 0
Next
Next
ol.Clear()
cl.Clear()
path.Clear()
ol.AddFirst(New openlist(sx,sy))
Local tx:Int
Local ty:Int
Local tf:Int
Local tg:Int
Local th:Int
Local tpx:Int
Local tpy:Int
Local newx:Int
Local newy:Int
Local lowestf:Int
olmap[sx,sy] = 1
While ol.Empty = False
lowestf = 100000
For Local i:=Eachin ol
If i.f < lowestf
lowestf = i.f
tx = i.x
ty = i.y
tf = i.f
tg = i.g
th = i.h
tpx = i.px
tpy = i.py
End If
Next
If tx = ex And ty = ey
cl.AddLast(New closedlist(tx,ty,tpx,tpy))
findpathback()
Return True
Else
removefromopenlist(tx,ty)
olmap[tx,ty] = 0
clmap[tx,ty] = 1
cl.AddLast(New closedlist(tx,ty,tpx,tpy))
For Local i:Int=0 Until xstep.Length
Local x:Int=xstep[i]
Local y:Int=ystep[i]
newx = tx+x
newy = ty+y
If newx>=0 And newy>=0 And newx<mapwidth And newy<mapheight
If olmap[newx,newy] = 0
If clmap[newx,newy] = 0
olmap[newx,newy] = 1
Local gg:Int = map[newx,newy]+1
Local hh:Int = distance(newx,newy,ex,ey)
Local ff:Int = gg+hh
ol.AddLast(New openlist(newx,newy,ff,gg,hh,tx,ty))
End If
End If
End If
Next
End If
Wend
Return False
End Method
Method drawpath:Void(canvas:Canvas)
Local cnt:Int=1
For Local i:=Eachin path
canvas.Color = Color.Yellow
canvas.DrawOval(i.x*mymap.tilewidth,i.y*mymap.tileheight,4,4)
canvas.Color = Color.White
canvas.DrawText(cnt,i.x*mymap.tilewidth,i.y*mymap.tileheight)
cnt+=1
Next
End Method
' Here we calculate back from the end back to the
' start and create the path list.
Method findpathback:Bool()
Local x:Int=ex
Local y:int=ey
path.AddFirst(New pathnode(x,y))
Repeat
For Local i:=Eachin cl
If i.x = x And i.y = y
x = i.px
y = i.py
path.AddFirst(New pathnode(x,y))
End If
Next
If x = sx And y = sy Then Return True
Forever
Return false
End Method
Method removefromopenlist:Void(x1:Int,y1:Int)
For Local i:=Eachin ol
If i.x = x1 And i.y = y1
ol.Remove(i)
Exit
End If
Next
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
Class map
Field mapwidth:Int
Field mapheight:Int
Field screenwidth:Int
Field screenheight:Int
Field tilewidth:Float
Field tileheight:Float
Field map:Int[,]
Field covermap:Int[,]
Method New(screenwidth:Int,screenheight:Int,mapwidth:Int,mapheight:Int)
Self.screenheight = screenheight
Self.screenwidth = screenwidth
Self.mapwidth = mapwidth
Self.mapheight = mapheight
tilewidth = Float(screenwidth) / Float(mapwidth)
tileheight = Float(screenheight) / Float(mapheight)
map = New Int[mapwidth,mapheight]
covermap = New Int[mapwidth,mapheight]
makemap(10)
End Method
Method makemap:Void(numobstacles:Int)
For Local y:Int=0 Until mapheight
For Local x:int=0 Until mapwidth
map[x,y] = 0
Next
Next
' Here we create short lines on the map
' and sometimes draw some random blocks near them.
For Local i:Int=0 Until numobstacles
Local x1:Int=Rnd(4,mapwidth-4)
Local y1:Int=Rnd(4,mapheight-4)
Local dist:Int=Rnd(3,5)
Local angle:Int=Rnd(0,360)
Local x2:Float=x1
Local y2:Float=y1
While dist >= 0
x2 += Cos(angle) * 1
y2 += Sin(angle) * 1
dist -= 1
If x2<0 Or y2<0 Or x2>=mapwidth Or y2>=mapheight Then continue
map[x2,y2] = 1000
' If Rnd(10) < 2 Then
' If x2>2 And x2<mymap.mapwidth-2 And y2>2 And y2<mymap.mapheight-2 Then
' map[x2+Rnd(-1,1)][y2+Rnd(-1,1)] = 10
' end if
' End If
Wend
Next
End Method
Method mapcollide:Bool(x:Int,y:Int,w:Int,h:Int)
Local lefttopx:Int =((x)/tilewidth)
Local lefttopy:Int =((y)/tileheight)
Local righttopx:Int =((x+w)/tilewidth)
Local righttopy:Int =((y)/tileheight)
Local leftbottomx:Int =((x)/tilewidth)
Local leftbottomy:Int =((y+h)/tileheight)
Local rightbottomx:Int =((x+w)/tilewidth)
Local rightbottomy:Int =((y+h)/tileheight)
If lefttopx < 0 Or lefttopx >= mapwidth Then Return True
If lefttopy < 0 Or lefttopy >= mapheight Then Return True
If righttopx < 0 Or righttopx >= mapwidth Then Return True
If righttopy < 0 Or righttopy >= mapheight Then Return True
If leftbottomx < 0 Or leftbottomx >= mapwidth Then Return True
If leftbottomy < 0 Or leftbottomy >= mapheight Then Return True
If rightbottomx < 0 Or rightbottomx >= mapwidth Then Return True
If rightbottomy < 0 Or rightbottomy >= mapheight Then Return True
If map[lefttopx,lefttopy] <> 0 Then Return True
If map[righttopx,righttopy] <> 0 Then Return True
If map[leftbottomx,leftbottomy] <> 0 Then Return True
If map[rightbottomx,rightbottomy] <> 0 Then Return True
Return False
End Method
Method drawmap:Void(canvas:Canvas)
For Local y:Int=0 Until mapheight
For Local x:Int=0 Until mapwidth
If map[x,y] = 1000
canvas.Color = Color.White
canvas.DrawRect(x*tilewidth,y*tileheight,tilewidth,tileheight)
End If
Next
Next
End Method
Method drawcovermap:Void(canvas:Canvas)
For Local y:Int=0 Until mapheight
For Local x:Int=0 Until mapwidth
If covermap[x,y] = 1
canvas.Color = New Color(0,0.1,0)
canvas.DrawOval(x*mymap.tilewidth,y*mymap.tileheight,tilewidth,tileheight)
End If
Next
Next
End Method
Function distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Function
End Class
' The open list used by the astar
Class openlist
Field x:Int
Field y:Int
Field f:Int
Field g:Int
Field h:Int
Field px:Int
Field py:Int
Method New( x:Int=0,y:Int=0,f:Int=0,
g:Int=0,h:Int=0,px:Int=0,py:Int=0)
Self.x=x
Self.y=y
Self.f=f
Self.g=g
Self.h=h
Self.px=px
Self.py=py