-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathg2.rb
407 lines (325 loc) · 6.92 KB
/
g2.rb
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
require 'gosu'
module ZOrder
Background, Stars, Player, Drone, UI = *0..4
end
#
# P L A Y E R C L A S S
#
class Player
attr_reader :score
def initialize(window)
@image = Gosu::Image.new(window, "media/Starfighter.2.bmp", false)
@beep = Gosu::Sample.new(window, "media/Beep.wav")
@x = @y = @vel_x = @vel_y = @angle = 0.0
@score = 0
end
def warp(x, y)
@x, @y = x, y
end
def turn_left
@angle -= 4.5
end
def turn_right
@angle += 4.5
end
def accelerate
@vel_x += Gosu::offset_x(@angle, 0.5)
@vel_y += Gosu::offset_y(@angle, 0.5)
end
def move
@x += @vel_x
@y += @vel_y
@x %= 1000
@y %= 600
@vel_x *= 0.98
@vel_y *= 0.98
end
def draw
@image.draw_rot(@x, @y, ZOrder::Drone, @angle)
end
def score
@score
end
def collect_stars(stars)
stars.reject! do |star|
if Gosu::distance(@x, @y, star.x, star.y) < 35 then
@score += 1000
@beep.play
true
else
false
end
end
end
end
#
# D R O N E C L A S S
#
class Drone
def initialize(window)
# @animation = animation
@image = Gosu::Image.new(window, "media/Drone1.1.bmp", false)
@color = Gosu::Color.new(0xff000000)
@color.red = rand(256 - 40) + 40
@color.green = rand(256 - 40) + 40
@color.blue = rand(256 - 40) + 40
@x = rand * 1000
@y = rand * 600
@vel_x = @vel_y = @angle = 0.0
@score = 0
end
def warp(x,y)
@x, @y = x, y
end
def turn_left
@angle -= 2.5
end
def turn_right
@angle += 2.5
end
def accelerate
@vel_x += Gosu::offset_x(@angle, 0.5)
@vel_y += Gosu::offset_y(@angle, 0.5)
end
def move
@x += @vel_x
@y += @vel_y
@x %= 1000
@y %= 600
@vel_x *= 0.50
@vel_y *= 0.50
end
def draw
@image.draw_rot(@x, @y, ZOrder::Drone, @angle)
end
def collect_stars(stars)
stars.reject! do |star|
if Gosu::distance(@x, @y, star.x, star.y) < 25 then
@score += 10
true
else
false
end
end
end
end
#
# D R O N E 2 C L A S S
#
class Drone2
def initialize(window)
@image = Gosu::Image.new(window, "media/Drone1.1.bmp", false)
@color = Gosu::Color.new(0xff000000)
@color.red = rand(256 - 40) + 40
@color.green = rand(256 - 40) + 40
@color.blue = rand(256 - 40) + 40
@x = rand * 1000
@y = rand * 600
@vel_x = @vel_y = @angle = 0.0
@score = 0
end
def warp(x,y)
@x, @y = x, y
end
def turn_left
@angle -= 2.5
end
def turn_right
@angle += 2.5
end
def accelerate
@vel_x += Gosu::offset_x(@angle, 0.5)
@vel_y += Gosu::offset_y(@angle, 0.5)
end
def move
@x += @vel_x
@y += @vel_y
@x %= 1000
@y %= 600
@vel_x *= 0.50
@vel_y *= 0.50
end
def draw
@image.draw_rot(@x, @y, ZOrder::Drone, @angle)
end
def collect_stars(stars)
stars.reject! do |star|
if Gosu::distance(@x, @y, star.x, star.y) < 25 then
@score += 10
true
else
false
end
end
end
end
#
# D R O N E 3 C L A S S
#
class Drone3
def initialize(window)
@image = Gosu::Image.new(window, "media/Drone1.1.bmp", false)
@color = Gosu::Color.new(0xff000000)
@color.red = rand(256 - 40) + 40
@color.green = rand(256 - 40) + 40
@color.blue = rand(256 - 40) + 40
@x = rand * 1000
@y = rand * 600
@vel_x = @vel_y = @angle = 0.0
@score = 0
end
def warp(x,y)
@x, @y = x, y
end
def turn_left
@angle -= 2.5
end
def turn_right
@angle += 2.5
end
def accelerate
@vel_x += Gosu::offset_x(@angle, 0.5)
@vel_y += Gosu::offset_y(@angle, 0.5)
end
def move
@x += @vel_x
@y += @vel_y
@x %= 1000
@y %= 600
@vel_x *= 0.50
@vel_y *= 0.50
end
def draw
@image.draw_rot(@x, @y, ZOrder::Drone, @angle)
end
def collect_stars(stars)
stars.reject! do |star|
if Gosu::distance(@x, @y, star.x, star.y) < 25 then
@score += 10
true
else
false
end
end
end
end
#
# S T A R C L A S S
#
class Star
attr_reader :x, :y
def initialize(animation)
@animation = animation
@color = Gosu::Color.new(0xff000000)
@color.red = rand(256 - 40) + 40
@color.green = rand(256 - 40) + 40
@color.blue = rand(256 - 40) + 40
@x = rand * 1000
@y = rand * 600
end
def draw
img = @animation[Gosu::milliseconds / 100 % @animation.size];
img.draw(@x - img.width / 2.0, @y - img.height / 2.0,
ZOrder::Stars, 1, 1, @color, :add)
end
end
#
# W I N D O W C L A S S
#
class GameWindow < Gosu::Window
def initialize
super 1000, 600, false
self.caption = "Game"
@background_image = Gosu::Image.new(self, "media/Space.7.png", true)
@player = Player.new(self)
@player.warp(500,300)
@drone = Drone.new(self)
# @drone_create = Gosu::Image::draw_rot(@x, @y, ZOrder::Drone, @angle)
# @drones = Array.new
@drone2 = Drone2.new(self)
@drone3 = Drone3.new(self)
@star_anim = Gosu::Image::load_tiles(self, "media/Star.png", 25, 25, false)
@stars = Array.new
@font = Gosu::Font.new(self, Gosu::default_font_name, 20)
end
def update
if button_down? Gosu::KbLeft or button_down? Gosu::GpLeft then
@player.turn_left
end
if button_down? Gosu::KbRight or button_down? Gosu::GpRight then
@player.turn_right
end
if button_down? Gosu::KbUp or button_down? Gosu::GpButton0 then
@player.accelerate
end
@player.move
@player.collect_stars(@stars)
a = rand(100)
if a < 90 then
@drone.turn_left
end
if a > 10 then
@drone.turn_right
end
if a < 70 then
@drone.accelerate
end
b = rand(100)
if b < 90 then
@drone2.turn_left
end
if b > 10 then
@drone2.turn_right
end
if b < 70 then
@drone2.accelerate
end
c = rand(100)
if c < 90 then
@drone3.turn_left
end
if c > 10 then
@drone3.turn_right
end
if c < 70 then
@drone3.accelerate
end
if button_down? Gosu::KbSpace then
@drone.warp(rand(1000), rand(600))
@drone2.warp(rand(1000), rand(600))
@drone3.warp(rand(1000), rand(600))
end
@drone.move
@drone.collect_stars(@stars)
@drone2.move
@drone2.collect_stars(@stars)
@drone3.move
@drone3.collect_stars(@stars)
#
#
# if @drones.size < 10 then
# @drones.push(Drone.new(@drone))
# end
#
#
if rand(100) < 20 and @stars.size < 400 then
@stars.push(Star.new(@star_anim))
end
end
def draw
@player.draw
@drone.draw
@drone2.draw
@drone3.draw
@background_image.draw(0, 0, ZOrder::Background)
@stars.each { |star| star.draw }
@font.draw("Score: #{@player.score}", 10, 10, ZOrder::UI, 1.0, 1.0, 0xffffff00)
end
def button_down(id)
if id == Gosu::KbEscape
close
end
end
end
window = GameWindow.new
window.show