// SPDX-License-Identifier: GPL-3.0-or-later import QtQuick import QtQuick.Layouts import Fk.Pages GraphicsBox { id: root property string prompt property var cards: [] property var result: [] property var areaCapacities: [] property var areaLimits: [] property var areaNames: [] property int padding: 25 title.text: Backend.translate(prompt !== "" ? prompt : "Please arrange cards") width: body.width + padding * 2 height: title.height + body.height + padding * 2 ColumnLayout { id: body x: padding y: parent.height - padding - height spacing: 20 Repeater { id: areaRepeater model: areaCapacities Row { spacing: 5 property int areaCapacity: modelData property string areaName: index < areaNames.length ? qsTr(areaNames[index]) : "" Rectangle { anchors.verticalCenter: parent.verticalCenter color: "#6B5D42" width: 20 height: 100 radius: 5 Text { anchors.fill: parent width: 20 height: 100 text: areaName color: "white" font.family: fontLibian.name font.pixelSize: 18 style: Text.Outline wrapMode: Text.WordWrap verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter } } Repeater { id: cardRepeater model: areaCapacity Rectangle { color: "#1D1E19" width: 93 height: 130 Text { anchors.centerIn: parent text: areaName color: "#59574D" width: parent.width * 0.8 wrapMode: Text.WordWrap } } } property alias cardRepeater: cardRepeater } } MetroButton { Layout.alignment: Qt.AlignHCenter id: buttonConfirm text: Backend.translate("OK") width: 120 height: 35 onClicked: close(); } } Repeater { id: cardItem model: cards CardItem { x: index y: -1 cid: modelData.cid name: modelData.name suit: modelData.suit number: modelData.number draggable: true onReleased: arrangeCards(); } } function arrangeCards() { result = new Array(areaCapacities.length); let i; for (i = 0; i < result.length; i++){ result[i] = []; } let card, j, area, cards, stay; for (i = 0; i < cardItem.count; i++) { card = cardItem.itemAt(i); stay = true; for (j = areaRepeater.count - 1; j >= 0; j--) { area = areaRepeater.itemAt(j); cards = result[j]; if (cards.length < areaCapacities[j] && card.y >= area.y) { cards.push(card); stay = false; break; } } if (stay) { for (j = 0; j < areaRepeater.count; j++) { if (result[j].length < areaCapacities[j]) { result[j].push(card); break; } } } } for(i = 0; i < result.length; i++) result[i].sort((a, b) => a.x - b.x); let box, pos, pile; for (j = 0; j < areaRepeater.count; j++) { pile = areaRepeater.itemAt(j); if (pile.y === 0){ pile.y = j * 150 } for (i = 0; i < result[j].length; i++) { box = pile.cardRepeater.itemAt(i); pos = mapFromItem(pile, box.x, box.y); card = result[j][i]; card.origX = pos.x; card.origY = pos.y; card.goBack(true); } } for (i = 0; i < areaRepeater.count; i++) { if (result[i].length < areaLimits[i]) { buttonConfirm.enabled = false; break; } buttonConfirm.enabled = true; } } function getResult() { const ret = []; result.forEach(t => { const t2 = []; t.forEach(v => t2.push(v.cid)); ret.push(t2); }); return ret; } }