mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-15 19:22:25 +08:00
各种bugfix(亡羊补牢版) (#258)
- 修复了getSuitCompletedString不提前翻译内容的bug - 修复了死人算距离时的报错 - 为武将卡堆了detailed属性,用以控制武将牌其他信息是否可见
This commit is contained in:
parent
7761aff053
commit
efe78811f7
|
@ -23,6 +23,7 @@ CardItem {
|
|||
property int maxHp
|
||||
property int shieldNum
|
||||
property string pkgName: ""
|
||||
property bool detailed: true
|
||||
name: ""
|
||||
// description: Sanguosha.getGeneralDescription(name)
|
||||
suit: ""
|
||||
|
@ -39,18 +40,21 @@ CardItem {
|
|||
scale: subkingdom ? 0.6 : 1
|
||||
transformOrigin: Item.TopLeft
|
||||
source: SkinBank.getGeneralCardDir(kingdom) + kingdom
|
||||
visible: detailed
|
||||
}
|
||||
|
||||
Image {
|
||||
scale: 0.6; x: 9; y: 12
|
||||
transformOrigin: Item.TopLeft
|
||||
source: subkingdom ? SkinBank.getGeneralCardDir(subkingdom) + subkingdom : ""
|
||||
visible: detailed
|
||||
}
|
||||
|
||||
Row {
|
||||
x: 34
|
||||
y: 4
|
||||
spacing: 1
|
||||
visible: detailed
|
||||
Repeater {
|
||||
id: hpRepeater
|
||||
model: (hp > 5 || hp !== maxHp) ? 1 : hp
|
||||
|
@ -94,6 +98,7 @@ CardItem {
|
|||
}
|
||||
|
||||
Shield {
|
||||
visible: detailed
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: hpRepeater.model > 4 ? 16 : 0
|
||||
|
@ -107,7 +112,7 @@ CardItem {
|
|||
x: 2
|
||||
y: lineCount > 6 ? 30 : 34
|
||||
text: Backend.translate(name)
|
||||
visible: Backend.translate(name).length <= 6
|
||||
visible: Backend.translate(name).length <= 6 && detailed
|
||||
color: "white"
|
||||
font.family: fontLibian.name
|
||||
font.pixelSize: 18
|
||||
|
@ -122,7 +127,7 @@ CardItem {
|
|||
rotation: 90
|
||||
transformOrigin: Item.BottomLeft
|
||||
text: Backend.translate(name)
|
||||
visible: Backend.translate(name).length > 6
|
||||
visible: Backend.translate(name).length > 6 && detailed
|
||||
color: "white"
|
||||
font.family: fontLibian.name
|
||||
font.pixelSize: 18
|
||||
|
@ -130,7 +135,7 @@ CardItem {
|
|||
}
|
||||
|
||||
Rectangle {
|
||||
visible: pkgName !== ""
|
||||
visible: pkgName !== "" && detailed
|
||||
height: 16
|
||||
width: childrenRect.width + 4
|
||||
anchors.bottom: parent.bottom
|
||||
|
|
|
@ -346,7 +346,7 @@ end
|
|||
---@param symbol boolean @ 是否以符号形式显示花色
|
||||
---@return string @ 完整点数(字符串)
|
||||
function Card:getSuitCompletedString(symbol)
|
||||
return self:getSuitString(symbol) .. getNumberStr(self.number)
|
||||
return Fk:translate(self:getSuitString(symbol)) .. getNumberStr(self.number)
|
||||
end
|
||||
|
||||
--- 判断卡牌是否为普通锦囊牌
|
||||
|
|
|
@ -492,7 +492,7 @@ function Player:distanceTo(other, mode, ignore_dead)
|
|||
mode = mode or "both"
|
||||
if other == self then return 0 end
|
||||
if not ignore_dead and other.dead then
|
||||
print(other.name .. " is dead!")
|
||||
print(other.general .. " is dead!")
|
||||
return -1
|
||||
end
|
||||
if self:isRemoved() or other:isRemoved() then
|
||||
|
|
Loading…
Reference in New Issue
Block a user