summaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml')
-rw-r--r--qml/Functions.qml23
-rw-r--r--qml/Square.qml2
-rw-r--r--qml/harbour-sailchess.qml2
-rw-r--r--qml/pages/Board.qml8
-rw-r--r--qml/pages/ChallengeDialog.qml17
5 files changed, 42 insertions, 10 deletions
diff --git a/qml/Functions.qml b/qml/Functions.qml
index 292df3f..430b9d7 100644
--- a/qml/Functions.qml
+++ b/qml/Functions.qml
@@ -1,4 +1,4 @@
-import QtQuick 2.0
+import QtQuick 2.2
import "pages"
Item {
@@ -97,15 +97,23 @@ Item {
if (new_data !== "\n") {
// TODO: Fix resign
- console.log("[" + new_data.replace("\n", ",").replace(/.$/, "]"));
+ console.log("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");
- const data_arr = JSON.parse("[" + new_data.replace("\n", ",").replace(/.$/, "]"));
+ const data_arr = JSON.parse("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");
data_arr.forEach(function (data) {
if (data["type"] === "gameStart") {
information.text = qsTr("Game started!");
fill();
game_id = data["game"]["id"];
game_stream();
+ } else if (data["type"] === "challenge") {
+ var dialog = pageStack.push("pages/ChallengeDialog.qml", {"name": data["challenge"]["challenger"]["name"]});
+ dialog.accepted.connect(function() {
+ post("challenge/" + data["challenge"]["id"] + "/accept", "", function() {});
+ })
+ dialog.rejected.connect(function() {
+ post("challenge/" + data["challenge"]["id"] + "/decline", "", function() {});
+ })
}
});
}
@@ -128,9 +136,9 @@ Item {
game_xhr.seenBytes = game_xhr.responseText.length;
if (new_data !== "\n") {
- console.log("[" + new_data.replace("\n", ",").replace(/.$/, "]"));
+ console.log("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");
- const data_arr = JSON.parse("[" + new_data.replace("\n", ",").replace(/.$/, "]"));
+ const data_arr = JSON.parse("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");
data_arr.forEach(function (data) {
// TODO: Implement castling: e1c1, e1, g1, e8c8, e8g8
var all_moves, status;
@@ -140,6 +148,11 @@ Item {
} else if (data["type"] === "gameState") {
all_moves = data["moves"];
status = data["status"];
+ } else if (data["error"]) {
+ information.text = qsTr("An error occurred: ") + data["error"];
+ clear();
+ stop_game();
+ return;
}
const new_moves = all_moves.slice(moves.length)
diff --git a/qml/Square.qml b/qml/Square.qml
index 2169290..bb13184 100644
--- a/qml/Square.qml
+++ b/qml/Square.qml
@@ -1,4 +1,4 @@
-import QtQuick 2.0
+import QtQuick 2.2
Rectangle {
property int i: 0
diff --git a/qml/harbour-sailchess.qml b/qml/harbour-sailchess.qml
index 6142693..aed55f7 100644
--- a/qml/harbour-sailchess.qml
+++ b/qml/harbour-sailchess.qml
@@ -1,4 +1,4 @@
-import QtQuick 2.0
+import QtQuick 2.2
import Sailfish.Silica 1.0
import org.nemomobile.configuration 1.0
import "pages"
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index 58af5ee..240fa11 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -1,4 +1,4 @@
-import QtQuick 2.0
+import QtQuick 2.2
import Sailfish.Silica 1.0
import org.nemomobile.configuration 1.0
import ".."
@@ -52,12 +52,14 @@ Page {
title: qsTr("Chess")
}
- Label {
+ LinkedLabel {
id: information
+ width: parent.width
+ color: "white"
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: grid.top
bottomPadding: Theme.paddingMedium
- text: qsTr("Please start a game");
+ plainText: qsTr("Please start a game");
}
Grid {
diff --git a/qml/pages/ChallengeDialog.qml b/qml/pages/ChallengeDialog.qml
new file mode 100644
index 0000000..037d53d
--- /dev/null
+++ b/qml/pages/ChallengeDialog.qml
@@ -0,0 +1,17 @@
+import QtQuick 2.2
+import Sailfish.Silica 1.0
+
+Dialog {
+ property var name
+
+ Column {
+ width: parent.width
+
+ DialogHeader { }
+
+ Label {
+ width: parent.width
+ text: name + qsTr(" challenges you")
+ }
+ }
+}