summaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml')
-rw-r--r--qml/Functions.qml102
-rw-r--r--qml/pages/Board.qml12
-rw-r--r--qml/pages/Login.qml3
-rw-r--r--qml/resources/css/external.css2
4 files changed, 105 insertions, 14 deletions
diff --git a/qml/Functions.qml b/qml/Functions.qml
index 970788b..7e1c576 100644
--- a/qml/Functions.qml
+++ b/qml/Functions.qml
@@ -24,9 +24,15 @@ Item {
board.itemAt(60).piece = [board.itemAt(59).piece, board.itemAt(59).piece = board.itemAt(60).piece][0];
}
+ function clear() {
+ for (var i = 0; i < 64; i++) {
+ board.itemAt(i).piece = "";
+ }
+ }
+
property var selected: []
function select(i) {
- if (selected.length < 2) {
+ if (selected.length < 2 && game_id !== "") {
if (selected.indexOf(i) === -1) selected.push(i)
else selected.splice(selected.indexOf(i), 1)
@@ -39,22 +45,41 @@ Item {
}
}
- function convert(i) {
+ function convert_index(i) {
const first = (i % 8) + 'a'.charCodeAt(0);
const second = (7 - parseInt(i / 8)) + '1'.charCodeAt(0);
return String.fromCharCode(first, second);
}
+ function convert_movement(movement) {
+ const a = movement[0].charCodeAt(0) - 'a'.charCodeAt(0);
+ const b = 8 - parseInt(movement[1])
+ const c = movement[2].charCodeAt(0) - 'a'.charCodeAt(0);
+ const d = 8 - parseInt(movement[3])
+ return [b * 8 + a, d * 8 + c];
+ }
+
+ function move_piece(from, to) {
+ if (board.itemAt(from).piece !== "") {
+ board.itemAt(to).piece = board.itemAt(from).piece;
+ board.itemAt(from).piece = "";
+ }
+ }
+
function move(from, to) {
- console.log(convert(from) + "-" + convert(to));
- board.itemAt(to).piece = board.itemAt(from).piece;
- board.itemAt(from).piece = "";
+ console.log(convert_index(from) + "-" + convert_index(to));
+ post("board/game/" + game_id + "/move/" + convert_index(from) + convert_index(to), "", function (response) {
+ console.log(JSON.stringify(response));
+ if (response["ok"])
+ move_piece(from, to);
+ })
selected = [];
}
// END LOGIC
property var game_id: ""
+ property var moves: ""
function event_stream() {
var xhr = new XMLHttpRequest();
@@ -74,6 +99,7 @@ Item {
information.text = qsTr("Game started!");
fill();
game_id = data["game"]["id"];
+ game_stream();
}
} catch (Exception) {}
}
@@ -82,6 +108,49 @@ Item {
xhr.send();
}
+ property var game_xhr;
+ function game_stream() {
+ game_xhr = new XMLHttpRequest();
+ game_xhr.open("GET", "https://lichess.org/api/board/game/stream/" + game_id);
+ game_xhr.seenBytes = 0;
+ game_xhr.setRequestHeader("Authorization", "Bearer " + access_token.value);
+
+ game_xhr.onreadystatechange = function() {
+ if (game_xhr.readyState === 3) {
+ try {
+ const new_data = game_xhr.response.substr(game_xhr.seenBytes);
+ game_xhr.seenBytes = game_xhr.responseText.length;
+
+ console.log(new_data);
+ const data = JSON.parse(new_data);
+ var all_moves;
+ if (data["type"] === "gameFull") {
+ all_moves = data["state"]["moves"];
+ } else if (data["type"] === "gameState") {
+ all_moves = data["moves"];
+ }
+
+ console.log(moves);
+ console.log(all_moves);
+
+ const new_moves = all_moves.slice(moves.length)
+ moves += new_moves;
+
+ console.log(moves);
+
+ new_moves.split(" ").forEach(function(move) {
+ if (move !== "") {
+ const arr = convert_movement(move);
+ move_piece(arr[0], arr[1]);
+ }
+ });
+ } catch (Exception) {}
+ }
+ };
+
+ game_xhr.send();
+ }
+
function post(path, params, callback) {
var xhr = new XMLHttpRequest();
xhr.open("POST", "https://lichess.org/api/" + path);
@@ -89,19 +158,32 @@ Item {
xhr.setRequestHeader("Authorization", "Bearer " + access_token.value);
xhr.onreadystatechange = function() {
- if (xhr.readyState === 4 && xhr.status === 200) {
+ if (xhr.readyState === 4) {
callback(JSON.parse(xhr.responseText));
- } else if (xhr.readyState === 4) {
- console.error(xhr.responseText);
}
}
xhr.send(params);
}
+ function abort() {
+ post("board/game/" + game_id + "/abort", "", function (response) {
+ if (response["ok"]) {
+ information.text = qsTr("Please start a game");
+ game_id = "";
+ moves = "";
+ clear();
+ game_xhr.abort();
+ console.log(JSON.stringify(response));
+ }
+ })
+ }
+
function challenge(username) {
post("challenge/" + username, "rated=false&clock.limit=10800&clock.increment=60&days=14&color=white", function (response) {
- information.text = qsTr("Challenging ") + response["challenge"]["destUser"]["name"];
- console.log(JSON.stringify(response));
+ if (!response["error"]) {
+ information.text = qsTr("Waiting for ") + response["challenge"]["destUser"]["name"];
+ console.log(JSON.stringify(response));
+ }
});
}
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index 799f24c..bbf41c3 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -17,7 +17,7 @@ Page {
PullDownMenu {
MenuItem {
- text: qsTr("Login")
+ text: qsTr("Refresh login")
onClicked: {
access_token.value = "";
refresh_token.value = "";
@@ -26,11 +26,18 @@ Page {
}
MenuItem {
text: qsTr("Random player")
+ visible: functions.game_id === "" ? true : false
onClicked: functions.start_seek()
}
MenuItem {
text: qsTr("Play against bot")
- onClicked: functions.challenge("GodelEscherBot")
+ visible: functions.game_id === "" ? true : false
+ onClicked: functions.challenge("GarboBot")
+ }
+ MenuItem {
+ text: qsTr("Abort game")
+ visible: functions.game_id === "" ? false : true
+ onClicked: functions.abort()
}
}
@@ -49,6 +56,7 @@ Page {
id: information
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: grid.top
+ bottomPadding: Theme.paddingMedium
text: qsTr("Please start a game");
}
diff --git a/qml/pages/Login.qml b/qml/pages/Login.qml
index 2f57e39..e493f2f 100644
--- a/qml/pages/Login.qml
+++ b/qml/pages/Login.qml
@@ -9,8 +9,9 @@ Page {
id: login
anchors.fill: parent
- experimental.preferences.javascriptEnabled: false
+ experimental.preferences.javascriptEnabled: true
experimental.userStyleSheets: [Qt.resolvedUrl("qrc:///css/external.css")]
+ // experimental.preferences.privateBrowsingEnabled: true
experimental.customLayoutWidth: parent.width / device_ratio
url: "https://marvinborner.de/lichess/"
diff --git a/qml/resources/css/external.css b/qml/resources/css/external.css
index b1281e1..b1bff76 100644
--- a/qml/resources/css/external.css
+++ b/qml/resources/css/external.css
@@ -1,3 +1,3 @@
nav, .alternative, header {
- display: none;
+ display: none;
}