FreeKill/Fk/Pages/Init.qml

206 lines
4.2 KiB
QML

// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
Item {
id: root
property alias serverDialog: serverDialogLoader
Item {
width: 960 * 0.8
height: 540 * 0.8
anchors.centerIn: parent
Item {
id: left
width: 300
height: parent.height
Image {
id: lady
width: parent.width + 20
height: parent.height
fillMode: Image.PreserveAspectFit
}
Image {
anchors.bottom: parent.bottom
anchors.bottomMargin: 12
width: parent.width
source: AppPath + "/image/widelogo"
}
}
Rectangle {
id: right
anchors.left: left.right
width: parent.width - left.width
height: parent.height
color: "#88EEEEEE"
radius: 16
ColumnLayout {
width: parent.width * 0.8
height: parent.height * 0.8
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: 40
//spacing
Text {
text: qsTr("Welcome back!")
font.pixelSize: 28
Layout.alignment: Qt.AlignHCenter
}
Button {
Layout.fillWidth: true
text: qsTr("Console start")
onClicked: {
config.serverAddr = "127.0.0.1";
const serverCfg = config.savedPassword["127.0.0.1"] ?? {};
config.screenName = serverCfg.username ?? "player";
config.password = serverCfg.shorten_password ?? "1234";
mainWindow.busy = true;
Backend.startServer(9527);
Backend.joinServer("127.0.0.1");
}
}
Button {
text: qsTr("Join Server")
Layout.fillWidth: true
display: AbstractButton.TextBesideIcon
onClicked: {
serverDialog.show();
}
}
Button {
Layout.fillWidth: true
text: qsTr("PackageManage")
onClicked: {
mainStack.push(packageManage);
}
}
Button {
Layout.fillWidth: true
text: qsTr("Quit Game")
onClicked: {
config.saveConf();
Qt.quit();
}
}
}
Text {
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.leftMargin: 12
anchors.bottomMargin: 12
text: qsTr("FreeKill") + " v" + FkVersion
font.pixelSize: 16
font.bold: true
}
Text {
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.rightMargin: 8
anchors.bottomMargin: 8
text: qsTr("FAQ")
color: "blue"
font.pixelSize: 24
font.underline: true
TapHandler {
onTapped: {
mainStack.push(Qt.createComponent("../Tutorial.qml").createObject());
}
}
}
}
}
Item {
id: serverDialog
width: parent.width * 0.8
height: parent.height * 0.9
anchors.centerIn: parent
visible: false
Rectangle {
anchors.fill: parent
opacity: 0.9
radius: 8
color: "snow"
border.color: "black"
}
MouseArea {
anchors.fill: parent
}
Loader {
id: serverDialogLoader
anchors.fill: parent
source: "JoinServer.qml"
}
PropertyAnimation on opacity {
id: showAnim
from: 0
to: 1
duration: 400
running: false
onStarted: {
serverDialogLoader.item.loadConfig();
}
}
PropertyAnimation on opacity {
id: hideAnim
from: 1
to: 0
duration: 400
running: false
onFinished: {
serverDialog.visible = false;
}
}
function show() {
visible = true;
showAnim.start();
}
function hide() {
hideAnim.start();
}
}
// Temp
Button {
text: qsTr("Making Mod")
anchors.right: parent.right
anchors.bottom: parent.bottom
visible: Debugging
onClicked: {
mainStack.push(modMaker);
}
}
function downloadComplete() {
toast.show(qsTr("updated packages for md5"));
}
Component.onCompleted: {
config.loadConf();
lady.source = config.ladyImg;
}
}