-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
69 lines (68 loc) · 2.72 KB
/
Copy pathindex.php
File metadata and controls
69 lines (68 loc) · 2.72 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
<?php
/*
* Javascript City
*
* Copyright (C) 2009 Macha <macha.hack@gmail.com>
*
* This file is part of Javascript City (JSC).
*
* JSC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JSC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with JSC. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<!DOCTYPE html>
<html>
<head>
<title>Web City</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.json.js"></script>
<script type="text/javascript" src="webcity.js"></script>
<script type="text/javascript" src="webcity.processes.js"></script>
<script type="text/javascript" src="webcity.tools.js"></script>
<script type="text/javascript" src="webcity.ui.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="menu">
Welcome to WebCity, the web based city management game. <a href="#" id="save">Save</a> | <a href="#" id="pause">Pause</a>
</div>
<div id="body">
<?php require("grid.php"); ?>
</div>
<div id="status-bar">
<span id="cash">$10,000</span> |
<span id="co-ords">X:0 Y:0</span> |
<span id="time">1/1/1900</span> |
Population: <span id="pop">0</span> |
RCI:
R:<span id="RCI-R"></span> C:<span id="RCI-C"></span> I:<span id="RCI-I"></span>
</div>
<div id="toolbox" class="drag-target">
<h2>Tools</h2>
<table id="tools">
<tr><td id="res"><img src="images/res.png" alt="Zone Residential" width="30" height="30" title="Residential" /></td><td id="com"><img src="images/com.png" alt="Zone Commercial" width="30" height="30" title="Commercial" /></td></tr>
<tr><td id="ind"><img src="images/ind.png" alt="Zone Industrial" width="30" height="30" title="Industrial" /></td><td id="road"><img src="images/road.png" alt="Lay Road" width="30" height="30" title="Road" /></td></tr>
<tr><td id="coal"><img src="images/coal-power.png" alt="Coal Power Plant" width="30" height="30" title="Coal" /></td><td id="query"><img src="images/query.png" alt="Query" width="30" height="30" title="Query" /></td></tr>
</table>
</div>
<div id="cash-cursor">
</div>
<div id="load-div">
</div>
<div id="tool-follower">
</div>
<div id="overlay">
</div>
</body>
</html>