online multiplayer chess game (note server currently down)
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
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://ui/theme/main.theme" type="Theme" id=1]
[ext_resource path="res://PGN/test_pgns.gd" type="Script" id=2]
[node name="tests" type="VBoxContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 1 )
script = ExtResource( 2 )
pgns = PoolStringArray( "1.Nf3 Nf6 2.c4 g6 3.Nc3 Bg7 4.d4 O-O 5.Bf4 d5 6.Qb3 dxc4 7.Qxc4 c6 8.e4 Nbd7 9.Rd1 Nb6 10.Qc5 Bg4 11.Bg5 Na4 12.Qa3 Nxc3 13.bxc3 Nxe4 14.Bxe7 Qb6 15.Bc4 Nxc3 16.Bc5 Rfe8+ 17.Kf1 Be6 18.Bxb6 Bxc4+ 19.Kg1 Ne2+ 20.Kf1 Nxd4+ 21.Kg1 Ne2+ 22.Kf1 Nc3+ 23.Kg1 axb6 24.Qb4 Ra4 25.Qxb6 Nxd1 26.h3 Rxa2 27.Kh2 Nxf2 28.Re1 Rxe1 29.Qd8+ Bf8 30.Nxe1 Bd5 31.Nf3 Ne4 32.Qb8 b5 33.h4 h5 34.Ne5 Kg7 35.Kg1 Bc5+ 36.Kf1 Ng3+ 37.Ke1 Bb4+ 38.Kd1 Bb3+ 39.Kc1 Ne2+ 40.Kb1 Nc3+ 41.Kc1 Rc2# 0-1", "1. e4 e5 2. Nf3 Nc6 3. Bb5 Bc5 4. O-O Nf6 5. Nc3 Nb4 6. Nxe5 c6 7. Bc4 d5 8. exd5 cxd5 9. Bb5+ Bd7 10. Bxd7+ Nxd7 11. Nxd7 Qxd7 12. Re1+ Be7 13. a3 Nc6 14. d4 O-O-O 15. h3 Bh4 16. Qh5 Bf6 17. Nb5 Nxd4 18. Nxa7+ Kb8 19. Bg5 Nxc2 20. Bxf6 gxf6 21. a4 Kxa7 22. Qe2 Nxe1 23. Qxe1 Rhe8 24. Qa5+ Kb8 25. Qb4 d4 26. a5 Re6", "1. e4 f5 2. d4 g5 3. Qh5#" )
[node name="gameofthecentury" type="Button" parent="."]
margin_left = 489.0
margin_right = 932.0
margin_bottom = 102.0
focus_mode = 0
size_flags_horizontal = 4
text = "game of the century"
[node name="test sign" type="Button" parent="."]
margin_left = 599.0
margin_top = 117.0
margin_right = 822.0
margin_bottom = 219.0
focus_mode = 0
size_flags_horizontal = 4
text = "test sign"
[node name="test mate" type="Button" parent="."]
margin_left = 590.0
margin_top = 234.0
margin_right = 831.0
margin_bottom = 336.0
focus_mode = 0
size_flags_horizontal = 4
text = "test mate"
[node name="test chat" type="Button" parent="."]
margin_left = 643.0
margin_top = 351.0
margin_right = 779.0
margin_bottom = 453.0
size_flags_horizontal = 4
text = "ﭧ"
[connection signal="pressed" from="gameofthecentury" to="." method="_load" binds= [ 0 ]]
[connection signal="pressed" from="test sign" to="." method="_load" binds= [ 1 ]]
[connection signal="pressed" from="test mate" to="." method="_load" binds= [ 2 ]]
[connection signal="pressed" from="test chat" to="." method="_on_test_chat_pressed"]
|