-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (80 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cleaner</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/agent.css">
<link rel="stylesheet" href="./js/vendor/bootstrap.min.css">
</head>
<body>
<div class="container container_cleaner">
<div class="row">
<div class="col-md-8 col-md-offset-2 play-arena">
<div class="svg-container">
<svg id="svg"></svg>
</div>
</div>
<div class="col-md-2">
<!-- TODO refacto change bootstrap styles on your own due to tag mess -->
<div class="menu-container">
<div class="menu">
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button class="btn btn-success" id="start">Start</button>
<select name="" id="map">
<option value="1">Map 1</option>
<option value="2">Map 2</option>
<option value="3">Map 3</option>
</select>
</div>
</div>
<br>
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group btn-group-justified" role="group">
<button class="btn btn-primary" id="gen">Generate Trash</button>
</div>
</div>
<br>
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group btn-group-justified" role="group">
<button class="btn btn-primary" id="trip">Go Trip</button>
<select name="" id="algorithms">
<option value="genetic">Genetic Algorithm</option>
<option value="greedy">Greedy Algorithm</option>
<option value="branch_bound">Branch and Bound Algorithm</option>
</select>
</div>
</div>
<br>
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group btn-group-justified" role="group">
<button class="btn btn-danger" id="stop">Stop</button>
</div>
</div>
<br>
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group btn-group-justified" role="group">
<button class="btn btn-primary" id="restart">Restart</button>
</div>
</div>
<br/>
<div class="count"></div>
<br/>
<div class="statistic">
<a href="./statisctic.html">Show Statistic</a>
</div>
<br/>
<div class="statistic">
<a href="./table.html">Show Graph Matrix</a>
</div>
<br/>
<a href="https://github.com/Kirill380/VacuumCleanerWorld/tree/master">Look Documentation on GitHub</a>
</div>
</div>
</div>
</div>
</div>
<script src="./js/build/main.js"></script>
</body>
</html>