2021-05-05 08:53:54 +02:00
|
|
|
-- birb :: The main birb script, loading the core and main utilities
|
2019-01-27 21:28:00 +01:00
|
|
|
|
|
|
|
--[[
|
2021-05-05 08:53:54 +02:00
|
|
|
Copyright © 2021 Kazhnuz
|
2019-01-27 21:28:00 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
]]
|
|
|
|
|
2021-05-05 08:53:54 +02:00
|
|
|
birb = {}
|
2019-03-23 12:02:01 +01:00
|
|
|
|
|
|
|
-- GLOBAL UTILS/FUNCTION LOADING
|
|
|
|
-- Load in the global namespace utilities that'll need to be reusable everywhere
|
|
|
|
-- in the game
|
|
|
|
|
2021-05-05 08:53:54 +02:00
|
|
|
Object = require("birb.libs.classic")
|
|
|
|
utils = require("birb.utils")
|
2021-05-05 13:15:50 +02:00
|
|
|
enum = require("birb.utils.enum")
|
2019-03-23 12:02:01 +01:00
|
|
|
|
2021-05-05 08:53:54 +02:00
|
|
|
birb.Core = require("birb.core")
|
2019-01-27 21:28:00 +01:00
|
|
|
|
2021-06-06 13:41:34 +02:00
|
|
|
function birb.start(gamemodule, args)
|
|
|
|
birb.startCore(args)
|
2021-05-05 08:53:54 +02:00
|
|
|
if (gamemodule ~= nil) then
|
|
|
|
birb.startGame(gamemodule)
|
2019-07-26 16:46:43 +02:00
|
|
|
end
|
2019-01-28 09:15:42 +01:00
|
|
|
end
|
|
|
|
|
2021-06-06 13:41:34 +02:00
|
|
|
function birb.startCore(args)
|
|
|
|
core = birb.Core(args)
|
2019-01-27 21:28:00 +01:00
|
|
|
end
|
|
|
|
|
2021-05-05 08:53:54 +02:00
|
|
|
function birb.startGame(gamemodule)
|
|
|
|
local GameObject = require(gamemodule)
|
|
|
|
game = GameObject()
|
2019-01-27 21:37:42 +01:00
|
|
|
end
|
|
|
|
|
2021-05-05 08:53:54 +02:00
|
|
|
require("birb.callbacks")
|