86 lines
2.1 KiB
Lua
86 lines
2.1 KiB
Lua
--[[
|
|
GD50
|
|
|
|
Author: Angel C Monroy
|
|
angelchecamonroy@outlook.com
|
|
|
|
Credit for art:
|
|
Buch - https://opengameart.org/users/buch (tile sprites)
|
|
|
|
Monster sprites:
|
|
http://creativecommons.org/licenses/by-sa/4.0/
|
|
Aardart - Magic-Purple-Hermit
|
|
https://wiki.tuxemon.org/index.php?title=Magic-Purple-Hermit
|
|
Agnite - Leo, Sanglorian, and extyrannomon
|
|
https://wiki.tuxemon.org/index.php?title=Leo
|
|
https://wiki.tuxemon.org/index.php?title=Sanglorian
|
|
https://wiki.tuxemon.org/index.php?title=Extyrannomon&action=edit&redlink=1
|
|
Anoleaf - Spalding004
|
|
https://wiki.tuxemon.org/index.php?title=Spalding004
|
|
Bamboon - Mike Bramson
|
|
mnbramson@gmail.com
|
|
Cardiwing - Spalding004
|
|
https://wiki.tuxemon.org/index.php?title=Spalding004
|
|
|
|
Credit for music:
|
|
Field: https://freesound.org/people/Mrthenoronha/sounds/371843/
|
|
Battle: https://freesound.org/people/Sirkoto51/sounds/414214/
|
|
]]
|
|
|
|
-- require('mobdebug').start()
|
|
require 'src/Dependencies'
|
|
|
|
if os.getenv("LOCAL_LUA_DEBUGGER_VSCODE") == "1" then
|
|
require("lldebugger").start()
|
|
end
|
|
|
|
function love.load()
|
|
love.window.setTitle('SpiderCut')
|
|
love.graphics.setDefaultFilter('nearest', 'nearest')
|
|
love.graphics.setLineJoin( "bevel" )
|
|
math.randomseed(os.time())
|
|
|
|
push:setupScreen(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOW_WIDTH, WINDOW_HEIGHT, {
|
|
fullscreen = false,
|
|
vsync = false,
|
|
resizable = true
|
|
})
|
|
|
|
gStateStack = StateStack()
|
|
gStateStack:push(StartState())
|
|
|
|
love.keyboard.keysPressed = {}
|
|
end
|
|
|
|
function love.resize(w, h)
|
|
push:resize(w, h)
|
|
end
|
|
|
|
function love.keypressed(key)
|
|
if key == 'escape' then
|
|
love.event.quit()
|
|
end
|
|
|
|
if key == 'f' then
|
|
push:switchFullscreen()
|
|
end
|
|
|
|
love.keyboard.keysPressed[key] = true
|
|
end
|
|
|
|
function love.keyboard.wasPressed(key)
|
|
return love.keyboard.keysPressed[key]
|
|
end
|
|
|
|
function love.update(dt)
|
|
Timer.update(dt)
|
|
gStateStack:update(dt)
|
|
|
|
love.keyboard.keysPressed = {}
|
|
end
|
|
|
|
function love.draw()
|
|
push:start()
|
|
gStateStack:render()
|
|
push:finish()
|
|
end |