2023-04-30 10:51:05 +00:00
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
local function tellRoomToObserver(self, player)
|
|
|
|
local observee = self.players[1]
|
2024-06-10 07:19:47 +00:00
|
|
|
local start_time = os.getms()
|
2024-04-19 12:53:19 +00:00
|
|
|
local summary = self:getSummary(observee, true)
|
|
|
|
player:doNotify("Observe", json.encode(summary))
|
2023-09-06 14:33:42 +00:00
|
|
|
|
2024-06-10 07:19:47 +00:00
|
|
|
fk.qInfo(string.format("[Observe] %d, %s, in %.3fms",
|
|
|
|
self.id, player:getScreenName(), (os.getms() - start_time) / 1000))
|
|
|
|
|
2023-07-12 12:35:05 +00:00
|
|
|
table.insert(self.observers, {observee.id, player, player:getId()})
|
2023-04-30 10:51:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
local function addObserver(self, id)
|
|
|
|
local all_observers = self.room:getObservers()
|
|
|
|
for _, p in fk.qlist(all_observers) do
|
|
|
|
if p:getId() == id then
|
|
|
|
tellRoomToObserver(self, p)
|
|
|
|
self:doBroadcastNotify("AddObserver", json.encode{
|
|
|
|
p:getId(),
|
|
|
|
p:getScreenName(),
|
|
|
|
p:getAvatar()
|
|
|
|
})
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function removeObserver(self, id)
|
|
|
|
for _, t in ipairs(self.observers) do
|
2023-07-12 12:35:05 +00:00
|
|
|
local pid = t[3]
|
|
|
|
if pid == id then
|
2023-04-30 10:51:05 +00:00
|
|
|
table.removeOne(self.observers, t)
|
2023-07-12 12:35:05 +00:00
|
|
|
self:doBroadcastNotify("RemoveObserver", json.encode{ pid })
|
2023-04-30 10:51:05 +00:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local request_handlers = {}
|
|
|
|
request_handlers["reconnect"] = function(room, id, reqlist)
|
|
|
|
local p = room:getPlayerById(id)
|
2023-06-04 11:31:44 +00:00
|
|
|
if p then
|
|
|
|
p:reconnect()
|
|
|
|
end
|
2023-04-30 10:51:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
request_handlers["observe"] = function(room, id, reqlist)
|
|
|
|
addObserver(room, id)
|
|
|
|
end
|
|
|
|
|
|
|
|
request_handlers["leave"] = function(room, id, reqlist)
|
|
|
|
removeObserver(room, id)
|
|
|
|
end
|
|
|
|
|
|
|
|
request_handlers["prelight"] = function(room, id, reqlist)
|
|
|
|
local p = room:getPlayerById(id)
|
2023-07-02 14:39:01 +00:00
|
|
|
if p then
|
|
|
|
p:prelightSkill(reqlist[3], reqlist[4] == "true")
|
|
|
|
end
|
2023-04-30 10:51:05 +00:00
|
|
|
end
|
|
|
|
|
2023-05-18 23:45:21 +00:00
|
|
|
request_handlers["luckcard"] = function(room, id, reqlist)
|
|
|
|
local p = room:getPlayerById(id)
|
|
|
|
local cancel = reqlist[3] == "false"
|
|
|
|
local luck_data = room:getTag("LuckCardData")
|
2023-05-26 12:53:26 +00:00
|
|
|
if not (p and luck_data) then return end
|
2023-05-18 23:45:21 +00:00
|
|
|
local pdata = luck_data[id]
|
|
|
|
|
|
|
|
if not cancel then
|
|
|
|
pdata.luckTime = pdata.luckTime - 1
|
|
|
|
luck_data.discardInit(room, p)
|
|
|
|
luck_data.drawInit(room, p, pdata.num)
|
|
|
|
else
|
|
|
|
pdata.luckTime = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
if pdata.luckTime > 0 then
|
|
|
|
p:doNotify("AskForLuckCard", pdata.luckTime)
|
2023-06-16 02:56:33 +00:00
|
|
|
else
|
|
|
|
p.serverplayer:setThinking(false)
|
2024-06-10 07:19:47 +00:00
|
|
|
ResumeRoom(room.id)
|
2023-05-18 23:45:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
room:setTag("LuckCardData", luck_data)
|
|
|
|
end
|
|
|
|
|
2023-04-30 10:51:05 +00:00
|
|
|
request_handlers["changeself"] = function(room, id, reqlist)
|
|
|
|
local p = room:getPlayerById(id)
|
|
|
|
local toId = tonumber(reqlist[3])
|
|
|
|
local from = p
|
|
|
|
local to = room:getPlayerById(toId)
|
|
|
|
local from_sp = from._splayer
|
|
|
|
|
|
|
|
-- 注意发来信息的玩家的主视角可能已经不是自己了
|
|
|
|
-- 先换成正确的玩家
|
|
|
|
from = table.find(room.players, function(p)
|
|
|
|
return table.contains(p._observers, from_sp)
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- 切换视角
|
|
|
|
table.removeOne(from._observers, from_sp)
|
|
|
|
table.insert(to._observers, from_sp)
|
|
|
|
from_sp:doNotify("ChangeSelf", json.encode {
|
|
|
|
id = toId,
|
|
|
|
handcards = to:getCardIds(Player.Hand),
|
2023-06-16 05:26:02 +00:00
|
|
|
special_cards = to.special_cards,
|
2023-04-30 10:51:05 +00:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2023-07-02 12:39:42 +00:00
|
|
|
request_handlers["surrender"] = function(room, id, reqlist)
|
2023-07-02 14:39:01 +00:00
|
|
|
local player = room:getPlayerById(id)
|
|
|
|
if not player then return end
|
2024-02-26 18:28:13 +00:00
|
|
|
|
|
|
|
room.hasSurrendered = true
|
|
|
|
player.surrendered = true
|
|
|
|
room:doBroadcastNotify("CancelRequest", "")
|
2024-06-10 07:19:47 +00:00
|
|
|
ResumeRoom(room.id)
|
2023-07-02 12:39:42 +00:00
|
|
|
end
|
|
|
|
|
2024-01-11 10:36:05 +00:00
|
|
|
request_handlers["updatemini"] = function(room, pid, reqlist)
|
|
|
|
local player = room:getPlayerById(pid)
|
|
|
|
local data = player.mini_game_data
|
|
|
|
if not data then return end
|
|
|
|
local game = Fk.mini_games[data.type]
|
|
|
|
if not (game and game.update_func) then return end
|
|
|
|
local dat = table.simpleClone(reqlist)
|
|
|
|
table.remove(dat, 1)
|
|
|
|
table.remove(dat, 1)
|
|
|
|
game.update_func(player, dat)
|
|
|
|
end
|
|
|
|
|
2023-06-16 02:56:33 +00:00
|
|
|
request_handlers["newroom"] = function(s, id)
|
|
|
|
s:registerRoom(id)
|
2024-06-10 07:19:47 +00:00
|
|
|
ResumeRoom(id)
|
2023-06-16 02:56:33 +00:00
|
|
|
end
|
|
|
|
|
2024-04-06 16:35:57 +00:00
|
|
|
request_handlers["reloadpackage"] = function(_, _, reqlist)
|
2024-04-01 17:00:10 +00:00
|
|
|
if not IsConsoleStart() then return end
|
|
|
|
local path = reqlist[3]
|
|
|
|
Fk:reloadPackage(path)
|
|
|
|
end
|
|
|
|
|
2024-06-10 07:19:47 +00:00
|
|
|
return function(self, request)
|
|
|
|
local reqlist = request:split(",")
|
|
|
|
local roomId = tonumber(table.remove(reqlist, 1))
|
|
|
|
local room = self:getRoom(roomId)
|
|
|
|
|
|
|
|
if room then
|
|
|
|
RoomInstance = room
|
|
|
|
local id = tonumber(reqlist[1])
|
|
|
|
local command = reqlist[2]
|
|
|
|
Pcall(request_handlers[command], room, id, reqlist)
|
|
|
|
RoomInstance = nil
|
2023-04-30 10:51:05 +00:00
|
|
|
end
|
|
|
|
end
|