164 lines
3.6 KiB
QML
164 lines
3.6 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Flickable {
|
|
id: root
|
|
property alias skill_buttons: skill_buttons
|
|
property alias prelight_buttons: prelight_buttons
|
|
|
|
clip: true
|
|
contentWidth: panel.width
|
|
contentHeight: panel.height
|
|
contentX: contentWidth - width
|
|
width: Math.min(180, panel.width)
|
|
height: Math.min(200, panel.height)
|
|
flickableDirection: Flickable.AutoFlickIfNeeded
|
|
|
|
ListModel {
|
|
id: prelight_skills
|
|
}
|
|
|
|
ListModel {
|
|
id: active_skills
|
|
}
|
|
|
|
ListModel {
|
|
id: not_active_skills
|
|
}
|
|
|
|
Item {
|
|
id: panel
|
|
width: Math.max(grid0.width, grid1.width, grid2.width)
|
|
height: grid0.height + grid1.height + grid2.height
|
|
Grid {
|
|
id: grid0
|
|
columns: 2
|
|
columnSpacing: 2
|
|
rowSpacing: 2
|
|
Repeater {
|
|
id: prelight_buttons
|
|
model: prelight_skills
|
|
onItemAdded: parent.forceLayout()
|
|
SkillButton {
|
|
skill: model.skill
|
|
type: "prelight"
|
|
enabled: !config.observing
|
|
orig: model.orig_skill
|
|
|
|
onPressedChanged: {
|
|
if (!pressed) return;
|
|
enabled = false;
|
|
ClientInstance.notifyServer("PushRequest", [
|
|
"prelight", orig, (!prelighted).toString()
|
|
].join(","));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Grid {
|
|
id: grid1
|
|
anchors.top: grid0.bottom
|
|
columns: 2
|
|
columnSpacing: 2
|
|
rowSpacing: 2
|
|
Repeater {
|
|
id: skill_buttons
|
|
model: active_skills
|
|
onItemAdded: parent.forceLayout()
|
|
SkillButton {
|
|
skill: model.skill
|
|
type: "active"
|
|
enabled: false
|
|
orig: model.orig_skill
|
|
|
|
onPressedChanged: {
|
|
if (enabled)
|
|
roomScene.activateSkill(orig, pressed);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Grid {
|
|
id: grid2
|
|
anchors.top: grid1.bottom
|
|
anchors.topMargin: 2
|
|
columns: 3
|
|
columnSpacing: 2
|
|
rowSpacing: 2
|
|
Repeater {
|
|
model: not_active_skills
|
|
onItemAdded: parent.forceLayout()
|
|
SkillButton {
|
|
skill: model.skill
|
|
orig: model.orig_skill
|
|
type: "notactive"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function addSkill(skill_name, prelight) {
|
|
const modelContains = (m, e) => {
|
|
for (let i = 0; i < m.count; i++) {
|
|
if (m.get(i).orig_skill === e.orig_skill) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
|
|
let data = JSON.parse(Backend.callLuaFunction(
|
|
"GetSkillData",
|
|
[skill_name]
|
|
));
|
|
|
|
if (prelight) {
|
|
if (!modelContains(prelight_skills, data))
|
|
prelight_skills.append(data);
|
|
return;
|
|
}
|
|
|
|
if (data.freq === "active") {
|
|
if (!modelContains(active_skills, data)) active_skills.append(data);
|
|
} else {
|
|
if (!modelContains(not_active_skills, data))
|
|
not_active_skills.append(data);
|
|
}
|
|
}
|
|
|
|
function loseSkill(skill_name, prelight) {
|
|
if (prelight) {
|
|
for (let i = 0; i < prelight_skills.count; i++) {
|
|
let item = prelight_skills.get(i);
|
|
if (item.orig_skill == skill_name) {
|
|
prelight_skills.remove(i);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
for (let i = 0; i < active_skills.count; i++) {
|
|
let item = active_skills.get(i);
|
|
if (item.orig_skill == skill_name) {
|
|
active_skills.remove(i);
|
|
}
|
|
}
|
|
for (let i = 0; i < not_active_skills.count; i++) {
|
|
let item = not_active_skills.get(i);
|
|
if (item.orig_skill == skill_name) {
|
|
not_active_skills.remove(i);
|
|
}
|
|
}
|
|
}
|
|
|
|
function clearSkills() {
|
|
prelight_skills.clear();
|
|
active_skills.clear();
|
|
not_active_skills.clear();
|
|
}
|
|
}
|