2019-01-27 20:21:06 +01:00
|
|
|
-- main.lua :: the core file of the game, will load main libs and core system
|
2019-01-27 20:30:31 +01:00
|
|
|
|
|
|
|
--[[
|
|
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
]]
|
2019-01-27 20:21:06 +01:00
|
|
|
|
2019-01-27 21:29:33 +01:00
|
|
|
Core = require "core"
|
2019-01-28 08:35:10 +01:00
|
|
|
Game = require "game"
|
2019-01-27 20:27:47 +01:00
|
|
|
|
2019-01-28 09:15:42 +01:00
|
|
|
scenes = require "scenes"
|
|
|
|
|
2019-01-27 20:21:06 +01:00
|
|
|
function love.load()
|
2019-07-26 19:57:08 +02:00
|
|
|
core = Core(true)
|
2019-01-28 08:35:10 +01:00
|
|
|
game = Game()
|
2019-01-28 09:15:42 +01:00
|
|
|
|
2019-08-12 12:37:00 +02:00
|
|
|
scenes.cbs()
|
2019-01-27 20:21:06 +01:00
|
|
|
end
|
2019-01-27 21:32:12 +01:00
|
|
|
|
|
|
|
function love.update(dt)
|
|
|
|
core:update(dt)
|
2019-01-28 08:35:10 +01:00
|
|
|
game:update(dt)
|
2019-01-27 21:32:12 +01:00
|
|
|
end
|
2019-01-28 09:15:42 +01:00
|
|
|
|
|
|
|
function love.draw()
|
|
|
|
core:draw()
|
|
|
|
end
|
2019-01-28 09:44:07 +01:00
|
|
|
|
|
|
|
function love.mousemoved(x, y, dx, dy)
|
|
|
|
core:mousemoved(x, y, dx, dy)
|
|
|
|
end
|
|
|
|
|
|
|
|
function love.mousepressed( x, y, button, istouch )
|
2019-03-10 13:27:27 +01:00
|
|
|
core:mousepressed(x, y, button, istouch)
|
2019-01-28 09:44:07 +01:00
|
|
|
end
|