-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 3.95 KB
/
index.html
File metadata and controls
88 lines (83 loc) · 3.95 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ChessEngine</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<script type='text/javascript'> if(!window.console) console = {log : function (){}}; </script>
</head>
<body>
<div>
<div class="header-container">
<h2 class="display-5">Chess Engine</h2>
</div>
<div class="container">
<div class="row">
<div class="left-stats col">
<div class="moves-storage">
<div class="move-list">
<div class="buttons-heading">
<h4>Game Controls: </h4>
</div>
<div class="button-container">
<button type='button' class="stats-buttons" id='SearchButton'>Move now</button>
<button type='button' class="stats-buttons" id='NewGameButton'>New Game</button>
<button type='button' class="stats-buttons" id='TakeButton'>Take back</button>
</div>
</div>
</div>
</div>
<div class="board">
</div>
<div class="right-stats col">
<div class="stats-heading text-center">
<h4>Game Statistics:</h4>
</div>
<div class="stats-thinking-time-choice">
<div>
<h5>Thinking time:</h5>
</div>
<select id='think-time-choice'>
<option value='1'>1s</option>
<option value='2'>2s</option>
<option value='4'>4s</option>
<option value='6'>6s</option>
<option value='8'>8s</option>
<option value='10'>10s</option>
</select>
</div>
<div>
<h5 id='BestOut'>BestMove:</h5>
<h5 id='DepthOut'>Depth:</h5>
<h5 id='ScoreOut'>Score:</h5>
<h5 id='NodesOut'>Nodes:</h5>
<h5 id='OrderingOut'>Ordering:</h5>
<h5 id='TimeOut'>Time:</h5>
</div>
<div>
<h5>Game status: </h5>
<h4 id="GameStatus"></h4>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/defs.js"></script>
<script src="js/io.js"></script>
<script src="js/board.js"></script>
<script src="js/movegen.js"></script>
<script src="js/makemove.js"></script>
<script src="js/evaluate.js"></script>
<script src="js/pvtable.js"></script>
<script src="js/search.js"></script>
<script src="js/perft.js"></script>
<script src="js/gui.js"></script>
<script src="js/main.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>
</html>