forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchess-game.gts
513 lines (463 loc) · 12.7 KB
/
chess-game.gts
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
import {
BaseDefConstructor,
BaseInstanceType,
Component as BoxelComponent,
CardDef,
FieldDef,
deserialize,
primitive,
} from 'https://cardstack.com/base/card-api';
import Component from '@glimmer/component';
import StringCard from 'https://cardstack.com/base/string';
import { contains, field } from 'https://cardstack.com/base/card-api';
import { fn } from '@ember/helper';
import { on } from '@ember/modifier';
import { cn } from '@cardstack/boxel-ui/helpers';
import { not } from '@cardstack/boxel-ui/helpers';
// @ts-ignore
import {
Chessboard,
INPUT_EVENT_TYPE,
COLOR,
PROMOTION_DIALOG_RESULT_TYPE,
// @ts-ignore
} from 'https://esm.run/cm-chessboard@8.7.3';
//@ts-ignore
import { action } from '@ember/object';
//@ts-ignore
import { Chess as _ChessJS } from 'https://cdn.jsdelivr.net/npm/chess.js/+esm';
import type { Chess as _ChessJSType } from 'chess.js';
type ChessJS = _ChessJSType;
const ChessJS: typeof _ChessJSType = _ChessJS;
//@ts-ignore
import {
MARKER_TYPE,
Markers,
//@ts-ignore
} from 'https://cdn.jsdelivr.net/npm/cm-chessboard@8.7.3/src/extensions/markers/Markers.js/+esm';
import Modifier from 'ember-modifier';
import { Resource } from 'ember-resources';
import BooleanField from 'https://cardstack.com/base/boolean';
import { tracked } from '@glimmer/tracking';
import { BoxelInput } from '@cardstack/boxel-ui/components';
type ChessboardModifierSignature = {
Args: {
Named: {
game: ChessJS;
updatePgn: (pgn: string) => void;
};
};
Element: HTMLElement;
};
class ChessboardModifier extends Modifier<ChessboardModifierSignature> {
chessboard: any;
modify(
element: HTMLElement,
_positional: [],
{ game, updatePgn }: ChessboardModifierSignature['Args']['Named'],
) {
function inputHandler(event: any) {
if (event.type === INPUT_EVENT_TYPE.movingOverSquare) {
return; // ignore this event
}
if (event.type !== INPUT_EVENT_TYPE.moveInputFinished) {
event.chessboard.removeMarkers(MARKER_TYPE.bevel);
event.chessboard.removeMarkers(MARKER_TYPE.dot);
}
if (event.type === INPUT_EVENT_TYPE.moveInputStarted) {
console.log(`moveInputStarted: ${event.squareFrom}`);
const moves = game.moves({
square: event.squareFrom,
verbose: true,
});
event.chessboard.addLegalMovesMarkers(moves);
return moves.length > 0;
} else if (event.type === INPUT_EVENT_TYPE.validateMoveInput) {
console.log(`validateMoveInput: ${event.squareFrom}-${event.squareTo}`);
const move = {
from: event.squareFrom,
to: event.squareTo,
promotion: event.promotion,
};
const result = game.move(move);
if (result) {
event.chessboard.state.moveInputProcess.then(() => {
// wait for the move input process has finished
event.chessboard.setPosition(game.fen(), true).then(() => {
updatePgn(game.pgn());
// update position, maybe castled and wait for animation has finished
// makeEngineMove(event.chessboard)
});
});
} else {
// promotion?
let possibleMoves = game.moves({
square: event.squareFrom,
verbose: true,
});
for (const possibleMove of possibleMoves) {
if (possibleMove.promotion && possibleMove.to === event.squareTo) {
event.chessboard.showPromotionDialog(
event.squareTo,
COLOR.white,
(result: any) => {
console.log('promotion result', result);
if (
result.type === PROMOTION_DIALOG_RESULT_TYPE.pieceSelected
) {
game.move({
from: event.squareFrom,
to: event.squareTo,
promotion: result.piece.charAt(1),
});
event.chessboard.setPosition(game.fen(), true);
// makeEngineMove(event.chessboard)
} else {
// promotion canceled
event.chessboard.enableMoveInput(inputHandler, COLOR.white);
event.chessboard.setPosition(game.fen(), true);
}
},
);
return true;
}
}
}
return result;
}
return undefined;
}
if (this.chessboard === undefined) {
this.chessboard = new Chessboard(element, {
position: game.fen(),
assetsUrl: 'https://cdn.jsdelivr.net/npm/cm-chessboard@latest/assets/',
style: {
cssClass: 'green',
pieces: {
file: 'pieces/staunty.svg',
},
},
extensions: [
{ class: Markers, props: { autoMarkers: MARKER_TYPE.square } },
],
});
this.chessboard.enableMoveInput(inputHandler);
} else {
//I hate that I have to do this
//It comes from inputHandler function perhaps needs to use an arrow
this.chessboard.setPosition(game.fen());
this.chessboard.disableMoveInput();
this.chessboard.enableMoveInput(inputHandler);
}
}
}
interface ChessJSResourceArgs {
named: {
pgn?: string;
};
}
class ChessJSResource extends Resource<ChessJSResourceArgs> {
game!: ChessJS;
snapshot!: ChessJS;
private future: string[] = [];
@tracked snapshotPgn: string | undefined;
modify(_positional: never[], named: ChessJSResourceArgs['named']) {
this.game = new ChessJS();
this.snapshot = new ChessJS();
if (named.pgn) {
this.game.loadPgn(named.pgn);
}
if (this.snapshotPgn) {
this.snapshot.loadPgn(this.snapshotPgn);
} else if (named.pgn) {
this.snapshot.loadPgn(named.pgn);
}
}
@action
prev() {
let tmp = new ChessJS();
let moves = this.game.history();
let previous = moves.length - this.future.length - 1;
for (var i = 0; i < previous; i++) {
tmp.move(moves[i]);
}
let previousPgn = tmp.pgn();
tmp.move(moves[previous]);
let futurePgn = tmp.pgn();
this.future.push(futurePgn);
this.snapshotPgn = previousPgn;
}
@action
next() {
this.snapshotPgn = this.future.pop();
}
@action
updatePgn(pgn: string) {
this.future = [];
this.snapshotPgn = pgn;
}
@action reset() {
this.snapshotPgn = '';
this.future = [];
this.game = new ChessJS();
this.snapshot = new ChessJS();
}
}
function getChessJS(parent: object, pgn: () => string | undefined) {
return ChessJSResource.from(parent, () => ({
named: {
pgn: pgn(),
},
}));
}
interface ChessGameComponentSignature {
Args: {
pgn?: string;
updatePgn?: (pgn: string) => void;
analysis?: boolean;
};
}
type GameState = 'checkmate' | 'check' | 'draw' | 'play';
class ChessGameComponent extends Component<ChessGameComponentSignature> {
<template>
<div class='content'>
<div class='position-info'>
<div><strong>Pgn:</strong> {{this.pgnDisplay}}</div>
</div>
<div class='board-container'>
<div
id='board'
class={{cn disabled=this.notAtMostCurrentMove}}
{{ChessboardModifier game=this.snapshot updatePgn=this.updatePgn}}
>
</div>
</div>
<div class='actions'>
<button {{on 'click' (fn this.prevMove)}}>Prev Move</button>
<button {{on 'click' (fn this.nextMove)}}>Next Move</button>
<button {{on 'click' (fn this.backToPosition)}}>Back To Game Position</button>
{{#if (not this.args.analysis)}}
<button {{on 'click' (fn this.reset)}}>Reset</button>
{{/if}}
</div>
<div class='info'>
<div class='game-info'>
<h2> Info </h2>
<div><strong>Turn:</strong> {{this.turn}}</div>
<div><strong>State:</strong> {{this.state}}</div>
<div><strong>Move:</strong> {{this.moveNumber}}</div>
</div>
<div class='move-info'>
<h2>Game Moves</h2>
<div class='game-moves'>
{{#each this.moves as |move|}}
<div>
{{move}}
</div>
{{/each}}
</div>
</div>
</div>
</div>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 15px;
max-width: 700px;
}
.actions {
display: flex;
flex-direction: row;
gap: 10px;
}
#board {
width: 600px;
}
#board.disabled {
pointer-events: none;
}
.selected {
color: red;
}
.info {
display: flex;
width: 100%;
}
.game-info {
flex: 1;
}
.move-info {
flex: 3;
}
.game-moves {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 2px;
}
</style>
<link
href='https://cdn.jsdelivr.net/npm/cm-chessboard@8.7.3/assets/chessboard.css'
rel='stylesheet'
/>
<link
rel='stylesheet'
href='https://cdn.jsdelivr.net/npm/cm-chessboard@8.7.3/assets/extensions/markers/markers.css'
/>
{{! This is absolutely needed so piece doesn't diapplear when dragging }}
<style unscoped>
.cm-chessboard-draggable-piece {
z-index: 100;
}
</style>
</template>
private chessJSResource = getChessJS(this, () => this.args.pgn);
@tracked selectedMoveIndex: number | undefined;
@action
updatePgn(pgn: string) {
if (this.args.analysis) {
this.chessJSResource.updatePgn(pgn);
} else {
this.args.updatePgn!(pgn);
}
}
get notAtMostCurrentMove() {
return !this.args.analysis && !(this.pgnDisplay === this.game.pgn());
}
//Game state
get game() {
return this.chessJSResource.game;
}
get pgnDisplay() {
return this.snapshot.pgn();
}
get isGameOver() {
return this.game.isGameOver();
}
get moves() {
return this.game.history({ verbose: true }).map((move) => move.san);
}
@action
reset() {
this.args.updatePgn!('');
this.chessJSResource.reset();
}
//snapshot state
get snapshot() {
return this.chessJSResource.snapshot;
}
get snapshotHistory() {
return this.snapshot.history({ verbose: true });
}
get snapshotMoves() {
return this.snapshotHistory.map((move) => move.san);
}
get fen() {
return this.snapshot.fen();
}
get turn() {
return this.snapshot.turn() === 'b' ? 'black' : 'white';
}
get moveNumber() {
return this.snapshot.moveNumber();
}
get state(): GameState {
if (this.snapshot.isCheckmate()) {
return 'checkmate';
}
if (this.snapshot.inCheck()) {
return 'check';
}
if (this.snapshot.isDraw()) {
return 'draw';
}
return 'play';
}
@action
prevMove() {
this.chessJSResource.prev();
}
@action
nextMove() {
this.chessJSResource.next();
}
@action
backToPosition() {
this.selectedMoveIndex = undefined;
this.chessJSResource.updatePgn(this.game.pgn());
}
}
class Isolated extends BoxelComponent<typeof Chess> {
@action
updatePgn(pgn: string): void {
this.args.model.pgn = pgn;
}
// have to toggle between analysis and play mode
get mode() {
return this.args.model.analysis ? 'Analysis' : 'Game';
}
<template>
<div class='main'>
<div class={{cn analysis=this.args.model.analysis}}>
<h1>
{{this.mode}}
</h1>
</div>
<ChessGameComponent
@pgn={{this.args.model.pgn}}
@updatePgn={{this.updatePgn}}
@analysis={{this.args.model.analysis}}
/>
</div>
<style>
.main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.analysis {
color: blue;
}
</style>
</template>
}
class PgnField extends FieldDef {
static [primitive]: string;
static displayName = 'PGN';
static async [deserialize]<T extends BaseDefConstructor>(
this: T,
pgn: any,
): Promise<BaseInstanceType<T>> {
if (pgn == null) {
return pgn;
}
// Validating pgn string
let chess = new ChessJS();
chess.loadPgn(pgn);
return pgn as BaseInstanceType<T>;
}
static edit = class Edit extends BoxelComponent<typeof this> {
<template>
<BoxelInput
@value={{@model}}
@onInput={{@set}}
@disabled={{not @canEdit}}
/>
</template>
};
}
export class Chess extends CardDef {
static displayName = 'Chess';
@field pgn = contains(PgnField);
@field analysis = contains(BooleanField);
@field title = contains(StringCard, {
computeVia: function (this: Chess) {
return 'Chess Game';
},
});
static isolated = Isolated;
}