往上走^^

欢迎来到程序小院

往上走

玩法:转动的圆球,点击固定到上方的圆中即可往上走一步,转动超过上面圆即游戏结束,
往上走一步加1分,快去往上走吧^^。

开始游戏icon-default.png?t=N7T8https://www.ormcc.com/play/gameStart/218

html

  <canvas width="640" height="960"></canvas>

css

canvas {display: block; touch-action: none; user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); width: 367px; height: 550px; margin-left: 357px; margin-top: 0px; cursor: inherit;}

js

var ballDistance = 120;
var rotationSpeed = 4;
var angleRange = [25, 155];
var visibleTargets = 7;
var bgColovar game;
var ballDistance = 120;
var rotationSpeed = 4;
var angleRange = [25, 155];
var visibleTargets = 7;
var bgColors = [0x62bd18, 0xffbb00, 0xff5300, 0xd21034, 0xff475c, 0x8f16b2];
window.onload = function() {game = new Phaser.Game(640, 960, Phaser.CANVAS, "");game.state.add("PlayGame", playGame);game.state.start("PlayGame");
}
playGame.prototype = {preload: function(){game.load.image("ball", "assets/ball.png");game.load.image("target", "assets/target.png");game.load.image("arm", "assets/arm.png");game.scale.pageAlignHorizontally = true;game.scale.pageAlignVertically = true;game.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL;},create: function(){this.savedData = localStorage.getItem("circlepath")==null?{score:0}:JSON.parse(localStorage.getItem("circlepath"));var style = {font: "bold 32px Arial",fill: "#ffffff"};var text = game.add.text(0, game.height - 64, "Best score: "+this.savedData.score.toString(), style);this.destroy = false;this.saveRotationSpeed = rotationSpeed;this.tintColor = bgColors[game.rnd.between(0, bgColors.length - 1)];do{this.tintColor2 = bgColors[game.rnd.between(0, bgColors.length - 1)];} while(this.tintColor == this.tintColor2)game.stage.backgroundColor = this.tintColor;this.targetArray = [];this.steps = 0;this.rotatingDirection = game.rnd.between(0, 1);this.gameGroup = game.add.group();this.targetGroup = game.add.group();this.ballGroup = game.add.group();this.gameGroup.add(this.targetGroup);this.gameGroup.add(this.ballGroup);this.arm = game.add.sprite(game.width / 2, game.height / 4 * 2.7, "arm");this.arm.anchor.set(0, 0.5);this.arm.tint = this.tintColor2;this.ballGroup.add(this.arm);this.balls = [game.add.sprite(game.width / 2, game.height / 4 * 2.7, "ball"),game.add.sprite(game.width / 2, game.height / 2, "ball")]this.balls[0].anchor.set(0.5);this.balls[0].tint = this.tintColor2;this.balls[1].anchor.set(0.5);this.balls[1].tint = this.tintColor2;this.ballGroup.add(this.balls[0]);this.ballGroup.add(this.balls[1]);this.rotationAngle = 0;this.rotatingBall = 1;var target = game.add.sprite(0, 0, "target");target.anchor.set(0.5);target.x = this.balls[0].x;target.y = this.balls[0].y;this.targetGroup.add(target);this.targetArray.push(target);game.input.onDown.add(this.changeBall, this);for(var i = 0; i < visibleTargets; i++){this.addTarget();}},update: function(){var distanceFromTarget = this.balls[this.rotatingBall].position.distance(this.targetArray[1].position);if(distanceFromTarget > 90 && this.destroy && this.steps > visibleTargets){this.gameOver();}if(distanceFromTarget < 40 && !this.destroy){this.destroy = true;}this.rotationAngle = (this.rotationAngle + this.saveRotationSpeed * (this.rotatingDirection * 2 - 1)) % 360;this.arm.angle = this.rotationAngle + 90;this.balls[this.rotatingBall].x = this.balls[1 - this.rotatingBall].x - ballDistance * Math.sin(Phaser.Math.degToRad(this.rotationAngle));this.balls[this.rotatingBall].y = this.balls[1 - this.rotatingBall].y + ballDistance * Math.cos(Phaser.Math.degToRad(this.rotationAngle));var distanceX = this.balls[1 - this.rotatingBall].worldPosition.x - game.width / 2;var distanceY = this.balls[1 - this.rotatingBall].worldPosition.y - game.height / 4 * 2.7;this.gameGroup.x = Phaser.Math.linearInterpolation([this.gameGroup.x, this.gameGroup.x - distanceX], 0.05);this.gameGroup.y = Phaser.Math.linearInterpolation([this.gameGroup.y, this.gameGroup.y - distanceY], 0.05);},changeBall:function(){this.destroy = false;var distanceFromTarget = this.balls[this.rotatingBall].position.distance(this.targetArray[1].position);if(distanceFromTarget < 20){this.rotatingDirection = game.rnd.between(0, 1);var detroyTween = game.add.tween(this.targetArray[0]).to({alpha: 0}, 500, Phaser.Easing.Cubic.In, true);detroyTween.onComplete.add(function(e){e.destroy();})this.targetArray.shift();this.arm.position = this.balls[this.rotatingBall].position;this.rotatingBall = 1 - this.rotatingBall;this.rotationAngle = this.balls[1 - this.rotatingBall].position.angle(this.balls[this.rotatingBall].position, true) - 90;this.arm.angle = this.rotationAngle + 90;for(var i = 0; i < this.targetArray.length; i++){this.targetArray[i].alpha += 1 / 7;}this.addTarget();}else{this.gameOver();}},addTarget: function(){this.steps++;startX = this.targetArray[this.targetArray.length - 1].x;startY = this.targetArray[this.targetArray.length - 1].y;var target = game.add.sprite(0, 0, "target");var randomAngle = game.rnd.between(angleRange[0] + 90, angleRange[1] + 90);target.anchor.set(0.5);target.x = startX + ballDistance * Math.sin(Phaser.Math.degToRad(randomAngle));target.y = startY + ballDistance * Math.cos(Phaser.Math.degToRad(randomAngle));target.alpha = 1 - this.targetArray.length * (1 / 7);var style = {font: "bold 32px Arial",fill: "#" + this.tintColor.toString(16),align: "center"};var text = game.add.text(0, 0, this.steps.toString(), style);text.anchor.set(0.5);target.addChild(text);this.targetGroup.add(target);this.targetArray.push(target);},gameOver: function(){localStorage.setItem("circlepath",JSON.stringify({score: Math.max(this.savedData.score, this.steps - visibleTargets)}));game.input.onDown.remove(this.changeBall, this);this.saveRotationSpeed = 0;this.arm.destroy();var gameOverTween = game.add.tween(this.balls[1 - this.rotatingBall]).to({alpha: 0}, 1000, Phaser.Easing.Cubic.Out, true);gameOverTween.onComplete.add(function(){game.state.start("PlayGame");},this)}
}rs = [0x62bd18, 0xffbb00, 0xff5300, 0xd21034, 0xff475c, 0x8f16b2];window.onload = function() { game = new Phaser.Game(640, 960, Phaser.CANVAS, "");game.state.add("PlayGame", playGame);game.state.start("PlayGame");
}

源码

需要源码请关注添加好友哦^ ^

转载:欢迎来到本站,转载请注明文章出处https://ormcc.com/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/220388.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

grpc 返回错误8, 资源不足

在client调用server的过程中发生了错误8&#xff0c;资源不足 通常由于grpc传递的数据量太大导致&#xff0c;grpc 默认通信长度为 4M( 4 * 1024 * 1024 )&#xff0c; 而我们传递的数据长度将近50Mb。所以需要调整服务端接收消息的最大长度 grpc::ServerBuilder builder;buil…

Gin之GORM 查询语句

前期工作可以看之前的&#xff08;连接数据库&#xff1b;以及确定要操作的库&#xff09; Gin之GORM 操作数据库&#xff08;MySQL&#xff09;-CSDN博客https://blog.csdn.net/m0_72264240/article/details/134948202?spm1001.2014.3001.5502这次我们操作gin库下的另外一个…

Android--Jetpack--数据库Room详解二

本是青灯不归客&#xff0c;却因浊酒恋红尘 一&#xff0c;基本使用 关于Room数据库的基本使用&#xff0c;请参考文章Android--Jetpack--数据库Room详解一-CSDN博客 二&#xff0c;Room与ViewModle,LiveData的结合使用 LiveData与ViewModle的使用&#xff0c;请参考文章Andr…

文章解读与仿真程序复现思路——电力系统自动化EI\CSCD\北大核心《考虑移动式储能调度的配电网灾后多源协同孤岛运行策略》

这篇文章的标题表明研究的主题是在配电网发生灾害后&#xff0c;采用一种策略来实现多源协同孤岛运行&#xff0c;并在这个过程中特别考虑了移动式储能的调度。 让我们逐步解读标题的关键词&#xff1a; 考虑移动式储能调度&#xff1a; 文章关注的焦点之一是移动式储能系统的…

国标GB28181安防监控系统/磁盘阵列EasyCVR(V.3.4)新亮点:免保活功能

TSINGSEE青犀近日发布了EasyCVR安防管理平台的V.3.4版本&#xff0c;其中一大亮点就是很多朋友都在咨询的“免保活”功能&#xff0c;那么&#xff0c;什么是“免保活”功能&#xff1f;又该如何配置呢&#xff1f; 在EasyCVR平台有个【按需直播】按钮&#xff0c;顾名思义&…

ARM流水灯

.text .global _start _start: LED1 1.RCC时钟使能GPIOE RCC_MP_AHB4ENSETR[4]->1 LDR R0,0x50000a28 LDR R1,[R0] ORR R1,R1,#(0x1<<4) STR R1,[R0] 2.设置PE10为输出模式 GPIOE_MODER[21:20]->01 先清0 LDR R0,0x50006000 LDR R1,[R0] BIC R1,R1,#(0x3<&…

Linux | 多线程

前言 本文主要介绍多线程基础知识&#xff0c;以及使用多线程技术进行并发编程&#xff1b;最后会介绍生产者消费者模型&#xff1b; 一、线程基本认识 1、什么是线程 如果你是科班出生&#xff0c;你肯定听过线程相关概念&#xff1b;但是你可能没有真正搞懂什么是线程&#…

练基础忆基础打好基础:68个 Python 内置函数搞搞清楚

内置函数就是Python给你提供的, 拿来直接用的函数&#xff0c;比如print&#xff0c;input等。 截止到python版本3.6.2 &#xff0c;一共提供了68个内置函数&#xff0c;具体如下&#x1f447; abs() dict() help() min() setattr() all() …

集群监控Zabbix和Prometheus

文章目录 一、Zabbix入门概述1、Zabbix概述2、Zabbix 基础架构3、Zabbix部署3.1 前提环境准备3.2 安装Zabbix3.3 配置Zabbix3.4 启动停止Zabbix 二、Zabbix的使用与集成1、Zabbix常用术语2、Zabbix实战2.1 创建Host2.2 创建监控项&#xff08;Items&#xff09;2.3 创建触发器&…

以太网协议与DNS

以太网协议 以太网协议DNS 以太网协议 以太网用于在计算机和其他网络设备之间传输数据,以太网既包含了数据链路层的内容,也包含了物理层的内容. 以太网数据报: 其中目的IP和源IP不是网络层的目的IP和源IP,而是mac地址.网络层的主要负责是整体的转发过程,数据链路层负责的是局…

Data Mining数据挖掘—2. Classification分类

3. Classification Given a collection of records (training set) – each record contains a set of attributes – one of the attributes is the class (label) that should be predicted Find a model for class attribute as a function of the values of other attribu…

Vue3中使用tinymce, tinymce上传图片,tinymce使用emoji表情

1.效果图 2. 安装 npm i tinymce npm i tinymce/tinymce-vue在node_modules文件夹中找到tinymce下的skins复制到项目public文件夹中子组件 <template><editor v-model"myValue" :init"init" :disabled"disabled" :id"tinymceId&…

小型洗衣机哪个牌子质量好?五款高性价比内衣洗衣机推荐

随着内衣洗衣机的流行&#xff0c;很多小伙伴在纠结该不该入手一款内衣洗衣机&#xff0c;专门来洗一些贴身衣物&#xff0c;答案是非常有必要的&#xff0c;因为我们现在市面上的大型洗衣机只能做清洁&#xff0c;无法对我们的贴身衣物进行一个高强度的清洁&#xff0c;而小小…

浅谈 USB Bulk 深入浅出 (3) - USB Bulk 装置传输的注意事项

来源&#xff1a;大大通 作者&#xff1a;冷氣團 1 USB Bulk 是什么 USB 是即插即用使用差动信号的装置界面&#xff0c;是以 端点 ( Endpoint )&#xff0c;做为传输装置的输出入端&#xff0c;透过不同的端点 ( Endpoint ) 和模式&#xff0c;来进行与装置的沟通&#xff…

antv - G6 绘制1:N N:1 跨节点的graph

文章目录 hover时候&#xff0c;当前节点高亮&#xff0c;且直接相连的线和节点也高亮展示&#xff08;展示直接关系&#xff09;节点的label超过10个字的时候&#xff0c;文本溢出&#xff0c;且hover有tooltip&#xff1b;小于10个字&#xff0c;没有tooltiptootip使用插件mo…

getchar的功能和用法

getchar()是C语言中的一个标准库函数&#xff0c;用于从标准输入&#xff08;通常是键盘&#xff09;读取一个字符&#xff0c;并将其作为int类型返回。它通常用于从键盘获取用户输入。 getchar()函数在程序中等待用户输入&#xff0c;当用户输入一个字符并按下回车键后&#…

vue3+ts+vite+element plus 实现table勾选、点击单行都能实现多选

需求&#xff1a;table的多选栏太小&#xff0c;点击的时候要瞄着点&#xff0c;不然选不上&#xff0c;要求实现点击单行实现勾选 <ElTableborder:data"tableDataD"style"width: 100%"max-height"500"ref"multipleTableRef"selec…

RMAN执行crosscheck archivelog出现ORA-19633错误

1.错误现象 RMAN> crosscheck archivelog all;RMAN-03009: failure of crosscheck command on ORA DISK 1 channel at 12/13 ORA-19633: control file record 222572 is out ofsync with recovery catalog此问题一般是由于数据库从Windows迁移到linux&#xff0c;导致的归档…

Vue路由跳转重定向动态路由VueCli

Vue路由跳转&重定向&动态路由&VueCli 一、声明式导航-导航链接 1.需求 实现导航高亮效果 如果使用a标签进行跳转的话&#xff0c;需要给当前跳转的导航加样式&#xff0c;同时要移除上一个a标签的样式&#xff0c;太麻烦&#xff01;&#xff01;&#xff01; …

做题总结 160.链表相交

160.链表相交 我的思路代码改进 LeetCode&#xff1a;给你两个单链表的头节点 headA 和 headB &#xff0c;请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点&#xff0c;返回 null 。 我的思路 计算链表A、B的长度count1、count2。临时指针curA、curB要同时指向…