-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgun.p8
167 lines (136 loc) · 3.32 KB
/
gun.p8
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
;
; Draw and move the gun
;
; Gun drawn using "half character" movement through PETSCII chars so
; movement is either by switching internal chars or by moving position
; (and switching chars)
;
; This is pretty simple here, look at the "enemy" code for a more general
; sub-char movement description
;
%import gun_bullets
gun {
ubyte x
ubyte y
ubyte post_hit = 0
byte direction = 0
ubyte gun_color = 14 ; Light blue
const ubyte GUN_MAX_LEFT = base.LBORDER + 1
const ubyte GUN_MAX_RIGHT = base.RBORDER - 3
ubyte[] gun_l = [ 254, 251, 123 ]
ubyte[] gun_r = [ 108, 236, 252 ]
bool leftmost = true;
ubyte i ; shared loop variable
sub set_data() {
post_hit = 0 ; Make sure we have hit animation off at startup
; Default start position of gun
x = ( base.RBORDER - base.LBORDER ) / 2
y = base.DBORDER - 1
draw()
}
sub clear() {
for i in 0 to 2 {
txt.setcc( x + i, y, main.CLR, 0 )
}
}
sub draw() {
if leftmost {
for i in 0 to 2 {
txt.setcc( x + i, y, gun_l[i], gun_color )
}
} else {
for i in 0 to 2 {
txt.setcc( x + i, y, gun_r[i], gun_color )
}
}
}
sub set_left() {
direction = -1
}
sub set_right() {
direction = 1
}
sub move() {
if post_hit > 0 {
post_hit--
if post_hit > 25
return
if post_hit % 2 > 0
gun_color = 0
else
gun_color = 14
}
if direction < 0 {
move_left()
return
}
if direction > 0 {
move_right()
return
}
draw() ; Needed after "kill".
}
sub move_left() {
if ( x <= GUN_MAX_LEFT and leftmost )
return
if leftmost {
clear()
x--
leftmost = false;
draw()
} else {
leftmost=true
draw()
}
}
sub move_right() {
if ( x >= GUN_MAX_RIGHT and not leftmost )
return
if leftmost {
leftmost = false;
draw()
} else {
clear()
x++
leftmost = true
draw()
}
}
sub fire() {
if main.stage_start_delay > 0; No bullets in stage end/start
return
gun_bullets.trigger(x+1, y-1, leftmost)
}
sub check_collision(uword BombRef) -> bool {
; Check that we are not in "quaranteen" from last hit
if post_hit > 0
return false
if BombRef[bombs.BMB_X] < gun.x
return false
if BombRef[bombs.BMB_X] > gun.x + 2
return false
; Check if bomb passes on the left or right side of gun
ubyte dx = BombRef[bombs.BMB_X] - gun.x
when dx {
0 -> { ; bomb to the left and gun in "righmost" pos?
if BombRef[bombs.BMB_LEFTMOST] == 1
if not leftmost
return false
}
2 -> { ; bomb to the right and gun in "leftmost" pos?
if leftmost
if BombRef[bombs.BMB_LEFTMOST] == 0
return false
}
}
; We have a hit, explode and deduct a life
sound.large_explosion()
main.player_lives--
main.printLives()
direction = 0
post_hit = 40
explosion.trigger(gun.x, gun.y-1, main.LEFTMOST);
explosion.trigger(gun.x+1, gun.y-1, main.LEFTMOST);
return true
}
}