2022-06-09 05:15:27 +10:00
|
|
|
local events = {}
|
2022-06-19 13:08:28 +10:00
|
|
|
local cbEvent = ('__ox_cb_%s')
|
2022-02-28 16:30:58 +11:00
|
|
|
|
2022-06-19 13:08:28 +10:00
|
|
|
RegisterNetEvent(cbEvent:format(cache.resource), function(key, ...)
|
2022-06-09 05:15:27 +10:00
|
|
|
local cb = events[key]
|
|
|
|
|
return cb and cb(...)
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
---@param _ any
|
|
|
|
|
---@param event string
|
|
|
|
|
---@param playerId number
|
2022-08-08 17:16:57 +10:00
|
|
|
---@param cb function|false
|
|
|
|
|
---@param ... any
|
|
|
|
|
---@return unknown?
|
2022-06-09 05:15:27 +10:00
|
|
|
local function triggerClientCallback(_, event, playerId, cb, ...)
|
|
|
|
|
local key
|
|
|
|
|
|
|
|
|
|
repeat
|
|
|
|
|
key = ('%s:%s:%s'):format(event, math.random(0, 100000), playerId)
|
|
|
|
|
until not events[key]
|
|
|
|
|
|
2022-06-19 13:08:28 +10:00
|
|
|
TriggerClientEvent(cbEvent:format(event), playerId, cache.resource, key, ...)
|
2022-06-09 05:15:27 +10:00
|
|
|
|
2022-08-08 17:16:57 +10:00
|
|
|
---@type promise | false
|
2022-06-09 05:15:27 +10:00
|
|
|
local promise = not cb and promise.new()
|
|
|
|
|
|
|
|
|
|
events[key] = function(response)
|
|
|
|
|
events[key] = nil
|
|
|
|
|
|
|
|
|
|
if promise then
|
2022-08-25 18:49:07 +10:00
|
|
|
return promise:resolve(response or {})
|
2022-06-09 05:15:27 +10:00
|
|
|
end
|
|
|
|
|
|
2022-08-25 18:49:07 +10:00
|
|
|
return cb and cb(table.unpack(response or {}))
|
2022-06-09 05:15:27 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if promise then
|
|
|
|
|
return table.unpack(Citizen.Await(promise))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@overload fun(event: string, playerId: number, cb: function, ...)
|
2022-09-14 00:50:27 +10:00
|
|
|
lib.callback = setmetatable({}, {
|
2022-06-09 05:15:27 +10:00
|
|
|
__call = triggerClientCallback
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
---@param event string
|
|
|
|
|
---@param playerId number
|
|
|
|
|
--- Sends an event to a client and halts the current thread until a response is returned.
|
2022-09-14 00:50:27 +10:00
|
|
|
function lib.callback.await(event, playerId, ...)
|
2022-09-14 01:20:50 +10:00
|
|
|
return triggerClientCallback(nil, event, playerId, false, ...)
|
2022-06-09 05:15:27 +10:00
|
|
|
end
|
|
|
|
|
|
2022-08-25 18:49:07 +10:00
|
|
|
local function callbackResponse(success, result, ...)
|
|
|
|
|
if not success then
|
|
|
|
|
if result then
|
|
|
|
|
return print(('^1SCRIPT ERROR: %s^0\n%s'):format(result , Citizen.InvokeNative(`FORMAT_STACK_TRACE` & 0xFFFFFFFF, nil, 0, Citizen.ResultAsString()) or ''))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return { result, ... }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local pcall = pcall
|
|
|
|
|
|
2022-02-28 16:30:58 +11:00
|
|
|
---@param name string
|
2022-03-10 14:23:25 +00:00
|
|
|
---@param cb function
|
2022-02-28 16:30:58 +11:00
|
|
|
--- Registers an event handler and callback function to respond to client requests.
|
2022-09-14 00:50:27 +10:00
|
|
|
function lib.callback.register(name, cb)
|
2022-06-19 13:08:28 +10:00
|
|
|
RegisterNetEvent(cbEvent:format(name), function(resource, key, ...)
|
2022-08-25 18:49:07 +10:00
|
|
|
TriggerClientEvent(cbEvent:format(resource), source, key, callbackResponse(pcall(cb, source, ...)))
|
2022-02-28 16:30:58 +11:00
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
|
2022-09-14 00:50:27 +10:00
|
|
|
return lib.callback
|