2021-01-07 01:29:06 -06:00
|
|
|
-- pls set tabs to width of 4 spaces
|
|
|
|
class = require "lib/middleclass"
|
|
|
|
wind = require "lib/windfield"
|
|
|
|
stalker = require "lib/STALKER-X"
|
|
|
|
|
|
|
|
downwall = 1; rightwall = 2; leftwall = 3
|
|
|
|
mainmenu = 0; game = 1; gameover = 2; pause = 3
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
world = wind.newWorld(0, 40, true)
|
2021-01-07 01:29:06 -06:00
|
|
|
|
|
|
|
-- GAME STATES
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- LOVE
|
|
|
|
----------------------------------------
|
|
|
|
function love.load ()
|
|
|
|
math.randomseed(os.time())
|
|
|
|
|
|
|
|
dieParticle = nil
|
|
|
|
love.graphics.setDefaultFilter("nearest", "nearest")
|
2021-01-07 10:30:40 -06:00
|
|
|
a_ttf = love.graphics.newFont("art/font/alagard.ttf", nil, "none")
|
|
|
|
r_ttf = love.graphics.newFont("art/font/romulus.ttf", nil, "none")
|
2021-01-07 01:29:06 -06:00
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
camera = stalker()
|
|
|
|
|
|
|
|
mainmenu_load()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function love.update(dt)
|
|
|
|
if(mode == mainmenu) then mainmenu_update(dt)
|
|
|
|
elseif(mode == game) then game_update(dt)
|
|
|
|
elseif(mode == gameover) then gameover_update(dt)
|
|
|
|
elseif(mode == pause) then pause_update(dt)
|
|
|
|
end
|
2021-01-07 13:41:04 -06:00
|
|
|
camera:update(dt)
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
function love.draw()
|
|
|
|
camera:attach()
|
2021-01-07 01:29:06 -06:00
|
|
|
if(mode == mainmenu) then mainmenu_draw()
|
|
|
|
elseif(mode == game) then game_draw()
|
|
|
|
elseif(mode == gameover) then gameover_draw()
|
|
|
|
elseif(mode == pause) then pause_draw()
|
|
|
|
end
|
2021-01-07 13:41:04 -06:00
|
|
|
camera:detach()
|
|
|
|
camera:draw()
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function love.resize()
|
|
|
|
camera = stalker()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function love.keypressed(key)
|
|
|
|
if(mode == mainmenu) then mainmenu_keypressed(key)
|
|
|
|
elseif(mode == game) then game_keypressed(key)
|
|
|
|
elseif(mode == gameover) then gameover_keypressed(key)
|
|
|
|
elseif(mode == pause) then pause_keypressed(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function love.keyreleased (key)
|
|
|
|
if(mode == mainmenu) then mainmenu_keyreleased(key)
|
|
|
|
elseif(mode == game) then game_keyreleased(key)
|
|
|
|
elseif(mode == gameover) then gameover_keyreleased(key)
|
|
|
|
elseif(mode == pause) then pause_keyreleased(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- MENU STATE
|
|
|
|
----------------------------------------
|
|
|
|
function mainmenu_load ()
|
|
|
|
mode = mainmenu
|
|
|
|
selection = 1
|
|
|
|
-- if(bgm) then
|
|
|
|
-- bgm:stop()
|
|
|
|
-- end
|
|
|
|
-- bgm = love.audio.newSource("art/music/menu.ogg", "static")
|
|
|
|
-- bgm:play()
|
|
|
|
-- bgm:setLooping(true)
|
|
|
|
-- bgm:setVolume(1.5)
|
|
|
|
--
|
2021-01-07 14:38:44 -06:00
|
|
|
camera = stalker()
|
2021-01-07 13:41:04 -06:00
|
|
|
map = Map:new("maps/menu.lua")
|
|
|
|
player.following = true
|
|
|
|
|
|
|
|
frontMenu = Menu:new(100, 100, 30, 50, 3, {
|
|
|
|
{love.graphics.newText(a_ttf, "get banana"),
|
|
|
|
function ()
|
|
|
|
camera:fade(.2, {0,0,0,1}, function() game_load() end)
|
|
|
|
end},
|
|
|
|
{love.graphics.newText(a_ttf, "get outta dodge"),
|
|
|
|
function () love.event.quit(0) end }})
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function mainmenu_update(dt)
|
2021-01-07 13:41:04 -06:00
|
|
|
world:update(dt)
|
|
|
|
player:update(dt)
|
|
|
|
map:update(dt)
|
|
|
|
|
|
|
|
-- make player monkey move randomly
|
|
|
|
local num = math.random(100)
|
|
|
|
local dirs = player.directionals
|
|
|
|
if (num == 1) then
|
|
|
|
dirs['left'] = 1
|
|
|
|
dirs['right'] = 0
|
|
|
|
elseif (num == 2) then
|
|
|
|
dirs['right'] = 1
|
|
|
|
dirs['left'] = 0
|
|
|
|
elseif (num == 3) then
|
|
|
|
dirs['up'] = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
-- teleport off-screen monkeys
|
|
|
|
for i=0,player.last do
|
|
|
|
local x,y = player.monks[i].body:getPosition()
|
|
|
|
if (y > 2000) then
|
|
|
|
player.monks[i].body:setPosition(200,0)
|
|
|
|
end
|
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function mainmenu_draw ()
|
2021-01-07 13:41:04 -06:00
|
|
|
map:draw()
|
|
|
|
player:draw()
|
|
|
|
frontMenu:draw()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function mainmenu_keypressed(key)
|
2021-01-07 13:41:04 -06:00
|
|
|
frontMenu:keypressed(key)
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function mainmenu_keyreleased(key)
|
2021-01-07 13:41:04 -06:00
|
|
|
frontMenu:keyreleased(key)
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- PAUSE STATE
|
|
|
|
----------------------------------------
|
|
|
|
function pause_load ()
|
2021-01-07 14:38:44 -06:00
|
|
|
mode = pause
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function pause_update(dt)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function pause_draw ()
|
2021-01-07 14:38:44 -06:00
|
|
|
game_draw()
|
|
|
|
camera:detach()
|
|
|
|
love.graphics.draw(love.graphics.newText(r_ttf,
|
|
|
|
"paused\n[enter to continue]\n[escape to exit]"), 200, 200, 0, 3, 3)
|
|
|
|
camera:attach()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function pause_keypressed(key)
|
2021-01-07 14:38:44 -06:00
|
|
|
if (key == "return") then
|
|
|
|
mode = game
|
|
|
|
elseif (key == "escape") then
|
|
|
|
mainmenu_load()
|
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function pause_keyreleased(key)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- GAMEOVER STATE
|
|
|
|
----------------------------------------
|
|
|
|
function gameover_load ()
|
2021-01-07 13:41:04 -06:00
|
|
|
mode = gameover
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function gameover_update(dt)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function gameover_draw ()
|
|
|
|
game_draw()
|
2021-01-07 13:41:04 -06:00
|
|
|
camera:detach()
|
|
|
|
love.graphics.draw(love.graphics.newText(r_ttf,
|
|
|
|
"nice try!\n[enter to restart]\n[escape to exit]"), 200, 200, 0, 3, 3)
|
|
|
|
camera:attach()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function gameover_keypressed(key)
|
2021-01-07 13:41:04 -06:00
|
|
|
if (key == "return") then
|
|
|
|
camera:fade(.2, {0,0,0,1}, function() game_load() end)
|
|
|
|
elseif (key == "escape") then
|
2021-01-07 14:38:44 -06:00
|
|
|
mainmenu_load()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function gameover_keyreleased(key)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- GAME STATE
|
|
|
|
----------------------------------------
|
2021-01-07 13:41:04 -06:00
|
|
|
function game_load()
|
2021-01-07 01:29:06 -06:00
|
|
|
mode = game
|
2021-01-07 13:41:04 -06:00
|
|
|
camera:fade(.2, {0,0,0,0})
|
2021-01-07 01:29:06 -06:00
|
|
|
map = Map:new("maps/tutorial/1.lua")
|
2021-01-07 14:38:44 -06:00
|
|
|
camera:setFollowLerp(0.1)
|
|
|
|
camera:setFollowStyle('PLATFORMER')
|
2021-01-07 01:29:06 -06:00
|
|
|
|
|
|
|
-- bgm:stop()
|
|
|
|
-- bgm = love.audio.newSource("art/music/game.ogg", "static")
|
|
|
|
-- bgm:play()
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function game_update(dt)
|
|
|
|
world:update(dt)
|
|
|
|
player:update(dt)
|
|
|
|
map:update(dt)
|
|
|
|
|
|
|
|
local x, y = player.monks[player.current].body:getPosition()
|
|
|
|
camera:follow(x, y)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function game_draw ()
|
|
|
|
map:draw()
|
|
|
|
player:draw()
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function game_keypressed(key)
|
|
|
|
local dir = player.directionals
|
|
|
|
|
|
|
|
-- if a player presses the left key, then holds the right key, they should
|
|
|
|
-- go right until they let go, then they should go left.
|
|
|
|
if (key == "right" or key == "d") then
|
|
|
|
dir['right'] = 1
|
|
|
|
if (dir['left'] == 1) then dir['left'] = 2; end
|
|
|
|
elseif (key == "left" or key == "a") then
|
|
|
|
dir['left'] = 1
|
|
|
|
if (dir['right'] == 1) then dir['right'] = 2; end
|
|
|
|
elseif (key == "up" or key == "w") then
|
|
|
|
dir['up'] = 1
|
|
|
|
if (dir['down'] == 1) then dir['down'] = 2; end
|
|
|
|
|
|
|
|
elseif (key == "space") then
|
|
|
|
player:freeze()
|
|
|
|
|
|
|
|
elseif (key == "f" and player.following == false) then
|
|
|
|
player.following = true
|
|
|
|
elseif (key == "f" and player.following == true) then
|
|
|
|
player.following = false
|
2021-01-07 02:15:15 -06:00
|
|
|
|
|
|
|
elseif (key == "=" and camera.scale < 10) then
|
|
|
|
camera.scale = camera.scale + 1
|
|
|
|
elseif (key == "-" and camera.scale > 1) then
|
|
|
|
camera.scale = camera.scale - 1
|
2021-01-07 14:38:44 -06:00
|
|
|
|
|
|
|
elseif (key == "escape") then
|
|
|
|
pause_load()
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function game_keyreleased (key)
|
|
|
|
local dir = player.directionals
|
|
|
|
local monk = player.monks[player.current]
|
|
|
|
local dx, dy = monk:getLinearVelocity()
|
|
|
|
|
|
|
|
if (key == "right" or key == "d") then
|
|
|
|
dir['right'] = 0
|
|
|
|
monk:setLinearVelocity(dx - 150, dy)
|
|
|
|
elseif (key == "left" or key == "a") then
|
|
|
|
dir['left'] = 0
|
|
|
|
monk:setLinearVelocity(dx + 150, dy)
|
|
|
|
elseif (key == "up" or key == "w") then
|
|
|
|
dir['up'] = 0
|
|
|
|
elseif (key == "down") then
|
|
|
|
dir['down'] = 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- CLASSES
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- MONK player class
|
|
|
|
----------------------------------------
|
|
|
|
Monk = class('Monk')
|
|
|
|
|
|
|
|
function Monk:initialize(x, y, count)
|
|
|
|
self.monks = {}
|
2021-01-07 14:38:44 -06:00
|
|
|
self.frozen = {}
|
2021-01-07 01:29:06 -06:00
|
|
|
self.onGround = {}
|
|
|
|
self.current = 0
|
|
|
|
self.last = count - 1
|
|
|
|
self.following = false
|
|
|
|
self.directionals = {}
|
|
|
|
|
|
|
|
self.monkSprites = {}
|
|
|
|
self.sprites ={
|
|
|
|
['default'] = love.graphics.newImage("art/sprites/monk.png"),
|
|
|
|
['jump'] = love.graphics.newImage("art/sprites/monk-jump.png"),
|
|
|
|
['frozen'] = love.graphics.newImage("art/sprites/monk-frozen.png") }
|
|
|
|
|
|
|
|
for i=0,(count-1) do
|
|
|
|
self.monks[i] = world:newRectangleCollider(x - (i * 20), y, 16, 16);
|
|
|
|
self.monks[i]:setCollisionClass('Monk')
|
|
|
|
self.monks[i]:setObject(self)
|
|
|
|
self.monkSprites[i] = 'default'
|
2021-01-07 14:38:44 -06:00
|
|
|
self.frozen[i] = false
|
2021-01-07 01:29:06 -06:00
|
|
|
|
|
|
|
local collision = self:makeCollisionCallback(i)
|
|
|
|
self.monks[i]:setPreSolve(collision)
|
|
|
|
self.onGround[i] = 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Monk:update(dt)
|
|
|
|
local dir = self.directionals
|
|
|
|
|
|
|
|
if (self.following == true) then self:follow()
|
|
|
|
else self:idle()
|
|
|
|
end
|
|
|
|
|
|
|
|
self:movement()
|
|
|
|
|
|
|
|
for i=0,(self.last) do
|
|
|
|
if (self.onGround[i] > 0) then self.monkSprites[i] = 'default'
|
2021-01-07 14:38:44 -06:00
|
|
|
elseif (self.frozen[i] == true) then self.monkSprites[i] = 'frozen'
|
2021-01-07 01:29:06 -06:00
|
|
|
else self.monkSprites[i] = 'jump'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-07 14:38:44 -06:00
|
|
|
local allFrozen = true
|
|
|
|
for k,frozen in pairs(self.frozen) do
|
|
|
|
if (frozen == false) then allFrozen = false; end
|
|
|
|
end
|
|
|
|
if (allFrozen == true) then gameover_load(); end
|
2021-01-07 13:41:04 -06:00
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
-- cleanup
|
|
|
|
for i=0,(self.last) do
|
|
|
|
self.onGround[i] = 0
|
|
|
|
end
|
|
|
|
if (dir['left'] == 2 and dir['right'] == 0) then dir['left'] = 1; end
|
|
|
|
if (dir['right'] == 2 and dir['left'] == 0) then dir['right'] = 1; end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Monk:draw ()
|
2021-01-07 14:38:44 -06:00
|
|
|
for i=0,self.last do
|
2021-01-07 01:29:06 -06:00
|
|
|
local monk = self.monks[i]
|
|
|
|
local x,y = monk.body:getWorldPoints(monk.shape:getPoints())
|
|
|
|
|
|
|
|
love.graphics.draw(self.sprites[self.monkSprites[i]], x, y,
|
|
|
|
monk.body:getAngle(), 1, 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Monk:movement ()
|
|
|
|
local monk = self.monks[self.current]
|
|
|
|
local dx, dy = monk:getLinearVelocity()
|
|
|
|
local dir = self.directionals
|
|
|
|
local newVel = 250
|
|
|
|
local onGround = self.onGround[self.current]
|
|
|
|
|
|
|
|
if not (onGround == downwall) then
|
|
|
|
newVel = newVel - 50
|
|
|
|
end
|
|
|
|
|
|
|
|
if (dir['left'] == 1) then
|
|
|
|
monk:setLinearVelocity(-newVel, dy);
|
|
|
|
elseif (dir['right'] == 1) then
|
|
|
|
monk:setLinearVelocity(newVel, dy);
|
|
|
|
end
|
|
|
|
|
|
|
|
if (dir['up'] == 1 and onGround == downwall) then
|
|
|
|
monk:setLinearVelocity(dx, -newVel);
|
|
|
|
elseif (dir['up'] == 1 and onGround == leftwall) then
|
|
|
|
monk:setLinearVelocity(newVel, -newVel - 30);
|
|
|
|
elseif (dir['up'] == 1 and onGround == rightwall) then
|
|
|
|
monk:setLinearVelocity(-newVel, -newVel - 30);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- try to get non-player monkeys in party to rougly follow player
|
|
|
|
function Monk:follow ()
|
|
|
|
if (self.current == self.last) then return 0; end
|
|
|
|
|
|
|
|
local monk = self.monks[self.current]
|
|
|
|
local x, y = monk.body:getPosition()
|
|
|
|
local newVel = 300
|
|
|
|
if (self.onGround[self.current] == 0) then
|
|
|
|
newVel = newVel - 50
|
|
|
|
end
|
|
|
|
|
|
|
|
for i=self.current+1,self.last do
|
|
|
|
local thisMonk = self.monks[i]
|
|
|
|
local mx, my = thisMonk.body:getPosition()
|
|
|
|
local dx, dy = thisMonk:getLinearVelocity()
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
if (mx < (x + 30) and math.random(20) == 1) then
|
2021-01-07 01:29:06 -06:00
|
|
|
thisMonk:setLinearVelocity(newVel, dy)
|
2021-01-07 13:41:04 -06:00
|
|
|
elseif ((x - 30) < mx and math.random(10) == 1) then
|
2021-01-07 01:29:06 -06:00
|
|
|
thisMonk:setLinearVelocity(-newVel, dy)
|
|
|
|
end
|
|
|
|
|
|
|
|
if (y < my and self.onGround[i] == downwall) then
|
|
|
|
thisMonk:setLinearVelocity(dx, -newVel)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- non-player monkeys hop every second-ish idly
|
|
|
|
function Monk:idle ()
|
|
|
|
if (self.current == self.last) then return; end
|
|
|
|
|
|
|
|
for i=self.current+1,self.last do
|
|
|
|
if (self.onGround[i] == downwall and math.random(20) == 5) then
|
|
|
|
local thisMonk = self.monks[i]
|
|
|
|
local dx, dy = thisMonk:getLinearVelocity()
|
|
|
|
self.monks[i]:setLinearVelocity(dx, -100)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- freeze the player monkey in place, making it a platform
|
2021-01-07 14:38:44 -06:00
|
|
|
function Monk:freeze (indice)
|
|
|
|
indice = indice or self.current
|
|
|
|
local monk = self.monks[indice]
|
|
|
|
self.frozen[indice] = true
|
|
|
|
monk:setType('static')
|
|
|
|
monk:setCollisionClass('Platform')
|
|
|
|
|
|
|
|
if (indice == self.current) then
|
|
|
|
for i=0,self.last do
|
|
|
|
if (self.frozen[self.last - i] == false) then
|
|
|
|
self:switch(self.last - i)
|
|
|
|
i = self.last
|
|
|
|
end
|
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- switch from current monkey to next
|
|
|
|
function Monk:switch (index)
|
|
|
|
self.current = index
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- each monkey in party needs a unique callback
|
|
|
|
function Monk:makeCollisionCallback (i)
|
|
|
|
local function collision(collision1, collision2, contact)
|
|
|
|
local nx, ny = contact:getNormal( )
|
|
|
|
|
|
|
|
if collision1.collision_class == "Monk"
|
|
|
|
and collision2.collision_class == "Platform"
|
|
|
|
then
|
|
|
|
if (math.abs(ny) == 1) then
|
|
|
|
self.onGround[i] = downwall
|
|
|
|
elseif (nx < 0) then
|
|
|
|
if not (self.onGround[i] == 0) then return; end
|
|
|
|
self.onGround[i] = leftwall
|
|
|
|
elseif (nx > 0) then
|
|
|
|
if not (self.onGround[i] == 0) then return; end
|
|
|
|
self.onGround[i] = rightwall
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return collision
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-07 02:15:15 -06:00
|
|
|
-- BANNANA owo (win condition obj)
|
|
|
|
----------------------------------------
|
2021-01-07 13:41:04 -06:00
|
|
|
Banana = class('Banana')
|
2021-01-07 02:15:15 -06:00
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
function Banana:initialize(x, y)
|
2021-01-07 10:30:40 -06:00
|
|
|
self.sprite = love.graphics.newImage("art/sprites/banana.png")
|
2021-01-07 02:15:15 -06:00
|
|
|
self.collider = world:newRectangleCollider(x, y, 16, 16);
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
function Banana:draw()
|
2021-01-07 02:15:15 -06:00
|
|
|
local col = self.collider
|
|
|
|
local x,y = col.body:getWorldPoints(col.shape:getPoints())
|
|
|
|
love.graphics.draw(self.sprite, x, y, col.body:getAngle(), 1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
-- MAP used to store map data (ofc)
|
|
|
|
----------------------------------------
|
|
|
|
Map = class('Map')
|
|
|
|
|
|
|
|
function Map:initialize(filepath)
|
|
|
|
self.ground = {}
|
|
|
|
self.platforms = {}
|
2021-01-07 13:41:04 -06:00
|
|
|
self.tables = {}
|
2021-01-07 01:29:06 -06:00
|
|
|
self.objects = {}
|
2021-01-07 13:41:04 -06:00
|
|
|
self.outOfBounds = "teleport"
|
2021-01-07 01:29:06 -06:00
|
|
|
local maptable = dofile(filepath)
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
self.width,self.height = maptable.width,maptable.height
|
|
|
|
self.tileWidth,self.tileHeight = maptable.tilewidth,maptable.tileheight
|
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
love.graphics.setBackgroundColor(146/255, 187/255, 203/255)
|
2021-01-07 02:15:15 -06:00
|
|
|
local monkCount = 3
|
|
|
|
local monkX,monkY = 100,100
|
2021-01-07 13:41:04 -06:00
|
|
|
world:destroy()
|
|
|
|
world = wind.newWorld(0, 400, true)
|
|
|
|
world:addCollisionClass('Monk')
|
|
|
|
world:addCollisionClass('Banana')
|
|
|
|
world:addCollisionClass('Platform')
|
2021-01-07 01:29:06 -06:00
|
|
|
|
|
|
|
for n,layer in pairs(maptable.layers) do
|
|
|
|
if not (layer.type == "objectgroup") then break; end
|
|
|
|
for nn,object in pairs(layer.objects) do
|
|
|
|
|
|
|
|
if (object.shape == "rectangle") then
|
2021-01-07 13:41:04 -06:00
|
|
|
self.tables[object.id] =
|
2021-01-07 01:29:06 -06:00
|
|
|
world:newRectangleCollider(object.x, object.y,
|
|
|
|
object.width, object.height)
|
2021-01-07 13:41:04 -06:00
|
|
|
self.tables[object.id]:setType('static')
|
|
|
|
self.tables[object.id]:setCollisionClass('Platform')
|
|
|
|
|
|
|
|
elseif (object.shape == "polygon") then
|
|
|
|
local ox,oy = object.x,object.y
|
|
|
|
local vertices = {}
|
|
|
|
local vi = 1
|
|
|
|
for kk,verticePair in pairs(object.polygon) do
|
|
|
|
vertices[vi] = verticePair['x'] + ox
|
|
|
|
vertices[vi+1] = verticePair['y'] + oy
|
|
|
|
vi = vi + 2
|
|
|
|
end
|
|
|
|
self.tables[object.id] =
|
|
|
|
world:newPolygonCollider(vertices)
|
|
|
|
self.tables[object.id]:setType('static')
|
|
|
|
self.tables[object.id]:setCollisionClass('Platform')
|
2021-01-07 01:29:06 -06:00
|
|
|
|
2021-01-07 10:30:40 -06:00
|
|
|
elseif (object.shape == "text") then
|
2021-01-07 13:41:04 -06:00
|
|
|
self.tables[object.id] = object
|
2021-01-07 10:30:40 -06:00
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
elseif (object.shape == "point" and object.type == "spawn") then
|
|
|
|
if not (object.properties == nil
|
2021-01-07 13:41:04 -06:00
|
|
|
or object.properties["count"] == nil) then
|
2021-01-07 01:29:06 -06:00
|
|
|
monkCount = object.properties["count"]
|
|
|
|
end
|
2021-01-07 02:15:15 -06:00
|
|
|
monkX,monkY = object.x,object.y
|
|
|
|
|
2021-01-07 10:30:40 -06:00
|
|
|
elseif (object.shape == "point" and object.type == "banana") then
|
2021-01-07 13:41:04 -06:00
|
|
|
self.objects[object.id] = Banana:new(object.x, object.y)
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-01-07 02:15:15 -06:00
|
|
|
player = Monk:new(monkX, monkY, monkCount)
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Map:update(dt)
|
2021-01-07 13:41:04 -06:00
|
|
|
local heightMax = self.height * self.tileHeight + 100
|
|
|
|
local widthMax = self.width * self.tileWidth + 200
|
|
|
|
|
|
|
|
for i=player.current,player.last do
|
|
|
|
local x,y = player.monks[i].body:getPosition()
|
|
|
|
|
|
|
|
if (math.abs(x) > widthMax or y > heightMax
|
|
|
|
and self.outOfBounds == "die") then
|
|
|
|
player:freeze()
|
|
|
|
elseif (math.abs(x) > widthMax or y > heightMax
|
|
|
|
and self.outOfBounds == "teleport") then
|
|
|
|
player.monks[i].body:setPosition(200,0)
|
|
|
|
end
|
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Map:draw()
|
2021-01-07 13:41:04 -06:00
|
|
|
for k,table in pairs(self.tables) do
|
|
|
|
if (table.type == "Rectangle" or table.type == "Polygon") then
|
2021-01-07 10:30:40 -06:00
|
|
|
love.graphics.polygon('fill',
|
2021-01-07 13:41:04 -06:00
|
|
|
table.body:getWorldPoints(table.shape:getPoints()))
|
|
|
|
|
|
|
|
elseif (table.shape == "text") then
|
|
|
|
love.graphics.draw(love.graphics.newText(a_ttf, table.text),
|
|
|
|
table.x, table.y, 0, 2, 2)
|
2021-01-07 10:30:40 -06:00
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
2021-01-07 13:41:04 -06:00
|
|
|
for k,object in pairs(self.objects) do
|
|
|
|
object:draw()
|
|
|
|
end
|
2021-01-07 10:30:40 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
-- MENU used for creating menus (lol)
|
|
|
|
----------------------------------------
|
|
|
|
Menu = class("Menu")
|
|
|
|
|
|
|
|
function Menu:initialize(x, y, offset_x, offset_y, scale, menuItems)
|
2021-01-07 13:41:04 -06:00
|
|
|
self.x,self.y = x,y
|
|
|
|
self.offset_x,self.offset_y = offset_x,offset_y
|
2021-01-07 01:29:06 -06:00
|
|
|
self.options = menuItems
|
|
|
|
self.selected = 1
|
2021-01-07 13:41:04 -06:00
|
|
|
self.scale = scale
|
|
|
|
|
|
|
|
self.keys = {}
|
|
|
|
self.keys['up'] = false
|
|
|
|
self.keys['down'] = false
|
|
|
|
self.keys['enter'] = false
|
|
|
|
|
|
|
|
self.ttf = r_ttf
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
function Menu:draw ()
|
2021-01-07 13:41:04 -06:00
|
|
|
for i=1,table.maxn(self.options) do
|
|
|
|
local this_y = self.y + (self.offset_y * i)
|
|
|
|
|
|
|
|
love.graphics.draw(self.options[i][1],
|
|
|
|
self.x, this_y, 0, self.scale, self.scale)
|
|
|
|
if (i == self.selected) then
|
|
|
|
love.graphics.draw(love.graphics.newText(self.ttf, ">>"),
|
|
|
|
self.x - self.offset_x, this_y, 0, self.scale, self.scale)
|
|
|
|
end
|
|
|
|
end
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
|
2021-01-07 01:29:06 -06:00
|
|
|
function Menu:keypressed(key)
|
|
|
|
maxn = table.maxn(self.options)
|
|
|
|
|
2021-01-07 13:41:04 -06:00
|
|
|
if (key == "return" or key == "space") then
|
|
|
|
self.keys['enter'] = true
|
2021-01-07 01:29:06 -06:00
|
|
|
if(self.options[self.selected][2]) then
|
|
|
|
self.options[self.selected][2]()
|
|
|
|
end
|
2021-01-07 13:41:04 -06:00
|
|
|
|
|
|
|
elseif (key == "up" and self.selected > 1
|
|
|
|
and self.keys['up'] == false) then
|
|
|
|
self.keys['up'] = true
|
2021-01-07 01:29:06 -06:00
|
|
|
self.selected = self.selected - 1
|
2021-01-07 13:41:04 -06:00
|
|
|
elseif (key == "up" and self.keys['up'] == false) then
|
|
|
|
self.keys['up'] = true
|
2021-01-07 01:29:06 -06:00
|
|
|
self.selected = maxn
|
2021-01-07 13:41:04 -06:00
|
|
|
|
|
|
|
elseif (key == "down" and self.selected < maxn
|
|
|
|
and self.keys['down'] == false) then
|
|
|
|
self.keys['down'] = true
|
2021-01-07 01:29:06 -06:00
|
|
|
self.selected = self.selected + 1
|
2021-01-07 13:41:04 -06:00
|
|
|
elseif (key == "down" and self.keys['down'] == false) then
|
|
|
|
self.keys['down'] = true
|
2021-01-07 01:29:06 -06:00
|
|
|
self.selected = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function Menu:keyreleased(key)
|
2021-01-07 13:41:04 -06:00
|
|
|
if (key == "return" or key == "space") then
|
|
|
|
self.keys['enter'] = false
|
|
|
|
elseif (key == "up") then
|
|
|
|
self.keys['up'] = false
|
|
|
|
elseif (key == "down") then
|
|
|
|
self.keys['down'] = false
|
2021-01-07 01:29:06 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|