2022-03-30 08:33:56 +00:00
|
|
|
---@class Player : Object
|
2022-04-03 13:43:35 +00:00
|
|
|
---@field id integer
|
2022-04-01 12:51:01 +00:00
|
|
|
---@field hp integer
|
|
|
|
---@field maxHp integer
|
|
|
|
---@field kingdom string
|
|
|
|
---@field role string
|
|
|
|
---@field general string
|
|
|
|
---@field handcard_num integer
|
|
|
|
---@field seat integer
|
2022-12-20 04:51:54 +00:00
|
|
|
---@field next Player
|
2022-04-01 12:51:01 +00:00
|
|
|
---@field phase Phase
|
|
|
|
---@field faceup boolean
|
|
|
|
---@field chained boolean
|
|
|
|
---@field dying boolean
|
|
|
|
---@field dead boolean
|
|
|
|
---@field state string
|
|
|
|
---@field player_skills Skill[]
|
2022-09-14 05:01:10 +00:00
|
|
|
---@field derivative_skills table<Skill, Skill[]>
|
2022-04-02 13:39:44 +00:00
|
|
|
---@field flag string[]
|
|
|
|
---@field tag table<string, any>
|
|
|
|
---@field mark table<string, integer>
|
2022-04-08 10:39:58 +00:00
|
|
|
---@field player_cards table<integer, integer[]>
|
|
|
|
---@field special_cards table<string, integer[]>
|
2022-04-30 07:27:56 +00:00
|
|
|
---@field cardUsedHistory table<string, integer>
|
2023-01-04 06:21:29 +00:00
|
|
|
---@field fixedDistance table<Player, integer>
|
2022-03-27 06:49:41 +00:00
|
|
|
local Player = class("Player")
|
2022-03-25 04:28:07 +00:00
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
---@alias Phase integer
|
|
|
|
|
|
|
|
Player.RoundStart = 1
|
|
|
|
Player.Start = 2
|
|
|
|
Player.Judge = 3
|
|
|
|
Player.Draw = 4
|
|
|
|
Player.Play = 5
|
|
|
|
Player.Discard = 6
|
|
|
|
Player.Finish = 7
|
|
|
|
Player.NotActive = 8
|
|
|
|
Player.PhaseNone = 9
|
|
|
|
|
2022-04-08 10:39:58 +00:00
|
|
|
---@alias PlayerCardArea integer
|
|
|
|
|
|
|
|
Player.Hand = 1
|
|
|
|
Player.Equip = 2
|
|
|
|
Player.Judge = 3
|
|
|
|
Player.Special = 4
|
|
|
|
|
2022-03-25 04:28:07 +00:00
|
|
|
function Player:initialize()
|
2022-04-30 07:27:56 +00:00
|
|
|
self.id = 114514
|
|
|
|
self.hp = 0
|
|
|
|
self.maxHp = 0
|
|
|
|
self.kingdom = "qun"
|
|
|
|
self.role = ""
|
|
|
|
self.general = ""
|
|
|
|
self.seat = 0
|
2022-12-20 04:51:54 +00:00
|
|
|
self.next = nil
|
2022-04-30 07:27:56 +00:00
|
|
|
self.phase = Player.PhaseNone
|
|
|
|
self.faceup = true
|
|
|
|
self.chained = false
|
|
|
|
self.dying = false
|
|
|
|
self.dead = false
|
|
|
|
self.state = ""
|
|
|
|
|
|
|
|
self.player_skills = {}
|
2022-09-14 05:01:10 +00:00
|
|
|
self.derivative_skills = {}
|
2022-04-30 07:27:56 +00:00
|
|
|
self.flag = {}
|
|
|
|
self.tag = {}
|
|
|
|
self.mark = {}
|
|
|
|
self.player_cards = {
|
|
|
|
[Player.Hand] = {},
|
|
|
|
[Player.Equip] = {},
|
|
|
|
[Player.Judge] = {},
|
|
|
|
}
|
|
|
|
self.special_cards = {}
|
|
|
|
|
|
|
|
self.cardUsedHistory = {}
|
2023-01-04 06:21:29 +00:00
|
|
|
self.fixedDistance = {}
|
2022-03-25 04:28:07 +00:00
|
|
|
end
|
|
|
|
|
2022-03-31 05:29:23 +00:00
|
|
|
---@param general General
|
|
|
|
---@param setHp boolean
|
|
|
|
---@param addSkills boolean
|
2022-03-25 04:28:07 +00:00
|
|
|
function Player:setGeneral(general, setHp, addSkills)
|
2022-04-30 07:27:56 +00:00
|
|
|
self.general = general
|
|
|
|
if setHp then
|
|
|
|
self.maxHp = general.maxHp
|
|
|
|
self.hp = general.hp
|
|
|
|
end
|
2022-03-25 04:28:07 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
if addSkills then
|
|
|
|
table.insertTable(self.player_skills, general.skills)
|
|
|
|
end
|
2022-03-25 04:28:07 +00:00
|
|
|
end
|
|
|
|
|
2022-04-02 13:39:44 +00:00
|
|
|
---@param flag string
|
|
|
|
function Player:hasFlag(flag)
|
2022-04-30 07:27:56 +00:00
|
|
|
return table.contains(self.flag, flag)
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param flag string
|
|
|
|
function Player:setFlag(flag)
|
2022-04-30 07:27:56 +00:00
|
|
|
if flag == "." then
|
|
|
|
self:clearFlags()
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if flag:sub(1, 1) == "-" then
|
|
|
|
flag = flag:sub(2, #flag)
|
|
|
|
table.removeOne(self.flag, flag)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if not self:hasFlag(flag) then
|
|
|
|
table.insert(self.flag, flag)
|
|
|
|
end
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:clearFlags()
|
2022-04-30 07:27:56 +00:00
|
|
|
self.flag = {}
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:addMark(mark, count)
|
2022-04-30 07:27:56 +00:00
|
|
|
count = count or 1
|
|
|
|
local num = self.mark[mark]
|
|
|
|
num = num or 0
|
|
|
|
self:setMark(mark, math.max(num + count, 0))
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:removeMark(mark, count)
|
2022-04-30 07:27:56 +00:00
|
|
|
count = count or 1
|
|
|
|
local num = self.mark[mark]
|
|
|
|
num = num or 0
|
|
|
|
self:setMark(mark, math.max(num - count, 0))
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:setMark(mark, count)
|
2022-04-30 07:27:56 +00:00
|
|
|
if self.mark[mark] ~= count then
|
|
|
|
self.mark[mark] = count
|
|
|
|
end
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:getMark(mark)
|
2022-04-30 07:27:56 +00:00
|
|
|
return (self.mark[mark] or 0)
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:getMarkNames()
|
2022-04-30 07:27:56 +00:00
|
|
|
local ret = {}
|
|
|
|
for k, _ in pairs(self.mark) do
|
|
|
|
table.insert(ret, k)
|
|
|
|
end
|
|
|
|
return ret
|
2022-04-02 13:39:44 +00:00
|
|
|
end
|
|
|
|
|
2022-04-08 10:39:58 +00:00
|
|
|
---@param playerArea PlayerCardArea
|
|
|
|
---@param cardIds integer[]
|
|
|
|
---@param specialName string
|
|
|
|
function Player:addCards(playerArea, cardIds, specialName)
|
2022-04-30 07:27:56 +00:00
|
|
|
assert(table.contains({ Player.Hand, Player.Equip, Player.Judge, Player.Special }, playerArea))
|
|
|
|
assert(playerArea ~= Player.Special or type(specialName) == "string")
|
|
|
|
|
|
|
|
if playerArea == Player.Special then
|
|
|
|
self.special_cards[specialName] = self.special_cards[specialName] or {}
|
|
|
|
table.insertTable(self.special_cards[specialName], cardIds)
|
|
|
|
else
|
|
|
|
table.insertTable(self.player_cards[playerArea], cardIds)
|
|
|
|
end
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param playerArea PlayerCardArea
|
|
|
|
---@param cardIds integer[]
|
|
|
|
---@param specialName string
|
|
|
|
function Player:removeCards(playerArea, cardIds, specialName)
|
2022-04-30 07:27:56 +00:00
|
|
|
assert(table.contains({ Player.Hand, Player.Equip, Player.Judge, Player.Special }, playerArea))
|
|
|
|
assert(playerArea ~= Player.Special or type(specialName) == "string")
|
|
|
|
|
|
|
|
local fromAreaIds = playerArea == Player.Special and self.special_cards[specialName] or self.player_cards[playerArea]
|
|
|
|
if fromAreaIds then
|
|
|
|
for _, id in ipairs(cardIds) do
|
|
|
|
if #fromAreaIds == 0 then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
table.removeOne(fromAreaIds, id)
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
2022-04-30 07:27:56 +00:00
|
|
|
end
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param playerAreas PlayerCardArea
|
|
|
|
---@param specialName string
|
|
|
|
---@return integer[]
|
|
|
|
function Player:getCardIds(playerAreas, specialName)
|
2022-04-30 07:27:56 +00:00
|
|
|
local rightAreas = { Player.Hand, Player.Equip, Player.Judge }
|
|
|
|
playerAreas = playerAreas or rightAreas
|
|
|
|
assert(type(playerAreas) == "number" or type(playerAreas) == "table")
|
|
|
|
local areas = type(playerAreas) == "table" and playerAreas or { playerAreas }
|
|
|
|
|
|
|
|
local rightAreas = { Player.Hand, Player.Equip, Player.Judge, Player.Special }
|
|
|
|
local cardIds = {}
|
|
|
|
for _, area in ipairs(areas) do
|
|
|
|
assert(table.contains(rightAreas, area))
|
|
|
|
assert(area ~= Player.Special or type(specialName) == "string")
|
|
|
|
local currentCardIds = area == Player.Special and self.special_cards[specialName] or self.player_cards[area]
|
|
|
|
table.insertTable(cardIds, currentCardIds)
|
|
|
|
end
|
|
|
|
|
|
|
|
return cardIds
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param cardSubtype CardSubtype
|
|
|
|
---@return integer|null
|
|
|
|
function Player:getEquipment(cardSubtype)
|
|
|
|
for _, cardId in ipairs(self.player_cards[Player.Equip]) do
|
|
|
|
if Fk:getCardById(cardId).sub_type == cardSubtype then
|
|
|
|
return cardId
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
2022-04-30 07:27:56 +00:00
|
|
|
end
|
2022-04-08 10:39:58 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
return nil
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:getMaxCards()
|
2022-04-30 07:27:56 +00:00
|
|
|
local baseValue = math.max(self.hp, 0)
|
2022-04-08 10:39:58 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
return baseValue
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Player:getAttackRange()
|
2022-12-20 13:15:49 +00:00
|
|
|
local weapon = Fk:getCardById(self:getEquipment(Card.SubtypeWeapon))
|
2022-04-30 07:27:56 +00:00
|
|
|
local baseAttackRange = math.max(weapon and weapon.attack_range or 1, 0)
|
|
|
|
|
|
|
|
return math.max(baseAttackRange, 0)
|
|
|
|
end
|
|
|
|
|
2023-01-04 06:21:29 +00:00
|
|
|
---@param other Player
|
|
|
|
---@param num integer
|
|
|
|
function Player:setFixedDistance(other, num)
|
|
|
|
self.fixedDistance[other] = num
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param other Player
|
|
|
|
function Player:removeFixedDistance(other)
|
|
|
|
self.fixedDistance[other] = nil
|
|
|
|
end
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
---@param other Player
|
|
|
|
function Player:distanceTo(other)
|
2022-12-20 04:51:54 +00:00
|
|
|
assert(other:isInstanceOf(Player))
|
|
|
|
local right = 0
|
|
|
|
local temp = self
|
|
|
|
while temp ~= other do
|
|
|
|
if not temp.dead then
|
|
|
|
right = right + 1
|
|
|
|
end
|
|
|
|
temp = temp.next
|
|
|
|
end
|
2022-09-14 05:01:10 +00:00
|
|
|
local left = #Fk:currentRoom().alive_players - right
|
|
|
|
local ret = math.min(left, right)
|
2023-01-04 06:21:29 +00:00
|
|
|
|
|
|
|
local status_skills = Fk:currentRoom().status_skills[DistanceSkill] or {}
|
|
|
|
for _, skill in ipairs(status_skills) do
|
|
|
|
local correct = skill:getCorrect(self, other)
|
|
|
|
ret = ret + correct
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.fixedDistance[other] then
|
|
|
|
ret = self.fixedDistance[other]
|
|
|
|
end
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
return math.max(ret, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param other Player
|
|
|
|
function Player:inMyAttackRange(other)
|
|
|
|
return self ~= other and self:distanceTo(other) <= self:getAttackRange()
|
|
|
|
end
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
function Player:addCardUseHistory(cardName, num)
|
|
|
|
assert(type(num) == "number" and num ~= 0)
|
|
|
|
|
|
|
|
self.cardUsedHistory[cardName] = self.cardUsedHistory[cardName] or 0
|
|
|
|
self.cardUsedHistory[cardName] = self.cardUsedHistory[cardName] + num
|
|
|
|
end
|
2022-04-08 10:39:58 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
function Player:resetCardUseHistory(cardName)
|
2022-12-20 04:51:54 +00:00
|
|
|
if not cardName then
|
|
|
|
self.cardUsedHistory = {}
|
|
|
|
end
|
2022-04-30 07:27:56 +00:00
|
|
|
if self.cardUsedHistory[cardName] then
|
|
|
|
self.cardUsedHistory[cardName] = 0
|
|
|
|
end
|
2022-04-08 10:39:58 +00:00
|
|
|
end
|
|
|
|
|
2022-12-20 04:51:54 +00:00
|
|
|
function Player:usedTimes(cardName)
|
|
|
|
return self.cardUsedHistory[cardName] or 0
|
|
|
|
end
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
function Player:isKongcheng()
|
|
|
|
return #self:getCardIds(Player.Hand) == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:isNude()
|
|
|
|
return #self:getCardIds{Player.Hand, Player.Equip} == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function Player:isAllNude()
|
|
|
|
return #self:getCardIds() == 0
|
|
|
|
end
|
|
|
|
|
2022-12-20 04:51:54 +00:00
|
|
|
function Player:isWounded()
|
|
|
|
return self.hp < self.maxHp
|
|
|
|
end
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
---@param skill string | Skill
|
|
|
|
---@return Skill
|
|
|
|
local function getActualSkill(skill)
|
|
|
|
if type(skill) == "string" then
|
|
|
|
skill = Fk.skills[skill]
|
|
|
|
end
|
|
|
|
assert(skill:isInstanceOf(Skill))
|
|
|
|
return skill
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param skill string | Skill
|
|
|
|
function Player:hasEquipSkill(skill)
|
|
|
|
skill = getActualSkill(skill)
|
|
|
|
local equips = self.player_cards[Player.Equip]
|
|
|
|
for _, id in ipairs(equips) do
|
|
|
|
local card = Fk:getCardById(id)
|
|
|
|
if card.skill == skill then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param skill string | Skill
|
|
|
|
function Player:hasSkill(skill)
|
|
|
|
skill = getActualSkill(skill)
|
|
|
|
|
|
|
|
if self:hasEquipSkill(skill) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if table.contains(self.player_skills, skill) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
for _, v in pairs(self.derivative_skills) do
|
|
|
|
if table.contains(v, skill) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param skill string | Skill
|
|
|
|
---@param source_skill string | Skill | nil
|
|
|
|
---@return Skill[] @ got skills that Player didn't have at start
|
|
|
|
function Player:addSkill(skill, source_skill)
|
|
|
|
skill = getActualSkill(skill)
|
|
|
|
|
2023-01-04 06:21:29 +00:00
|
|
|
local toget = {table.unpack(skill.related_skills)}
|
2022-09-14 05:01:10 +00:00
|
|
|
table.insert(toget, skill)
|
2023-01-04 06:21:29 +00:00
|
|
|
|
|
|
|
local room = Fk:currentRoom()
|
2022-09-14 05:01:10 +00:00
|
|
|
local ret = {}
|
|
|
|
for _, s in ipairs(toget) do
|
|
|
|
if not self:hasSkill(s) then
|
|
|
|
table.insert(ret, s)
|
2023-01-04 06:21:29 +00:00
|
|
|
if skill:isInstanceOf(TriggerSkill) and RoomInstance then
|
|
|
|
room.logic:addTriggerSkill(skill)
|
|
|
|
end
|
|
|
|
if table.contains(StatusSkills, skill.class) then
|
|
|
|
room.status_skills[skill.class] = room.status_skills[skill.class] or {}
|
|
|
|
table.insertIfNeed(room.status_skills[skill.class], skill)
|
|
|
|
end
|
2022-09-14 05:01:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if source_skill then
|
|
|
|
source_skill = getActualSkill(source_skill)
|
|
|
|
if not self.derivative_skills[source_skill] then
|
|
|
|
self.derivative_skills[source_skill] = {}
|
|
|
|
end
|
|
|
|
table.insertIfNeed(self.derivative_skills[source_skill], skill)
|
|
|
|
else
|
|
|
|
table.insertIfNeed(self.player_skills, skill)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- add related skills
|
|
|
|
if not self.derivative_skills[skill] then
|
|
|
|
self.derivative_skills[skill] = {}
|
|
|
|
end
|
|
|
|
for _, s in ipairs(skill.related_skills) do
|
|
|
|
table.insertIfNeed(self.derivative_skills[skill], s)
|
|
|
|
end
|
|
|
|
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param skill string | Skill
|
|
|
|
---@param source_skill string | Skill | nil
|
|
|
|
---@return Skill[] @ lost skills that the Player doesn't have anymore
|
|
|
|
function Player:loseSkill(skill, source_skill)
|
|
|
|
skill = getActualSkill(skill)
|
|
|
|
|
|
|
|
if source_skill then
|
|
|
|
source_skill = getActualSkill(source_skill)
|
|
|
|
if not self.derivative_skills[source_skill] then
|
|
|
|
self.derivative_skills[source_skill] = {}
|
|
|
|
end
|
|
|
|
table.removeOne(self.derivative_skills[source_skill], skill)
|
|
|
|
else
|
|
|
|
table.removeOne(self.player_skills, skill)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- clear derivative skills of this skill as well
|
|
|
|
local tolose = self.derivative_skills[skill]
|
|
|
|
table.insert(tolose, skill)
|
|
|
|
self.derivative_skills[skill] = nil
|
|
|
|
|
|
|
|
local ret = {} ---@type Skill[]
|
|
|
|
for _, s in ipairs(tolose) do
|
|
|
|
if not self:hasSkill(s) then
|
|
|
|
table.insert(ret, s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
2022-03-27 06:49:41 +00:00
|
|
|
return Player
|