2023-04-09 05:35:35 +00:00
|
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2023-02-28 17:43:44 +00:00
|
|
|
|
---@class GameEvent: Object
|
2023-06-08 17:10:16 +00:00
|
|
|
|
---@field public id integer @ 事件的id,随着时间推移自动增加并分配给新事件
|
|
|
|
|
---@field public end_id integer @ 事件的对应结束id,如果整个事件中未插入事件,那么end_id就是自己的id
|
|
|
|
|
---@field public room Room @ room实例
|
|
|
|
|
---@field public event integer @ 该事件对应的EventType
|
|
|
|
|
---@field public data any @ 事件的附加数据,视类型而定
|
|
|
|
|
---@field public parent GameEvent @ 事件的父事件(栈中的上一层事件)
|
|
|
|
|
---@field public main_func fun(self: GameEvent) @ 事件的主函数
|
|
|
|
|
---@field public clear_func fun(self: GameEvent) @ 事件结束时执行的函数
|
|
|
|
|
---@field public extra_clear_funcs fun(self:GameEvent)[] @ 事件结束时执行的自定义函数列表
|
|
|
|
|
---@field public exit_func fun(self: GameEvent) @ 事件结束后执行的函数
|
|
|
|
|
---@field public extra_exit_funcs fun(self:GameEvent)[] @ 事件结束后执行的自定义函数
|
|
|
|
|
---@field public interrupted boolean @ 事件是否是因为被强行中断而结束的
|
2023-02-28 17:43:44 +00:00
|
|
|
|
local GameEvent = class("GameEvent")
|
|
|
|
|
|
2023-08-10 19:30:59 +00:00
|
|
|
|
---@type (fun(self: GameEvent): bool)[]
|
2023-02-28 17:43:44 +00:00
|
|
|
|
GameEvent.functions = {}
|
2023-06-08 17:10:16 +00:00
|
|
|
|
|
2023-08-10 19:30:59 +00:00
|
|
|
|
---@type (fun(self: GameEvent): bool)[]
|
2023-02-28 17:43:44 +00:00
|
|
|
|
GameEvent.cleaners = {}
|
2023-06-08 17:10:16 +00:00
|
|
|
|
|
2023-08-10 19:30:59 +00:00
|
|
|
|
---@type (fun(self: GameEvent): bool)[]
|
2023-06-08 17:10:16 +00:00
|
|
|
|
GameEvent.exit_funcs = {}
|
|
|
|
|
|
2023-02-28 17:43:44 +00:00
|
|
|
|
local function wrapCoFunc(f, ...)
|
|
|
|
|
if not f then return nil end
|
|
|
|
|
local args = {...}
|
|
|
|
|
return function() return f(table.unpack(args)) end
|
|
|
|
|
end
|
2023-06-08 17:10:16 +00:00
|
|
|
|
local dummyFunc = Util.DummyFunc
|
2023-02-28 17:43:44 +00:00
|
|
|
|
|
|
|
|
|
function GameEvent:initialize(event, ...)
|
2023-06-08 17:10:16 +00:00
|
|
|
|
self.id = -1
|
|
|
|
|
self.end_id = -1
|
2023-02-28 17:43:44 +00:00
|
|
|
|
self.room = RoomInstance
|
|
|
|
|
self.event = event
|
|
|
|
|
self.data = { ... }
|
|
|
|
|
self.main_func = wrapCoFunc(GameEvent.functions[event], self) or dummyFunc
|
2023-04-22 07:52:26 +00:00
|
|
|
|
self.clear_func = GameEvent.cleaners[event] or dummyFunc
|
2023-06-08 17:10:16 +00:00
|
|
|
|
self.extra_clear_funcs = Util.DummyTable
|
|
|
|
|
self.exit_func = GameEvent.exit_funcs[event] or dummyFunc
|
|
|
|
|
self.extra_exit_funcs = Util.DummyTable
|
2023-03-07 06:55:28 +00:00
|
|
|
|
self.interrupted = false
|
|
|
|
|
end
|
|
|
|
|
|
2023-07-14 15:12:46 +00:00
|
|
|
|
-- 静态函数,实际定义在events/init.lua
|
|
|
|
|
function GameEvent:translate(id)
|
|
|
|
|
error('static')
|
|
|
|
|
end
|
|
|
|
|
|
2023-04-22 07:52:26 +00:00
|
|
|
|
function GameEvent:__tostring()
|
2023-06-08 17:10:16 +00:00
|
|
|
|
return string.format("<%s #%d>", GameEvent:translate(self.event), self.id)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function GameEvent:addCleaner(f)
|
|
|
|
|
if self.extra_clear_funcs == Util.DummyTable then
|
|
|
|
|
self.extra_clear_funcs = {}
|
|
|
|
|
end
|
|
|
|
|
table.insert(self.extra_clear_funcs, f)
|
2023-04-22 07:52:26 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-06-08 17:10:16 +00:00
|
|
|
|
function GameEvent:addExitFunc(f)
|
|
|
|
|
if self.extra_exit_funcs == Util.DummyTable then
|
|
|
|
|
self.extra_exit_funcs = {}
|
|
|
|
|
end
|
|
|
|
|
table.insert(self.extra_exit_funcs, f)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function GameEvent:findParent(eventType, includeSelf)
|
|
|
|
|
if includeSelf and self.event == eventType then return self end
|
2023-04-09 03:44:19 +00:00
|
|
|
|
local e = self.parent
|
|
|
|
|
repeat
|
|
|
|
|
if e.event == eventType then return e end
|
|
|
|
|
e = e.parent
|
|
|
|
|
until not e
|
|
|
|
|
return nil
|
|
|
|
|
end
|
|
|
|
|
|
2023-06-08 17:10:16 +00:00
|
|
|
|
-- 找n个id介于from和to之间的事件。
|
|
|
|
|
local function bin_search(events, from, to, n, func)
|
|
|
|
|
local left = 1
|
|
|
|
|
local right = #events
|
|
|
|
|
local mid
|
|
|
|
|
local ret = {}
|
|
|
|
|
|
|
|
|
|
if from < events[1].id then
|
|
|
|
|
mid = 1
|
|
|
|
|
elseif from > events[right].id then
|
|
|
|
|
return ret
|
|
|
|
|
else
|
|
|
|
|
while true do
|
|
|
|
|
if left > right then return ret end
|
|
|
|
|
mid = (left + right) // 2
|
|
|
|
|
local id = events[mid].id
|
|
|
|
|
local id_left = mid == 1 and -math.huge or events[mid - 1].id
|
|
|
|
|
|
|
|
|
|
if from < id then
|
|
|
|
|
if from >= id_left then
|
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
right = mid - 1
|
|
|
|
|
else
|
|
|
|
|
left = mid + 1
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
for i = mid, #events do
|
|
|
|
|
local v = events[i]
|
2023-08-02 15:01:28 +00:00
|
|
|
|
if v.id <= to and func(v) then
|
2023-06-08 17:10:16 +00:00
|
|
|
|
table.insert(ret, v)
|
|
|
|
|
end
|
|
|
|
|
if #ret >= n then break end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- 从某个区间中,找出类型符合且符合func函数检测的至多n个事件。
|
|
|
|
|
---@param eventType integer @ 要查找的事件类型
|
|
|
|
|
---@param n integer @ 最多找多少个
|
|
|
|
|
---@param func fun(e: GameEvent): boolean @ 过滤用的函数
|
|
|
|
|
---@param endEvent GameEvent|nil @ 区间终止点,默认为本事件结束
|
|
|
|
|
---@return GameEvent[] @ 找到的符合条件的所有事件,最多n个但不保证有n个
|
|
|
|
|
function GameEvent:searchEvents(eventType, n, func, endEvent)
|
|
|
|
|
local logic = self.room.logic
|
2023-06-10 12:54:48 +00:00
|
|
|
|
local events = logic.event_recorder[eventType] or Util.DummyTable
|
2023-06-08 17:10:16 +00:00
|
|
|
|
local from = self.id
|
|
|
|
|
local to = endEvent and endEvent.id or self.end_id
|
|
|
|
|
if to == -1 then to = #logic.all_game_events end
|
|
|
|
|
n = n or 1
|
|
|
|
|
func = func or function() return true end
|
|
|
|
|
|
|
|
|
|
local ret
|
|
|
|
|
if #events < 6 then
|
|
|
|
|
ret = {}
|
|
|
|
|
for _, v in ipairs(events) do
|
2023-08-02 15:01:28 +00:00
|
|
|
|
if v.id >= from and v.id <= to and func(v) then
|
2023-06-08 17:10:16 +00:00
|
|
|
|
table.insert(ret, v)
|
|
|
|
|
end
|
|
|
|
|
if #ret >= n then break end
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
ret = bin_search(events, from, to, n, func)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-07 06:55:28 +00:00
|
|
|
|
function GameEvent:clear()
|
2023-04-27 06:15:08 +00:00
|
|
|
|
local clear_co = coroutine.create(function()
|
2023-06-08 17:10:16 +00:00
|
|
|
|
self:clear_func()
|
2023-04-27 06:15:08 +00:00
|
|
|
|
for _, f in ipairs(self.extra_clear_funcs) do
|
|
|
|
|
if type(f) == "function" then f(self) end
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
while true do
|
|
|
|
|
local err, yield_result, extra_yield_result = coroutine.resume(clear_co)
|
|
|
|
|
|
|
|
|
|
if err == false then
|
|
|
|
|
-- handle error, then break
|
|
|
|
|
if not string.find(yield_result, "__manuallyBreak") then
|
|
|
|
|
fk.qCritical(yield_result)
|
2023-07-14 15:12:46 +00:00
|
|
|
|
print(debug.traceback(clear_co))
|
2023-04-27 06:15:08 +00:00
|
|
|
|
end
|
|
|
|
|
coroutine.close(clear_co)
|
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if yield_result == "__handleRequest" then
|
|
|
|
|
-- yield to requestLoop
|
|
|
|
|
coroutine.yield(yield_result, extra_yield_result)
|
|
|
|
|
else
|
|
|
|
|
coroutine.close(clear_co)
|
|
|
|
|
break
|
|
|
|
|
end
|
2023-03-07 06:55:28 +00:00
|
|
|
|
end
|
2023-06-08 17:10:16 +00:00
|
|
|
|
|
|
|
|
|
local logic = RoomInstance.logic
|
|
|
|
|
local end_id = logic.current_event_id + 1
|
|
|
|
|
if self.id ~= end_id - 1 then
|
|
|
|
|
logic.all_game_events[end_id] = -self.event
|
|
|
|
|
logic.current_event_id = end_id
|
|
|
|
|
self.end_id = end_id
|
|
|
|
|
else
|
|
|
|
|
self.end_id = self.id
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
logic.game_event_stack:pop()
|
|
|
|
|
|
2023-06-16 02:56:33 +00:00
|
|
|
|
Pcall(self.exit_func, self)
|
2023-06-08 17:10:16 +00:00
|
|
|
|
for _, f in ipairs(self.extra_exit_funcs) do
|
|
|
|
|
if type(f) == "function" then
|
2023-06-16 02:56:33 +00:00
|
|
|
|
Pcall(f, self)
|
2023-06-08 17:10:16 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
2023-02-28 17:43:44 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-04-22 07:52:26 +00:00
|
|
|
|
local function breakEvent(self, extra_yield_result)
|
|
|
|
|
local cancelEvent = GameEvent:new(GameEvent.BreakEvent, self)
|
|
|
|
|
local notcanceled = cancelEvent:exec()
|
|
|
|
|
local ret, extra_ret = false, nil
|
|
|
|
|
if not notcanceled then
|
|
|
|
|
self.interrupted = true
|
|
|
|
|
self:clear()
|
|
|
|
|
ret = true
|
|
|
|
|
extra_ret = extra_yield_result
|
|
|
|
|
end
|
|
|
|
|
return ret, extra_ret
|
|
|
|
|
end
|
|
|
|
|
|
2023-02-28 17:43:44 +00:00
|
|
|
|
function GameEvent:exec()
|
|
|
|
|
local room = self.room
|
|
|
|
|
local logic = room.logic
|
|
|
|
|
local ret = false -- false or nil means this event is running normally
|
|
|
|
|
local extra_ret
|
2023-04-09 03:44:19 +00:00
|
|
|
|
self.parent = logic:getCurrentEvent()
|
2023-02-28 17:43:44 +00:00
|
|
|
|
logic.game_event_stack:push(self)
|
|
|
|
|
|
2023-06-08 17:10:16 +00:00
|
|
|
|
logic.current_event_id = logic.current_event_id + 1
|
|
|
|
|
self.id = logic.current_event_id
|
|
|
|
|
logic.all_game_events[self.id] = self
|
|
|
|
|
logic.event_recorder[self.event] = logic.event_recorder[self.event] or {}
|
|
|
|
|
table.insert(logic.event_recorder[self.event], self)
|
|
|
|
|
|
2023-02-28 17:43:44 +00:00
|
|
|
|
local co = coroutine.create(self.main_func)
|
|
|
|
|
while true do
|
|
|
|
|
local err, yield_result, extra_yield_result = coroutine.resume(co)
|
|
|
|
|
|
|
|
|
|
if err == false then
|
|
|
|
|
-- handle error, then break
|
|
|
|
|
if not string.find(yield_result, "__manuallyBreak") then
|
|
|
|
|
fk.qCritical(yield_result)
|
|
|
|
|
print(debug.traceback(co))
|
|
|
|
|
end
|
2023-03-07 06:55:28 +00:00
|
|
|
|
self.interrupted = true
|
|
|
|
|
self:clear()
|
2023-02-28 17:43:44 +00:00
|
|
|
|
ret = true
|
2023-04-22 07:52:26 +00:00
|
|
|
|
coroutine.close(co)
|
2023-02-28 17:43:44 +00:00
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if yield_result == "__handleRequest" then
|
|
|
|
|
-- yield to requestLoop
|
|
|
|
|
coroutine.yield(yield_result, extra_yield_result)
|
|
|
|
|
|
|
|
|
|
elseif type(yield_result) == "table" and yield_result.class
|
|
|
|
|
and yield_result:isInstanceOf(GameEvent) then
|
|
|
|
|
|
2023-04-22 07:52:26 +00:00
|
|
|
|
if self ~= yield_result then
|
|
|
|
|
-- yield to corresponding GameEvent, first pop self from stack
|
|
|
|
|
self.interrupted = true
|
|
|
|
|
self:clear()
|
2023-06-08 17:10:16 +00:00
|
|
|
|
-- logic.game_event_stack:pop(self)
|
2023-04-22 07:52:26 +00:00
|
|
|
|
coroutine.close(co)
|
|
|
|
|
|
|
|
|
|
-- then, call yield
|
|
|
|
|
coroutine.yield(yield_result, extra_yield_result)
|
|
|
|
|
elseif extra_yield_result == "__breakEvent" then
|
|
|
|
|
if breakEvent(self) then
|
|
|
|
|
coroutine.close(co)
|
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
end
|
2023-02-28 17:43:44 +00:00
|
|
|
|
|
|
|
|
|
elseif yield_result == "__breakEvent" then
|
|
|
|
|
-- try to break this event
|
2023-04-22 07:52:26 +00:00
|
|
|
|
if breakEvent(self) then
|
|
|
|
|
coroutine.close(co)
|
2023-02-28 17:43:44 +00:00
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
-- normally exit, simply break the loop
|
2023-03-07 06:55:28 +00:00
|
|
|
|
self:clear()
|
2023-02-28 17:43:44 +00:00
|
|
|
|
extra_ret = yield_result
|
2023-04-22 07:52:26 +00:00
|
|
|
|
coroutine.close(co)
|
2023-02-28 17:43:44 +00:00
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return ret, extra_ret
|
|
|
|
|
end
|
|
|
|
|
|
2023-04-22 07:52:26 +00:00
|
|
|
|
function GameEvent:shutdown()
|
|
|
|
|
-- yield to self and break
|
|
|
|
|
coroutine.yield(self, "__breakEvent")
|
|
|
|
|
end
|
|
|
|
|
|
2023-02-28 17:43:44 +00:00
|
|
|
|
return GameEvent
|