2023-04-09 05:35:35 +00:00
|
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- Card记录了FreeKill所有卡牌的基础信息。
|
|
|
|
|
---
|
|
|
|
|
--- 它包含了ID、所属包、牌名、花色、点数等等
|
|
|
|
|
---
|
2022-03-31 05:29:23 +00:00
|
|
|
|
---@class Card : Object
|
2023-03-29 15:27:11 +00:00
|
|
|
|
---@field public id integer @ 标志某一张卡牌唯一的数字,从1开始。若此牌是虚拟牌,则其id为0。服务器启动时为卡牌赋予ID。
|
|
|
|
|
---@field public package Package @ 卡牌所属的扩展包
|
|
|
|
|
---@field public name string @ 卡牌的名字
|
|
|
|
|
---@field public suit Suit @ 卡牌的花色(四色及无花色)
|
|
|
|
|
---@field public number integer @ 卡牌的点数(0到K)
|
|
|
|
|
---@field public trueName string @ 卡牌的真名,一般用于分辨杀。
|
|
|
|
|
---@field public color Color @ 卡牌的颜色(分为黑色、红色、无色)
|
|
|
|
|
---@field public type CardType @ 卡牌的种类(基本牌、锦囊牌、装备牌)
|
|
|
|
|
---@field public sub_type CardSubtype @ 卡牌的子种类(例如延时锦囊牌、武器、防具等)
|
|
|
|
|
---@field public area CardArea @ 卡牌所在区域(例如手牌区,判定区,装备区,牌堆,弃牌堆···)
|
2023-03-26 09:32:45 +00:00
|
|
|
|
---@field public subcards integer[]
|
|
|
|
|
---@field public skillName string @ for virtual cards
|
2023-04-02 04:56:29 +00:00
|
|
|
|
---@field public skillNames string[]
|
2023-03-26 09:32:45 +00:00
|
|
|
|
---@field public skill Skill
|
|
|
|
|
---@field public special_skills string[] | nil
|
2023-04-13 12:17:39 +00:00
|
|
|
|
---@field public is_damage_card boolean
|
2022-03-31 05:29:23 +00:00
|
|
|
|
local Card = class("Card")
|
2022-01-24 02:23:08 +00:00
|
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
|
---@alias Suit integer
|
|
|
|
|
|
|
|
|
|
Card.Spade = 1
|
|
|
|
|
Card.Club = 2
|
|
|
|
|
Card.Heart = 3
|
|
|
|
|
Card.Diamond = 4
|
|
|
|
|
Card.NoSuit = 5
|
|
|
|
|
|
|
|
|
|
---@alias Color integer
|
|
|
|
|
|
|
|
|
|
Card.Black = 1
|
|
|
|
|
Card.Red = 2
|
|
|
|
|
Card.NoColor = 3
|
|
|
|
|
|
|
|
|
|
---@alias CardType integer
|
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
|
Card.TypeBasic = 1
|
|
|
|
|
Card.TypeTrick = 2
|
|
|
|
|
Card.TypeEquip = 3
|
2022-01-24 02:23:08 +00:00
|
|
|
|
|
2022-04-08 10:39:58 +00:00
|
|
|
|
---@alias CardSubtype integer
|
|
|
|
|
|
|
|
|
|
Card.SubtypeNone = 1
|
|
|
|
|
Card.SubtypeDelayedTrick = 2
|
|
|
|
|
Card.SubtypeWeapon = 3
|
|
|
|
|
Card.SubtypeArmor = 4
|
|
|
|
|
Card.SubtypeDefensiveRide = 5
|
|
|
|
|
Card.SubtypeOffensiveRide = 6
|
|
|
|
|
Card.SubtypeTreasure = 7
|
|
|
|
|
|
|
|
|
|
---@alias CardArea integer
|
|
|
|
|
|
|
|
|
|
Card.Unknown = 0
|
|
|
|
|
Card.PlayerHand = 1
|
|
|
|
|
Card.PlayerEquip = 2
|
|
|
|
|
Card.PlayerJudge = 3
|
|
|
|
|
Card.PlayerSpecial = 4
|
|
|
|
|
Card.Processing = 5
|
|
|
|
|
Card.DrawPile = 6
|
|
|
|
|
Card.DiscardPile = 7
|
|
|
|
|
Card.Void = 8
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- Card的构造函数。具体负责构建Card实例的函数,请参见fk_ex部分。
|
2022-03-31 05:29:23 +00:00
|
|
|
|
function Card:initialize(name, suit, number, color)
|
2022-04-30 07:27:56 +00:00
|
|
|
|
self.name = name
|
|
|
|
|
self.suit = suit or Card.NoSuit
|
|
|
|
|
self.number = number or 0
|
2023-02-21 05:44:24 +00:00
|
|
|
|
|
|
|
|
|
local name_splited = name:split("__")
|
|
|
|
|
self.trueName = name_splited[#name_splited]
|
2022-01-24 02:23:08 +00:00
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
|
if suit == Card.Spade or suit == Card.Club then
|
|
|
|
|
self.color = Card.Black
|
|
|
|
|
elseif suit == Card.Heart or suit == Card.Diamond then
|
|
|
|
|
self.color = Card.Red
|
|
|
|
|
elseif color ~= nil then
|
|
|
|
|
self.color = color
|
|
|
|
|
else
|
|
|
|
|
self.color = Card.NoColor
|
|
|
|
|
end
|
2022-01-24 02:23:08 +00:00
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
|
self.package = nil
|
|
|
|
|
self.id = 0
|
|
|
|
|
self.type = 0
|
|
|
|
|
self.sub_type = Card.SubTypeNone
|
|
|
|
|
self.skill = nil
|
2023-01-16 11:13:07 +00:00
|
|
|
|
self.subcards = {}
|
2023-04-02 04:56:29 +00:00
|
|
|
|
self.skillName = nil -- ""
|
|
|
|
|
self._skillName = ""
|
|
|
|
|
self.skillNames = {}
|
|
|
|
|
|
|
|
|
|
local mt = table.simpleClone(getmetatable(self))
|
|
|
|
|
local newidx = mt.__newindex or rawset
|
|
|
|
|
mt.__newindex = function(t, k, v)
|
|
|
|
|
if k == "skillName" then
|
|
|
|
|
table.insertIfNeed(self.skillNames, v)
|
|
|
|
|
t._skillName = v
|
|
|
|
|
else
|
|
|
|
|
return newidx(t, k, v)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local idx = mt.__index or rawget
|
|
|
|
|
mt.__index = function(t, k)
|
|
|
|
|
if k == "skillName" then
|
|
|
|
|
return t._skillName
|
|
|
|
|
end
|
|
|
|
|
if type(idx) == "table" then
|
|
|
|
|
return idx[k]
|
|
|
|
|
end
|
|
|
|
|
if type(idx) == "function" then
|
|
|
|
|
return idx(t, k)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
setmetatable(self, mt)
|
2023-01-16 11:13:07 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-04-09 03:44:19 +00:00
|
|
|
|
function Card:__tostring()
|
2023-04-20 20:29:52 +00:00
|
|
|
|
return string.format("<Card %s[%s %d]>", self.name, self:getSuitString(), self.number)
|
2023-04-09 03:44:19 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 克隆特定卡牌并赋予花色与点数。
|
|
|
|
|
---
|
|
|
|
|
--- 会将skill/special_skills/equip_skill继承到克隆牌中。
|
|
|
|
|
---@param suit Suit @ 克隆后的牌的花色
|
|
|
|
|
---@param number integer @ 克隆后的牌的点数
|
|
|
|
|
---@return Card @ 产品
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:clone(suit, number)
|
|
|
|
|
local newCard = self.class:new(self.name, suit, number)
|
|
|
|
|
newCard.skill = self.skill
|
2023-03-20 12:15:24 +00:00
|
|
|
|
newCard.special_skills = self.special_skills
|
2023-02-15 13:20:40 +00:00
|
|
|
|
newCard.equip_skill = self.equip_skill
|
2023-01-16 11:13:07 +00:00
|
|
|
|
return newCard
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 检测是否为虚拟卡牌,如果其ID为0及以下,则为虚拟卡牌。
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:isVirtual()
|
|
|
|
|
return self.id <= 0
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌的ID。
|
|
|
|
|
---
|
|
|
|
|
--- 如果牌是虚拟牌,则返回其第一张子卡的id,没有子卡就返回nil
|
|
|
|
|
---@return integer | nil
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:getEffectiveId()
|
|
|
|
|
if self:isVirtual() then
|
|
|
|
|
return #self.subcards > 0 and self.subcards[1] or nil
|
|
|
|
|
end
|
|
|
|
|
return self.id
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function updateColorAndNumber(card)
|
|
|
|
|
local color = Card.NoColor
|
|
|
|
|
local number = 0
|
|
|
|
|
local different_color = false
|
2023-04-19 16:19:48 +00:00
|
|
|
|
for i, id in ipairs(card.subcards) do
|
2023-01-16 11:13:07 +00:00
|
|
|
|
local c = Fk:getCardById(id)
|
|
|
|
|
number = math.min(number + c.number, 13)
|
2023-04-19 16:19:48 +00:00
|
|
|
|
if i == 1 then
|
|
|
|
|
card.suit = c.suit
|
|
|
|
|
else
|
|
|
|
|
card.suit = Card.NoSuit
|
|
|
|
|
end
|
|
|
|
|
|
2023-01-16 11:13:07 +00:00
|
|
|
|
if color ~= c.color then
|
|
|
|
|
if not different_color then
|
2023-04-13 12:17:39 +00:00
|
|
|
|
if c.color ~= Card.NoColor then
|
2023-01-16 11:13:07 +00:00
|
|
|
|
different_color = true
|
|
|
|
|
end
|
|
|
|
|
color = c.color
|
|
|
|
|
else
|
|
|
|
|
color = Card.NoColor
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
card.color = color
|
|
|
|
|
card.number = number
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 将一张子卡牌加入某张牌中(是addSubcards的基础函数,常用addSubcards)。
|
|
|
|
|
---@param card integer|Card @ 要加入的子卡
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:addSubcard(card)
|
|
|
|
|
if type(card) == "number" then
|
|
|
|
|
table.insert(self.subcards, card)
|
|
|
|
|
else
|
|
|
|
|
assert(card:isInstanceOf(Card))
|
2023-04-13 12:17:39 +00:00
|
|
|
|
-- assert(not card:isVirtual(), "Can not add virtual card as subcard")
|
|
|
|
|
if card:isVirtual() then
|
|
|
|
|
table.insertTable(self.subcards, card.subcards)
|
|
|
|
|
else
|
|
|
|
|
table.insert(self.subcards, card.id)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
for _, skill in ipairs(card.skillNames) do
|
|
|
|
|
self.skillName = skill
|
|
|
|
|
end
|
2023-01-16 11:13:07 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
updateColorAndNumber(self)
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 将一批子卡牌加入某张牌中(常用于将这批牌弃置/交给某个角色···)。
|
|
|
|
|
---@param cards integer[] | Card[] @ 要加入的子卡列表
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:addSubcards(cards)
|
|
|
|
|
for _, c in ipairs(cards) do
|
|
|
|
|
self:addSubcard(c)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 清空加入某张牌中的子卡牌。
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:clearSubcards()
|
|
|
|
|
self.subcards = {}
|
|
|
|
|
updateColorAndNumber(self)
|
2022-03-25 04:28:07 +00:00
|
|
|
|
end
|
2022-01-24 02:23:08 +00:00
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 判断此牌能否符合一个卡牌规则。
|
2023-01-29 10:11:41 +00:00
|
|
|
|
function Card:matchPattern(pattern)
|
|
|
|
|
return Exppattern:Parse(pattern):match(self)
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌花色并返回花色文字描述(如 黑桃、红桃、梅花、方块)。
|
|
|
|
|
---@return string @ 描述花色的字符串
|
2022-04-14 10:22:00 +00:00
|
|
|
|
function Card:getSuitString()
|
2022-04-30 07:27:56 +00:00
|
|
|
|
local suit = self.suit
|
|
|
|
|
if suit == Card.Spade then
|
|
|
|
|
return "spade"
|
|
|
|
|
elseif suit == Card.Heart then
|
|
|
|
|
return "heart"
|
|
|
|
|
elseif suit == Card.Club then
|
|
|
|
|
return "club"
|
|
|
|
|
elseif suit == Card.Diamond then
|
|
|
|
|
return "diamond"
|
|
|
|
|
else
|
2022-12-18 04:52:52 +00:00
|
|
|
|
return "nosuit"
|
2022-04-30 07:27:56 +00:00
|
|
|
|
end
|
2022-04-14 10:22:00 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌颜色并返回点数颜色描述(例如黑色/红色/无色)。
|
|
|
|
|
---@return string @ 描述颜色的字符串
|
2023-01-16 11:13:07 +00:00
|
|
|
|
function Card:getColorString()
|
|
|
|
|
local color = self.color
|
|
|
|
|
if color == Card.Black then
|
|
|
|
|
return "black"
|
|
|
|
|
elseif color == Card.Red then
|
|
|
|
|
return "red"
|
|
|
|
|
end
|
|
|
|
|
return "nocolor"
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌类型并返回点数类型描述(例如基本牌/锦囊牌/装备牌)。
|
2023-02-15 11:54:35 +00:00
|
|
|
|
function Card:getTypeString()
|
|
|
|
|
local t = self.type
|
|
|
|
|
if t == Card.TypeBasic then
|
|
|
|
|
return "basic"
|
|
|
|
|
elseif t == Card.TypeTrick then
|
|
|
|
|
return "trick"
|
|
|
|
|
elseif t == Card.TypeEquip then
|
|
|
|
|
return "equip"
|
|
|
|
|
end
|
2023-03-20 12:49:23 +00:00
|
|
|
|
return "notype"
|
2023-02-15 11:54:35 +00:00
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌点数并返回点数文字描述(仅限A/J/Q/K)。
|
2022-12-18 04:52:52 +00:00
|
|
|
|
local function getNumberStr(num)
|
|
|
|
|
if num == 1 then
|
|
|
|
|
return "A"
|
|
|
|
|
elseif num == 11 then
|
|
|
|
|
return "J"
|
|
|
|
|
elseif num == 12 then
|
|
|
|
|
return "Q"
|
|
|
|
|
elseif num == 13 then
|
|
|
|
|
return "K"
|
|
|
|
|
end
|
|
|
|
|
return tostring(num)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- for sendLog
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 获取卡牌的文字信息并准备作为log发送。
|
2022-12-18 04:52:52 +00:00
|
|
|
|
function Card:toLogString()
|
|
|
|
|
local ret = string.format('<font color="#0598BC"><b>%s</b></font>', Fk:translate(self.name) .. "[")
|
2023-04-19 16:19:48 +00:00
|
|
|
|
if self:isVirtual() and #self.subcards ~= 1 then
|
2023-01-16 11:13:07 +00:00
|
|
|
|
ret = ret .. Fk:translate(self:getColorString())
|
|
|
|
|
else
|
|
|
|
|
ret = ret .. Fk:translate("log_" .. self:getSuitString())
|
|
|
|
|
if self.number > 0 then
|
|
|
|
|
ret = ret .. string.format('<font color="%s"><b>%s</b></font>', self.color == Card.Red and "#CC3131" or "black", getNumberStr(self.number))
|
|
|
|
|
end
|
2022-12-18 04:52:52 +00:00
|
|
|
|
end
|
|
|
|
|
ret = ret .. '<font color="#0598BC"><b>]</b></font>'
|
|
|
|
|
return ret
|
|
|
|
|
end
|
|
|
|
|
|
2023-03-29 15:27:11 +00:00
|
|
|
|
--- 静态方法。传入下列类型之一的参数,返回id列表。
|
2023-02-21 05:44:24 +00:00
|
|
|
|
---@param c integer|integer[]|Card|Card[]
|
|
|
|
|
---@return integer[]
|
2023-03-26 09:32:45 +00:00
|
|
|
|
function Card:getIdList(c)
|
|
|
|
|
error("This is a static method. Please use Card:getIdList instead")
|
|
|
|
|
end
|
|
|
|
|
|
2023-02-21 05:44:24 +00:00
|
|
|
|
function Card.static:getIdList(c)
|
|
|
|
|
if type(c) == "number" then
|
|
|
|
|
return {c}
|
|
|
|
|
end
|
|
|
|
|
if c.class and c:isInstanceOf(Card) then
|
|
|
|
|
if c:isVirtual() then
|
|
|
|
|
return table.clone(c.subcards)
|
|
|
|
|
else
|
|
|
|
|
return {c.id}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- array
|
|
|
|
|
local ret = {}
|
|
|
|
|
for _, c2 in ipairs(c) do
|
2023-03-01 13:41:16 +00:00
|
|
|
|
table.insertTable(ret, Card:getIdList(c2))
|
2023-02-21 05:44:24 +00:00
|
|
|
|
end
|
|
|
|
|
return ret
|
|
|
|
|
end
|
|
|
|
|
|
2022-01-24 02:23:08 +00:00
|
|
|
|
return Card
|