/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-06-23 02:05:10 UTC
  • Revision ID: josh@9ix.org-20130623020510-i4t86yocvbjab19o
higher planet floor, recharge shields when you land, stop moving when you land

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
require 'planet'
20
20
require 'trade_view'
21
21
require 'shield'
22
 
require 'pause_view'
23
22
 
24
23
util = {
25
24
   signOf = function(value)
29
28
                  return -1
30
29
               end
31
30
            end,
 
31
   shortestVector = function(from, to)
 
32
                       if STRICT then
 
33
                          if from.x < the.app.width / 2 or
 
34
                             from.x > the.bg.width - the.app.width / 2 or
 
35
                             from.y < the.app.height / 2 or
 
36
                             from.y > the.bg.height - the.app.height / 2 then
 
37
                             error('"from" coordinate out of bounds: X='..from.x..' Y='..from.y)
 
38
                          end
 
39
 
 
40
                          if to.x < the.app.width / 2 or
 
41
                             to.x > the.bg.width - the.app.width / 2 or
 
42
                             to.y < the.app.height / 2 or
 
43
                             to.y > the.bg.height - the.app.height / 2 then
 
44
                             error('"to" coordinate out of bounds: X='..to.x..' Y='..to.y)
 
45
                          end
 
46
                       end
 
47
 
 
48
                       -- normalize grid to account for mirror zones
 
49
                       local fx = from.x - the.app.width / 2
 
50
                       local fy = from.y - the.app.height / 2
 
51
                       local tx = to.x - the.app.width / 2
 
52
                       local ty = to.y - the.app.height / 2
 
53
 
 
54
                       local short = {}
 
55
 
 
56
                       -- pick shorter x
 
57
                       if math.abs(tx - fx) < math.abs(tx - fx - (the.bg.width - the.app.width)) then
 
58
                          -- straight path is shorter
 
59
                          short.x = tx - fx
 
60
                       else
 
61
                          short.x = tx - fx - (the.bg.width - the.app.width)
 
62
                       end
 
63
 
 
64
                       -- pick shorter y
 
65
                       if math.abs(ty - fy) < math.abs(ty - fy - (the.bg.height - the.app.height)) then
 
66
                          -- straight path is shorter
 
67
                          short.y = ty - fy
 
68
                       else
 
69
                          short.y = ty - fy - (the.bg.height - the.app.height)
 
70
                       end
 
71
 
 
72
                       return vector.new(short.x, short.y)
 
73
                    end
32
74
}
33
75
 
34
76
GameView = View:extend {
48
90
 
49
91
              the.bg = Tile:new{
50
92
                 image = 'data/stars3.png',
51
 
                 width = 27320,
52
 
                 height = 15360
 
93
                 width = 13660,
 
94
                 height = 7680
53
95
              }
54
96
              self:add(the.bg)
55
97
 
63
105
 
64
106
              self:add(the.enemies)
65
107
 
66
 
              for _ = 1, 20 do
 
108
              for _ = 1, 5 do
67
109
                 local e = Enemy:new{x = math.random(the.bg.width),
68
110
                                     y = math.random(the.bg.height)}
69
111
                 --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
118
160
              self.focus = the.player
119
161
           end,
120
162
   onUpdate = function(self, dt)
121
 
                 if the.keys:justPressed('escape') then
122
 
                    PauseView:new():activate()
123
 
                 end
124
 
 
125
163
                 the.bullets:collide(the.planets)
126
164
                 the.bullets:collide(the.player)
127
165
                 the.bullets:collide(the.enemies)
168
206
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
169
207
                 self.console:watch('num rocks', '#the.rocks.sprites')
170
208
                 self.console:watch('num planets', '#the.planets.sprites')
171
 
                 self.console:watch('num enemies', 'the.enemies:count()')
172
209
                 --self.console:watch('drawTook', 'the.drawTook')
173
210
 
174
211
                 -- back off that dark overlay a bit
177
214
           end,
178
215
   onUpdate = function (self, dt)
179
216
                 if not (DEBUG and the.console.visible) then
180
 
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
181
 
                       love.graphics.toggleFullscreen()
 
217
                    if the.keys:justPressed('q') then
 
218
                       self.quit()
 
219
                    elseif the.keys:justPressed('return') then
 
220
                       if the.keys:pressed('alt') then
 
221
                          love.graphics.toggleFullscreen()
 
222
                       else
 
223
                          self.view = GameView:new()
 
224
                       end
182
225
                    elseif the.keys:justPressed('f1') then
183
226
                       local ss = love.graphics.newScreenshot()
184
227
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')