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. translate动画实例

    <!doctype html> <html lang="en"> <head> <meta name="viewport&quo ...

  2. vlc源码分析(三) 调用live555接收RTSP数据

    首先了解RTSP/RTP/RTCP相关概念,尤其是了解RTP协议:RTP与RTCP协议介绍(转载). vlc使用模块加载机制调用live555,调用live555的文件是live555.cpp. 一. ...

  3. C 标准库 中 操作 字符串 的 代码

    1)字符串操作 strcpy(p, p1) 复制字符串 strncpy(p, p1, n) 复制指定长度字符串 strcat(p, p1) 附加字符串 strncat(p, p1, n) 附加指定长度 ...

  4. nRF5 SDK for Mesh(二) Getting started 快速开始

    Getting started To get started, take a look at the Light switch demo. It shows how a simple applicat ...

  5. python3>日期和时间

    阅读目录 1.python3日期和时间 2.时间元组 3.获取格式化的时间 4.格式化日期 5.获取月日历 6.Time模块 7.datetime模块 回到顶部 1.python3日期和时间 Pyth ...

  6. 前端基础-jQuery的动画效果

    阅读目录 隐藏 显示 切换 下拉 上卷 显示 一.jQuery中隐藏元素的hide方法 让页面上的元素不可见,一般可以通过设置css的display为none属性.但是通过css直接修改是静态的布局, ...

  7. urllib库使用方法 2 parse

    import urllib.parse #url.parse用法包含三个方法:quote url, unquote rul, urlencode#quote url 编码函数,url规范只识别字母.数 ...

  8. linux环境mysql的安装主从关系的配置

  9. Hive sql & Spark sql笔记

    记录了日常使用时遇到的特殊的查询语句.不断更新- 1. SQL查出内容输出到文件 hive -e "...Hive SQL..." > /tmp/out sparkhive ...

  10. 树莓派3B+学习笔记:4、查看GPIO

    GPIO(General Purpose I/O Ports)意思为通用输入/输出端口. 可以在终端重直接查看GPIO的定义. 查看方式1: gpio readall 查看方式2: pinout 可以 ...