-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (71 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/lib/pixi.min.js"></script>
</head>
<body>
<div class="container">
<!--
todo:make it work with pixi
<div class="row">
<h4>generate new world</h4><p>use at your own risk</p>
<br>
<label for="xmax">X max</label>
<input type="number" name="x" id="xmax"/>
<label for="ymax">Y max</label>
<input type="number" name="y" id="ymax"/>
<label for="seed">Seed pop</label>
<input type="number" name="seed" id="seed"/>
<button class="btn" id="genBtn">Generate</button>
</div>-->
<div class="row">
<!--<p>Speed (tickrate /ms) : </p>-->
<!--<p id="speedometer"></p>-->
<button class="btn" id="speedMinus">Speed - </button>
<button class="btn" id="speedPlus">Speed + </button>
<button class="btn" id="speedPause"> || Pause </button>
<button id="killMinion" class="btn">Kill minion - </button>
<button id="spawnMinion" class="btn">Spawn minion + </button>
<button class="btn" id="checkData">checkData</button>
</div>
<div class="row">
<div class="col-md-12">
<div id="IY"></div>
<div id="pixiMap"></div>
<!--<table id="map" cellspacing="0" cellpadding="0"></table>-->
</div>
<!--<div class="col-md-6">-->
<!--<table class="table" cellspacing="0" cellpadding="0">-->
<!--<thead>-->
<!--<tr>-->
<!--<td>id</td>-->
<!--<td>status</td>-->
<!--<td>HP</td>-->
<!--<td>hunger</td>-->
<!--<td>food in inventory</td>-->
<!--<td>fatigue</td>-->
<!--</tr>-->
<!--</thead>-->
<!--<tbody id="minionInfo"></tbody>-->
<!--</table>-->
<!---->
<!--</div>-->
</div>
</div>
<div id="tileInfo"></div>
</body>
<script type="text/javascript" src="js/Build.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/MapGen.js"></script>
<script type="text/javascript" src="js/Minion.js"></script>
<script type="text/javascript" src="js/DisplayManager.js"></script>
<script type="text/javascript" src="js/TimeManager.js"></script>
</html>