/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-19 02:01:02 UTC
  • Revision ID: josh@9ix.org-20130619020102-gw53ss3mrq8gjiud
add enemy state switch

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
 
require 'game_over'
24
 
require 'names'
25
22
 
26
23
util = {
27
24
   signOf = function(value)
31
28
                  return -1
32
29
               end
33
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
34
74
}
35
75
 
36
76
GameView = View:extend {
37
77
   onNew = function (self)
38
 
              the.storage = Storage:new{filename = 'world.lua'}
 
78
              the.storage = Storage:new{filename = 'scores.lua'}
39
79
              the.storage:load()
40
80
              --if not the.storage.data.highScore then
41
81
              --   print('initializing storage')
45
85
              the.bullets = Group:new()
46
86
              the.interface = Group:new()
47
87
              the.planets = Group:new()
48
 
              the.planetLabels = Group:new()
49
88
              the.indicators = Group:new()
50
89
              the.enemies = Group:new()
51
90
 
52
 
              -- init bg before build/load since planets need to know bg size
53
91
              the.bg = Tile:new{
54
92
                 image = 'data/stars3.png',
55
 
                 width = 27320,
56
 
                 height = 15360
 
93
                 width = 13660,
 
94
                 height = 7680
57
95
              }
58
96
              self:add(the.bg)
59
97
 
60
 
              if self.newWorld or not the.storage.data.player then
61
 
                 the.storage.data = {planets = {}}
62
 
 
63
 
                 -- build planets from random
64
 
                 for _ = 1, math.random(3, 6) do
65
 
                    local planet = Planet:new{
66
 
                       x = math.random(the.app.width / 2,
67
 
                                       the.bg.width - the.app.width / 2),
68
 
                       y = math.random(the.app.height / 2,
69
 
                                       the.bg.height - the.app.height / 2),
70
 
                       rotation = math.random() * math.pi
71
 
                    }
72
 
                    the.planets:add(planet)
73
 
                    table.insert(the.storage.data.planets, {
74
 
                                    x = planet.x,
75
 
                                    y = planet.y,
76
 
                                    rotation = planet.rotation,
77
 
                                    goods = planet.goods,
78
 
                                    name = planet.name
79
 
                                 })
80
 
                 end
81
 
 
82
 
                 -- build fresh player
83
 
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
84
 
                 the.player = player
85
 
                 the.storage.data.player = {x = player.x,
86
 
                                            y = player.y,
87
 
                                            money = player.money,
88
 
                                            goods = player.goods,
89
 
                                            cargoSpace = player.cargoSpace
90
 
                                         }
91
 
 
92
 
                 the.storage:save()
93
 
              else
94
 
                 -- load planets with x, y, goods
95
 
                 for _, planetData in ipairs(the.storage.data.planets) do
96
 
                    the.planets:add(Planet:new(planetData))
97
 
                 end
98
 
 
99
 
                 -- load player with cargo, money, position
100
 
                 the.player = SpacePlayer:new(the.storage.data.player)
101
 
 
102
 
                 -- reload storage as we've turned it all into objects
103
 
                 the.storage:load()
104
 
              end
105
 
 
106
98
              self:add(the.planets)
107
 
              self:add(the.planetLabels)
108
99
 
 
100
              --the.player = CrystalPlayer:new{x=400,y=300}
 
101
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
109
102
              self:add(the.player)
110
103
              self:add(the.player.thrust)
111
104
              self:add(the.player.shield)
112
105
 
113
106
              self:add(the.enemies)
114
107
 
115
 
              for _ = 1, 20 do
 
108
              for _ = 1, 5 do
116
109
                 local e = Enemy:new{x = math.random(the.bg.width),
117
110
                                     y = math.random(the.bg.height)}
118
111
                 --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
125
118
              self:add(the.indicators)
126
119
              self:add(the.interface)
127
120
 
 
121
              for _ = 1, math.random(6) do
 
122
                 local planet = Planet:new{
 
123
                    x = math.random(the.app.width / 2,
 
124
                                    the.bg.width - the.app.width / 2),
 
125
                    y = math.random(the.app.height / 2,
 
126
                                    the.bg.height - the.app.height / 2),
 
127
                    rotation = math.random() * math.pi
 
128
                 }
 
129
                 the.planets:add(planet)
 
130
              end
 
131
 
128
132
              the.cursor = Cursor:new()
129
133
              self:add(the.cursor)
130
134
 
 
135
              the.over = Text:new{
 
136
                 y = the.app.height / 2,
 
137
                 width = the.app.width,
 
138
                 align = 'center',
 
139
                 font = 25,
 
140
                 text = "Game Over",
 
141
                 visible = false
 
142
              }
 
143
              the.interface:add(the.over)
 
144
 
 
145
 
 
146
              the.instructions = Text:new{
 
147
                 y = the.app.height / 2 + 32,
 
148
                 width = the.app.width,
 
149
                 align = 'center',
 
150
                 font = 12,
 
151
                 text = "Press Enter to start a new game\nPress Q to quit",
 
152
                 visible = false
 
153
              }
 
154
              the.interface:add(the.instructions)
 
155
 
131
156
              love.mouse.setGrab(true)
132
157
              love.mouse.setVisible(false)
133
158
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
135
160
              self.focus = the.player
136
161
           end,
137
162
   onUpdate = function(self, dt)
138
 
                 if the.keys:justPressed('escape') then
139
 
                    PauseView:new():activate()
140
 
                 end
141
 
 
142
163
                 the.bullets:collide(the.planets)
143
164
                 the.bullets:collide(the.player)
144
165
                 the.bullets:collide(the.enemies)
185
206
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
186
207
                 self.console:watch('num rocks', '#the.rocks.sprites')
187
208
                 self.console:watch('num planets', '#the.planets.sprites')
188
 
                 self.console:watch('num enemies', 'the.enemies:count()')
189
209
                 --self.console:watch('drawTook', 'the.drawTook')
190
210
 
191
211
                 -- back off that dark overlay a bit
194
214
           end,
195
215
   onUpdate = function (self, dt)
196
216
                 if not (DEBUG and the.console.visible) then
197
 
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
198
 
                       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
199
225
                    elseif the.keys:justPressed('f1') then
200
226
                       local ss = love.graphics.newScreenshot()
201
227
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')