Phaser3让超级玛丽实现轻跳、高跳及加上对应的跳跃声音
在线测试地址: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让超级玛丽实现轻跳、高跳及加上对应的跳跃声音的更多相关文章
- 用C#实现微信“跳一跳”小游戏的自动跳跃助手
一.前言: 前段时间微信更新了新版本后,带来的一款H5小游戏“跳一跳”在各朋友圈里又火了起来,类似以前的“打飞机”游戏,这游戏玩法简单,但加上了积分排名功能后,却成了“装逼”的地方,于是很多人花钱花时 ...
- 跳转不同包时候 需要先指定该包的namespace 注意 先跳转 即加上/
- Servlet(11)—客户端跳转和服务端跳转
客户端跳转: 1.链接跳转:< a href="">< /a > 2.表单提交< form>< /form> 3.Response. ...
- K:跳表
跳表(SkipList)是一种随机化的数据结构,目前在redis和leveldb中都有用到它,它的效率和红黑树以及 AVL 树不相上下,但跳表的原理相当简单,只要你能熟练操作链表, 就能轻松实现一 ...
- bootstrap 因跳页黑色背景无法关闭
只需要在跳页之前加上如下代码: $(".modal-backdrop").remove();
- 剑指Offer-9.变态跳台阶(C++/Java)
题目: 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级.求该青蛙跳上一个n级的台阶总共有多少种跳法. 分析: 假设我们要求跳上第3级的跳法,可以从第0级跳3级台阶到达,也可以从第1级 ...
- 除了a链接跳转,还有其他的跳转方式
一.直接在要跳转部分加上onclick事件 1.加入onclick事件: <div onclick="window.open('http://baidu.com','_blank')& ...
- 跳表--怎么让一个有序链表能够进行"二分"查找?
对于一个有序数组,如果要查找其中的一个数,我们可以使用二分查找(Binary Search)算法,将它的时间复杂度降低为O(logn).那查找一个有序链表,有没有办法将其时间复杂度也降低为O(logn ...
- pygame-KidsCanCode系列jumpy-part13-改进跳跃
这节研究下跳跃如何做得更自然,先看看之前的跳跃有什么问题,我们把settings.py里的初始化参数调整下: # starting platform # PLATFORM_LIST = [(5, HE ...
随机推荐
- java学习笔记 --- 多线程(多线程的控制)
1.线程休眠 public static void sleep(long millis) public class ThreadSleep extends Thread { @Override ...
- Selenium & Webdriver 远程测试和多线程并发测试
Selenium & Webdriver 远程测试和多线程并发测试 Selenium Webdriver自动化测试,初学者可以使用selenium ide录制脚本,然后生成java程序导入ec ...
- 使用java代码将时间戳和时间互相转换
时间戳转时间: SimpleDateFormat simpleDateFormat = null; simpleDateFormat = new SimpleDateFormat("yyyy ...
- Java I/O系列(一)InputStream与OutputStream源码分析及理解
1. InputStream 定义 字节输入流,是一个抽象类,核心是通过read()方法,从数据源中读取一个个字节出来,另有skip,mark功能 核心源码理解 源码: public abstract ...
- [Oracle]Oracle良性SQL建议
(1)选择最有效率的表名顺序(只在基于规则的优化器中有效): Oracle的解析器按照从右到左的顺序处理FROM子句中的表名,FROM子句中写在最后的表(基础表 driving table)将被最先处 ...
- 仿手机iPhone QQ消息小红点动画1
前言 偶然发现iPhone QQ 显示消息条数的小红点可以响应动作事件,也有人问我这样的动画该怎么做,这里就把实现的思路简单的描述一下.在实现的过程中,同样发现该功能并没有看到的那么简单,要做一个完备 ...
- C# 自定义特性Attribute
一.特性Attribute和注释有什么区别 特性Attribute A:就是一个类,直接继承/间接继承Attribute B:特性可以在后期反射中处理,特性本身是没有什么*用的 C:特性会影响编译和运 ...
- MySQL+MyCat分库分表 读写分离配置
一. MySQL+MyCat分库分表 1 MyCat简介 java编写的数据库中间件 Mycat运行环境需要JDK. Mycat是中间件.运行在代码应用和MySQL数据库之间的应用. 前身 : cor ...
- Scrapy-Redis 空跑问题,redis_key链接跑完后,自动关闭爬虫
首先解决爬虫等待,不被关闭的问题: 1.scrapy内部的信号系统会在爬虫耗尽内部队列中的request时,就会触发spider_idle信号. 2.爬虫的信号管理器收到spider_idle信号后, ...
- django数据库迁移-15
目录 1.迁移 1.生成迁移文件 2.执行迁移命令 添加测试数据 1.迁移 创建完模型类后,并没有真正的在数据库中创建了数据表,需要执行迁移命令,在数据表中创建数据表. 1.生成迁移文件 manage ...