-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
265 lines (247 loc) · 7.08 KB
/
index.html
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Jeu d'échecs en TypeScript</title>
<style>
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f2f5;
color: #333;
}
header {
margin: 20px 0;
font-size: 28px;
font-weight: bold;
color: #4caf50;
}
.container {
display: flex;
justify-content: center;
align-items: flex-start;
max-width: 1200px;
width: 100%;
}
#sidebar, #capturedSidebar {
width: 220px;
padding: 20px;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 0 15px;
font-size: 16px;
}
canvas {
border: 2px solid #333;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
button {
padding: 12px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
border: none;
transition: background-color 0.2s ease;
margin: 10px 0;
color: #ffffff;
}
button:hover {
opacity: 0.9;
}
#replayButton {
display: none;
background-color: #4caf50;
}
#passTurnButton {
background-color: #ffa726;
width: 100%;
}
#promotionDialog {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: #ffffff;
border: 2px solid #4caf50;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
z-index: 1000;
}
#promotionDialog button {
background-color: #4caf50;
margin: 5px;
color: #fff;
}
#gameMessage {
display: none;
background-color: #f8d7da;
color: #721c24;
padding: 15px;
border-radius: 8px;
border: 1px solid #f5c6cb;
margin-bottom: 20px;
width: 300px;
text-align: center;
}
#moveHistory ul {
list-style: none;
padding: 0;
margin: 10px 0;
max-height: 200px;
overflow-y: auto;
border-top: 1px solid #ddd;
}
#moveHistory li {
padding: 8px;
border-bottom: 1px solid #eee;
}
#capturedSidebar h4 {
margin-bottom: 5px;
}
#capturedWhite, #capturedBlack {
display: flex;
flex-wrap: wrap;
gap: 5px;
}
#currentTurn, #timer {
margin: 10px 0;
font-weight: bold;
}
/* Styles pour la sélection de couleur */
#colorSelection {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
#colorSelection h3 {
font-size: 22px;
margin-bottom: 15px;
color: #333;
}
.color-option {
display: inline-flex;
align-items: center;
margin: 0 10px;
font-size: 18px;
color: #333;
cursor: pointer;
padding: 10px;
border-radius: 8px;
transition: background-color 0.2s ease;
}
.color-option input {
display: none;
}
.color-option span {
padding: 8px 15px;
border-radius: 8px;
transition: background-color 0.2s ease, color 0.2s ease;
}
.color-option:hover span,
.color-option input:checked + span {
background-color: #4caf50;
color: white;
}
#startGameButton {
background-color: #4caf50;
font-size: 18px;
padding: 12px 24px;
margin-top: 15px;
border-radius: 8px;
transition: background-color 0.3s;
}
#startGameButton:hover {
background-color: #43a047;
}
</style>
</head>
<body>
<header>Jeu d'échecs en TypeScript</header>
<!-- Zone de sélection de couleur avant de commencer la partie -->
<div id="colorSelection">
<h3>Choisissez votre couleur</h3>
<label class="color-option">
<input type="radio" name="playerColor" value="white" checked>
<span>Blancs</span>
</label>
<label class="color-option">
<input type="radio" name="playerColor" value="black">
<span>Noirs</span>
</label>
<button id="startGameButton">Commencer la Partie</button>
</div>
<!-- Zone de message pour les messages de jeu -->
<div id="gameMessage"></div>
<!-- Bouton Rejouer, visible uniquement en fin de partie -->
<button id="replayButton">Rejouer</button>
<div class="container" style=" display:none;" id="gameContainer">
<div id="sidebar">
<h3>Informations de Jeu</h3>
<div id="currentTurn">Tour actuel: Blanc</div>
<div id="timer">Temps restant: 60s</div>
<h4>Historique des Mouvements</h4>
<div id="moveHistory">
<div>
<h4>Mouvements Blancs</h4>
<ul id="whiteMoves"></ul>
</div>
<div>
<h4>Mouvements Noirs</h4>
<ul id="blackMoves"></ul>
</div>
</div>
<button id="passTurnButton">Passer son tour</button>
</div>
<!-- Plateau de jeu -->
<canvas id="chessBoard" width="640" height="640"></canvas>
<!-- Sidebar pour les pièces capturées -->
<div id="capturedSidebar">
<h3>Pièces Capturées</h3>
<div>
<h4>Blancs</h4>
<div id="capturedWhite"></div>
</div>
<div>
<h4>Noirs</h4>
<div id="capturedBlack"></div>
</div>
</div>
</div>
<!-- Fenêtre de dialogue pour la promotion des pions -->
<div id="promotionDialog">
<p>Choisissez une pièce pour la promotion :</p>
<button onclick="window.promote('queen')">Dame</button>
<button onclick="window.promote('rook')">Tour</button>
<button onclick="window.promote('bishop')">Fou</button>
<button onclick="window.promote('knight')">Cavalier</button>
</div>
<!-- Import du script principal -->
<script type="module" src="src/index.ts"></script>
<script>
// JS pour gérer la sélection de couleur et le démarrage de la partie
document.getElementById('startGameButton').addEventListener('click', () => {
const selectedColor = document.querySelector('input[name="playerColor"]:checked').value;
startGame(selectedColor); // Fonction à ajouter dans index.ts pour démarrer la partie avec la couleur choisie
document.getElementById('colorSelection').style.display = 'none';
document.getElementById('gameContainer').style.display = 'flex';
});
</script>
</body>
</html>