Commit c2dd78e6 authored by Chunchi Che's avatar Chunchi Che

Merge branch 'fix/confirm_cards' into 'main'

修复“确认盖卡”不生效的问题

See merge request !363
parents 4545182b ef732166
Pipeline #26603 passed with stages
in 7 minutes and 45 seconds
import { fetchCard, ygopro } from "@/api";
import { sleep } from "@/infra";
import { cardStore } from "@/stores";
import { callCardFocus } from "@/ui/Duel/PlayMat/Card";
import { callCardFocus, callCardMove } from "@/ui/Duel/PlayMat/Card";
const { MZONE, SZONE } = ygopro.CardZone;
const { FACEUP_ATTACK, FACEDOWN_ATTACK, FACEDOWN_DEFENSE, FACEDOWN } =
ygopro.CardPosition;
const WAIT_TIME = 100;
export default async (confirmCards: ygopro.StocGameMessage.MsgConfirmCards) => {
const cards = confirmCards.cards;
......@@ -13,12 +20,38 @@ export default async (confirmCards: ygopro.StocGameMessage.MsgConfirmCards) => {
// 设置`occupant`
const meta = fetchCard(card.code);
target.meta = meta;
const zone = target.location.zone;
const position = target.location.position;
// 动画
await callCardFocus(target.uuid);
if (target.code === 0) {
// 如果是对方或者是在观战模式下双方展示手牌,target的code会是0,
// 这里应该清掉meta,UI上表现是回复到卡背状态
target.meta = { id: 0, data: {}, text: {} };
if (
(zone === MZONE || zone === SZONE) &&
(position === FACEDOWN_ATTACK ||
position === FACEDOWN_DEFENSE ||
position === FACEDOWN)
) {
/* 这个分支确认盖卡(包括魔限和怪兽卡)的场景。
/* 这里让盖卡向上翻开,再重新盖上
/* TODO: 这里比较合理的做法应该是新实现一种动画。
/* 这里暂时先使用这种简单的处理办法。*/
target.location.position = FACEUP_ATTACK;
await callCardMove(target.uuid);
// 暂停一会再盖上
await sleep(WAIT_TIME);
// 恢复position
target.location.position = position;
await callCardMove(target.uuid);
} else {
// 这个分支是确认手卡或者卡组或者额外卡组的场景(大概)
await callCardFocus(target.uuid);
if (target.code === 0) {
// 如果是对方或者是在观战模式下双方展示手牌,target的code会是0,
// 这里应该清掉meta,UI上表现是回复到卡背状态
target.meta = { id: 0, data: {}, text: {} };
}
}
} else {
console.warn(`card of ${card} is null`);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment