/traderous

To get this branch, use:
bzr branch /bzr/traderous
3 by Josh C
basecode main.lua
1
STRICT = true
2
DEBUG = true
3
4
require 'zoetrope'
13 by Josh C
constant velocity for bullets. using hump.vector e9b86ef
5
vector = require 'vector'
35 by Josh C
fix double-removing sprites (and subsequent zombie mirror bullets).
6
--inspect = require 'inspect'
3 by Josh C
basecode main.lua
7
24 by Josh C
monkey patch group to add onRemove hook. remove mirrors on remove.
8
require 'group'
9
3 by Josh C
basecode main.lua
10
require 'version'
21 by Josh C
extract wrapping behavior, wrap bullets
11
require 'wrap_tile'
27 by Josh C
try to not spawn rocks where you can see them. not working if screen
12
require 'mirror'
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
13
require 'player'
7 by Josh C
enemy
14
require 'enemy'
8 by Josh C
targeting cursor (manual switch to start)
15
require 'cursor'
11 by Josh C
pew pew!
16
require 'bullet'
26 by Josh C
rocks!
17
require 'rock'
30 by Josh C
explosions
18
require 'boom'
52 by Josh C
break out planet
19
require 'planet'
53 by Josh C
beginnings of trading interface
20
require 'trade_view'
68 by Josh C
shield
21
require 'shield'
78 by Josh C
pause screen
22
require 'pause_view'
84 by Josh C
game over timer & penalty
23
require 'game_over'
7 by Josh C
enemy
24
25
util = {
26
   signOf = function(value)
27
               if value >= 0 then
28
                  return 1
29
               else
30
                  return -1
31
               end
27 by Josh C
try to not spawn rocks where you can see them. not working if screen
32
            end,
7 by Josh C
enemy
33
}
3 by Josh C
basecode main.lua
34
35
GameView = View:extend {
36
   onNew = function (self)
81 by Josh C
load/save (not working yet)
37
              the.storage = Storage:new{filename = 'world.lua'}
34 by Josh C
record high scores
38
              the.storage:load()
64 by Josh C
more old code cleanup
39
              --if not the.storage.data.highScore then
40
              --   print('initializing storage')
41
              --   the.storage.data = {highScore = 0}
42
              --end
34 by Josh C
record high scores
43
29 by Josh C
shoot things!
44
              the.bullets = Group:new()
39 by Josh C
some instructions at game over
45
              the.interface = Group:new()
45 by Josh C
add planet, remove rocks
46
              the.planets = Group:new()
47 by Josh C
indicators for where the planets are
47
              the.indicators = Group:new()
69 by Josh C
enemy shields and death
48
              the.enemies = Group:new()
28 by Josh C
prepare a collision box for the rocks
49
81 by Josh C
load/save (not working yet)
50
              -- init bg before build/load since planets need to know bg size
19 by Josh C
move player around looping world
51
              the.bg = Tile:new{
52
                 image = 'data/stars3.png',
75 by Josh C
bigger space, slower movement, maintain enemy density
53
                 width = 27320,
54
                 height = 15360
18 by Josh C
starry background
55
              }
19 by Josh C
move player around looping world
56
              self:add(the.bg)
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
57
81 by Josh C
load/save (not working yet)
58
              if self.newWorld or not the.storage.data.player then
59
                 the.storage.data = {planets = {}}
60
61
                 -- build planets from random
62
                 for _ = 1, math.random(3, 6) do
63
                    local planet = Planet:new{
64
                       x = math.random(the.app.width / 2,
65
                                       the.bg.width - the.app.width / 2),
66
                       y = math.random(the.app.height / 2,
67
                                       the.bg.height - the.app.height / 2),
68
                       rotation = math.random() * math.pi
69
                    }
70
                    the.planets:add(planet)
71
                    table.insert(the.storage.data.planets, {
72
                                    x = planet.x,
73
                                    y = planet.y,
74
                                    rotation = planet.rotation,
86 by Josh C
give planets names
75
                                    goods = planet.goods,
76
                                    name = planet.name
81 by Josh C
load/save (not working yet)
77
                                 })
78
                 end
79
80
                 -- build fresh player
81
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
82
                 the.player = player
83
                 the.storage.data.player = {x = player.x,
84
                                            y = player.y,
85
                                            money = player.money,
86
                                            goods = player.goods,
87
                                            cargoSpace = player.cargoSpace
88
                                         }
89
90
                 the.storage:save()
91
              else
92
                 -- load planets with x, y, goods
93
                 for _, planetData in ipairs(the.storage.data.planets) do
94
                    the.planets:add(Planet:new(planetData))
95
                 end
96
97
                 -- load player with cargo, money, position
98
                 the.player = SpacePlayer:new(the.storage.data.player)
83 by Josh C
last fix for saving
99
100
                 -- reload storage as we've turned it all into objects
101
                 the.storage:load()
81 by Josh C
load/save (not working yet)
102
              end
103
45 by Josh C
add planet, remove rocks
104
              self:add(the.planets)
105
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
106
              self:add(the.player)
41 by Josh C
thrust indicator
107
              self:add(the.player.thrust)
68 by Josh C
shield
108
              self:add(the.player.shield)
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
109
69 by Josh C
enemy shields and death
110
              self:add(the.enemies)
111
75 by Josh C
bigger space, slower movement, maintain enemy density
112
              for _ = 1, 20 do
72 by Josh C
add enemy state switch
113
                 local e = Enemy:new{x = math.random(the.bg.width),
114
                                     y = math.random(the.bg.height)}
115
                 --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
116
                 the.enemies:add(e)
117
                 self:add(e.thrust) -- why doesn't this work in Enemy.new?
118
                 self:add(e.shield)
119
              end
7 by Josh C
enemy
120
32 by Josh C
stick things into layers
121
              self:add(the.bullets)
47 by Josh C
indicators for where the planets are
122
              self:add(the.indicators)
39 by Josh C
some instructions at game over
123
              self:add(the.interface)
32 by Josh C
stick things into layers
124
14 by Josh C
only fire if cursor is in target area. change cursor to reflect this.
125
              the.cursor = Cursor:new()
126
              self:add(the.cursor)
8 by Josh C
targeting cursor (manual switch to start)
127
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
128
              love.mouse.setGrab(true)
8 by Josh C
targeting cursor (manual switch to start)
129
              love.mouse.setVisible(false)
33 by Josh C
keep score, center mouse on start
130
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
3 by Josh C
basecode main.lua
131
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
132
              self.focus = the.player
3 by Josh C
basecode main.lua
133
           end,
26 by Josh C
rocks!
134
   onUpdate = function(self, dt)
78 by Josh C
pause screen
135
                 if the.keys:justPressed('escape') then
136
                    PauseView:new():activate()
137
                 end
138
62 by Josh C
clean up some old code, put planet indicators in planet class
139
                 the.bullets:collide(the.planets)
68 by Josh C
shield
140
                 the.bullets:collide(the.player)
69 by Josh C
enemy shields and death
141
                 the.bullets:collide(the.enemies)
26 by Josh C
rocks!
142
              end,
33 by Josh C
keep score, center mouse on start
143
   onEndFrame = function(self)
39 by Josh C
some instructions at game over
144
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
145
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
33 by Josh C
keep score, center mouse on start
146
                end,
3 by Josh C
basecode main.lua
147
   draw = function (self, x, y)
148
             View.draw(self, x, y)
38 by Josh C
remove fps counter
149
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
37 by Josh C
extract updating score. update score again when you calc high score -
150
          end,
3 by Josh C
basecode main.lua
151
}
152
153
MenuScreen = View:extend {
154
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
155
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
156
   onNew = function(self)
157
              self:add(self.title)
158
              self.title:centerAround(400, 200)
159
           end,
160
   onUpdate = function(self, elapsed)
161
                 if the.keys:allJustPressed() then
162
                    the.app.view = GameView:new()
163
                 end
164
              end
165
}
166
167
the.app = App:new {
168
   onRun = function (self)
169
              print('Version: ' .. VERSION)
26 by Josh C
rocks!
170
171
              math.randomseed(os.time())
172
3 by Josh C
basecode main.lua
173
              self.view = GameView:new()
43 by Josh C
try to make setting screen resolution more reliable
174
3 by Josh C
basecode main.lua
175
              if DEBUG then
176
                 self.console:watch('VERSION', 'VERSION')
177
                 self.console:watch('updateTook', 'the.updateTook')
19 by Josh C
move player around looping world
178
                 self.console:watch('the.player.x', 'the.player.x')
179
                 self.console:watch('the.player.y', 'the.player.y')
180
                 self.console:watch('the.app.width', 'the.app.width')
181
                 self.console:watch('the.app.height', 'the.app.height')
35 by Josh C
fix double-removing sprites (and subsequent zombie mirror bullets).
182
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
36 by Josh C
don't keep spawning rocks after death.
183
                 self.console:watch('num rocks', '#the.rocks.sprites')
46 by Josh C
bigger area, more planets
184
                 self.console:watch('num planets', '#the.planets.sprites')
80 by Josh C
respawn enemies
185
                 self.console:watch('num enemies', 'the.enemies:count()')
3 by Josh C
basecode main.lua
186
                 --self.console:watch('drawTook', 'the.drawTook')
22 by Josh C
mirror (contains a bug where things in the corner aren't getting mirrored?
187
188
                 -- back off that dark overlay a bit
189
                 self.console.fill.fill[4] = 75
3 by Josh C
basecode main.lua
190
              end
191
           end,
192
   onUpdate = function (self, dt)
46 by Josh C
bigger area, more planets
193
                 if not (DEBUG and the.console.visible) then
78 by Josh C
pause screen
194
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
195
                       love.graphics.toggleFullscreen()
46 by Josh C
bigger area, more planets
196
                    elseif the.keys:justPressed('f1') then
197
                       local ss = love.graphics.newScreenshot()
198
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')
199
                    elseif the.keys:justPressed('f11') then
44 by Josh C
toggle fullscreen with f11 or alt-enter
200
                       love.graphics.toggleFullscreen()
201
                    end
3 by Josh C
basecode main.lua
202
                 end
203
              end,
204
   update = function (self, dt)
205
               the.updateStart = love.timer.getMicroTime()
206
               App.update(self, dt)
207
               if the.updateStart then
208
                  the.updateTook = love.timer.getMicroTime() - the.updateStart
209
               end
210
            end
211
}
48 by Josh C
move fullscreen into love.run so it doesn't keep toggling on ctl-alt-R
212
213
realRun = love.run
214
function love.run()
215
   -- should fail silently if it can't go to fullscreen...
216
   love.graphics.toggleFullscreen()
217
218
   realRun()
219
end