2013-05-30 22:03:56 +00:00
|
|
|
/// <reference path="../../Phaser/Game.ts" />
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
|
|
|
|
var game = new Phaser.Game(this, 'game', 800, 600, init, create, update, render);
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
|
|
|
|
// Using Phasers asset loader we load up a PNG from the assets folder
|
2013-06-05 01:58:16 +00:00
|
|
|
game.load.image('atari', 'assets/sprites/atari800xl.png');
|
|
|
|
game.load.image('card', 'assets/sprites/mana_card.png');
|
|
|
|
game.load.start();
|
2013-05-30 22:03:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
var atari: Phaser.Sprite;
|
|
|
|
var card: Phaser.Sprite;
|
|
|
|
|
|
|
|
function create() {
|
|
|
|
|
|
|
|
//atari = game.add.sprite(350, 100, 'atari');
|
|
|
|
//atari = game.add.sprite(350, 500, 'atari');
|
|
|
|
atari = game.add.sprite(0, 310, 'atari');
|
|
|
|
card = game.add.sprite(400, 300, 'card');
|
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
//card.body.immovable = true;
|
2013-05-30 22:03:56 +00:00
|
|
|
|
|
|
|
//atari.texture.alpha = 0.5;
|
|
|
|
//atari.scale.setTo(1.5, 1.5);
|
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
//atari.body.shape.setSize(150, 50);
|
|
|
|
//atari.body.shape.offset.setTo(50, 25);
|
2013-05-30 22:03:56 +00:00
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
//atari.body.gravity.setTo(0, 2);
|
|
|
|
atari.body.bounce.setTo(1, 1);
|
|
|
|
//atari.body.drag.setTo(10, 10);
|
2013-05-30 22:03:56 +00:00
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
card.body.bounce.setTo(0.7, 0.7);
|
|
|
|
//card.body.velocity.x = -50;
|
2013-05-30 22:03:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function update() {
|
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.acceleration.x = 0;
|
|
|
|
atari.body.acceleration.y = 0;
|
2013-05-30 22:03:56 +00:00
|
|
|
|
|
|
|
if (game.input.keyboard.isDown(Phaser.Keyboard.LEFT))
|
|
|
|
{
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.acceleration.x = -150;
|
2013-05-30 22:03:56 +00:00
|
|
|
}
|
|
|
|
else if (game.input.keyboard.isDown(Phaser.Keyboard.RIGHT))
|
|
|
|
{
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.acceleration.x = 150;
|
2013-05-30 22:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (game.input.keyboard.isDown(Phaser.Keyboard.UP))
|
|
|
|
{
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.acceleration.y = -150;
|
2013-05-30 22:03:56 +00:00
|
|
|
}
|
|
|
|
else if (game.input.keyboard.isDown(Phaser.Keyboard.DOWN))
|
|
|
|
{
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.acceleration.y = 150;
|
2013-05-30 22:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// collide?
|
2013-06-07 06:35:28 +00:00
|
|
|
game.collide(atari, card);
|
2013-05-30 22:03:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function render() {
|
|
|
|
|
2013-05-31 17:21:32 +00:00
|
|
|
atari.body.renderDebugInfo(16, 16);
|
|
|
|
card.body.renderDebugInfo(200, 16);
|
2013-05-30 22:03:56 +00:00
|
|
|
|
2013-06-07 06:35:28 +00:00
|
|
|
Phaser.DebugUtils.renderSpritePhysicsBody(atari);
|
|
|
|
Phaser.DebugUtils.renderSpritePhysicsBody(card);
|
|
|
|
|
2013-05-30 22:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
})();
|