summaryrefslogtreecommitdiff
path: root/qml/Functions.qml
diff options
context:
space:
mode:
authorMarvin Borner2020-04-10 14:12:38 +0200
committerMarvin Borner2020-04-10 14:12:38 +0200
commit71e4befa76e91721df2baeab99fff1b4987b0cdb (patch)
tree2ee575260124119094fdf2eca6b527ccc62b7a99 /qml/Functions.qml
parent1a7c61dfb1da9de54e276e241495359d40c80ef7 (diff)
Added chess notation converter
Diffstat (limited to 'qml/Functions.qml')
-rw-r--r--qml/Functions.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/qml/Functions.qml b/qml/Functions.qml
index 4b90cc7..dde1cc7 100644
--- a/qml/Functions.qml
+++ b/qml/Functions.qml
@@ -39,7 +39,14 @@ Item {
}
}
+ function convert(i) {
+ const first = (i % 8) + 'a'.charCodeAt(0);
+ const second = (7 - parseInt(i / 8)) + '1'.charCodeAt(0);
+ return String.fromCharCode(first, second);
+ }
+
function move(from, to) {
+ console.log(convert(from) + "-" + convert(to));
board.itemAt(to).piece = board.itemAt(from).piece;
board.itemAt(from).piece = "";
selected = [];