lr_boilerplate/main.lua

319 lines
8.5 KiB
Lua
Raw Normal View History

2023-12-11 14:13:07 +07:00
Framework = nil
if Config.Framework == 'esx' then
Framework = exports["es_extended"]:getSharedObject()
elseif Config.Framework == "qb" then
Framework = exports['qb-core']:GetCoreObject()
end
2023-12-05 13:55:38 +07:00
Main = {}
2023-12-10 04:48:31 +07:00
ResourceName = GetCurrentResourceName()
local RegisteredEvents = {}
2023-12-05 13:55:38 +07:00
if IsDuplicityVersion() then
function GetGameTimer()
return os.clock() * 1000
end
2023-12-10 04:48:31 +07:00
else
RegisterNUICallback('AppReady', function(data, cb)
cb({})
NuiReady = true
end)
2023-12-05 13:55:38 +07:00
end
function Main:Init()
local o = {}
setmetatable(o, {__index = Main})
o.impls = {}
2023-12-05 15:00:07 +07:00
o.initializedImpls = {}
2023-12-05 13:55:38 +07:00
o.lastTimeImplRegistered = 0
o.ready = false
if not IsDuplicityVersion() then
o.playerId = PlayerId()
o.playerPed = PlayerPedId()
o.playerCoords = GetEntityCoords(o.playerPed)
o.playerHeading = GetEntityHeading(o.playerPed)
2023-12-10 04:48:31 +07:00
o.playerServerId = GetPlayerServerId(o.playerId)
2023-12-05 13:55:38 +07:00
o:Thread1()
2023-12-10 04:48:31 +07:00
else
o.ClientImpls = {}
for k, v in pairs(Config.EnableModules) do
if v then
local path = "client/impl/" .. k .. ".impl.lua"
local source = LoadResourceFile(ResourceName, path)
if source == nil then
self:LogError("Failed to load %s", path)
else
--[[ self:LogInfo("Loading %s", path)
self:LogInfo("Loaded %s", source) ]]
o.ClientImpls[k] = source
end
end
end
lib.callback.register(ResourceName..":getClientImpl", function(source, implName)
return o.ClientImpls[implName]
end)
2023-12-05 13:55:38 +07:00
end
o:Exports()
2023-12-10 04:48:31 +07:00
o:RegisterCommands()
o:RegisterEvents()
2023-12-05 13:55:38 +07:00
return o
end
if not IsDuplicityVersion() then
function Main:Thread1()
Citizen.CreateThread(function()
while true do
self.playerId = PlayerId()
self.playerPed = PlayerPedId()
self.playerCoords = GetEntityCoords(self.playerPed)
self.playerHeading = GetEntityHeading(self.playerPed)
Citizen.Wait(1000)
end
end)
end
end
2023-12-10 04:48:31 +07:00
function Main:RegisterCommands()
if not IsDuplicityVersion() then
RegisterCommand("toggledebug:"..ResourceName, function(source, args, rawCommand)
Config.Debug = not Config.Debug
self:LogInfo("Debug %s", Config.Debug)
end)
RegisterCommand("toggledev:"..ResourceName, function(source, args, rawCommand)
Config.Dev = not Config.Dev
self:LogInfo("Dev %s", Config.Dev)
SendNUIMessage({
action = "updateServerState",
data = {
isDev = Config.Dev,
}
})
end)
RegisterCommand("implinfo:"..ResourceName, function(source, args, rawCommand)
self:ImplInfo()
end)
RegisterCommand("test", function()
TriggerEvent("test")
end)
else
RegisterCommand("reload:"..ResourceName, function(source, args, rawCommand)
local implName = args[1]
local mode = args[2]
if mode == nil then
mode = "0"
end
self:LogInfo("Restarting impl: %s | side: %s (0: both, 1: client, 2: server)", implName, mode)
if mode == "0" or mode == "2" then
local svImpl = self:GetImpl(implName)
if svImpl then
svImpl:Destroy()
self.impls[implName] = nil
self.initializedImpls[implName] = nil
end
local source = LoadResourceFile(ResourceName, "server/impl/" .. implName .. ".impl.lua")
if source == nil then
self:LogError("Failed to load %s", path)
else
self:LogInfo("Loading %s", implName)
load(source)()
end
end
if mode == "0" or mode == "1" then
local clSource = LoadResourceFile(ResourceName, "client/impl/" .. implName .. ".impl.lua")
if clSource == nil then
self:LogError("Failed to load %s", path)
else
self:LogInfo("Loading %s", "client/impl/" .. implName .. ".impl.lua")
TriggerClientEvent(ResourceName..":restartClientImpl", -1, implName, clSource)
end
end
end, true)
end
end
function Main:RegisterEvents()
RegisterNetEvent(ResourceName..":restartClientImpl", function(implName, source)
local clImpl = self:GetImpl(implName)
if clImpl then
clImpl:Destroy()
self.impls[implName] = nil
self.initializedImpls[implName] = nil
end
load(source)()
end)
end
2023-12-05 13:55:38 +07:00
function Main:LogError(msg, ...)
if not Config.Debug then return end
print(("[^1ERROR^0] " .. msg):format(...))
end
function Main:LogWarning(msg, ...)
if not Config.Debug then return end
print(("[^3WARNING^0] " .. msg):format(...))
end
function Main:LogSuccess(msg, ...)
if not Config.Debug then return end
print(("[^2INFO^0] " .. msg):format(...))
end
function Main:LogInfo(msg, ...)
if not Config.Debug then return end
print(("[^5INFO^0] " .. msg):format(...))
end
function Main:CheckValidImpl(name, impl)
if not impl then
self:LogError("Impl %s is nil", name)
return false
end
if not impl.Init then
self:LogError("Impl %s missing Init function", name)
return false
end
return true
end
function Main:RegisterImpl(name, impl)
2023-12-10 04:48:31 +07:00
if not Config.EnableModules[name] then
self:LogWarning("Impl %s not enabled", name)
return
end
2023-12-05 13:55:38 +07:00
if self.impls[name] then
self:LogWarning("Impl %s already registered", name)
return
end
if not self:CheckValidImpl(name, impl) then
return
end
self.impls[name] = impl
self.lastTimeImplRegistered = GetGameTimer()
2023-12-10 04:48:31 +07:00
2023-12-05 13:55:38 +07:00
self:LogSuccess("Impl %s registered", name)
if self.ready then
2023-12-10 04:48:31 +07:00
Citizen.CreateThread(function()
self:LogSuccess("Impl %s hot reloading", name)
Wait(1000)
self.initializedImpls[name] = impl(self)
if not self.initializedImpls[name] then
self:LogError("Impl %s failed to hot reload", name)
return
end
self.initializedImpls[name]:OnReady()
self:LogSuccess("Impl %s hot reloaded", name)
end)
2023-12-05 13:55:38 +07:00
end
end
function Main:InitImpl()
2023-12-10 04:48:31 +07:00
if not IsDuplicityVersion() then
for k, v in pairs(Config.EnableModules) do
if v then
self:LogInfo("Loading %s", k)
local source = lib.callback.await(ResourceName..":getClientImpl", false, k)
self:LogInfo("Loaded %s", k)
load(source)()
end
end
end
2023-12-05 13:55:38 +07:00
for name, impl in pairs(self.impls) do
2023-12-05 15:00:07 +07:00
self.initializedImpls[name] = impl(self)
2023-12-05 13:55:38 +07:00
end
self:LogInfo("All impls initialized")
self.ready = true
2023-12-05 15:00:07 +07:00
for name, impl in pairs(self.initializedImpls) do
2023-12-05 13:55:38 +07:00
impl:OnReady()
end
2023-12-10 04:48:31 +07:00
if not IsDuplicityVersion() then
SendNUIMessage({
action = "updateServerState",
data = {
isDev = Config.Dev,
}
})
end
2023-12-05 13:55:38 +07:00
end
function Main:GetImpl(name)
2023-12-05 15:00:07 +07:00
if not self.initializedImpls[name] then
2023-12-05 13:55:38 +07:00
self:LogError("Impl %s not found", name)
return
end
2023-12-05 15:00:07 +07:00
return self.initializedImpls[name]
2023-12-05 13:55:38 +07:00
end
function Main:ImplCall(name, func, ...)
local impl = self:GetImpl(name)
if not impl then
return
end
if not impl[func] then
self:LogError("Impl %s missing function %s - args %s", name, func, json.encode({...}))
return
end
return impl[func](impl, ...)
end
2023-12-05 15:00:07 +07:00
2023-12-05 13:55:38 +07:00
function Main:ImplInfo()
for name, impl in pairs(self.impls) do
2023-12-10 04:48:31 +07:00
local debug = debug.getinfo(impl.OnReady, "S")
2023-12-05 13:55:38 +07:00
self:LogInfo("Impl %s - %s", name, debug.short_src)
end
end
function Main:Exports()
exports("ImplCall", function(name, func, ...)
return self:ImplCall(name, func, ...)
end)
end
main = Main:Init()
2023-12-10 04:48:31 +07:00
local origAddEventHandler = AddEventHandler
function AddEventHandler(eventName, ...)
if RegisteredEvents[eventName] then
main:LogWarning("Event %s already registered. Removing", eventName)
RemoveEventHandler(RegisteredEvents[eventName])
end
RegisteredEvents[eventName] = origAddEventHandler(eventName, ...)
return RegisteredEvents[eventName]
end
local origRegisterNetEvent = RegisterNetEvent
function RegisterNetEvent(eventName, ...)
if RegisteredEvents[eventName] then
main:LogWarning("Event %s already registered. Removing", eventName)
RemoveEventHandler(RegisteredEvents[eventName])
end
RegisteredEvents[eventName] = origRegisterNetEvent(eventName, ...)
return RegisteredEvents[eventName]
end
2023-12-05 13:55:38 +07:00
Citizen.CreateThread(function()
while GetGameTimer() < main.lastTimeImplRegistered + 1000 do
Citizen.Wait(0)
end
2023-12-10 04:48:31 +07:00
while ESX == nil do
Wait(100)
end
if not IsDuplicityVersion() then
2023-12-11 14:13:07 +07:00
if Config.Framework == 'esx' then
while not ESX.IsPlayerLoaded() do
Wait(100)
end
elseif Config.Framework == 'qb' then
local player = Framework.Functions.GetPlayerData()
while player == nil do
Wait(100)
player = Framework.Functions.GetPlayerData()
end
2023-12-10 04:48:31 +07:00
end
while not NuiReady and Config.Nui do
Wait(100)
end
end
2023-12-05 13:55:38 +07:00
main:InitImpl()
end)