-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject 6.py
More file actions
356 lines (297 loc) · 13 KB
/
Project 6.py
File metadata and controls
356 lines (297 loc) · 13 KB
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
# Spaceship
# To play this game, please visit this link: http://www.codeskulptor.org/#user29_ieEcrAldJk_7.py
# and hit the play button to run the program.
# HOW TO PLAY:
# This game is your battle with meteors.
# You're onboard a ship named "P". "P" is my first initial. You have my blessing :D
# Use the arrow keys to navigate the vast space and use the space bar to fire missles.
# When your missle hits a meteor, the meteor goes away and you gain 10 points.
# When a meteor hits your ship, you lose 1 life. And you have 3 lives total.
import simplegui
import math
import random
# globals for user interface
WIDTH = 800
HEIGHT = 600
rock_group = set([])
missile_group = set([])
time = 0.5
score = 0
lives = 3
started = False
class ImageInfo:
def __init__(self, center, size, radius = 0, lifespan = None, animated = False):
self.center = center
self.size = size
self.radius = radius
if lifespan:
self.lifespan = lifespan
else:
self.lifespan = float('inf')
self.animated = animated
def get_center(self):
return self.center
def get_size(self):
return self.size
def get_radius(self):
return self.radius
def get_lifespan(self):
return self.lifespan
def get_animated(self):
return self.animated
# art assets created by Kim Lathrop, may be freely re-used in non-commercial projects, please credit Kim
# debris images - debris1_brown.png, debris2_brown.png, debris3_brown.png, debris4_brown.png
# debris1_blue.png, debris2_blue.png, debris3_blue.png, debris4_blue.png, debris_blend.png
debris_info = ImageInfo([320, 240], [640, 480])
debris_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/debris2_blue.png")
# nebula images - nebula_brown.png, nebula_blue.png
nebula_info = ImageInfo([400, 300], [800, 600])
nebula_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/nebula_blue.png")
# splash image
splash_info = ImageInfo([200, 150], [400, 300])
splash_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/splash.png")
# ship image
ship_info = ImageInfo([45, 45], [90, 90], 35)
ship_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/double_ship.png")
# missile image - shot1.png, shot2.png, shot3.png
missile_info = ImageInfo([5,5], [10, 10], 3, 50)
missile_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/shot2.png")
# asteroid images - asteroid_blue.png, asteroid_brown.png, asteroid_blend.png
asteroid_info = ImageInfo([45, 45], [90, 90], 40)
asteroid_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/asteroid_blue.png")
# animated explosion - explosion_orange.png, explosion_blue.png, explosion_blue2.png, explosion_alpha.png
explosion_info = ImageInfo([64, 64], [128, 128], 17, 24, True)
explosion_image = simplegui.load_image("http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/explosion_alpha.png")
# sound assets purchased from sounddogs.com, please do not redistribute
soundtrack = simplegui.load_sound("http://commondatastorage.googleapis.com/codeskulptor-assets/sounddogs/soundtrack.mp3")
missile_sound = simplegui.load_sound("http://commondatastorage.googleapis.com/codeskulptor-assets/sounddogs/missile.mp3")
missile_sound.set_volume(.5)
ship_thrust_sound = simplegui.load_sound("http://commondatastorage.googleapis.com/codeskulptor-assets/sounddogs/thrust.mp3")
explosion_sound = simplegui.load_sound("http://commondatastorage.googleapis.com/codeskulptor-assets/sounddogs/explosion.mp3")
# helper functions to handle transformations
def angle_to_vector(ang):
return [math.cos(ang), math.sin(ang)]
def dist(p,q):
return math.sqrt((p[0]-q[0])**2+(p[1]-q[1])**2)
# Ship class
class Ship:
def __init__(self, pos, vel, angle, image, info):
self.pos = [pos[0],pos[1]]
self.vel = [vel[0],vel[1]]
self.thrust = False
self.angle = angle
self.angle_vel = 0
self.image = image
self.image_center = info.get_center()
self.image_size = info.get_size()
self.radius = info.get_radius()
self.forward = [0,0]
def get_position(self):
return self.pos
def get_radius(self):
return self.radius
def draw(self,canvas):
canvas.draw_image(self.image, self.image_center, self.image_size, self.pos, self.image_size, self.angle)
if self.thrust == True:
canvas.draw_image(self.image, [self.image_center[0] + 90,
self.image_center[1]], self.image_size, self.pos, self.image_size, self.angle)
def update(self):
self.angle += self.angle_vel
self.pos[0] = self.pos[0] + self.vel[0] % WIDTH
self.pos[1] = self.pos[1] + self.vel[1] % HEIGHT
self.pos[0] = self.pos[0] % WIDTH
self.pos[1] = self.pos[1] % HEIGHT
# the following two lines are to induce friction, which caps maximum velocity
# and also causes ship to slowly stop by itself when thrusters are off
self.vel[0] *= .99
self.vel[1] *= .99
if self.thrust == True:
self.forward = angle_to_vector(self.angle)
self.vel[0] += self.forward[0] * .2
self.vel[1] += self.forward[1] * .2
def keydown(self,key):
ang_vel = .09
if key == simplegui.KEY_MAP['left']:
self.angle_vel = - ang_vel
elif key == simplegui.KEY_MAP['right']:
self.angle_vel = ang_vel
elif key == simplegui.KEY_MAP['up']:
self.thrust = True
if self.thrust == True:
sound = ship_thrust_sound
sound.play()
elif key == simplegui.KEY_MAP['space']:
self.shoot()
def keyup(self,key):
angle_vel = 0
if key == simplegui.KEY_MAP['right']:
my_ship.angle_vel = angle_vel
elif key == simplegui.KEY_MAP['left']:
my_ship.angle_vel = angle_vel
elif key == simplegui.KEY_MAP['up']:
self.thrust = False
if self.thrust == False:
self.forward = [0,0]
sound = ship_thrust_sound
sound.pause()
def shoot(self):
global missile_group
forward = angle_to_vector(self.angle)
missile_pos = [self.pos[0] + self.radius * forward[0], self.pos[1] + self.radius * forward[1]]
missile_vel = [self.vel[0] + 6 * forward[0], self.vel[1] + 6 * forward[1]]
missile_group.add(Sprite(missile_pos, missile_vel, self.angle,
0, missile_image, missile_info, missile_sound))
# Sprite class
class Sprite:
def __init__(self, pos, vel, ang, ang_vel, image, info, sound = None):
self.pos = [pos[0],pos[1]]
self.vel = [vel[0],vel[1]]
self.angle = ang
self.angle_vel = ang_vel
self.image = image
self.image_center = info.get_center()
self.image_size = info.get_size()
self.radius = info.get_radius()
self.lifespan = info.get_lifespan()
self.animated = info.get_animated()
self.age = 0
if sound:
sound.rewind()
sound.play()
def get_position(self):
return self.pos
def get_radius(self):
return self.radius
def draw(self, canvas):
global started
if started:
canvas.draw_image(self.image, self.image_center,
self.image_size, self.pos, self.image_size, self.angle)
def update(self):
self.pos[0] = (self.pos[0] + self.vel[0]) % WIDTH
self.pos[1] = (self.pos[1] + self.vel[1]) % HEIGHT
self.angle += self.angle_vel
self.age += 1
if self.age < self.lifespan:
return True
else:
return False
def collide(self, other_object):
other_pos = other_object.get_position()
other_rad = other_object.get_radius()
distance = dist(self.pos,other_pos)
if distance < self.radius + other_rad:
return True
explosion_sound.play()
else:
return False
def draw(canvas):
global time, lives, started, rock_group
# animate background
time += 1
center = debris_info.get_center()
size = debris_info.get_size()
wtime = (time / 8) % center[0]
canvas.draw_image(nebula_image, nebula_info.get_center(), nebula_info.get_size(), [WIDTH/2, HEIGHT/2], [WIDTH, HEIGHT])
canvas.draw_image(debris_image, [center[0]-wtime, center[1]], [size[0]-2*wtime, size[1]],
[WIDTH/2+1.25*wtime, HEIGHT/2], [WIDTH-2.5*wtime, HEIGHT])
canvas.draw_image(debris_image, [size[0]-wtime, center[1]], [2*wtime, size[1]],
[1.25*wtime, HEIGHT/2], [2.5*wtime, HEIGHT])
# draw ship and sprites
my_ship.draw(canvas)
process_sprite_group(rock_group,canvas)
process_sprite_group(missile_group,canvas)
# update ship and sprites
my_ship.update()
# missile_group.update()
if group_collide(rock_group, my_ship) > 0:
lives -= 1
group_group_collide(missile_group, rock_group)
canvas.draw_text("P", (my_ship.get_position()[0]-7,my_ship.get_position()[1]) , 30, "Yellow")
# end of game handling
if lives == 0:
started = False
rock_group = set([])
timer.stop()
soundtrack.rewind()
# draw score and lives
canvas.draw_text("Lives Left: " + str(lives), (WIDTH * 0.05, HEIGHT * 0.1), 24, "Red")
canvas.draw_text("Points: " + str(score), (WIDTH * 0.8, HEIGHT * 0.1), 24, "Red")
# draw splash screen if not started
if not started:
canvas.draw_image(splash_image, splash_info.get_center(),
splash_info.get_size(), [WIDTH/2, HEIGHT/2],
splash_info.get_size())
# draw splash screen at launch and after each game ends
def click(pos):
global started, lives
center = [WIDTH / 2, HEIGHT / 2]
size = splash_info.get_size()
inwidth = (center[0] - size[0] / 2) < pos[0] < (center[0] + size[0] / 2)
inheight = (center[1] - size[1] / 2) < pos[1] < (center[1] + size[1] / 2)
if (not started) and inwidth and inheight:
started = True
lives = 3
timer.start()
rock_spawner()
soundtrack.play()
# feeds draw handler for sprite groups
def process_sprite_group(group_name, canvas_name):
for sprite in group_name:
remove_sprite = set([])
sprite.draw(canvas_name)
if sprite.update() == False:
remove_sprite.add(sprite)
group_name.difference_update(remove_sprite)
# removes sprites upon collision with ship
def group_collide(group, other_object):
remove_set = set([])
for sprite in group:
if sprite.collide(other_object) == True:
remove_set.add(sprite)
group.difference_update(remove_set)
if len(remove_set) > 0:
return True
# handles collisions between missiles and rocks
def group_group_collide(g1, g2):
remove_set = set([])
global score
for s in g1:
if group_collide(g2,s) == True:
score += 10
remove_set.add(s)
g1.difference_update(remove_set)
# timer handler that spawns rock sprites
def rock_spawner():
global rock_group
rock_pos = [WIDTH * random.random(), HEIGHT * random.random()]
rock_vel = [random.random() * 3 - 1.5,random.random() * 3 - 1.5]
distance = dist(rock_pos, my_ship.get_position())
if started:
if len(rock_group) < 12:
if distance > my_ship.get_radius() + asteroid_info.get_radius() + 60:
rock_group.add(Sprite(rock_pos, rock_vel, 0, (random.random() - .5) / 8, asteroid_image, asteroid_info))
print len(rock_group)
def key_down(key):
my_ship.keydown(key)
def key_up(key):
my_ship.keyup(key)
# frame initialization
frame = simplegui.create_frame("Asteroids", WIDTH, HEIGHT)
# ship and sprite initialization
my_ship = Ship([WIDTH / 2, HEIGHT / 2], [0, 0], 1.5 * math.pi, ship_image, ship_info)
rock_group.add(Sprite([WIDTH * random.random(), HEIGHT * random.random()], [random.random() * 3 - 1.5,random.random() * 3 - 1.5], 0, (random.random() - .5) / 8, asteroid_image, asteroid_info))
#rock_group.add(rock_spawner())
missile_group.add(Sprite([2 * WIDTH / 3, 2 * HEIGHT / 3], [-1,1], 0, 0, missile_image, missile_info, missile_sound))
#a_missile = Sprite([2 * WIDTH / 3, 2 * HEIGHT / 3], [-1,1], 0, 0, missile_image, missile_info, missile_sound)
# handler registration
#frame.draw_text("P", my_ship.get_position(), 24, "Yellow")
#canvas.draw_text("Sample text", (50, 50), 12, "Red")
frame.set_draw_handler(draw)
frame.set_keydown_handler(key_down)
frame.set_keyup_handler(key_up)
frame.set_mouseclick_handler(click)
timer = simplegui.create_timer(1000.0, rock_spawner)
# get things rolling
timer.start()
frame.start()