-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.js
520 lines (443 loc) · 13.9 KB
/
Script.js
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
/*=========Глобальные переменные=========================*/
var square_class = document.getElementsByClassName("square");
var white_checker_class = document.getElementsByClassName("white_checker");
var black_checker_class = document.getElementsByClassName("black_checker");
var table = document.getElementById("table");
var score = document.getElementById("score");
var black_background = document.getElementById("black_background");
var moveSound = document.getElementById("moveSound");
var winSound = document.getElementById("winSound");
var windowHeight = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight; ;
var windowWidth = window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;
var moveLength = 80 ;
var moveDeviation = 10;
var Dimension = 1;
var selectedPiece,selectedPieceindex;
var upRight,upLeft,downLeft,downRight; // все возможные варианты для дамки
var contor = 0 , gameOver = 0;
var bigScreen = 1;
var block = [];
var w_checker = [];
var b_checker = [];
var the_checker ;
var oneMove;
var anotherMove;
var mustAttack = false;
var multiplier = 1
var tableLimit,reverse_tableLimit , moveUpLeft,moveUpRight, moveDownLeft,moveDownRight , tableLimitLeft, tableLimitRight;
/*================================*/
getDimension();
if(windowWidth > 640){
moveLength = 80;
moveDeviation = 10;
}
else{
moveLength = 50;
moveDeviation = 6;
}
/*================объявление класса=========*/
var square_p = function(square,index){
this.id = square;
this.ocupied = false;
this.pieceId = undefined;
this.id.onclick = function() {
makeMove(index);
}
}
var checker = function(piece,color,square) {
this.id = piece;
this.color = color;
this.king = false;
this.ocupied_square = square;
this.alive = true;
this.attack = false;
if(square%8){
this.coordX= square%8;
this.coordY = Math.floor(square/8) + 1 ;
}
else{
this.coordX = 8;
this.coordY = square/8 ;
}
this.id.onclick = function () {
showMoves(piece);
}
}
checker.prototype.setCoord = function(X,Y){
var x = (this.coordX - 1 ) * moveLength + moveDeviation;
var y = (this.coordY - 1 ) * moveLength + moveDeviation;
this.id.style.top = y + 'px';
this.id.style.left = x + 'px';
}
checker.prototype.changeCoord = function(X,Y){
this.coordY +=Y;
this.coordX += X;
}
checker.prototype.checkIfKing = function () {
if(this.coordY == 8 && !this.king &&this.color == "white"){
this.king = true;
this.id.style.border = "4px solid #FFFF00";
}
if(this.coordY == 1 && !this.king &&this.color == "black"){
this.king = true;
this.id.style.border = "4px solid #FFFF00";
}
}
/*===============Инициализация игровых полей=================================*/
for (var i = 1; i <=64; i++)
block[i] =new square_p(square_class[i],i);
/*==================================================*/
/*================Инициализация дамки=================================*/
//Белая дамка
for (var i = 1; i <= 4; i++){
w_checker[i] = new checker(white_checker_class[i], "white", 2*i -1 );
w_checker[i].setCoord(0,0);
block[2*i - 1].ocupied = true;
block[2*i - 1].pieceId =w_checker[i];
}
for (var i = 5; i <= 8; i++){
w_checker[i] = new checker(white_checker_class[i], "white", 2*i );
w_checker[i].setCoord(0,0);
block[2*i].ocupied = true;
block[2*i].pieceId = w_checker[i];
}
for (var i = 9; i <= 12; i++){
w_checker[i] = new checker(white_checker_class[i], "white", 2*i - 1 );
w_checker[i].setCoord(0,0);
block[2*i - 1].ocupied = true;
block[2*i - 1].pieceId = w_checker[i];
}
//Чёрная дамка
for (var i = 1; i <= 4; i++){
b_checker[i] = new checker(black_checker_class[i], "black", 56 + 2*i );
b_checker[i].setCoord(0,0);
block[56 + 2*i ].ocupied = true;
block[56+ 2*i ].pieceId =b_checker[i];
}
for (var i = 5; i <= 8; i++){
b_checker[i] = new checker(black_checker_class[i], "black", 40 + 2*i - 1 );
b_checker[i].setCoord(0,0);
block[ 40 + 2*i - 1].ocupied = true;
block[ 40 + 2*i - 1].pieceId = b_checker[i];
}
for (var i = 9; i <= 12; i++){
b_checker[i] = new checker(black_checker_class[i], "black", 24 + 2*i );
b_checker[i].setCoord(0,0);
block[24 + 2*i ].ocupied = true;
block[24 + 2*i ].pieceId = b_checker[i];
}
/*========================================================*/
/*================ВЫБОР ЧАСТИ==============*/
the_checker = w_checker;
function showMoves (piece) {
var match = false;
mustAttack = false;
if(selectedPiece){
erase_roads(selectedPiece);
}
selectedPiece = piece;
var i,j; // retine indicele damei
for ( j = 1; j <= 12; j++){
if(the_checker[j].id == piece){
i = j;
selectedPieceindex = j;
match = true;
}
}
if(oneMove && !attackMoves(oneMove)){
changeTurns(oneMove);
oneMove = undefined;
return false;
}
if(oneMove && oneMove != the_checker[i] ){
return false;
}
if(!match) {
return 0 ; // если совпадений не найдено; происходит, когда красный движется, и вы нажимаете на черном
}
/*===теперь в соответствии с их цветом я устанавливаю края и движения дамки===*/
if(the_checker[i].color =="white"){
tableLimit = 8;
tableLimitRight = 1;
tableLimitLeft = 8;
moveUpRight = 7;
moveUpLeft = 9;
moveDownRight = - 9;
moveDownLeft = -7;
}
else{
tableLimit = 1;
tableLimitRight = 8;
tableLimitLeft = 1;
moveUpRight = -7;
moveUpLeft = -9;
moveDownRight = 9;
moveDownLeft = 7;
}
/*===========ПРОВЕРКА НА ВОЗМОЖНОСТЬ АТАКИ====*/
attackMoves(the_checker[i]); // verifica daca am vreo miscare de atac
/*========ПРОВЕРКА МОЖЕТ ЛИ БИТЬ ИГРОК======*/
if(!mustAttack){
downLeft = checkMove( the_checker[i] , tableLimit , tableLimitRight , moveUpRight , downLeft);
downRight = checkMove( the_checker[i] , tableLimit , tableLimitLeft , moveUpLeft , downRight);
if(the_checker[i].king){
upLeft = checkMove( the_checker[i] , reverse_tableLimit , tableLimitRight , moveDownRight , upLeft);
upRight = checkMove( the_checker[i], reverse_tableLimit , tableLimitLeft , moveDownLeft, upRight)
}
}
if(downLeft || downRight || upLeft || upRight){
return true;
}
return false;
}
function erase_roads(piece){
if(downRight) block[downRight].id.style.background = "#BA7A3A";
if(downLeft) block[downLeft].id.style.background = "#BA7A3A";
if(upRight) block[upRight].id.style.background = "#BA7A3A";
if(upLeft) block[upLeft].id.style.background = "#BA7A3A";
}
/*=============ДВИЖЕНИЕ======*/
function makeMove (index) {
var isMove = false;
if(!selectedPiece) // если игра только началась
return false;
if(index != upLeft && index != upRight && index != downLeft && index != downRight){
erase_roads(0);
selectedPiece = undefined;
return false;
}
/* =========ПРОВВЕРКА НАПРАВЛЕНИЯ ХОДА ИГРОКА (КУДА ОН МОЖЕТ ПОХОДИТЬ)======*/
if(the_checker[1].color=="white"){
cpy_downRight = upRight;
cpy_downLeft = upLeft;
cpy_upLeft = downLeft;
cpy_upRight = downRight;
}
else{
cpy_downRight = upLeft;
cpy_downLeft = upRight;
cpy_upLeft = downRight;
cpy_upRight = downLeft;
}
if(mustAttack) // чтобы знать, пропустил ли я ряд или 2
multiplier = 2;
else
multiplier = 1;
if(index == cpy_upRight){
isMove = true;
if(the_checker[1].color=="white"){
// переместить
executeMove( multiplier * 1, multiplier * 1, multiplier * 9 );
//удалить шашку если через него был выполнен "прыжок"
if(mustAttack) eliminateCheck(index - 9);
}
else{
executeMove( multiplier * 1, multiplier * -1, multiplier * -7);
if(mustAttack) eliminateCheck( index + 7 );
}
}
if(index == cpy_upLeft){
isMove = true;
if(the_checker[1].color=="white"){
executeMove( multiplier * -1, multiplier * 1, multiplier * 7);
if(mustAttack) eliminateCheck(index - 7 );
}
else{
executeMove( multiplier * -1, multiplier * -1, multiplier * -9);
if (mustAttack) eliminateCheck( index + 9 );
}
}
if(the_checker[selectedPieceindex].king){
if(index == cpy_downRight){
isMove = true;
if(the_checker[1].color=="white"){
executeMove( multiplier * 1, multiplier * -1, multiplier * -7);
if(mustAttack) eliminateCheck ( index + 7) ;
}
else{
executeMove( multiplier * 1, multiplier * 1, multiplier * 9);
if(mustAttack) eliminateCheck ( index - 9) ;
}
}
if(index == cpy_downLeft){
isMove = true;
if(the_checker[1].color=="white"){
executeMove( multiplier * -1, multiplier * -1, multiplier * -9);
if(mustAttack) eliminateCheck ( index + 9) ;
}
else{
executeMove( multiplier * -1, multiplier * 1, multiplier * 7);
if(mustAttack) eliminateCheck ( index - 7) ;
}
}
}
erase_roads(0);
the_checker[selectedPieceindex].checkIfKing();
if (isMove) {
playSound(moveSound);
anotherMove = undefined;
if(mustAttack) {
anotherMove = attackMoves(the_checker[selectedPieceindex]);
}
if (anotherMove){
oneMove = the_checker[selectedPieceindex];
showMoves(oneMove);
}
else{
oneMove = undefined;
changeTurns(the_checker[1]);
gameOver = checkIfLost();
if(gameOver) { setTimeout( declareWinner(),3000 ); return false};
gameOver = checkForMoves();
if(gameOver) { setTimeout( declareWinner() ,3000) ; return false};
}
}
}
/*===========ИЗМЕНЕНИЕ КООРДИНАТ======*/
function executeMove (X,Y,nSquare){
// сместить координату на перемещаемую часть
the_checker[selectedPieceindex].changeCoord(X,Y);
the_checker[selectedPieceindex].setCoord(0,0);
block[the_checker[selectedPieceindex].ocupied_square].ocupied = false;
block[the_checker[selectedPieceindex].ocupied_square + nSquare].ocupied = true;
block[the_checker[selectedPieceindex].ocupied_square + nSquare].pieceId = block[the_checker[selectedPieceindex].ocupied_square ].pieceId;
block[the_checker[selectedPieceindex].ocupied_square ].pieceId = undefined;
the_checker[selectedPieceindex].ocupied_square += nSquare;
}
function checkMove(Apiece,tLimit,tLimit_Side,moveDirection,theDirection){
if(Apiece.coordY != tLimit){
if(Apiece.coordX != tLimit_Side && !block[ Apiece.ocupied_square + moveDirection ].ocupied){
block[ Apiece.ocupied_square + moveDirection ].id.style.background = "#704923";
theDirection = Apiece.ocupied_square + moveDirection;
}
else
theDirection = undefined;
}
else
theDirection = undefined;
return theDirection;
}
function checkAttack( check , X, Y , negX , negY, squareMove, direction){
if(check.coordX * negX >= X * negX && check.coordY *negY <= Y * negY && block[check.ocupied_square + squareMove ].ocupied && block[check.ocupied_square + squareMove].pieceId.color != check.color && !block[check.ocupied_square + squareMove * 2 ].ocupied){
mustAttack = true;
direction = check.ocupied_square + squareMove*2 ;
block[direction].id.style.background = "#704923";
return direction ;
}
else
direction = undefined;
return direction;
}
function eliminateCheck(indexx){
if(indexx < 1 || indexx > 64)
return 0;
var x =block[ indexx ].pieceId ;
x.alive =false;
block[ indexx ].ocupied = false;
x.id.style.display = "none";
}
function attackMoves(ckc){
upRight = undefined;
upLeft = undefined;
downRight = undefined;
downLeft = undefined;
if(ckc.king ){
if(ckc.color == "white"){
upRight = checkAttack( ckc , 6, 3 , -1 , -1 , -7, upRight );
upLeft = checkAttack( ckc, 3 , 3 , 1 , -1 , -9 , upLeft );
}
else{
downLeft = checkAttack( ckc , 3, 6, 1 , 1 , 7 , downLeft );
downRight = checkAttack( ckc , 6 , 6 , -1, 1 ,9 , downRight );
}
}
if(ckc.color == "white"){
downLeft = checkAttack( ckc , 3, 6, 1 , 1 , 7 , downLeft );
downRight = checkAttack( ckc , 6 , 6 , -1, 1 ,9 , downRight );
}
else{
upRight = checkAttack( ckc , 6, 3 , -1 , -1 , -7, upRight );
upLeft = checkAttack( ckc, 3 , 3 , 1 , -1 , -9 , upLeft );
}
if(ckc.color== "black" && (upRight || upLeft || downLeft || downRight ) ) {
var p = upLeft;
upLeft = downLeft;
downLeft = p;
p = upRight;
upRight = downRight;
downRight = p;
p = downLeft ;
downLeft = downRight;
downRight = p;
p = upRight ;
upRight = upLeft;
upLeft = p;
}
if(upLeft != undefined || upRight != undefined || downRight != undefined || downLeft != undefined){
return true;
}
return false;
}
function changeTurns(ckc){
if(ckc.color=="white")
the_checker = b_checker;
else
the_checker = w_checker;
}
function checkIfLost(){
var i;
for(i = 1 ; i <= 12; i++)
if(the_checker[i].alive)
return false;
return true;
}
function checkForMoves(){
var i ;
for(i = 1 ; i <= 12; i++)
if(the_checker[i].alive && showMoves(the_checker[i].id)){
erase_roads(0);
return false;
}
return true;
}
function declareWinner(){
playSound(winSound);
black_background.style.display = "inline";
score.style.display = "block";
if(the_checker[1].color == "white")
score.innerHTML = "Black wins";
else
score.innerHTML = "Red wins";
}
function playSound(sound){
if(sound) sound.play();
}
function getDimension (){
contor ++;
windowHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; ;
windowWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
}
document.getElementsByTagName("BODY")[0].onresize = function(){
getDimension();
var cpy_bigScreen = bigScreen ;
if(windowWidth < 650){
moveLength = 50;
moveDeviation = 6;
if(bigScreen == 1) bigScreen = -1;
}
if(windowWidth > 650){
moveLength = 80;
moveDeviation = 10;
if(bigScreen == -1) bigScreen = 1;
}
if(bigScreen !=cpy_bigScreen){
for(var i = 1; i <= 12; i++){
b_checker[i].setCoord(0,0);
w_checker[i].setCoord(0,0);
}
}
}