-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
68 lines (63 loc) · 2.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script type="text/javascript" src="libs/phaser.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<script src="libs/jquery-3.2.1.min.js"></script>
<script src="libs/bootstrap.min.js"></script>
<p></p>
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading"><span class="glyphicon glyphicon-heart-empty" aria-hidden="true"></span> AI Behaviour Models </div>
<div class="panel-body text-center">
I created this website for my university individual project. The purpose of this application was to aid my research into AI behaviour models.
</div>
</div>
</div>
</div>
<p></p>
<div class="row">
<div class="col-md-9">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body well-lg">
<div id="GameWindow">
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-info">
<div class="panel-heading"><span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span> Instructions </div>
<div class="panel-body well-sm">
<div>
<ul>
<li>First choose an AI model, you have the option of either a finite state machine or a utility system.</li>
<li>Once the game is active, the worker has an end goal of collecting stone. You can provide the worker the tools to complete this goal.</li>
<li>Along the bottom of the in game screen is a taskbar, you can click here to create stone, rocks and a pickaxe as and when you wish.</li>
<li>On the bottom right hand side of the in game window is a speech bubble. Here the worker will relay its thoughts to you.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2">
</div>
<script type="text/javascript" src="js/Worker.js"></script>
<script type="text/javascript" src="js/UI.js"></script>
<script type="text/javascript" src="js/FSM.js"></script>
<script type="text/javascript" src="js/Utility.js"></script>
<script type="text/javascript" src="js/GameWorld.js"></script>
<script type="text/javascript" src="js/GameController.js"></script>
<script type="text/javascript">
window.onload = main();
</script>
</body>
</html>