tank_island 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/bin/tank_island +58 -6
- data/tank_island.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b483f37bfbb6ae135dbc4f1e3c953071cd0a09af
|
4
|
+
data.tar.gz: 6ec4513c00da03f1057ba1638726d51dee4c9836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b224c7295ebc8b88b12b1b99de1e7396c4fb871c5db6e77d3c560ecd60fa0a48c48086292833428ab0cd6fd12d05f4ddd990e59c6c666c8cc8a6b25ae37ceb3f
|
7
|
+
data.tar.gz: 13dcad6ee1cbfeabfed092324109ba42d16f9eef108489ae328d850f5198aa271cefff9274430f9f05178bd2727dd5a09d2f9a832c720f5fd0ee85288a296f83
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.2.0
|
data/bin/tank_island
CHANGED
@@ -6,8 +6,6 @@ require 'perlin_noise'
|
|
6
6
|
|
7
7
|
root_dir = File.expand_path(File.join(
|
8
8
|
File.dirname(File.dirname(__FILE__)), 'lib'))
|
9
|
-
require_pattern = File.join(root_dir, '**/*.rb')
|
10
|
-
@failed = []
|
11
9
|
|
12
10
|
%w(
|
13
11
|
game_states/game_state.rb
|
@@ -16,14 +14,68 @@ require_pattern = File.join(root_dir, '**/*.rb')
|
|
16
14
|
entities/components/ai/tank_motion_state.rb
|
17
15
|
entities/game_object.rb
|
18
16
|
entities/powerups/powerup.rb
|
17
|
+
entities/box.rb
|
18
|
+
entities/bullet.rb
|
19
|
+
entities/camera.rb
|
20
|
+
entities/components/ai/gun.rb
|
21
|
+
entities/components/ai/tank_chasing_state.rb
|
22
|
+
entities/components/ai/tank_fighting_state.rb
|
23
|
+
entities/components/ai/tank_fleeing_state.rb
|
24
|
+
entities/components/ai/tank_motion_fsm.rb
|
25
|
+
entities/components/ai/tank_motion_state.rb
|
26
|
+
entities/components/ai/tank_navigating_state.rb
|
27
|
+
entities/components/ai/tank_roaming_state.rb
|
28
|
+
entities/components/ai/tank_stuck_state.rb
|
29
|
+
entities/components/ai/vision.rb
|
30
|
+
entities/components/ai_input.rb
|
31
|
+
entities/components/box_graphics.rb
|
32
|
+
entities/components/bullet_graphics.rb
|
33
|
+
entities/components/bullet_physics.rb
|
34
|
+
entities/components/bullet_sounds.rb
|
35
|
+
entities/components/component.rb
|
36
|
+
entities/components/damage_graphics.rb
|
37
|
+
entities/components/explosion_graphics.rb
|
38
|
+
entities/components/explosion_sounds.rb
|
39
|
+
entities/components/health.rb
|
40
|
+
entities/components/player_input.rb
|
41
|
+
entities/components/player_sounds.rb
|
42
|
+
entities/components/powerup_graphics.rb
|
43
|
+
entities/components/powerup_sounds.rb
|
44
|
+
entities/components/tank_graphics.rb
|
45
|
+
entities/components/tank_health.rb
|
46
|
+
entities/components/tank_physics.rb
|
47
|
+
entities/components/tank_sounds.rb
|
48
|
+
entities/components/tree_graphics.rb
|
49
|
+
entities/damage.rb
|
50
|
+
entities/explosion.rb
|
51
|
+
entities/game_object.rb
|
52
|
+
entities/hud.rb
|
53
|
+
entities/map.rb
|
54
|
+
entities/object_pool.rb
|
55
|
+
entities/powerups/fire_rate_powerup.rb
|
56
|
+
entities/powerups/health_powerup.rb
|
57
|
+
entities/powerups/powerup.rb
|
58
|
+
entities/powerups/powerup_respawn_queue.rb
|
59
|
+
entities/powerups/repair_powerup.rb
|
60
|
+
entities/powerups/tank_speed_powerup.rb
|
61
|
+
entities/radar.rb
|
62
|
+
entities/score_display.rb
|
63
|
+
entities/tank.rb
|
64
|
+
entities/tree.rb
|
65
|
+
game_states/demo_state.rb
|
66
|
+
game_states/menu_state.rb
|
67
|
+
game_states/pause_state.rb
|
68
|
+
misc/axis_aligned_bounding_box.rb
|
69
|
+
misc/game_window.rb
|
70
|
+
misc/names.rb
|
71
|
+
misc/quad_tree.rb
|
72
|
+
misc/stats.rb
|
73
|
+
misc/stereo_sample.rb
|
74
|
+
misc/utils.rb
|
19
75
|
).each do |f|
|
20
76
|
require File.join(root_dir, f)
|
21
77
|
end
|
22
78
|
|
23
|
-
Dir.glob(require_pattern).each do |f|
|
24
|
-
require f
|
25
|
-
end
|
26
|
-
|
27
79
|
$debug = false
|
28
80
|
$window = GameWindow.new
|
29
81
|
GameState.switch(MenuState.instance)
|
data/tank_island.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "tank_island"
|
7
|
-
spec.version = '1.0.
|
7
|
+
spec.version = '1.0.4'
|
8
8
|
spec.authors = ["Tomas Varaneckas"]
|
9
9
|
spec.email = ["tomas.varaneckas@gmail.com"]
|
10
10
|
spec.summary = %q{Top down 2D shooter game that involves blowing up tanks}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tank_island
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Varaneckas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -228,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
228
|
version: '0'
|
229
229
|
requirements: []
|
230
230
|
rubyforge_project:
|
231
|
-
rubygems_version: 2.
|
231
|
+
rubygems_version: 2.4.5
|
232
232
|
signing_key:
|
233
233
|
specification_version: 4
|
234
234
|
summary: Top down 2D shooter game that involves blowing up tanks
|