mario jumper

在线测试地址:http://www.ifiero.com/uploads/phaserjs3/jumper/

空格键:轻按:跳低 ,长按:跳高
键盘:--> 向右 , <-- 向左

请确保已打开电脑的音乐开关

var config = {
type: Phaser.AUTO,
width: 650,
height: 450,
parent: "ifierocom",
physics: {
default: 'arcade',
arcade: {
gravity: {
y: 350
},
debug: false
}
},
scene: {
preload: preload,
create: create,
update: update
}
}; var player;
var stars;
var bombs;
var platforms;
var cursors;
var score = 0;
var gameOver = false;
var scoreText;
// var jumpTimer = 0;
var game = new Phaser.Game(config);
var isSmall = true; // small jump music
var isSuper = true; // super jump music function init() {
this.jumpTimer = 0;
this.isCanJump = false;
this.isCanLeft = false;
this.isCanRight = false;
this.isCanStand = true;
this.velocityL = 0;
this.velocityR = 0;
} function preload() {
this.load.image('sky', 'assets/sky.png');
this.load.image('ground', 'assets/platform.png');
this.load.image('star', 'assets/star.png');
this.load.image('bomb', 'assets/bomb.png');
// this.load.spritesheet('dude', 'assets/dude.png', {
// frameWidth: 32,
// frameHeight: 48
// });
this.load.spritesheet('mario', 'assets/mario_mario.png', {
frameWidth: 16,
frameHeight: 16,
margin: 1,
spacing: 1 });
//music: small
this.load.audio('jumpSmall', 'assets/audio/JumpSmall.mp3');
//music: super
this.load.audio('jumpSuper', 'assets/audio/JumpSuper.mp3');
//music: super
this.load.audio('coin', 'assets/audio/Coin.mp3');
} function create() {
this.spaceBar = this.input.keyboard.addKey(Phaser.Input.Keyboard.KeyCodes.SPACE);
// A simple background for our game
this.add.image(400, 300, 'sky'); // The platforms group contains the ground and the 2 ledges we can jump on
platforms = this.physics.add.staticGroup(); // Here we create the ground.
// Scale it to fit the width of the game (the original sprite is 400x32 in size)
platforms.create(400, 568, 'ground').setScale(2).refreshBody(); // Now let's create some ledges
platforms.create(600, 400, 'ground');
platforms.create(50, 250, 'ground');
platforms.create(750, 220, 'ground'); // The player and its settings
// player = this.physics.add.sprite(100, 450, 'dude');
player = this.physics.add.sprite(100, 450, 'mario', 0);
player.setScale(2.5); // Player physics properties. Give the little guy a slight bounce.
player.setBounce(0.2);
player.setCollideWorldBounds(true); // Our player animations, turning, walking left and walking right.
this.anims.create({
key: 'run',
frames: this.anims.generateFrameNumbers('mario', {
start: 1,
end: 3
}),
frameRate: 10,
repeat: -1
}); this.anims.create({
key: 'shift',
frames: [{
key: 'mario',
frame: 4
}],
frameRate: 20
}); this.anims.create({
key: 'stand',
frames: [{
key: 'mario',
frame: 0
}],
frameRate: 20
}); this.anims.create({
key: 'jump',
frames: [{
key: 'mario',
frame: 5
}],
frameRate: 20
}); // Input Events
cursors = this.input.keyboard.createCursorKeys(); // Some stars to collect, 12 in total, evenly spaced 70 pixels apart along the x axis
stars = this.physics.add.group({
key: 'star',
repeat: 11,
setXY: {
x: 12,
y: 0,
stepX: 70
}
}); stars.children.iterate(function (child) { // Give each star a slightly different bounce
child.setBounceY(Phaser.Math.FloatBetween(0.4, 0.8)); }); bombs = this.physics.add.group(); // The score
scoreText = this.add.text(16, 16, 'score: 0', {
fontSize: '32px',
fill: '#000'
});
scoreText.setScrollFactor(0);
// Collide the player and the stars with the platforms
this.physics.add.collider(player, platforms, function () {
// console.log('hit ground');
// console.groupEnd();
this.isCanJump = false;
}, null, this);
this.physics.add.collider(stars, platforms);
this.physics.add.collider(bombs, platforms); // Checks to see if the player overlaps with any of the stars, if he does call the collectStar function
this.physics.add.overlap(player, stars, collectStar, null, this); this.physics.add.collider(player, bombs, hitBomb, null, this); this.cameras.main.setBounds(0, 0, 800, 600);
this.physics.world.setBounds(0, 0, 800, 600);
this.cameras.main.startFollow(player, true, 0.08, 0.08); this.jumpSmallMusic = this.sound.add('jumpSmall');
this.jumpSuperMusic = this.sound.add('jumpSuper');
this.coinMusic = this.sound.add('coin'); //
this.input.on('pointerdown', function () {});
} function update() {
if (gameOver) {
return;
} if (this.spaceBar.isDown) {
this.isCanJump = true;
}
if (this.isCanJump) {
//1. on the air
player.anims.play('jump'); if (player.body.velocity.x > 0) {
if (cursors.left.isDown && player.body.velocity.x > -50) {
player.body.velocity.x -= 10;
}
} else {
if (cursors.right.isDown && player.body.velocity.x < 50) {
player.body.velocity.x += 10;
}
}
// console.log("air player.velocity.x",player.body.velocity.x); } else {
//2. on the ground
/* */
if (cursors.left.isDown) {
this.isCanLeft = true;
this.isCanRight = false;
player.setVelocityX(-160);
player.setFlipX(true);
player.anims.play('run', true);
} else if (cursors.right.isDown) {
this.isCanRight = true;
this.isCanLeft = false;
player.setVelocityX(160);
player.setFlipX(false);
player.anims.play('run', true); } else if (player.body.velocity.x === 0) {
player.anims.play('stand', true);
} // player.setVelocityX(0);
// dont left player stop immediately while relase arrow left/right
if (this.isCanRight) {
if (player.body.velocity.x > 0) {
player.body.velocity.x -= 4;
player.anims.play('run', true);
this.velocityR = 1;
}
if (player.body.velocity.x < 0) {
player.anims.play('stand', true);
this.isCanRight = false;
player.setVelocityX(0);
player.body.velocity.x = 0;
this.velocityR = 0;
}
console.log("ground RIGHT player.velocity.x", player.body.velocity.x);
} else if (this.isCanLeft) { if (player.body.velocity.x < 0) {
player.body.velocity.x += 4;
player.anims.play('run', true);
}
if (player.body.velocity.x > 0) {
player.anims.play('stand');
this.isCanLeft = false;
player.setVelocityX(0);
player.body.velocity.x = 0 }
console.log("ground left player.velocity.x", player.body.velocity.x);
} /* */ } //MARK: - Y position + music
if (this.spaceBar.isDown && player.body.touching.down && this.jumpTimer === 0) {
this.jumpTimer = 1;
// this.jumpSmallMusic.play({volume: 0.1});
player.setVelocityY(-135);
} else if (this.spaceBar.isDown && this.jumpTimer > 0 && this.jumpTimer <= 30) { this.jumpTimer++;
player.setVelocityY(-135 - this.jumpTimer * 3); this.time.delayedCall(200, function () {
// if jumpTimer > 12 ,play super music and set isSmall = false;
if (this.jumpTimer > 12) {
if (isSuper) {
isSuper = false;
isSmall = false;
this.jumpSuperMusic.play({
volume: 0.1
});
}
}
if (isSmall) {
this.jumpSmallMusic.play({
volume: 0.1
});
isSmall = false;
} }, [], this); } else {
this.jumpTimer = 0;
}
// 重新设置跳跃的声音
if (player.body.touching.down) {
isSmall = true;
isSuper = true;
}
}
//MARK:- collect star
function collectStar(player, star) {
this.coinMusic.play({
volume: 0.1
});
star.disableBody(true, true); // Add and update the score
score += 10;
scoreText.setText('Score: ' + score); if (stars.countActive(true) === 0) {
// A new batch of stars to collect
stars.children.iterate(function (child) { child.enableBody(true, child.x, 0, true, true); }); var x = (player.x < 400) ? Phaser.Math.Between(400, 800) : Phaser.Math.Between(0, 400); var bomb = bombs.create(x, 16, 'bomb');
bomb.setBounce(1);
bomb.setCollideWorldBounds(true);
bomb.setVelocity(Phaser.Math.Between(-200, 200), 20);
bomb.allowGravity = false; }
}
// MARK:- hit bomb
function hitBomb(player, bomb) {
this.physics.pause(); player.setTint(0xff0000); player.anims.play('stand'); gameOver = true;
}

以上案例是基于Phaser官方教程进行改善的:
http://phaser.io/tutorials/making-your-first-phaser-3-game
更多游戏教学:http://www.iFIERO.com

Phaser3让超级玛丽实现轻跳、高跳及加上对应的跳跃声音的更多相关文章

  1. 用C#实现微信“跳一跳”小游戏的自动跳跃助手

    一.前言: 前段时间微信更新了新版本后,带来的一款H5小游戏“跳一跳”在各朋友圈里又火了起来,类似以前的“打飞机”游戏,这游戏玩法简单,但加上了积分排名功能后,却成了“装逼”的地方,于是很多人花钱花时 ...

  2. 跳转不同包时候 需要先指定该包的namespace 注意 先跳转 即加上/

  3. Servlet(11)—客户端跳转和服务端跳转

    客户端跳转: 1.链接跳转:< a href="">< /a > 2.表单提交< form>< /form> 3.Response. ...

  4. K:跳表

      跳表(SkipList)是一种随机化的数据结构,目前在redis和leveldb中都有用到它,它的效率和红黑树以及 AVL 树不相上下,但跳表的原理相当简单,只要你能熟练操作链表, 就能轻松实现一 ...

  5. bootstrap 因跳页黑色背景无法关闭

    只需要在跳页之前加上如下代码: $(".modal-backdrop").remove();

  6. 剑指Offer-9.变态跳台阶(C++/Java)

    题目: 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级.求该青蛙跳上一个n级的台阶总共有多少种跳法. 分析: 假设我们要求跳上第3级的跳法,可以从第0级跳3级台阶到达,也可以从第1级 ...

  7. 除了a链接跳转,还有其他的跳转方式

    一.直接在要跳转部分加上onclick事件 1.加入onclick事件: <div onclick="window.open('http://baidu.com','_blank')& ...

  8. 跳表--怎么让一个有序链表能够进行"二分"查找?

    对于一个有序数组,如果要查找其中的一个数,我们可以使用二分查找(Binary Search)算法,将它的时间复杂度降低为O(logn).那查找一个有序链表,有没有办法将其时间复杂度也降低为O(logn ...

  9. pygame-KidsCanCode系列jumpy-part13-改进跳跃

    这节研究下跳跃如何做得更自然,先看看之前的跳跃有什么问题,我们把settings.py里的初始化参数调整下: # starting platform # PLATFORM_LIST = [(5, HE ...

随机推荐

  1. 关于RFID电动车防盗、校园答题卡(超低功耗2.4G芯片SI24R2E)

          Si24R2E 是一颗工作在2.4GHz ISM 频段,专为低功耗有源RFID 应用场合设计,集成嵌入式发射基带的无线发射芯片.128 次可编程NVM 存储器以及自动发射模块.工作频率范围 ...

  2. arcgis js api proxy java 版本配置

    <?xml version="1.0" encoding="utf-8" ?> <ProxyConfig allowedReferers=&q ...

  3. 使用java.util.List的subList方法进行分页

    java.util.List中有一个subList方法,用来返回一个list的一部分视图. List<E> subList(int fromIndex, int toIndex); 它返回 ...

  4. wordpress安装(ubuntu+nginx+php+mariadb)

    一.   环境 ubuntu12.04.4 nginx 1.6.0 mariadb 10.0 更新系统补丁 sudo apt-get update sudo apt-get dist-upgrade ...

  5. sharepoint OOS打开文档使用新窗口

    总体说来就是在<a>标签上嵌入_blank $("a[onclick*='return DispEx'][target!='_blank']") .attr(" ...

  6. bat脚本实现复制特定后缀文件到其他目录

    @echo off for /r %%a in (*.txt) do copy %%a D:\1 pause 1.for /r主要用于搜索指定路径及其所有子目录中符合要求的文件(/r后如果没有指定目录 ...

  7. Scala 语法基础

    一 简介 Scala 是一门多范式(multi-paradigm)的编程语言,设计初衷是要集成面向对象编程和函数式编程的各种特性.Scala 运行在Java虚拟机上,并兼容现有的Java程序.Scal ...

  8. 偏前端 - ios下position:fixed失效的问题解决

    如图,考虑到用户体验的问题,一般页面的下方提交按钮都会随着固定在页面上,方便用户点击. 有些人肯定就说了,这还不简单,position:fixed: 但是在ios这个坑货系统上这个position:f ...

  9. vue---class和style的基本用法

    不多BB了 直接上代码了 通俗移动易懂总结了5种常用改变样式 的形式 <style> .actived2{ color:red; } </style> </head> ...

  10. The Road to learn React书籍学习笔记(第二章)

    The Road to learn React书籍学习笔记(第二章) 组件的内部状态 组件的内部状态也称为局部状态,允许保存.修改和删除在组件内部的属性,使用ES6类组件可以在构造函数中初始化组件的状 ...