forked from grishrl/grishrl.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (133 loc) · 4.56 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Age of Empires Unit Calculator</title>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="app.js"></script>
<script src="calculations.js"></script>
<script src="constants.js"></script>
<script src="rowTemplate.js"></script>
<script src="totalFactory.js"></script>
<body>
<div class="container" ng-app='uctc'>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<h1 class="text-center">Age of Empires 2</h1>
</div>
</div> <div class="row">
<div class="col-md-12">
<h2 class="text-center">Unit Production Calculator</h2>
</div>
</div>
</div>
<div class="col-md-2">
</div>
</div>
<div ng-controller="homeCtrl">
<div class="row">
<div class="col-md-12">
<button style="margin-top:10px" class="pull-right" ng-click="reset()">Reset</button>
</div>
</div>
<table class="table">
<thead>
<td>
Unit
</td>
<td>
Number of facilities
</td>
<td>
Villager Production?
</td>
<td>
Wood
</td>
<td>
Food
</td>
<td>
Gold
</td>
</thead>
<tbody>
<tr ng-repeat="row in rows" ng-controller="rowTemplateController">
<td>
<!--Unit-->
<select ng-change="calculate($index)" ng-model="model.unit">
<option ng-repeat="unit in unitList" value="{{unit}}">{{unit}}</option>
</select>
</td>
<!--Number of Facilities-->
<td>
<select ng-change="calculate($index)" ng-model="model.number">
<option ng-repeat="num in numbers" value="{{num}}">{{num}}</option>
</select>
</td>
<!--Villager Production-->
<td>
<select ng-change="calculate($index)" ng-model="model.vil">
<option value="true">Yes</option>
<option value="false">No</option>
</select>
</td>
<!-- number required-->
<td>
<!--wood-->
{{returnedCalcs.W}}
</td>
<td>
<!--food-->
{{returnedCalcs.F}}
</td>
<td>
<!--gold-->
{{returnedCalcs.G}}
</td>
<td>
<button ng-click="addRow()">Add Row</button>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
Totals:
</td>
<td>
{{totals.w}}
</td>
<td>
{{totals.f}}
</td>
<td>
{{totals.g}}
</td>
<td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>