Files
2026-01-21 18:11:33 +08:00

254 lines
8.0 KiB
JavaScript

$(window).on("load", function() {
/**
*
* Backbone Game Engine - An elementary HTML5 canvas game engine using Backbone.
*
* Copyright (c) 2014 Martin Drapeau
* https://github.com/martindrapeau/backbone-game-engine
*
*/
var canvas = document.getElementById("foreground"),
context = canvas.getContext("2d");
adjustViewport(canvas);
var spriteNames = [
"ground", "brick-top", "brick", "ground2", "block", "block2", "question-block", "pennie",
"tube1", "tube2", "tube3-mirror", "tube4-mirror", "bush1", "bush2", "bush3", "cloud1", "cloud2", "cloud3",
"cloud-happy1", "cloud-happy2", "cloud-happy3", "flag-pole1", "water-bridge",
"cloud-small", "ground-ug", "brick-top-ug", "brick-ug", "ground2-ug", "block-ug", "block2-ug",
"question-block-ug", "pennie-ug", "tube3", "tube4", "tube1-mirror", "tube2-mirror", "bush4", "bush5", "bush6",
"cloud4", "cloud5", "cloud6", "cloud-happy4", "cloud-happy5", "cloud-happy6", "flag-pole2", "railing",
"tube1-out", "tube2-out", "tube3-out", "tube1-out-mirror", "tube2-out-mirror", "tube3-out-mirror", "water1", "lava1",
"platform1", "platform2", "platform3", "brick7-castle", "brick-castle", "brick2-castle", "brick3-castle",
"mario", "luigi", "mushroom", "turtle", "flying-turtle", "red-turtle", "red-flying-turtle", "beetle", "spike",
"tube4-out", "tube5-out", "tube6-out", "tube4-out-mirror", "tube5-out-mirror", "tube6-out-mirror", "water2", "lava2",
"bush7", "bush8", "bush9", "platform-pole", "brick4-castle", "brick5-castle", "brick6-castle"
];
Backbone.Controller = Backbone.Model.extend({
initialize: function(attributes, options) {
options || (options = {});
var controller = this;
_.bindAll(this, "onChangeState", "toggleState", "saveWorld", "loadWorld");
// Create our sprite sheets and attach them to existing sprite classes
this.spriteSheets = new Backbone.SpriteSheetCollection([{
id: "mario",
img: "#mario",
tileWidth: 32,
tileHeight: 64,
tileColumns: 21,
tileRows: 6
}, {
id: "tiles",
img: "#tiles",
tileWidth: 32,
tileHeight: 32,
tileColumns: 29,
tileRows: 28
}, {
id: "enemies",
img: "#enemies",
tileWidth: 32,
tileHeight: 64,
tileColumns: 51,
tileRows: 3
}]).attachToSpriteClasses();
// Create the debug panel
this.debugPanel = new Backbone.DebugPanel();
// User input (turn off touchpad to start)
this.input = new Backbone.Input({
drawTouchpad: true
});
// Camera
this.camera = new Backbone.Camera();
// Our world
// Reserve bottom of canvas for input and editor
this.world = new Backbone.World(
_.extend({viewportBottom: 156}, window._world), {
input: this.input,
camera: this.camera
});
this.display = new Backbone.Display({}, {
world: this.world
});
// Message
this.message = new Backbone.Message({
x: 480, y: 20
});
// Buttons
this.toggleButton = new Backbone.Button({
x: 4, y: 4, width: 52, height: 52, borderRadius: 5,
img: "#icons", imgX: 0, imgY: 0, imgWidth: 32, imgHeight: 32, imgMargin: 10
});
this.toggleButton.on("tap", this.toggleState, this);
this.saveButton = new Backbone.Button({
x: 4, y: 548, width: 52, height: 52, borderRadius: 5,
img: "#icons", imgX: 96, imgY: 0, imgWidth: 32, imgHeight: 32, imgMargin: 10
});
this.saveButton.on("tap", this.saveWorld, this);
this.restartButton = new Backbone.Button({
x: 4, y: 608, width: 52, height: 52, borderRadius: 5,
img: "#icons", imgX: 128, imgY: 0, imgWidth: 32, imgHeight: 32, imgMargin: 10
});
this.restartButton.on("tap", this.restartWorld, this);
this.downloadButton = new Backbone.Button({
x: 888, y: 10, width: 52, height: 52, borderRadius: 5,
img: "#icons", imgX: 64, imgY: 0, imgWidth: 32, imgHeight: 32, imgMargin: 10
});
this.downloadButton.on("tap", this.downloadNewVersion, this);
// The game engine
this.engine = new Backbone.Engine({}, {
canvas: canvas,
debugPanel: this.debugPanel
});
this.engine.add(_.compact([
this.world,
this.display,
this.camera,
this.toggleButton,
this.message,
this.debugPanel
]));
// The sprite picker and editor
this.editor = new Backbone.WorldEditor({
spriteNames: spriteNames
}, {
world: this.world
});
// Controls
$(document).on("keypress.Controller", function(e) {
if (e.keyCode == 66 || e.keyCode == 98)
controller.engine.toggle(); // b to break the animation
else if (e.keyCode == 80 || e.keyCode == 112)
controller.toggleState(); // p to pause and pause
});
this.listenTo(this.world, "change:state", this.onChangeState);
this.onChangeState();
// If we have Application Cache active, load the latest world
this.loadWorld();
},
toggleState: function(e) {
var state = this.world.get("state");
this.world.set("state", state == "pause" ? "play" : "pause");
if (!this.engine.isRunning()) this.engine.start();
},
onChangeState: function() {
var state = this.world.get("state");
if (state == "pause") {
// Edit
context.clearRect(0, 0, canvas.width, canvas.height);
this.engine.remove(this.input);
this.engine.add(this.editor);
this.engine.add([this.saveButton, this.restartButton]);
this.toggleButton.set({imgX: 32});
} else {
// Play
context.clearRect(0, 0, canvas.width, canvas.height);
this.engine.remove(this.editor);
this.engine.remove([this.saveButton, this.restartButton]);
this.engine.add(this.input);
this.toggleButton.set({imgX: 0});
}
},
// Save our world to the server when changed. Debounce by 5 seconds
// and push back saving upon activity
saveWorld: function() {
var controller = this,
world = this.world
message = this.message;
message.show("Saving...");
world.save(null, {
success: function() {
setTimeout(function() {
message.hide();
}, 1000);
},
error: function(xhr, textStatus, errorThrown ) {
message.show("Error: " + errorThrown);
}
});
return this;
},
// Load our world from the server.
loadWorld: function() {
var controller = this,
world = this.world,
message = this.message;
message.show("Loading...");
world.fetch({
success: function() {
world.spawnSprites();
message.hide();
},
error: function(xhr, textStatus, errorThrown ) {
message.show('Error: ' + errorThrown);
setTimeout(function() {
message.hide();
}, 2000);
}
});
return this;
},
restartWorld: function() {
var controller = this,
world = this.world,
message = this.message;
message.show("Restarting...");
localStorage.removeItem(world.id);
world.set(window._world).spawnSprites();
setTimeout(function() {
message.hide();
}, 2000);
return this;
},
downloadNewVersion: function() {
window.applicationCache.swapCache();
this.message.show("Please wait...");
window.location.reload();
}
});
var controller = new Backbone.Controller();
// When a newer version is available, load it and inform
// the user it can be downloaded.
if (window.applicationCache !== undefined)
window.applicationCache.addEventListener('updateready', function() {
controller.engine.add(controller.downloadButton);
});
// Expose things as globals - easier to debug
_.extend(window, {
canvas: canvas,
context: context,
controller: controller,
});
});