2023-04-09 05:35:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const Card = {
|
2022-04-30 07:27:56 +00:00
|
|
|
Unknown : 0,
|
|
|
|
PlayerHand : 1,
|
|
|
|
PlayerEquip : 2,
|
|
|
|
PlayerJudge : 3,
|
|
|
|
PlayerSpecial : 4,
|
|
|
|
Processing : 5,
|
|
|
|
DrawPile : 6,
|
|
|
|
DiscardPile : 7,
|
|
|
|
Void : 8
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
2022-03-23 11:40:28 +00:00
|
|
|
function arrangePhotos() {
|
2022-04-30 07:27:56 +00:00
|
|
|
/* Layout of photos:
|
|
|
|
* +---------------+
|
|
|
|
* | 6 5 4 3 2 |
|
|
|
|
* | 7 1 |
|
2023-04-27 06:15:08 +00:00
|
|
|
* | 0 |
|
2022-04-30 07:27:56 +00:00
|
|
|
* +---------------+
|
|
|
|
*/
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
const photoWidth = 175 * 0.75;
|
|
|
|
// Padding is negative, because photos are scaled.
|
|
|
|
const roomAreaPadding = -16;
|
|
|
|
const verticalPadding = -175 / 8;
|
|
|
|
const horizontalSpacing = 32;
|
2023-06-08 17:16:23 +00:00
|
|
|
const verticalSpacing = (roomArea.width - photoWidth * 7) / 8;
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
// Position 1-7
|
2023-06-08 17:16:23 +00:00
|
|
|
const startX = verticalPadding + verticalSpacing;
|
|
|
|
const padding = photoWidth + verticalSpacing;
|
|
|
|
const regions = [
|
2023-04-27 06:15:08 +00:00
|
|
|
{ x: startX + padding * 6, y: roomScene.height - 220 },
|
2022-09-14 05:01:10 +00:00
|
|
|
{ x: startX + padding * 6, y: roomAreaPadding + horizontalSpacing * 3 },
|
|
|
|
{ x: startX + padding * 5, y: roomAreaPadding + horizontalSpacing },
|
|
|
|
{ x: startX + padding * 4, y: roomAreaPadding },
|
|
|
|
{ x: startX + padding * 3, y: roomAreaPadding },
|
|
|
|
{ x: startX + padding * 2, y: roomAreaPadding },
|
|
|
|
{ x: startX + padding, y: roomAreaPadding + horizontalSpacing },
|
|
|
|
{ x: startX, y: roomAreaPadding + horizontalSpacing * 3 },
|
2022-04-30 07:27:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const regularSeatIndex = [
|
2023-04-27 06:15:08 +00:00
|
|
|
[0, 4],
|
|
|
|
[0, 3, 5],
|
|
|
|
[0, 1, 4, 7],
|
|
|
|
[0, 1, 3, 5, 7],
|
|
|
|
[0, 1, 3, 4, 5, 7],
|
|
|
|
[0, 1, 2, 3, 5, 6, 7],
|
|
|
|
[0, 1, 2, 3, 4, 5, 6, 7],
|
2022-04-30 07:27:56 +00:00
|
|
|
];
|
2023-06-08 17:16:23 +00:00
|
|
|
const seatIndex = regularSeatIndex[playerNum - 2];
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
let item, region, i;
|
|
|
|
|
2023-04-27 06:15:08 +00:00
|
|
|
for (i = 0; i < playerNum; i++) {
|
2022-04-30 07:27:56 +00:00
|
|
|
item = photos.itemAt(i);
|
|
|
|
if (!item)
|
|
|
|
continue;
|
|
|
|
|
2023-04-27 06:15:08 +00:00
|
|
|
region = regions[seatIndex[photoModel.get(i).index]];
|
2022-04-30 07:27:56 +00:00
|
|
|
item.x = region.x;
|
|
|
|
item.y = region.y;
|
|
|
|
}
|
2022-03-23 11:40:28 +00:00
|
|
|
}
|
2022-03-24 13:23:42 +00:00
|
|
|
|
2022-04-02 07:11:13 +00:00
|
|
|
function doOkButton() {
|
2023-06-08 17:16:23 +00:00
|
|
|
if (roomScene.state === "playing" || roomScene.state === "responding") {
|
2023-05-19 15:03:39 +00:00
|
|
|
const reply = JSON.stringify(
|
2022-04-30 07:27:56 +00:00
|
|
|
{
|
|
|
|
card: dashboard.getSelectedCard(),
|
2023-03-20 12:15:24 +00:00
|
|
|
targets: selected_targets,
|
|
|
|
special_skill: roomScene.getCurrentCardUseMethod(),
|
2023-04-08 12:45:55 +00:00
|
|
|
interaction_data: roomScene.skillInteraction.item ? roomScene.skillInteraction.item.answer : undefined,
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2023-05-19 15:03:39 +00:00
|
|
|
);
|
|
|
|
replyToServer(reply);
|
2022-04-30 07:27:56 +00:00
|
|
|
return;
|
2023-02-26 08:51:29 +00:00
|
|
|
}
|
2023-05-18 23:45:21 +00:00
|
|
|
if (roomScene.extra_data.luckCard) {
|
|
|
|
okButton.enabled = false;
|
|
|
|
ClientInstance.notifyServer("PushRequest", [
|
|
|
|
"luckcard", true
|
|
|
|
].join(","));
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
if (roomScene.extra_data.time === 1) {
|
2023-05-18 23:45:21 +00:00
|
|
|
roomScene.state = "notactive";
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
replyToServer("1");
|
2022-04-02 07:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doCancelButton() {
|
2023-06-08 17:16:23 +00:00
|
|
|
if (roomScene.state === "playing") {
|
2022-09-15 03:17:13 +00:00
|
|
|
dashboard.stopPending();
|
2022-09-14 05:01:10 +00:00
|
|
|
dashboard.deactivateSkillButton();
|
|
|
|
dashboard.unSelectAll();
|
|
|
|
dashboard.enableCards();
|
2022-09-15 03:17:13 +00:00
|
|
|
dashboard.enableSkills();
|
2022-09-14 05:01:10 +00:00
|
|
|
return;
|
2023-06-08 17:16:23 +00:00
|
|
|
} else if (roomScene.state === "responding") {
|
|
|
|
const p = dashboard.pending_skill;
|
2022-09-15 03:17:13 +00:00
|
|
|
dashboard.stopPending();
|
2022-09-14 05:01:10 +00:00
|
|
|
dashboard.deactivateSkillButton();
|
|
|
|
dashboard.unSelectAll();
|
2023-04-19 16:19:48 +00:00
|
|
|
if (roomScene.autoPending || !p) {
|
|
|
|
replyToServer("__cancel");
|
|
|
|
} else {
|
|
|
|
dashboard.enableCards(roomScene.responding_card);
|
|
|
|
dashboard.enableSkills(roomScene.responding_card);
|
|
|
|
}
|
2022-09-14 05:01:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-02-26 08:51:29 +00:00
|
|
|
|
2023-05-18 23:45:21 +00:00
|
|
|
if (roomScene.extra_data.luckCard) {
|
|
|
|
ClientInstance.notifyServer("PushRequest", [
|
|
|
|
"luckcard", false
|
|
|
|
].join(","));
|
|
|
|
roomScene.state = "notactive";
|
|
|
|
return;
|
|
|
|
}
|
2022-12-18 13:19:35 +00:00
|
|
|
replyToServer("__cancel");
|
2022-04-02 07:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function replyToServer(jsonData) {
|
2022-04-30 07:27:56 +00:00
|
|
|
ClientInstance.replyToServer("", jsonData);
|
2023-04-27 06:15:08 +00:00
|
|
|
if (!mainWindow.is_pending) {
|
|
|
|
roomScene.state = "notactive";
|
|
|
|
} else {
|
|
|
|
roomScene.state = "";
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = mainWindow.fetchMessage();
|
2023-04-27 06:15:08 +00:00
|
|
|
return mainWindow.handleMessage(data.command, data.jsonData);
|
|
|
|
}
|
2022-04-02 07:11:13 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 10:22:00 +00:00
|
|
|
function getPhotoModel(id) {
|
2022-04-30 07:27:56 +00:00
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (item.id === id) {
|
|
|
|
return item;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
|
|
|
return undefined;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getPhoto(id) {
|
2022-04-30 07:27:56 +00:00
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (item.id === id) {
|
|
|
|
return photos.itemAt(i);
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
|
|
|
return undefined;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getPhotoOrDashboard(id) {
|
2023-04-27 06:15:08 +00:00
|
|
|
if (id === Self.id)
|
|
|
|
return dashboard;
|
|
|
|
return getPhoto(id);
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 10:22:00 +00:00
|
|
|
function getAreaItem(area, id) {
|
2022-04-30 07:27:56 +00:00
|
|
|
if (area === Card.DrawPile) {
|
|
|
|
return drawPile;
|
2023-05-13 06:16:09 +00:00
|
|
|
} else if (area === Card.DiscardPile || area === Card.Processing || area === Card.Void) {
|
2022-04-30 07:27:56 +00:00
|
|
|
return tablePile;
|
|
|
|
} else if (area === Card.AG) {
|
|
|
|
return popupBox.item;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const photo = getPhoto(id);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (!photo) {
|
2022-04-14 10:22:00 +00:00
|
|
|
return null;
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (area === Card.PlayerHand) {
|
2023-04-27 06:15:08 +00:00
|
|
|
return id === Self.id ? dashboard.handcardArea : photo.handcardArea;
|
2023-02-15 16:54:39 +00:00
|
|
|
} else if (area === Card.PlayerEquip) {
|
2022-04-30 07:27:56 +00:00
|
|
|
return photo.equipArea;
|
2023-02-15 16:54:39 +00:00
|
|
|
} else if (area === Card.PlayerJudge) {
|
2022-04-30 07:27:56 +00:00
|
|
|
return photo.delayedTrickArea;
|
2023-02-15 16:54:39 +00:00
|
|
|
} else if (area === Card.PlayerSpecial) {
|
2022-04-30 07:27:56 +00:00
|
|
|
return photo.specialArea;
|
2023-02-15 16:54:39 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
return null;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function moveCards(moves) {
|
2022-04-30 07:27:56 +00:00
|
|
|
for (let i = 0; i < moves.length; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const move = moves[i];
|
|
|
|
const from = getAreaItem(move.fromArea, move.from);
|
|
|
|
const to = getAreaItem(move.toArea, move.to);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (!from || !to || from === to)
|
|
|
|
continue;
|
2023-06-08 17:16:23 +00:00
|
|
|
const items = from.remove(move.ids, move.fromSpecialName);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (items.length > 0)
|
2023-02-21 05:44:24 +00:00
|
|
|
to.add(items, move.specialName);
|
2022-04-30 07:27:56 +00:00
|
|
|
to.updateCardPosition(true);
|
|
|
|
}
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
2023-07-02 12:39:42 +00:00
|
|
|
function resortHandcards() {
|
|
|
|
if (!dashboard.handcardArea.cards.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const subtypeString2Number = {
|
|
|
|
["none"]: Card.SubtypeNone,
|
|
|
|
["delayed_trick"]: Card.SubtypeDelayedTrick,
|
|
|
|
["weapon"]: Card.SubtypeWeapon,
|
|
|
|
["armor"]: Card.SubtypeArmor,
|
|
|
|
["defensive_horse"]: Card.SubtypeDefensiveRide,
|
|
|
|
["offensive_horse"]: Card.SubtypeOffensiveRide,
|
|
|
|
["treasure"]: Card.SubtypeTreasure,
|
|
|
|
}
|
|
|
|
|
|
|
|
dashboard.handcardArea.cards.sort((prev, next) => {
|
|
|
|
if (prev.type === next.type) {
|
|
|
|
const prevSubtypeNumber = subtypeString2Number[prev.subtype];
|
|
|
|
const nextSubtypeNumber = subtypeString2Number[next.subtype];
|
|
|
|
if (prevSubtypeNumber === nextSubtypeNumber) {
|
|
|
|
const splitedPrevName = prev.name.split('__');
|
|
|
|
const prevTrueName = splitedPrevName[splitedPrevName.length - 1];
|
|
|
|
|
|
|
|
const splitedNextName = next.name.split('__');
|
|
|
|
const nextTrueName = splitedNextName[splitedNextName.length - 1];
|
|
|
|
if (prevTrueName === nextTrueName) {
|
|
|
|
return prev.cid - next.cid;
|
|
|
|
} else {
|
|
|
|
return prevTrueName > nextTrueName ? -1 : 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return prevSubtypeNumber - nextSubtypeNumber;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return prev.type - next.type;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
dashboard.handcardArea.updateCardPosition(true);
|
|
|
|
}
|
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
function setEmotion(id, emotion, isCardId) {
|
2023-01-03 15:37:14 +00:00
|
|
|
let path;
|
|
|
|
if (OS === "Win") {
|
2023-01-07 07:20:44 +00:00
|
|
|
// Windows: file:///C:/xxx/xxxx
|
|
|
|
path = (SkinBank.PIXANIM_DIR + emotion).replace("file:///", "");
|
2023-01-03 15:37:14 +00:00
|
|
|
} else {
|
|
|
|
path = (SkinBank.PIXANIM_DIR + emotion).replace("file://", "");
|
|
|
|
}
|
|
|
|
|
2022-12-20 04:51:54 +00:00
|
|
|
if (!Backend.exists(path)) {
|
2023-02-21 05:44:24 +00:00
|
|
|
// Try absolute path again
|
|
|
|
if (OS === "Win") {
|
|
|
|
// Windows: file:///C:/xxx/xxxx
|
|
|
|
path = (AppPath + "/" + emotion).replace("file:///", "");
|
|
|
|
} else {
|
|
|
|
path = (AppPath + "/" + emotion).replace("file://", "");
|
|
|
|
}
|
|
|
|
if (!Backend.exists(path))
|
|
|
|
return;
|
2022-12-20 04:51:54 +00:00
|
|
|
}
|
|
|
|
if (!Backend.isDir(path)) {
|
|
|
|
// TODO: set picture emotion
|
|
|
|
return;
|
|
|
|
}
|
2023-06-08 17:16:23 +00:00
|
|
|
const component = Qt.createComponent("../RoomElement/PixmapAnimation.qml");
|
2022-04-30 07:27:56 +00:00
|
|
|
if (component.status !== Component.Ready)
|
|
|
|
return;
|
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
let photo;
|
|
|
|
if (isCardId === true) {
|
|
|
|
roomScene.tableCards.forEach((v) => {
|
|
|
|
if (v.cid === id) {
|
|
|
|
photo = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (!photo)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
photo = getPhoto(id);
|
|
|
|
if (!photo) {
|
2023-04-27 06:15:08 +00:00
|
|
|
return null;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2022-04-14 10:22:00 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const animation = component.createObject(photo, {source: (OS === "Win" ? "file:///" : "") + path});
|
2022-12-20 04:51:54 +00:00
|
|
|
animation.anchors.centerIn = photo;
|
2023-01-29 10:11:41 +00:00
|
|
|
if (isCardId) {
|
|
|
|
animation.started.connect(() => photo.busy = true);
|
|
|
|
animation.finished.connect(() => {
|
|
|
|
photo.busy = false;
|
|
|
|
animation.destroy()
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
animation.finished.connect(() => animation.destroy());
|
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
animation.start();
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
2023-06-09 18:18:51 +00:00
|
|
|
function setCardFootnote(id, footnote) {
|
|
|
|
let card;
|
|
|
|
roomScene.tableCards.forEach((v) => {
|
|
|
|
if (v.cid === id) {
|
|
|
|
card = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!card) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
card.footnote = footnote;
|
|
|
|
card.footnoteVisible = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["SetCardFootnote"] = (j) => {
|
|
|
|
const data = JSON.parse(j);
|
|
|
|
const id = data[0];
|
|
|
|
const note = data[1];
|
|
|
|
setCardFootnote(id, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setCardVirtName(id, name) {
|
|
|
|
let card;
|
|
|
|
roomScene.tableCards.forEach((v) => {
|
|
|
|
if (v.cid === id) {
|
|
|
|
card = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!card) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
card.virt_name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["SetCardVirtName"] = (j) => {
|
|
|
|
const data = JSON.parse(j);
|
|
|
|
const ids = data[0];
|
|
|
|
const note = data[1];
|
|
|
|
ids.forEach(id => setCardVirtName(id, note));
|
|
|
|
}
|
|
|
|
|
2022-04-14 10:22:00 +00:00
|
|
|
function changeHp(id, delta, losthp) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const photo = getPhoto(id);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (!photo) {
|
2023-04-27 06:15:08 +00:00
|
|
|
return null;
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
|
|
|
if (delta < 0) {
|
|
|
|
if (!losthp) {
|
|
|
|
setEmotion(id, "damage")
|
|
|
|
photo.tremble()
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doIndicate(from, tos) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const component = Qt.createComponent("../RoomElement/IndicatorLine.qml");
|
2022-04-30 07:27:56 +00:00
|
|
|
if (component.status !== Component.Ready)
|
|
|
|
return;
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const fromItem = getPhotoOrDashboard(from);
|
|
|
|
const fromPos = mapFromItem(fromItem, fromItem.width / 2, fromItem.height / 2);
|
2022-04-30 07:27:56 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const end = [];
|
2022-04-30 07:27:56 +00:00
|
|
|
for (let i = 0; i < tos.length; i++) {
|
|
|
|
if (from === tos[i])
|
|
|
|
continue;
|
2023-06-09 09:23:02 +00:00
|
|
|
const toItem = getPhotoOrDashboard(tos[i]);
|
|
|
|
const toPos = mapFromItem(toItem, toItem.width / 2, toItem.height / 2);
|
2022-04-30 07:27:56 +00:00
|
|
|
end.push(toPos);
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const color = "#96943D";
|
|
|
|
const line = component.createObject(roomScene, {start: fromPos, end: end, color: color});
|
2022-04-30 07:27:56 +00:00
|
|
|
line.finished.connect(() => line.destroy());
|
|
|
|
line.running = true;
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["MaxCard"] = (jsonData) => {
|
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const id = data.id;
|
|
|
|
const cardMax = data.pcardMax;
|
|
|
|
const photo = getPhoto(id);
|
2023-05-28 10:45:37 +00:00
|
|
|
if (photo) {
|
|
|
|
photo.maxCard = cardMax;
|
2023-05-28 09:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-27 06:15:08 +00:00
|
|
|
function changeSelf(id) {
|
|
|
|
Backend.callLuaFunction("ChangeSelf", [id]);
|
|
|
|
|
|
|
|
// move new selfPhoto to dashboard
|
|
|
|
let order = new Array(photoModel.count);
|
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-09 09:23:02 +00:00
|
|
|
const item = photoModel.get(i);
|
2023-04-27 06:15:08 +00:00
|
|
|
order[item.seatNumber - 1] = item.id;
|
|
|
|
if (item.id === Self.id) {
|
|
|
|
dashboard.self = photos.itemAt(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
callbacks["ArrangeSeats"](JSON.stringify(order));
|
|
|
|
|
|
|
|
// update dashboard
|
|
|
|
dashboard.update();
|
|
|
|
|
|
|
|
// handle pending messages
|
|
|
|
if (mainWindow.is_pending) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = mainWindow.fetchMessage();
|
2023-04-27 06:15:08 +00:00
|
|
|
return mainWindow.handleMessage(data.command, data.jsonData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AddPlayer"] = (jsonData) => {
|
2023-06-04 11:31:44 +00:00
|
|
|
// jsonData: int id, string screenName, string avatar, bool ready
|
2022-04-30 07:27:56 +00:00
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (item.id === -1) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const uid = data[0];
|
|
|
|
const name = data[1];
|
|
|
|
const avatar = data[2];
|
|
|
|
const ready = data[3];
|
2023-06-04 11:31:44 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
item.id = uid;
|
|
|
|
item.screenName = name;
|
|
|
|
item.general = avatar;
|
2023-06-04 11:31:44 +00:00
|
|
|
item.avatar = avatar;
|
|
|
|
item.ready = ready;
|
|
|
|
|
|
|
|
checkAllReady();
|
|
|
|
|
|
|
|
if (getPhoto(-1)) {
|
|
|
|
roomScene.isFull = false;
|
|
|
|
} else {
|
|
|
|
roomScene.isFull = true;
|
|
|
|
}
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
return;
|
2022-03-24 13:23:42 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2022-03-24 13:23:42 +00:00
|
|
|
}
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
function enableTargets(card) { // card: int | { skill: string, subcards: int[] }
|
2022-12-18 13:19:35 +00:00
|
|
|
if (roomScene.respond_play) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const candidate = (!isNaN(card) && card !== -1) || typeof(card) === "string";
|
2023-01-29 10:11:41 +00:00
|
|
|
if (candidate) {
|
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction(
|
|
|
|
"CardFitPattern",
|
|
|
|
[card, roomScene.responding_card]
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
okButton.enabled = false;
|
|
|
|
}
|
2022-12-18 13:19:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
let i = 0;
|
2023-06-08 17:16:23 +00:00
|
|
|
const candidate = (!isNaN(card) && card !== -1) || typeof(card) === "string";
|
|
|
|
const all_photos = [];
|
2023-04-27 06:15:08 +00:00
|
|
|
for (i = 0; i < playerNum; i++) {
|
2022-04-30 07:27:56 +00:00
|
|
|
all_photos.push(photos.itemAt(i))
|
|
|
|
}
|
|
|
|
selected_targets = [];
|
|
|
|
for (i = 0; i < playerNum; i++) {
|
|
|
|
all_photos[i].selected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (candidate) {
|
2023-06-09 09:23:02 +00:00
|
|
|
const data = {
|
2022-04-30 07:27:56 +00:00
|
|
|
ok_enabled: false,
|
|
|
|
enabled_targets: []
|
2022-03-24 13:23:42 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
all_photos.forEach(photo => {
|
|
|
|
photo.state = "candidate";
|
2023-06-08 17:16:23 +00:00
|
|
|
const id = photo.playerid;
|
|
|
|
const ret = JSON.parse(Backend.callLuaFunction(
|
2022-04-30 07:27:56 +00:00
|
|
|
"CanUseCardToTarget",
|
|
|
|
[card, id, selected_targets]
|
|
|
|
));
|
|
|
|
photo.selectable = ret;
|
2023-07-07 17:05:54 +00:00
|
|
|
if (roomScene.extra_data instanceof Object) {
|
|
|
|
const exclusived = roomScene.extra_data.exclusive_targets;
|
|
|
|
if (exclusived instanceof Array) {
|
|
|
|
if (exclusived.indexOf(id) === -1) photo.selectable = false;
|
|
|
|
}
|
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction(
|
|
|
|
"CardFeasible", [card, selected_targets]
|
|
|
|
));
|
2023-01-29 10:11:41 +00:00
|
|
|
if (okButton.enabled && roomScene.state === "responding") {
|
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction(
|
|
|
|
"CardFitPattern",
|
|
|
|
[card, roomScene.responding_card]
|
|
|
|
));
|
2023-06-08 17:16:23 +00:00
|
|
|
} else if (okButton.enabled && roomScene.state === "playing") {
|
2023-01-29 10:11:41 +00:00
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction("CanUseCard", [card, Self.id]));
|
|
|
|
}
|
2023-01-16 11:13:07 +00:00
|
|
|
if (okButton.enabled) {
|
|
|
|
if (roomScene.extra_data instanceof Object) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const must = roomScene.extra_data.must_targets;
|
2023-01-16 11:13:07 +00:00
|
|
|
if (must instanceof Array) {
|
|
|
|
okButton.enabled = (must.length === 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
} else {
|
|
|
|
all_photos.forEach(photo => {
|
|
|
|
photo.state = "normal";
|
|
|
|
photo.selected = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
okButton.enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateSelectedTargets(playerid, selected) {
|
|
|
|
let i = 0;
|
2023-06-08 17:16:23 +00:00
|
|
|
const card = dashboard.getSelectedCard();
|
|
|
|
const candidate = (!isNaN(card) && card !== -1) || typeof(card) === "string";
|
|
|
|
const all_photos = [];
|
2023-04-27 06:15:08 +00:00
|
|
|
for (i = 0; i < playerNum; i++) {
|
2022-04-30 07:27:56 +00:00
|
|
|
all_photos.push(photos.itemAt(i))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (selected) {
|
|
|
|
selected_targets.push(playerid);
|
|
|
|
} else {
|
|
|
|
selected_targets.splice(selected_targets.indexOf(playerid), 1);
|
|
|
|
}
|
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
if (candidate) {
|
|
|
|
all_photos.forEach(photo => {
|
|
|
|
if (photo.selected) return;
|
2023-06-08 17:16:23 +00:00
|
|
|
const id = photo.playerid;
|
|
|
|
const ret = JSON.parse(Backend.callLuaFunction(
|
2022-09-14 05:01:10 +00:00
|
|
|
"CanUseCardToTarget",
|
|
|
|
[card, id, selected_targets]
|
|
|
|
));
|
|
|
|
photo.selectable = ret;
|
|
|
|
})
|
|
|
|
|
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction(
|
|
|
|
"CardFeasible", [card, selected_targets]
|
2022-04-30 07:27:56 +00:00
|
|
|
));
|
2023-01-29 10:11:41 +00:00
|
|
|
if (okButton.enabled && roomScene.state === "responding") {
|
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction(
|
|
|
|
"CardFitPattern",
|
|
|
|
[card, roomScene.responding_card]
|
|
|
|
));
|
2023-06-08 17:16:23 +00:00
|
|
|
} else if (okButton.enabled && roomScene.state === "playing") {
|
2023-01-29 10:11:41 +00:00
|
|
|
okButton.enabled = JSON.parse(Backend.callLuaFunction("CanUseCard", [card, Self.id]));
|
|
|
|
}
|
2023-01-16 11:13:07 +00:00
|
|
|
if (okButton.enabled) {
|
|
|
|
if (roomScene.extra_data instanceof Object) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const must = roomScene.extra_data.must_targets;
|
2023-01-16 11:13:07 +00:00
|
|
|
if (must instanceof Array) {
|
|
|
|
okButton.enabled = (must.filter((val) => {
|
|
|
|
return selected_targets.indexOf(val) === -1;
|
|
|
|
}).length === 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-14 05:01:10 +00:00
|
|
|
} else {
|
|
|
|
all_photos.forEach(photo => {
|
|
|
|
photo.state = "normal";
|
|
|
|
photo.selected = false;
|
|
|
|
});
|
2022-04-30 07:27:56 +00:00
|
|
|
|
2022-09-14 05:01:10 +00:00
|
|
|
okButton.enabled = false;
|
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["RemovePlayer"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int uid
|
2023-06-08 17:16:23 +00:00
|
|
|
const uid = JSON.parse(jsonData)[0];
|
|
|
|
const model = getPhotoModel(uid);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (typeof(model) !== "undefined") {
|
|
|
|
model.id = -1;
|
|
|
|
model.screenName = "";
|
|
|
|
model.general = "";
|
2023-06-04 11:31:44 +00:00
|
|
|
model.isOwner = false;
|
|
|
|
roomScene.isFull = false;
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2022-03-24 13:23:42 +00:00
|
|
|
}
|
2022-03-27 06:49:41 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["RoomOwner"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int uid of the owner
|
2023-06-08 17:16:23 +00:00
|
|
|
const uid = JSON.parse(jsonData)[0];
|
2022-03-30 06:14:40 +00:00
|
|
|
|
2023-06-04 11:31:44 +00:00
|
|
|
roomScene.isOwner = (Self.id === uid);
|
2022-03-30 06:14:40 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const model = getPhotoModel(uid);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (typeof(model) !== "undefined") {
|
|
|
|
model.isOwner = true;
|
|
|
|
}
|
2022-03-27 06:49:41 +00:00
|
|
|
}
|
2022-03-28 14:24:30 +00:00
|
|
|
|
2023-06-04 11:31:44 +00:00
|
|
|
function checkAllReady() {
|
|
|
|
let allReady = true;
|
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2023-06-04 11:31:44 +00:00
|
|
|
if (!item.isOwner && !item.ready) {
|
|
|
|
allReady = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
roomScene.isAllReady = allReady;
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["ReadyChanged"] = (j) => {
|
|
|
|
const data = JSON.parse(j);
|
|
|
|
const id = data[0];
|
|
|
|
const ready = data[1];
|
|
|
|
|
|
|
|
if (id === Self.id) {
|
|
|
|
roomScene.isReady = ready === 1;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const model = getPhotoModel(id);
|
2023-06-04 11:31:44 +00:00
|
|
|
if (typeof(model) !== "undefined") {
|
|
|
|
model.ready = ready ? true : false;
|
|
|
|
checkAllReady();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["NetStateChanged"] = (j) => {
|
|
|
|
const data = JSON.parse(j);
|
|
|
|
const id = data[0];
|
|
|
|
let state = data[1];
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const model = getPhotoModel(id);
|
|
|
|
if (state === "run" && model.dead) {
|
2023-06-04 11:31:44 +00:00
|
|
|
state = "leave";
|
|
|
|
}
|
|
|
|
model.netstate = state;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["PropertyUpdate"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int id, string property_name, value
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const uid = data[0];
|
|
|
|
const property_name = data[1];
|
|
|
|
const value = data[2];
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
let model = getPhotoModel(uid);
|
2023-06-04 11:31:44 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
if (typeof(model) !== "undefined") {
|
|
|
|
model[property_name] = value;
|
|
|
|
}
|
2023-07-16 07:32:16 +00:00
|
|
|
|
|
|
|
if (property_name === "phase") {
|
|
|
|
let item = getPhoto(uid);
|
|
|
|
item.playing = value < 8; // Player.NotActive
|
|
|
|
}
|
2022-03-28 14:24:30 +00:00
|
|
|
}
|
|
|
|
|
2023-06-23 14:18:11 +00:00
|
|
|
callbacks["UpdateCard"] = (j) => {
|
|
|
|
const id = parseInt(j);
|
|
|
|
let card;
|
|
|
|
roomScene.tableCards.forEach((v) => {
|
|
|
|
if (v.cid === id) {
|
|
|
|
card = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!card) {
|
|
|
|
roomScene.dashboard.handcardArea.cards.forEach((v) => {
|
|
|
|
if (v.cid === id) {
|
|
|
|
card = v;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!card) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
|
|
|
card.setData(data);
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["StartGame"] = (jsonData) => {
|
2023-04-27 06:15:08 +00:00
|
|
|
roomScene.isStarted = true;
|
|
|
|
|
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2023-06-04 11:31:44 +00:00
|
|
|
item.ready = false;
|
2023-04-27 06:15:08 +00:00
|
|
|
item.general = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["ArrangeSeats"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: seat order
|
2023-06-08 17:16:23 +00:00
|
|
|
const order = JSON.parse(jsonData);
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2022-04-30 07:27:56 +00:00
|
|
|
item.seatNumber = order.indexOf(item.id) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// make Self to the first of list, then reorder photomodel
|
2023-06-08 17:16:23 +00:00
|
|
|
const selfIndex = order.indexOf(Self.id);
|
|
|
|
const after = order.splice(selfIndex);
|
2022-04-30 07:27:56 +00:00
|
|
|
after.push(...order);
|
2023-06-08 17:16:23 +00:00
|
|
|
const photoOrder = after;
|
2022-04-30 07:27:56 +00:00
|
|
|
|
|
|
|
for (let i = 0; i < photoModel.count; i++) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = photoModel.get(i);
|
2022-04-30 07:27:56 +00:00
|
|
|
item.index = photoOrder.indexOf(item.id);
|
|
|
|
}
|
2023-02-26 08:51:29 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
arrangePhotos();
|
2022-03-28 14:24:30 +00:00
|
|
|
}
|
2022-03-30 06:14:40 +00:00
|
|
|
|
|
|
|
function cancelAllFocus() {
|
2022-04-30 07:27:56 +00:00
|
|
|
let item;
|
2023-04-27 06:15:08 +00:00
|
|
|
for (let i = 0; i < playerNum; i++) {
|
2022-04-30 07:27:56 +00:00
|
|
|
item = photos.itemAt(i);
|
|
|
|
item.progressBar.visible = false;
|
|
|
|
item.progressTip = "";
|
|
|
|
}
|
2022-03-30 06:14:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["MoveFocus"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int[] focuses, string command
|
|
|
|
cancelAllFocus();
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const focuses = data[0];
|
|
|
|
const command = data[1];
|
2023-02-26 08:51:29 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
let item, model;
|
2023-04-27 06:15:08 +00:00
|
|
|
for (let i = 0; i < playerNum; i++) {
|
2022-04-30 07:27:56 +00:00
|
|
|
model = photoModel.get(i);
|
|
|
|
if (focuses.indexOf(model.id) != -1) {
|
|
|
|
item = photos.itemAt(i);
|
|
|
|
item.progressBar.visible = true;
|
2023-02-26 08:51:29 +00:00
|
|
|
item.progressTip = Backend.translate(command)
|
2022-05-01 10:37:13 +00:00
|
|
|
+ Backend.translate(" thinking...");
|
|
|
|
|
2023-07-16 07:32:16 +00:00
|
|
|
/*
|
2022-05-01 10:37:13 +00:00
|
|
|
if (command === "PlayCard") {
|
|
|
|
item.playing = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
item = photos.itemAt(i);
|
|
|
|
if (command === "PlayCard") {
|
|
|
|
item.playing = false;
|
|
|
|
}
|
2023-07-16 07:32:16 +00:00
|
|
|
*/
|
2022-05-01 10:37:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-30 06:14:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["PlayerRunned"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int runner, int robot
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const runner = data[0];
|
|
|
|
const robot = data[1];
|
2022-04-30 07:27:56 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const model = getPhotoModel(runner);
|
2022-04-30 07:27:56 +00:00
|
|
|
if (typeof(model) !== "undefined") {
|
|
|
|
model.id = robot;
|
|
|
|
}
|
2022-04-02 22:41:55 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForGeneral"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: string[] Generals
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const generals = data[0];
|
|
|
|
const n = data[1];
|
|
|
|
const heg = data[2];
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(Backend.translate("#AskForGeneral"), true);
|
2022-04-30 07:27:56 +00:00
|
|
|
roomScene.state = "replying";
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/ChooseGeneralBox.qml");
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2022-04-30 07:27:56 +00:00
|
|
|
box.accepted.connect(() => {
|
2023-04-19 06:07:16 +00:00
|
|
|
replyToServer(JSON.stringify(box.choices));
|
2022-04-30 07:27:56 +00:00
|
|
|
});
|
2023-04-19 06:07:16 +00:00
|
|
|
box.choiceNum = n;
|
2023-04-23 13:10:07 +00:00
|
|
|
box.needSameKingdom = !!heg;
|
2023-04-19 06:07:16 +00:00
|
|
|
for (let i = 0; i < generals.length; i++)
|
|
|
|
box.generalList.append({ "name": generals[i] });
|
2022-04-30 07:27:56 +00:00
|
|
|
box.updatePosition();
|
2022-03-30 06:14:40 +00:00
|
|
|
}
|
2022-04-02 07:11:13 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForSkillInvoke"] = (jsonData) => {
|
2023-04-04 07:59:21 +00:00
|
|
|
// jsonData: [ string name, string prompt ]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const skill = data[0];
|
|
|
|
const prompt = data[1];
|
2023-04-04 07:59:21 +00:00
|
|
|
roomScene.promptText = prompt ? processPrompt(prompt) : Backend.translate("#AskForSkillInvoke")
|
|
|
|
.arg(Backend.translate(skill));
|
2022-12-18 04:52:52 +00:00
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.okCancel.visible = true;
|
|
|
|
roomScene.okButton.enabled = true;
|
|
|
|
roomScene.cancelButton.enabled = true;
|
2022-04-02 07:11:13 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForGuanxing"] = (jsonData) => {
|
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const cards = [];
|
|
|
|
const min_top_cards = data.min_top_cards;
|
|
|
|
const max_top_cards = data.max_top_cards;
|
|
|
|
const min_bottom_cards = data.min_bottom_cards;
|
|
|
|
const max_bottom_cards = data.max_bottom_cards;
|
|
|
|
const top_area_name = data.top_area_name;
|
|
|
|
const bottom_area_name = data.bottom_area_name;
|
2023-06-18 16:20:50 +00:00
|
|
|
const prompt = data.prompt;
|
2023-01-29 10:11:41 +00:00
|
|
|
roomScene.state = "replying";
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/GuanxingBox.qml");
|
2023-01-29 10:11:41 +00:00
|
|
|
data.cards.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const d = Backend.callLuaFunction("GetCardData", [id]);
|
2023-01-29 10:11:41 +00:00
|
|
|
cards.push(JSON.parse(d));
|
|
|
|
});
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2023-06-18 16:20:50 +00:00
|
|
|
box.prompt = prompt;
|
2023-06-08 17:16:23 +00:00
|
|
|
if (max_top_cards === 0) {
|
2023-04-25 11:02:17 +00:00
|
|
|
box.areaCapacities = [max_bottom_cards];
|
|
|
|
box.areaLimits = [min_bottom_cards];
|
2023-06-04 11:39:20 +00:00
|
|
|
box.areaNames = [Backend.translate(bottom_area_name)];
|
2023-04-25 11:02:17 +00:00
|
|
|
} else {
|
|
|
|
box.areaCapacities = [max_top_cards, max_bottom_cards];
|
|
|
|
box.areaLimits = [min_top_cards, min_bottom_cards];
|
2023-06-04 11:39:20 +00:00
|
|
|
box.areaNames = [Backend.translate(top_area_name), Backend.translate(bottom_area_name)];
|
2023-04-25 11:02:17 +00:00
|
|
|
}
|
2023-01-29 10:11:41 +00:00
|
|
|
box.cards = cards;
|
|
|
|
box.arrangeCards();
|
|
|
|
box.accepted.connect(() => {
|
|
|
|
replyToServer(JSON.stringify(box.getResult()));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForExchange"] = (jsonData) => {
|
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const cards = [];
|
|
|
|
const cards_name = [];
|
|
|
|
const capacities = [];
|
|
|
|
const limits = [];
|
2023-06-07 05:02:53 +00:00
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/GuanxingBox.qml");
|
|
|
|
let for_i = 0;
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2023-06-07 05:02:53 +00:00
|
|
|
data.piles.forEach(ids => {
|
2023-06-08 17:16:23 +00:00
|
|
|
if (ids.length > 0) {
|
|
|
|
ids.forEach(id => {
|
|
|
|
const d = Backend.callLuaFunction("GetCardData", [id]);
|
|
|
|
cards.push(JSON.parse(d));
|
|
|
|
});
|
|
|
|
capacities.push(ids.length);
|
|
|
|
limits.push(0);
|
|
|
|
cards_name.push(Backend.translate(data.piles_name[for_i]));
|
|
|
|
for_i ++;
|
|
|
|
}
|
2023-06-07 05:02:53 +00:00
|
|
|
});
|
|
|
|
box.areaCapacities = capacities
|
|
|
|
box.areaLimits = limits
|
|
|
|
box.areaNames = cards_name
|
|
|
|
box.cards = cards;
|
|
|
|
box.arrangeCards();
|
|
|
|
box.accepted.connect(() => {
|
|
|
|
replyToServer(JSON.stringify(box.getResult()));
|
|
|
|
});
|
|
|
|
}
|
2023-07-16 07:29:20 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForChoice"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: [ string[] choices, string skill ]
|
|
|
|
// TODO: multiple choices, e.g. benxi_ol
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const choices = data[0];
|
2023-07-16 07:29:20 +00:00
|
|
|
const all_choices = data[1];
|
|
|
|
const skill_name = data[2];
|
|
|
|
const prompt = data[3];
|
|
|
|
const detailed = data[4];
|
2023-01-29 10:11:41 +00:00
|
|
|
if (prompt === "") {
|
|
|
|
roomScene.promptText = Backend.translate("#AskForChoice")
|
|
|
|
.arg(Backend.translate(skill_name));
|
|
|
|
} else {
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(processPrompt(prompt), true);
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
2022-04-30 07:27:56 +00:00
|
|
|
roomScene.state = "replying";
|
2023-06-09 18:18:51 +00:00
|
|
|
let qmlSrc;
|
|
|
|
if (!detailed) {
|
|
|
|
qmlSrc = "../RoomElement/ChoiceBox.qml";
|
|
|
|
} else {
|
|
|
|
qmlSrc = "../RoomElement/DetailedChoiceBox.qml";
|
|
|
|
}
|
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent(qmlSrc);
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2022-04-30 07:27:56 +00:00
|
|
|
box.options = choices;
|
|
|
|
box.skill_name = skill_name;
|
2023-07-16 07:29:20 +00:00
|
|
|
box.all_options = all_choices;
|
2022-04-30 07:27:56 +00:00
|
|
|
box.accepted.connect(() => {
|
|
|
|
replyToServer(choices[box.result]);
|
|
|
|
});
|
2022-04-02 07:11:13 +00:00
|
|
|
}
|
2022-04-14 10:22:00 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForCardChosen"] = (jsonData) => {
|
2022-09-14 05:01:10 +00:00
|
|
|
// jsonData: [ int[] handcards, int[] equips, int[] delayedtricks,
|
|
|
|
// string reason ]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const handcard_ids = data[0];
|
|
|
|
const equip_ids = data[1];
|
|
|
|
const delayedTrick_ids = data[2];
|
|
|
|
const reason = data[3];
|
|
|
|
const handcards = [];
|
|
|
|
const equips = [];
|
|
|
|
const delayedTricks = [];
|
2022-09-14 05:01:10 +00:00
|
|
|
|
|
|
|
handcard_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2022-09-14 05:01:10 +00:00
|
|
|
handcards.push(card_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
equip_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2022-09-14 05:01:10 +00:00
|
|
|
equips.push(card_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
delayedTrick_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2022-09-14 05:01:10 +00:00
|
|
|
delayedTricks.push(card_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
roomScene.promptText = Backend.translate("#AskForChooseCard")
|
|
|
|
.arg(Backend.translate(reason));
|
|
|
|
roomScene.state = "replying";
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/PlayerCardBox.qml");
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2022-09-14 05:01:10 +00:00
|
|
|
box.addHandcards(handcards);
|
|
|
|
box.addEquips(equips);
|
|
|
|
box.addDelayedTricks(delayedTricks);
|
|
|
|
roomScene.popupBox.moveToCenter();
|
|
|
|
box.cardSelected.connect(function(cid){
|
|
|
|
replyToServer(cid);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForCardsChosen"] = (jsonData) => {
|
2023-03-01 13:41:16 +00:00
|
|
|
// jsonData: [ int[] handcards, int[] equips, int[] delayedtricks,
|
|
|
|
// int min, int max, string reason ]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const handcard_ids = data[0];
|
|
|
|
const equip_ids = data[1];
|
|
|
|
const delayedTrick_ids = data[2];
|
|
|
|
const min = data[3];
|
|
|
|
const max = data[4];
|
|
|
|
const reason = data[5];
|
|
|
|
const handcards = [];
|
|
|
|
const equips = [];
|
|
|
|
const delayedTricks = [];
|
2023-03-01 13:41:16 +00:00
|
|
|
|
|
|
|
handcard_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2023-03-01 13:41:16 +00:00
|
|
|
handcards.push(card_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
equip_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2023-03-01 13:41:16 +00:00
|
|
|
equips.push(card_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
delayedTrick_ids.forEach(id => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const card_data = JSON.parse(Backend.callLuaFunction("GetCardData", [id]));
|
2023-03-01 13:41:16 +00:00
|
|
|
delayedTricks.push(card_data);
|
|
|
|
});
|
|
|
|
|
2023-07-16 07:29:20 +00:00
|
|
|
roomScene.promptText = Backend.translate("#AskForChooseCards")
|
|
|
|
.arg(Backend.translate(reason)).arg(min).arg(max);
|
2023-03-01 13:41:16 +00:00
|
|
|
roomScene.state = "replying";
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/PlayerCardBox.qml");
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2023-03-01 13:41:16 +00:00
|
|
|
box.multiChoose = true;
|
|
|
|
box.min = min;
|
|
|
|
box.max = max;
|
|
|
|
box.addHandcards(handcards);
|
|
|
|
box.addEquips(equips);
|
|
|
|
box.addDelayedTricks(delayedTricks);
|
|
|
|
roomScene.popupBox.moveToCenter();
|
|
|
|
box.cardsSelected.connect((ids) => {
|
|
|
|
replyToServer(JSON.stringify(ids));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForMoveCardInBoard"] = (jsonData) => {
|
2023-05-20 08:00:03 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const { cards, cardsPosition, generalNames } = data;
|
|
|
|
|
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/MoveCardInBoardBox.qml");
|
|
|
|
|
|
|
|
const boxCards = [];
|
|
|
|
cards.forEach(id => {
|
2023-06-09 09:23:02 +00:00
|
|
|
const d = Backend.callLuaFunction("GetCardData", [id]);
|
2023-05-20 08:00:03 +00:00
|
|
|
boxCards.push(JSON.parse(d));
|
|
|
|
});
|
|
|
|
|
|
|
|
const box = roomScene.popupBox.item;
|
|
|
|
box.cards = boxCards;
|
|
|
|
box.cardsPosition = cardsPosition;
|
|
|
|
box.generalNames = generalNames.map(name => {
|
|
|
|
const namesSplited = name.split('/');
|
|
|
|
return namesSplited.length > 1 ? namesSplited.map(nameSplited => Backend.translate(nameSplited)).join('/') : Backend.translate(name)
|
|
|
|
});
|
|
|
|
|
|
|
|
box.arrangeCards();
|
|
|
|
box.accepted.connect(() => {
|
|
|
|
replyToServer(JSON.stringify(box.getResult()));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["MoveCards"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: merged moves
|
2023-06-08 17:16:23 +00:00
|
|
|
const moves = JSON.parse(jsonData);
|
2022-04-30 07:27:56 +00:00
|
|
|
moveCards(moves);
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["PlayCard"] = (jsonData) => {
|
2022-04-30 07:27:56 +00:00
|
|
|
// jsonData: int playerId
|
2023-06-08 17:16:23 +00:00
|
|
|
const playerId = parseInt(jsonData);
|
|
|
|
if (playerId === Self.id) {
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(Backend.translate("#PlayCard"), true);
|
2022-04-30 07:27:56 +00:00
|
|
|
roomScene.state = "playing";
|
2022-09-14 05:01:10 +00:00
|
|
|
okButton.enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["LoseSkill"] = (jsonData) => {
|
2022-09-14 05:01:10 +00:00
|
|
|
// jsonData: [ int player_id, string skill_name ]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const id = data[0];
|
|
|
|
const skill_name = data[1];
|
|
|
|
const prelight = data[2];
|
2022-09-14 05:01:10 +00:00
|
|
|
if (id === Self.id) {
|
2023-04-23 13:10:07 +00:00
|
|
|
dashboard.loseSkill(skill_name, prelight);
|
2022-09-14 05:01:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AddSkill"] = (jsonData) => {
|
2022-09-14 05:01:10 +00:00
|
|
|
// jsonData: [ int player_id, string skill_name ]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const id = data[0];
|
|
|
|
const skill_name = data[1];
|
|
|
|
const prelight = data[2];
|
2022-09-14 05:01:10 +00:00
|
|
|
if (id === Self.id) {
|
2023-04-23 13:10:07 +00:00
|
|
|
dashboard.addSkill(skill_name, prelight);
|
2022-04-30 07:27:56 +00:00
|
|
|
}
|
2022-04-14 10:22:00 +00:00
|
|
|
}
|
2022-09-15 03:17:13 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["PrelightSkill"] = (jsonData) => {
|
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const skill_name = data[0];
|
|
|
|
const prelight = data[1];
|
2023-04-23 13:10:07 +00:00
|
|
|
|
|
|
|
dashboard.prelightSkill(skill_name, prelight);
|
|
|
|
}
|
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
// prompt: 'string:<src>:<dest>:<arg>:<arg2>'
|
|
|
|
function processPrompt(prompt) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = prompt.split(":");
|
2023-01-29 10:11:41 +00:00
|
|
|
let raw = Backend.translate(data[0]);
|
2023-06-08 17:16:23 +00:00
|
|
|
const src = parseInt(data[1]);
|
|
|
|
const dest = parseInt(data[2]);
|
2023-07-11 15:16:46 +00:00
|
|
|
if (raw.match("%src")) raw = raw.replace(/%src/g, Backend.translate(getPhoto(src).general));
|
|
|
|
if (raw.match("%dest")) raw = raw.replace(/%dest/g, Backend.translate(getPhoto(dest).general));
|
|
|
|
if (raw.match("%arg2")) raw = raw.replace(/%arg2/g, Backend.translate(data[4]));
|
2023-07-14 14:17:54 +00:00
|
|
|
if (raw.match("%arg")) raw = raw.replace(/%arg/g, Backend.translate(data[3]));
|
2023-01-29 10:11:41 +00:00
|
|
|
return raw;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForUseActiveSkill"] = (jsonData) => {
|
2022-09-15 03:17:13 +00:00
|
|
|
// jsonData: string skill_name, string prompt
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const skill_name = data[0];
|
|
|
|
const prompt = data[1];
|
|
|
|
const cancelable = data[2];
|
|
|
|
const extra_data = data[3] ?? {};
|
2022-09-15 03:17:13 +00:00
|
|
|
if (prompt === "") {
|
|
|
|
roomScene.promptText = Backend.translate("#AskForUseActiveSkill")
|
|
|
|
.arg(Backend.translate(skill_name));
|
2023-01-29 10:11:41 +00:00
|
|
|
} else {
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(processPrompt(prompt), true);
|
2022-09-15 03:17:13 +00:00
|
|
|
}
|
|
|
|
|
2022-12-18 13:19:35 +00:00
|
|
|
roomScene.respond_play = false;
|
2022-09-15 03:17:13 +00:00
|
|
|
roomScene.state = "responding";
|
2023-06-04 11:40:14 +00:00
|
|
|
|
|
|
|
if (JSON.parse(Backend.callLuaFunction('GetSkillData', [skill_name])).isViewAsSkill) {
|
|
|
|
roomScene.responding_card = ".";
|
|
|
|
}
|
|
|
|
|
2023-04-19 16:19:48 +00:00
|
|
|
roomScene.autoPending = true;
|
2023-05-19 15:03:39 +00:00
|
|
|
roomScene.extra_data = extra_data;
|
|
|
|
// dashboard.startPending(skill_name);
|
|
|
|
roomScene.activateSkill(skill_name, true);
|
2022-09-15 03:17:13 +00:00
|
|
|
cancelButton.enabled = cancelable;
|
|
|
|
}
|
2022-12-18 04:52:52 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["CancelRequest"] = () => {
|
2022-12-18 04:52:52 +00:00
|
|
|
roomScene.state = "notactive";
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["GameLog"] = (jsonData) => {
|
2022-12-18 04:52:52 +00:00
|
|
|
roomScene.addToLog(jsonData)
|
|
|
|
}
|
2022-12-18 13:19:35 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForUseCard"] = (jsonData) => {
|
2023-01-16 11:13:07 +00:00
|
|
|
// jsonData: card, pattern, prompt, cancelable, {}
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const cardname = data[0];
|
|
|
|
const pattern = data[1];
|
|
|
|
const prompt = data[2];
|
|
|
|
const extra_data = data[4];
|
2023-01-16 11:13:07 +00:00
|
|
|
if (extra_data != null) {
|
|
|
|
roomScene.extra_data = extra_data;
|
|
|
|
}
|
2022-12-18 13:19:35 +00:00
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
if (prompt === "") {
|
|
|
|
roomScene.promptText = Backend.translate("#AskForUseCard")
|
|
|
|
.arg(Backend.translate(cardname));
|
|
|
|
} else {
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(processPrompt(prompt), true);
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
2023-01-16 11:13:07 +00:00
|
|
|
roomScene.responding_card = pattern;
|
2022-12-18 13:19:35 +00:00
|
|
|
roomScene.respond_play = false;
|
|
|
|
roomScene.state = "responding";
|
|
|
|
okButton.enabled = false;
|
|
|
|
cancelButton.enabled = true;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["AskForResponseCard"] = (jsonData) => {
|
2023-01-16 11:13:07 +00:00
|
|
|
// jsonData: card_name, pattern, prompt, cancelable, {}
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const cardname = data[0];
|
|
|
|
const pattern = data[1];
|
|
|
|
const prompt = data[2];
|
2022-12-18 13:19:35 +00:00
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
if (prompt === "") {
|
|
|
|
roomScene.promptText = Backend.translate("#AskForResponseCard")
|
|
|
|
.arg(Backend.translate(cardname));
|
|
|
|
} else {
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(processPrompt(prompt), true);
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
2023-01-16 11:13:07 +00:00
|
|
|
roomScene.responding_card = pattern;
|
2022-12-18 13:19:35 +00:00
|
|
|
roomScene.respond_play = true;
|
|
|
|
roomScene.state = "responding";
|
|
|
|
okButton.enabled = false;
|
|
|
|
cancelButton.enabled = true;
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["WaitForNullification"] = () => {
|
2022-12-18 13:19:35 +00:00
|
|
|
roomScene.state = "notactive";
|
|
|
|
}
|
2022-12-20 04:51:54 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["SetPlayerMark"] = (jsonData) => {
|
|
|
|
const data = JSON.parse(jsonData);
|
|
|
|
const player = getPhoto(data[0]);
|
|
|
|
const mark = data[1];
|
|
|
|
const value = data[2] instanceof Array ? data[2] : data[2].toString();
|
2023-06-09 09:23:02 +00:00
|
|
|
if (data[2] === 0) {
|
2023-02-15 11:54:35 +00:00
|
|
|
player.markArea.removeMark(mark);
|
|
|
|
} else {
|
|
|
|
player.markArea.setMark(mark, mark.startsWith("@@") ? "" : value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["Animate"] = (jsonData) => {
|
2022-12-20 04:51:54 +00:00
|
|
|
// jsonData: [Object object]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
2022-12-20 04:51:54 +00:00
|
|
|
switch (data.type) {
|
|
|
|
case "Indicate":
|
|
|
|
data.to.forEach(item => {
|
|
|
|
doIndicate(data.from, [item[0]]);
|
|
|
|
if (item[1]) {
|
|
|
|
doIndicate(item[0], item.slice(1));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
break;
|
|
|
|
case "Emotion":
|
2023-01-29 10:11:41 +00:00
|
|
|
setEmotion(data.player, data.emotion, data.is_card);
|
2022-12-20 04:51:54 +00:00
|
|
|
break;
|
|
|
|
case "LightBox":
|
|
|
|
break;
|
2023-02-21 05:44:24 +00:00
|
|
|
case "SuperLightBox": {
|
2023-06-08 17:16:23 +00:00
|
|
|
const path = data.path;
|
|
|
|
const jsonData = data.data;
|
2023-02-21 05:44:24 +00:00
|
|
|
roomScene.bigAnim.source = AppPath + "/" + path;
|
|
|
|
if (jsonData && jsonData !== "") {
|
|
|
|
roomScene.bigAnim.item.loadData(jsonData);
|
|
|
|
}
|
2022-12-20 04:51:54 +00:00
|
|
|
break;
|
2023-02-21 05:44:24 +00:00
|
|
|
}
|
2023-01-29 10:11:41 +00:00
|
|
|
case "InvokeSkill": {
|
2023-06-08 17:16:23 +00:00
|
|
|
const id = data.player;
|
|
|
|
const component = Qt.createComponent("../RoomElement/SkillInvokeAnimation.qml");
|
2023-01-29 10:11:41 +00:00
|
|
|
if (component.status !== Component.Ready)
|
|
|
|
return;
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const photo = getPhoto(id);
|
2023-01-29 10:11:41 +00:00
|
|
|
if (!photo) {
|
2023-04-27 06:15:08 +00:00
|
|
|
return null;
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const animation = component.createObject(photo, {
|
2023-01-29 10:11:41 +00:00
|
|
|
skill_name: Backend.translate(data.name),
|
|
|
|
skill_type: (data.skill_type ? data.skill_type : "special"),
|
|
|
|
});
|
|
|
|
animation.anchors.centerIn = photo;
|
|
|
|
animation.finished.connect(() => animation.destroy());
|
|
|
|
break;
|
|
|
|
}
|
2022-12-20 04:51:54 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["LogEvent"] = (jsonData) => {
|
2022-12-20 04:51:54 +00:00
|
|
|
// jsonData: [Object object]
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(jsonData);
|
2022-12-20 04:51:54 +00:00
|
|
|
switch (data.type) {
|
2023-01-29 10:11:41 +00:00
|
|
|
case "Damage": {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = getPhotoOrDashboard(data.to);
|
2022-12-20 04:51:54 +00:00
|
|
|
setEmotion(data.to, "damage");
|
|
|
|
item.tremble();
|
2023-02-21 05:44:24 +00:00
|
|
|
data.damageType = data.damageType || "normal_damage";
|
2023-01-29 10:11:41 +00:00
|
|
|
Backend.playSound("./audio/system/" + data.damageType + (data.damageNum > 1 ? "2" : ""));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "LoseHP": {
|
|
|
|
Backend.playSound("./audio/system/losehp");
|
|
|
|
break;
|
|
|
|
}
|
2023-06-04 11:31:44 +00:00
|
|
|
case "ChangeMaxHp": {
|
|
|
|
if (data.num < 0) {
|
|
|
|
Backend.playSound("./audio/system/losemaxhp");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2023-01-29 10:11:41 +00:00
|
|
|
case "PlaySkillSound": {
|
2023-06-08 17:16:23 +00:00
|
|
|
const skill = data.name;
|
2023-02-15 11:54:35 +00:00
|
|
|
let extension = data.extension;
|
|
|
|
if (!extension) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(Backend.callLuaFunction("GetSkillData", [skill]));
|
2023-02-15 11:54:35 +00:00
|
|
|
extension = data.extension;
|
|
|
|
}
|
|
|
|
Backend.playSound("./packages/" + extension + "/audio/skill/" + skill, data.i);
|
2023-01-29 10:11:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "PlaySound": {
|
|
|
|
Backend.playSound(data.name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "Death": {
|
2023-06-08 17:16:23 +00:00
|
|
|
const item = getPhoto(data.to);
|
|
|
|
const extension = JSON.parse(Backend.callLuaFunction("GetGeneralData", [item.general])).extension;
|
2023-02-15 11:54:35 +00:00
|
|
|
Backend.playSound("./packages/" + extension + "/audio/death/" + item.general);
|
2023-01-29 10:11:41 +00:00
|
|
|
}
|
2022-12-20 04:51:54 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
callbacks["GameOver"] = (jsonData) => {
|
2022-12-20 04:51:54 +00:00
|
|
|
roomScene.state = "notactive";
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.popupBox.sourceComponent = Qt.createComponent("../RoomElement/GameOverBox.qml");
|
2023-06-08 17:16:23 +00:00
|
|
|
const box = roomScene.popupBox.item;
|
2022-12-20 04:51:54 +00:00
|
|
|
box.winner = jsonData;
|
2023-06-04 11:31:44 +00:00
|
|
|
// roomScene.isStarted = false;
|
2022-12-20 04:51:54 +00:00
|
|
|
}
|
2023-02-21 05:44:24 +00:00
|
|
|
|
2023-03-01 13:41:16 +00:00
|
|
|
callbacks["FillAG"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(j);
|
|
|
|
const ids = data[0];
|
2023-05-20 08:00:03 +00:00
|
|
|
roomScene.manualBox.sourceComponent = Qt.createComponent("../RoomElement/AG.qml");
|
2023-03-01 13:41:16 +00:00
|
|
|
roomScene.manualBox.item.addIds(ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["AskForAG"] = (j) => {
|
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.manualBox.item.interactive = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["TakeAG"] = (j) => {
|
|
|
|
if (!roomScene.manualBox.item) return;
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(j);
|
|
|
|
const pid = data[0];
|
|
|
|
const cid = data[1];
|
|
|
|
const item = getPhoto(pid);
|
|
|
|
const general = Backend.translate(item.general);
|
2023-03-01 13:41:16 +00:00
|
|
|
|
|
|
|
// the item should be AG box
|
|
|
|
roomScene.manualBox.item.takeAG(general, cid);
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["CloseAG"] = () => roomScene.manualBox.item.close();
|
|
|
|
|
2023-02-21 05:44:24 +00:00
|
|
|
callbacks["CustomDialog"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(j);
|
|
|
|
const path = data.path;
|
|
|
|
const dat = data.data;
|
2023-02-21 05:44:24 +00:00
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.popupBox.source = AppPath + "/" + path;
|
|
|
|
if (dat) {
|
|
|
|
roomScene.popupBox.item.loadData(dat);
|
|
|
|
}
|
|
|
|
}
|
2023-04-04 17:05:06 +00:00
|
|
|
|
|
|
|
callbacks["UpdateLimitSkill"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = JSON.parse(j);
|
|
|
|
const id = data[0];
|
|
|
|
const skill = data[1];
|
|
|
|
const time = data[2];
|
2023-04-04 17:05:06 +00:00
|
|
|
|
2023-06-08 17:16:23 +00:00
|
|
|
const photo = getPhoto(id);
|
2023-04-04 17:05:06 +00:00
|
|
|
if (photo) {
|
|
|
|
photo.updateLimitSkill(skill, time);
|
|
|
|
}
|
|
|
|
}
|
2023-04-19 16:19:48 +00:00
|
|
|
|
|
|
|
callbacks["UpdateDrawPile"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = parseInt(j);
|
2023-04-19 16:19:48 +00:00
|
|
|
roomScene.miscStatus.pileNum = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["UpdateRoundNum"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = parseInt(j);
|
2023-04-19 16:19:48 +00:00
|
|
|
roomScene.miscStatus.roundNum = data;
|
|
|
|
}
|
2023-04-27 06:15:08 +00:00
|
|
|
|
2023-06-27 08:50:24 +00:00
|
|
|
callbacks["UpdateGameData"] = (j) => {
|
|
|
|
const data = JSON.parse(j);
|
|
|
|
const id = data[0];
|
|
|
|
const total = data[1];
|
|
|
|
const win = data[2];
|
|
|
|
const run = data[3];
|
|
|
|
const photo = getPhoto(id);
|
|
|
|
if (photo) {
|
|
|
|
photo.totalGame = total;
|
|
|
|
photo.winGame = win;
|
|
|
|
photo.runGame = run;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-27 06:15:08 +00:00
|
|
|
// 神貂蝉
|
|
|
|
|
|
|
|
callbacks["StartChangeSelf"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const id = parseInt(j);
|
2023-04-27 06:15:08 +00:00
|
|
|
ClientInstance.notifyServer("PushRequest", "changeself," + j);
|
|
|
|
}
|
|
|
|
|
|
|
|
callbacks["ChangeSelf"] = (j) => {
|
2023-06-08 17:16:23 +00:00
|
|
|
const data = parseInt(j);
|
2023-04-27 06:15:08 +00:00
|
|
|
if (Self.id === data) {
|
2023-06-08 17:16:23 +00:00
|
|
|
const msg = mainWindow.fetchMessage();
|
2023-04-27 06:15:08 +00:00
|
|
|
if (!msg) return;
|
|
|
|
mainWindow.handleMessage(msg.command, msg.jsonData);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
changeSelf(data);
|
|
|
|
}
|
2023-05-18 23:45:21 +00:00
|
|
|
|
|
|
|
callbacks["AskForLuckCard"] = (j) => {
|
|
|
|
// jsonData: int time
|
|
|
|
const time = parseInt(j);
|
2023-06-16 02:58:28 +00:00
|
|
|
roomScene.setPrompt(Backend.translate("#AskForLuckCard").arg(time), true);
|
2023-05-18 23:45:21 +00:00
|
|
|
roomScene.state = "replying";
|
|
|
|
roomScene.extra_data = {
|
|
|
|
luckCard: true,
|
|
|
|
time: time,
|
|
|
|
};
|
|
|
|
roomScene.okCancel.visible = true;
|
|
|
|
roomScene.okButton.enabled = true;
|
|
|
|
roomScene.cancelButton.enabled = true;
|
|
|
|
}
|
2023-07-02 12:39:42 +00:00
|
|
|
|
|
|
|
callbacks["CancelRequest"] = (jsonData) => {
|
|
|
|
ClientInstance.replyToServer("", "__cancel")
|
|
|
|
}
|