summaryrefslogtreecommitdiff
path: root/qml/Functions.qml
blob: d6a9ca1d33feaf2b8b3b6401f2828cb4299a2b59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import QtQuick 2.2
import "pages"

Item {
    id: functions

    function get_piece(i) {
        if (i === 0 || i === 7) return "r";
        else if (i === 1 || i === 6) return "n";
        else if (i === 2 || i === 5) return "b";
        else if (i === 3) return "q";
        else if (i === 4) return "k";
        else if (i >= 8 && i <= 15) return "p";
    }

    function fill() {
        for (var i = 0; i < 16; i++) {
            const piece = get_piece(i);

            board.itemAt(i).piece = "b" + piece;
            board.itemAt(-i + 63).piece = "w" + piece;
        }
        // Swap white king & queen
        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 && game_id !== "" && turn) {
            if (selected.indexOf(i) === -1) selected.push(i)
            else selected.splice(selected.indexOf(i), 1)

            if (selected.length === 2) {
                board.itemAt(selected[0]).border.width = 0;
                move(selected[0], selected[1]);
            } else {
                board.itemAt(i).border.width ^= parseInt(0.1 * board.itemAt(i).width);
            }
        }
    }

    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) {
        post("board/game/" + game_id + "/move/" + convert_index(from) + convert_index(to), "", function (response) {
            console.log(JSON.stringify(response));
            if (response["ok"]) {
                turn = false;
                // move_piece(from, to);
            }
        })
        selected = [];
    }

    function castle(move) {
        console.log("'" + move + "'");
        if (["e1c1", "e1g1", "e8c8", "e8g8"].indexOf(move) !== -1) {
            var rook;
            switch (move) {
            case "e1c1":
                rook = convert_movement("a1d1")
                break;
            case "e1g1":
                rook = convert_movement("h1f1")
                break;
            case "e8c8":
                rook = convert_movement("a8d8")
                break;
            case "e8g8":
                rook = convert_movement("h8f8")
                break;
            }
            console.log(rook);

            move_piece(rook[0], rook[1]);
        }
    }

    // END LOGIC

    property bool start: true
    property bool turn: true
    property var game_id: ""
    property var moves: ""

    function event_stream() {
        var xhr = new XMLHttpRequest();
        xhr.open("GET", "https://lichess.org/api/stream/event");
        xhr.seenBytes = 0;
        xhr.setRequestHeader("Authorization", "Bearer " + access_token.value);

        xhr.onreadystatechange = function() {
            if (xhr.readyState === 3) {
                const new_data = xhr.response.substr(xhr.seenBytes);
                xhr.seenBytes = xhr.responseText.length;

                if (new_data !== "\n") {
                    // TODO: Fix resign
                    console.log("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").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!");
                            clear();
                            stop_game();
                            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() {});
                            })
                        }
                    });
                }
            }
        };

        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) {
                const new_data = game_xhr.response.substr(game_xhr.seenBytes);
                game_xhr.seenBytes = game_xhr.responseText.length;

                if (new_data !== "\n") {
                    console.log("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");

                    const data_arr = JSON.parse("[" + new_data.replace(/(?:\r\n|\r|\n)/g, ",").replace(/\,$/, "") + "]");
                    data_arr.forEach(function (data) {
                        var all_moves, status;
                        if (data["type"] === "gameFull") {
                            all_moves = data["state"]["moves"];
                            status = data["state"]["status"];
                        } 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;
                        } else if (data["type"] === "chatLine") {
                            chat.text = data["username"] + ": " + data["text"];
                            return;
                        }

                        const new_moves = all_moves.slice(moves.length)
                        moves += new_moves;

                        turn = (moves.split(" ").length === 1 && start) || moves.split(" ").length % 2 === (start ? 0 : 1);

                        new_moves.split(" ").forEach(function(move) {
                            if (move !== "") {
                                // TODO: Implement pawn promotion and en passant
                                const arr = convert_movement(move);
                                move_piece(arr[0], arr[1]);
                                castle(move);
                            }
                        });

                        if (status !== "started") {
                            stop_game();
                            information.text = qsTr("Game over: ") + status;
                        }
                    });
                }
            }
        };

        game_xhr.send();
    }

    function post(path, params, callback) {
        var xhr = new XMLHttpRequest();
        xhr.open("POST", "https://lichess.org/api/" + path);
        xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xhr.setRequestHeader("Authorization", "Bearer " + access_token.value);

        xhr.onreadystatechange = function() {
            if (xhr.readyState === 4)
                callback(JSON.parse(xhr.responseText));
        }
        xhr.send(params);
    }

    function stop_game() {
        try {
            game_id = "";
            moves = "";
            game_xhr.abort();
        } catch (Exception) {} // idc
    }

    function abort() {
        post("board/game/" + game_id + "/abort", "", function (response) {
            if (response["ok"]) {
                information.text = qsTr("Please start a game");
                clear();
                stop_game();
            }
        })
    }

    function resign() {
        post("board/game/" + game_id + "/resign", "", function (response) {
            if (response["ok"]) {
                information.text = qsTr("Game over: ") + qsTr("Resigned");
                stop_game();
            }
        })
    }

    function offer_draw() {
        post("board/game/" + game_id + "/draw/yes", "", function (response) {
            if (response["ok"])
                information.text = qsTr("Offered draw");
        })
    }

    function challenge(username) {
        post("challenge/" + username, "rated=false&clock.limit=10800&clock.increment=60&days=14&color=white", function (response) {
            if (!response["error"]) {
                information.text = qsTr("Waiting for ") + response["challenge"]["destUser"]["name"];
                console.log(JSON.stringify(response));
            }
        });
    }

    function start_seek() {
        var xhr = new XMLHttpRequest();
        xhr.open("GET", "https://lichess.org/api/account");
        xhr.setRequestHeader("Authorization", "Bearer " + access_token.value);

        xhr.onreadystatechange = function() {
            if (xhr.readyState === 3) {
                console.log(xhr.responseText);
            }
        };

        xhr.send();
    }
}