-
Notifications
You must be signed in to change notification settings - Fork 4
/
monorail-cat.html
125 lines (107 loc) · 5.16 KB
/
monorail-cat.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
<!DOCTYPE HTML>
<html>
<head>
<title>Monorail Cat : The GAME!</title>
<script type="text/javascript" src="vendor/domready.js"></script>
<script type="text/javascript" src="vendor/jsGameSoup-v178/js/jsgamesoup.js"></script>
<script type="text/javascript" src="vendor/jsGameSoup-v178/js/sprite.js"></script>
<script type="text/javascript" src="libs/common.js"></script>
<script type="text/javascript" src="libs/ui.js"></script>
<script type="text/javascript" src="libs/tilemap.js"></script>
<script type="text/javascript" src="libs/map.js"></script>
<script type="text/javascript" src="libs/player.js"></script>
<script type="text/javascript" src="libs/game.js"></script>
<script type="text/javascript" src="libs/ai.js"></script>
<script type="text/javascript" src="libs/entity.js"></script>
<script type="text/javascript" src="libs/map_item.js"></script>
<script type="text/javascript" src="libs/game_sound.js"></script>
<link rel="stylesheet" href="main.css" type="text/css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24548441-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<p><img src="arts/title.png" alt="Monorail cat"/></p>
</div>
<div id="gameBoard" class="clearer">
<div class="text_screen">
<h1><span>Welcome</span> to Monorail cat</h1>
<p class="info">
by <a href="#" title="Project leader, Coder">Didjor</a> -
<a href="http://twitter.com/#!/esion" title="Coder, OpenSource evangelist">@esion</a> -
<a href="http://fred.osterero.onblogevent.com" title="Designer lead">Fred_o</a> -
<a href="http://twitter.com/#!/Macha__" title="Music & Sounds">@Macha__</a> -
<a href="http://twitter.com/#!/speedyop" title="Designer">@speedyop</a> -
<a href="#" title="Actual human lolcat">Vlavv</a> -
<a href="#" title="Coder">zouip</a>
</p>
<div class="config">
<div class="player1">
<img src="arts/cat1-down-1.png" alt="player model" />
<input type="text" id="name_player1" name="name[player1]" value="Player 1" />
<table class="bindings">
<tr>
<td> </td>
<td class="up">↑</td>
<td> </td>
</tr>
<tr>
<td class="left">←</td>
<td class="down">↓</td>
<td class="right">→</td>
</tr>
<tr>
<td colspan="3" class="action">ENTER</td>
</tr>
</table>
</div>
<div id="player2bindings" class="player2">
<img src="arts/cat2-down-1.png" alt="player model" />
<input type="text" id="name_player2" name="name[player2]" value="Catputer" />
<p>Player 2 press button to start!</p>
<button id="btn_player_2cpu">Join the game</button>
</div>
</div>
<button id="startGameButton">Press start</button>
<div class="acknowledgments">
<p class="info">
This awesome game has been mostly made at the <a href="http://gamedevparty.posterous.com/">#Gamedevparty</a>.
You 1337 H4x0r, let DL the source code at <a href="https://github.com/esion/Monorail-Cat">https://github.com/esion/Monorail-Cat</a> (No pr0n inside).
</p>
</div>
</div>
</div>
<div id="controls">
<ul class="clearer">
<li title="Mute/unmute sounds"><img id="audio_button" src="arts/sound_on.png" onclick="GameSound.toggleMute(this);" /></li>
<li title="Choose a map"><img src="arts/map.png" onclick="UI.openMapSelection();" /></li>
<li><a href="mapEditor.html" title="Map editor"><img src="arts/map_edit.png" alt="Map editor" /></a></li>
</ul>
</div>
<!-- AddThis Button BEGIN -->
<div id="footer" class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
<a class="addthis_button_compact"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4e50cc7d59b4af58"></script>
<!-- AddThis Button END -->
<script type="text/javascript">
DomReady.ready(function(){
// bootscreen
Game = new _Game();
});
</script>
</body>
</html>