-
Notifications
You must be signed in to change notification settings - Fork 53
/
game-tspin.html
314 lines (265 loc) · 16.9 KB
/
game-tspin.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<html>
<head>
<script type="text/javascript" src="akihabara/gbox.js"></script>
<script type="text/javascript" src="akihabara/iphopad.js"></script>
<script type="text/javascript" src="akihabara/trigo.js"></script>
<script type="text/javascript" src="akihabara/toys.js"></script>
<script type="text/javascript" src="akihabara/help.js"></script>
<script type="text/javascript" src="akihabara/tool.js"></script>
<script type="text/javascript" src="akihabara/gamecycle.js"></script>
<style>BODY { -webkit-user-select:none; margin:0px}</style>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
</head>
<body>
</body>
<script>
// Game-specific
var maingame;
var mainmenu;
function go() {
gbox.setGroups(["background","field","sparks","gamecycle"]);
gbox.setAudioChannels({bgmusic:{volume:0.8},sfx:{volume:1.0}});
maingame=gamecycle.createMaingame("gamecycle","gamecycle");
maingame.selectedoptions=[]; // Cache the previous selected options
mainmenu={labels:[],id:[],submenu:[]};
for (var i in block.gamemodes) {
mainmenu.labels.push(saveme(block.gamemodes[i].year+" "+block.gamemodes[i].label+(block.gamemodes[i].notes?" ("+block.gamemodes[i].notes.length+")":"")));
mainmenu.id.push(i);
}
// The full game cycle is handled by the engine
maingame.gameIntroAnimation=function(reset) { return true; }
maingame.levelIntroAnimation=function(reset) { return true; }
maingame.newlifeIntroAnimation=function(reset) { return true; }
maingame.gameoverIntroAnimation=function(reset) { return true; }
maingame.endlevelIntroAnimation=function(reset) { return true; }
maingame.gameEndingIntroAnimation=function(reset) { return true; }
// Game is ever over, if the player dies - is died for game completed or fail.
maingame.gameIsOver=function() { return true; }
// PRESS START
maingame.pressStartIntroAnimation=function(reset) {
if (reset) {
toys.resetToy(this,"default-blinker");
} else {
toys.text.blink(this,"default-blinker",gbox.getBufferContext(),{font:"small-gray",text:"PRESS A TO START",valign:gbox.ALIGN_MIDDLE,halign:gbox.ALIGN_CENTER,dx:0,dy:Math.floor(gbox.getScreenH()/3),dw:gbox.getScreenW(),dh:Math.floor(gbox.getScreenH()/3)*2,blinkspeed:10});
return gbox.keyIsHit("a");
}
};
// game title animation
maingame.gameTitleIntroAnimation=function(reset) {
if (!reset) {
gbox.blitAll(gbox.getBufferContext(),gbox.getImage("wp"),{dx:0,dy:0});
toys.logos.zoomout(this,"zoomouter",{image:"logo",x:gbox.getScreenHW()-gbox.getImage("logo").hwidth,y:20,speed:0.08,zoom:3,audioreach:"line1"});
} else {
toys.resetToy(this,"zoomouter");
}
},
maingame.gameMenu=function(reset) {
if (reset) {
toys.resetToy(this,"mode");
this.gamemode=null;
} else {
gbox.blitFade(gbox.getBufferContext(),{alpha:0.5});
if (this.gamemode==null) {
if (toys.ui.menu(this,"mode",{audiooption:"default-menu-option",audioconfirm:"linedone1",font:"small-gray",keys:{up:"up",down:"down",ok:"a",cancel:"b"},selector:">",selected:maingame.selectedoptions[0],items:mainmenu.labels,x:10,y:10})) {
if (toys.getToyValue(this,"difficulty","ok") == -1) return -1;
else {
if (maingame.selectedoptions[0]!=toys.getToyValue(this,"mode","selected"))
maingame.selectedoptions[1]=null;
maingame.selectedoptions[0]=toys.getToyValue(this,"mode","selected");
this.gamemode=mainmenu.id[maingame.selectedoptions[0]];
mainmenu.submenu=[];
for (var i=0;i<block.gamemodes[this.gamemode].modes.length;i++)
mainmenu.submenu.push(saveme(block.gamemodes[this.gamemode].modes[i].label));
toys.resetToy(this,"submode");
}
}
} else {
var y=0;
gbox.blitText(gbox.getBufferContext(),{font:"small-red", dx:10, dy:10, text:saveme(block.gamemodes[this.gamemode].label)});
if (block.gamemodes[this.gamemode].notes)
for (var l=0;l<block.gamemodes[this.gamemode].notes.length;l++) {
gbox.blitText(gbox.getBufferContext(),{font:"small-gray", dx:20, dy:25+y, text:saveme(block.gamemodes[this.gamemode].notes[l])});
y+=gbox.getFont("small-gray").tileh;
}
if (toys.ui.menu(this,"submode",{audiooption:"default-menu-option",audioconfirm:"linedone1",font:"small-blue",keys:{up:"up",down:"down",ok:"a",cancel:"b"},selected:maingame.selectedoptions[1],selector:">",items:mainmenu.submenu,x:10,y:y+40})) {
maingame.selectedoptions[1]=toys.getToyValue(this,"submode","selected");
if (toys.getToyValue(this,"submode","ok") == -1) {
this.gamemode=null;
toys.resetToy(this,"mode");
} else {
this.submode=maingame.selectedoptions[1];
return true;
}
}
}
return false;
}
},
maingame.initializeGame=function() {
gbox.addObject({
group:"field",
gameended:false,
myblock:null,
initialize:function() {
this.myblock=block.createNew(["default",block.gamemodes[maingame.gamemode].modes[maingame.submode].id]);
block.setgraphics(this.myblock,{x:120,y:45,surfaceid:"tsurface"});
block.begin(this.myblock);
},
first:function(){
gbox.blitFade(gbox.getBufferContext(),{alpha:1});
block.kgboxtovkbd(this.myblock);
if (!this.gameended&&block.game(this.myblock)) { // This method returns true if the game is over
maingame.playerDied({wait:10});
this.gameended=true;
}
},
blit:function() {
block.fieldtoscreen(this.myblock);
}
});
}
gbox.go();
}
// BOOTSTRAP
gbox.onLoad(function () {
/*
tool.makecels({
rows:[
[
{img:"_bin/tgm-blocks.png"},
{img:"_bin/tgm-blocks-small.png"}
]
]
});
return;*/
help.akihabaraInit({title:"T-Spin",splash:{footnotes:["Music 'T-Spin Tarantella' by Robert Jaret","Contact him: robjaret.com"]}});
var audioserver="resources/audio/"
gbox.addAudio("default-menu-option",[audioserver+"select.mp3",audioserver+"select.ogg"],{channel:"sfx"});
gbox.addAudio("linedone1",[audioserver+"start.mp3",audioserver+"start.ogg"],{channel:"sfx"});
gbox.addAudio("rotate1",[audioserver+"select.mp3",audioserver+"select.ogg"],{channel:"sfx"});
gbox.addAudio("floor1",[audioserver+"hit.mp3",audioserver+"hit.ogg"],{channel:"sfx"});
gbox.addAudio("line1",[audioserver+"explosion.mp3",audioserver+"explosion.ogg"],{channel:"sfx"});
gbox.addAudio("hold1",[audioserver+"coin.mp3",audioserver+"coin.ogg"],{channel:"sfx"});
gbox.addAudio("gameover1",[audioserver+"bigexplosion.mp3",audioserver+"bigexplosion.ogg"],{channel:"sfx"});
gbox.addAudio("move1",[audioserver+"voice_narrator.mp3",audioserver+"voice_narrator.ogg"],{channel:"sfx"});
gbox.addAudio("classicslow",[audioserver+"tspintarantella_112bpm.mp3",audioserver+"tspintarantella_112bpm.ogg"],{channel:"bgmusic",loop:true});
gbox.addAudio("classicfast",[audioserver+"tspintarantella_140bpm.mp3",audioserver+"tspintarantella_140bpm.ogg"],{channel:"bgmusic",loop:true});
gbox.addAudio("classicfaster",[audioserver+"tspintarantella_172bpm.mp3",audioserver+"tspintarantella_172bpm.ogg"],{channel:"bgmusic",loop:true});
gbox.addAudio("classicevil",[audioserver+"tspintarantella_210bpm.mp3",audioserver+"tspintarantella_210bpm.ogg"],{channel:"bgmusic",loop:true});
gbox.addImage("logo","resources/tspin/logo.png");
gbox.addImage("wp","resources/tspin/wp.png");
gbox.addImage("miscblits","resources/tspin/miscblits.png");
gbox.addImage("text","resources/tspin/text2.png");
gbox.addImage("brick-tgm","resources/tspin/tgm-blocks.png");
gbox.addImage("smbrick-tgm","resources/tspin/tgm-blocks-small.png");
gbox.addImage("brick-gb","resources/tspin/gb-blocks.png");
gbox.addImage("smbrick-gb","resources/tspin/gb-blocks-small.png");
gbox.addImage("brick-tds","resources/tspin/nds-blocks.png");
gbox.addImage("smbrick-tds","resources/tspin/nds-blocks-small.png");
gbox.addImage("brick-sega","resources/tspin/sega-blocks.png");
gbox.addImage("smbrick-sega","resources/tspin/sega-blocks-small.png");
gbox.addImage("brick-tengen","resources/tspin/tengen-blocks.png");
gbox.addImage("smbrick-tengen","resources/tspin/tengen-blocks-small.png");
gbox.addImage("brick-nes","resources/tspin/nes-blocks.png");
gbox.addImage("smbrick-nes","resources/tspin/nes-blocks-small.png");
gbox.addImage("brick-world","resources/tspin/world-blocks.png");
gbox.addImage("smbrick-world","resources/tspin/world-blocks-small.png");
gbox.addImage("hanabi0","resources/tspin/hanabi_blue.png");
gbox.addImage("hanabi1","resources/tspin/hanabi_green.png");
gbox.addImage("hanabi2","resources/tspin/hanabi_orange.png");
gbox.addImage("hanabi3","resources/tspin/hanabi_purple.png");
gbox.addImage("hanabi4","resources/tspin/hanabi_red.png");
gbox.addImage("hanabi5","resources/tspin/hanabi_waterblue.png");
gbox.addImage("hanabi6","resources/tspin/hanabi_yellow.png");
gbox.addImage("fields","resources/tspin/fields.png");
gbox.addImage("spark-tds","resources/tspin/tds-spark.png");
gbox.addImage("lock-tds","resources/tspin/perase5.png");
gbox.addImage("field-tds","resources/tspin/field-tds.png");
gbox.addImage("font-small","resources/leavemealone/font.png");
gbox.addImage("font","resources/tspin/font.png");
gbox.addImage("digits","resources/tspin/digits.png");
gbox.addImage("break","resources/tspin/break.png");
gbox.addImage("grade","resources/tspin/grade.png");
gbox.addImage("medal","resources/tspin/medal.png");
gbox.addImage("back-01","resources/tspin/back-01.png");
gbox.addImage("back-02","resources/tspin/back-02.png");
gbox.addImage("back-03","resources/tspin/back-03.png");
gbox.addFont({id:"small",image:"font-small",firstletter:" ",tileh:8,tilew:8,tilerow:255,gapx:0,gapy:0});
gbox.addFont({id:"small-gray",image:"font",firstletter:" ",tileh:8,tilew:8,tilerow:32,gapx:0,gapy:0});
gbox.addFont({id:"small-blue",image:"font",firstletter:" ",tileh:8,tilew:8,tilerow:32,gapx:0,gapy:24});
gbox.addFont({id:"small-red",image:"font",firstletter:" ",tileh:8,tilew:8,tilerow:32,gapx:0,gapy:48});
gbox.addFont({id:"small-digitgray",image:"digits",firstletter:"0",tileh:9,tilew:6,tilerow:32,gapx:132,gapy:90});
gbox.addFont({id:"big-digitgray",image:"digits",firstletter:"0",tileh:16,tilew:12,tilerow:32,gapx:0,gapy:161});
gbox.addFont({id:"blbig-digitgray",image:"digits",firstletter:"0",tileh:16,tilew:12,tilerow:32,gapx:0,gapy:241});
gbox.addTiles({id:"fields",image:"fields",tileh:183,tilew:96,tilerow:10,gapx:0,gapy:0}); // the set of fields models
gbox.addTiles({id:"field-tds",image:"field-tds",tileh:172,tilew:102,tilerow:1,gapx:0,gapy:0}); // TDS field
gbox.addTiles({id:"small-lbl",image:"miscblits",tileh:6,tilew:25,tilerow:6,gapx:129,gapy:113}); // Small labels
gbox.addTiles({id:"break-tgm",image:"break",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // Break animation
gbox.addTiles({id:"bar",image:"miscblits",tileh:3,tilew:24,tilerow:2,gapx:38,gapy:34}); // Small bar for score/level caps
gbox.addTiles({id:"drop-tds",image:"spark-tds",tileh:10,tilew:7,tilerow:3,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"lock-tds",image:"lock-tds",tileh:32,tilew:32,tilerow:10,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"readygo",image:"miscblits",tileh:17,tilew:75,tilerow:1,gapx:0,gapy:0}); // Ready/go animation
gbox.addTiles({id:"spark0",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:162}); // spark
gbox.addTiles({id:"spark1",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:194}); // spark
gbox.addTiles({id:"spark2",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:226}); // spark
gbox.addTiles({id:"spark3",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:258}); // spark
gbox.addTiles({id:"spark4",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:290}); // spark
gbox.addTiles({id:"spark5",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:322}); // spark
gbox.addTiles({id:"spark6",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:344}); // spark
gbox.addTiles({id:"spark7",image:"miscblits",tileh:32,tilew:32,tilerow:6,gapx:0,gapy:386}); // spark
gbox.addTiles({id:"hanabi0",image:"hanabi0",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi1",image:"hanabi1",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi2",image:"hanabi2",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi3",image:"hanabi3",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi4",image:"hanabi4",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi5",image:"hanabi5",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"hanabi6",image:"hanabi6",tileh:96,tilew:96,tilerow:6,gapx:0,gapy:0}); // hanabi
gbox.addTiles({id:"text1",image:"text",tileh:50,tilew:100,tilerow:3,gapx:0,gapy:0}); // Misc text
gbox.addTiles({id:"clear",image:"miscblits",tileh:18,tilew:92,tilerow:3,gapx:204,gapy:232}); // The clear sign
gbox.addTiles({id:"medal",image:"medal",tileh:12,tilew:15,tilerow:7,gapx:0,gapy:0}); // Medals symbols
gbox.addTiles({id:"grade",image:"grade",tileh:24,tilew:90,tilerow:6,gapx:0,gapy:0}); // Grades symbols
gbox.addTiles({id:"blgrade",image:"grade",tileh:24,tilew:90,tilerow:6,gapx:0,gapy:216}); // Blinking Grades symbols
gbox.addTiles({id:"grade-gm",image:"grade",tileh:32,tilew:90,tilerow:1,gapx:450,gapy:148}); // Grades symbols
gbox.addTiles({id:"blgrade-gm",image:"grade",tileh:32,tilew:90,tilerow:1,gapx:450,gapy:364}); // Grades symbols
gbox.addTiles({id:"brick-tgm",image:"brick-tgm",tileh:8,tilew:8,tilerow:10,gapx:0,gapy:0}); // TGM brick set
gbox.addTiles({id:"smbrick-tgm",image:"smbrick-tgm",tileh:4,tilew:4,tilerow:10,gapx:0,gapy:0}); // TGM small brick set
gbox.addTiles({id:"brick-world",image:"brick-world",tileh:8,tilew:8,tilerow:10,gapx:0,gapy:0}); // TGM WORLD brick set
gbox.addTiles({id:"smbrick-world",image:"smbrick-world",tileh:4,tilew:4,tilerow:10,gapx:0,gapy:0}); // TGM WORLD small brick set
gbox.addTiles({id:"brick-gb",image:"brick-gb",tileh:8,tilew:8,tilerow:8,gapx:0,gapy:0}); // GB brick set
gbox.addTiles({id:"smbrick-gb",image:"smbrick-gb",tileh:4,tilew:4,tilerow:8,gapx:0,gapy:0}); // GB small brick set
gbox.addTiles({id:"brick-tds",image:"brick-tds",tileh:8,tilew:8,tilerow:8,gapx:0,gapy:0}); // TDS brick set
gbox.addTiles({id:"smbrick-tds",image:"smbrick-tds",tileh:4,tilew:4,tilerow:8,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"brick-sega",image:"brick-sega",tileh:8,tilew:8,tilerow:8,gapx:0,gapy:0}); // TDS brick set
gbox.addTiles({id:"smbrick-sega",image:"smbrick-sega",tileh:4,tilew:4,tilerow:8,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"brick-tengen",image:"brick-tengen",tileh:8,tilew:8,tilerow:8,gapx:0,gapy:0}); // TDS brick set
gbox.addTiles({id:"smbrick-tengen",image:"smbrick-tengen",tileh:4,tilew:4,tilerow:8,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"brick-nes",image:"brick-nes",tileh:8,tilew:8,tilerow:8,gapx:0,gapy:0}); // TDS brick set
gbox.addTiles({id:"smbrick-nes",image:"smbrick-nes",tileh:4,tilew:4,tilerow:8,gapx:0,gapy:0}); // TDS small brick set
gbox.addTiles({id:"head-tgm",image:"miscblits",tileh:33,tilew:101,tilerow:10,gapx:0,gapy:129}); // TGM header
// Loads external Javascript (like putting these on "<script>" tag, but handled by the resource loader.
// Loads the "block" engine: a feature rich puzzle-game engine in JS
gbox.addScript({file:"resources/tspin/engine/block.js"});
gbox.addScript({file:"resources/tspin/engine/block-resources.js"});
// Uncomment the following line for debugging setups
//gbox.addScript({file:"resources/tspin/data/extra/dbg-setups.js",onLoad:function(a){console.log("Enabling debug mode.")}});
// Basic rotation library
gbox.addScript({file:"resources/tspin/data/rot-classic.js"});
gbox.addScript({file:"resources/tspin/data/rot-srs.js"});
gbox.addScript({file:"resources/tspin/data/rot-ars.js"});
gbox.addScript({file:"resources/tspin/data/rot-nintendo.js"});
gbox.addScript({file:"resources/tspin/data/rot-tengen.js"});
gbox.addScript({file:"resources/tspin/data/rot-sega.js"});
// Load sims
gbox.addScript({file:"resources/tspin/data/sim-sega.js"});
gbox.addScript({file:"resources/tspin/data/sim-tengen.js"});
gbox.addScript({file:"resources/tspin/data/sim-gb.js"});
gbox.addScript({file:"resources/tspin/data/sim-tengen.js"});
gbox.addScript({file:"resources/tspin/data/sim-nes.js"});
gbox.addScript({file:"resources/tspin/data/sim-tgm.js"});
gbox.addScript({file:"resources/tspin/data/sim-tgm2.js"});
gbox.addScript({file:"resources/tspin/data/sim-tgm3.js"});
gbox.addScript({file:"resources/tspin/data/sim-tds.js"});
gbox.loadAll(go);
}, false);
</script>
</html>