实现子弹, 可以指定发射位置, 发发射角度, 有方向, 可以反弹

2024-02-23 14:48

本文主要是介绍实现子弹, 可以指定发射位置, 发发射角度, 有方向, 可以反弹,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

void CreateObstacleCopy::flyAction()
{int currentPositionX = getPositionX();//当前坐标int currentPositionY = getPositionY();speed = CCRANDOM_0_1() *500+200;//随机速度Point destinationPosition;int tempY = directionY;if (directionY >0)//向上运动{float areaHeight = visibleSize.height-currentPositionY;//获取飞行区域高度float getRandom = CCRANDOM_0_1() *(visibleSize.width+areaHeight*2);//随机左上右的一个位置if(getRandom >areaHeight+visibleSize.width)//飞行最后触碰到左边的位置{destinationPosition = Point( 0 , visibleSize.height-(getRandom - visibleSize.width-areaHeight));directionY=1;}else if(getRandom>areaHeight)//飞行最后触碰到上边的位置{destinationPosition = Point( getRandom-areaHeight , visibleSize.height);directionY = -1;}else//飞行最后触碰到右边的位置{destinationPosition = Point(visibleSize.width,  visibleSize.height-getRandom);directionY = 1;}//log("up");}else//向下运动{float areaHeight = currentPositionY;float getRandom = CCRANDOM_0_1() *(visibleSize.width+areaHeight*2);//随机左下右的一个位置if(getRandom >areaHeight+visibleSize.width)//飞行最后触碰到左边的位置{destinationPosition = Point( 0 , getRandom - visibleSize.width-areaHeight);directionY= -1;}else if(getRandom>areaHeight)//飞行最后触碰到下边的位置{destinationPosition = Point( getRandom-areaHeight , 0);directionY = 1;}else//飞行最后触碰到右边的位置{destinationPosition = Point(visibleSize.width, getRandom);directionY =-1;}//log("down");}float width = destinationPosition.x- currentPositionX;float heigth = destinationPosition.y - currentPositionY;//得到当前对象到目的地的矢量高float lenght = sqrt(width*width+heigth*heigth);//长度float radian = atan(width/ heigth);//h弧度float angle = (radian*360)/(2*3.141592);//化成角度了if(tempY<0) angle=180+angle;float during = lenght / speed;//飞行时间FiniteTimeAction* actionMoveTo = MoveTo::create(during,destinationPosition);//移动动画CallFunc * funcall= CallFunc::create(this, callfunc_selector(CreateObstacleCopy::animationDone));FiniteTimeAction* actionRotateTo = RotateTo::create(0.2,angle);//旋转动画FiniteTimeAction* task = Sequence::create(actionRotateTo, actionMoveTo,funcall, NULL);runAction(task);
}void CreateObstacleCopy::animationDone()//动画结束后调用该函数
{//isCreate = false;flyAction();
}void CreateObstacleCopy::firstLaunch()
{Point destinationPosition;//左上角到对象的角度float radian = atan(-getPositionX()/ (visibleSize.height-getPositionY()));//h弧度float angleUpLeft = (radian*360)/(2*3.141592);//化成角度了radian = atan((visibleSize.width-getPositionX())/ (visibleSize.height-getPositionY()));//h弧度float angleUpRight = (radian*360)/(2*3.141592);//化成角度了radian = atan( (getPositionY())/(visibleSize.width-getPositionX()));//h弧度float angleDownRight = (radian*360)/(2*3.141592)+90;//化成角度了radian = atan(float(getPositionY())/ float(getPositionX()));//h弧度float angleDownLeft = -(radian*360)/(2*3.141592)-90;//化成角度了int angle = launchAngle;//传进来的方向if (angle>360+angleDownLeft)//角度转换,因为这的角度有负数,传进来的角度是正数{angle = angle - 360;}if (angleDownLeft<=angle &&angle<angleUpLeft){float width =  getPositionX();float heigth = width/tan((launchAngle) *2*3.1415/360);//长不变, 算高destinationPosition.x = 0;destinationPosition.y = getPositionY()-heigth;//得到目的地位置float lenght = sqrt(width*width+heigth*heigth);speed = CCRANDOM_0_1() *200+500;float during = lenght / speed;//动画时间FiniteTimeAction* actionMoveTo = MoveTo::create(during,destinationPosition);//创建移动动画CallFunc * funcall= CallFunc::create(this, callfunc_selector(CreateObstacleCopy::animationDone));FiniteTimeAction* actionRotateTo = RotateTo::create(0.2,launchAngle);//旋转动画FiniteTimeAction* task = Sequence::create(actionRotateTo, actionMoveTo,funcall, NULL);runAction(task);}else if(angleUpLeft<=angle &&angle<angleUpRight){float heigth = visibleSize.height - getPositionY();float width = heigth*tan(launchAngle *2*3.1415/360);destinationPosition.x = getPositionX()+width;destinationPosition.y = visibleSize.height;directionY = -1;float lenght = sqrt(width*width+heigth*heigth);speed = CCRANDOM_0_1() *200+500;float during = lenght / speed;FiniteTimeAction* actionMoveTo = MoveTo::create(during,destinationPosition);CallFunc * funcall= CallFunc::create(this, callfunc_selector(CreateObstacleCopy::animationDone));FiniteTimeAction* actionRotateTo = RotateTo::create(0.2,launchAngle);FiniteTimeAction* task = Sequence::create(actionRotateTo, actionMoveTo,funcall, NULL);runAction(task);}else if(angleUpRight<=angle &&angle<angleDownRight){float width = visibleSize.width - getPositionX();float heigth = width*tan((launchAngle-90) *2*3.1415/360);destinationPosition.x = visibleSize.width;destinationPosition.y = getPositionY()-heigth;float lenght = sqrt(width*width+heigth*heigth);speed = CCRANDOM_0_1() *200+500;float during = lenght / speed;FiniteTimeAction* actionMoveTo = MoveTo::create(during,destinationPosition);CallFunc * funcall= CallFunc::create(this, callfunc_selector(CreateObstacleCopy::animationDone));FiniteTimeAction* actionRotateTo = RotateTo::create(0.2,launchAngle);FiniteTimeAction* task = Sequence::create(actionRotateTo, actionMoveTo,funcall, NULL);runAction(task);}else{float heigth = getPositionY();float width = heigth*tan((launchAngle-180) *2*3.1415/360);destinationPosition.x = getPositionX()-width;destinationPosition.y = 0;float lenght = sqrt(width*width+heigth*heigth);directionY = 1;speed = 500;float during = lenght / speed;FiniteTimeAction* actionMoveTo = MoveTo::create(during,destinationPosition);CallFunc * funcall= CallFunc::create(this, callfunc_selector(CreateObstacleCopy::animationDone));FiniteTimeAction* actionRotateTo = RotateTo::create(0.2,launchAngle);FiniteTimeAction* task = Sequence::create(actionRotateTo, actionMoveTo,funcall, NULL);runAction(task);}}

这篇关于实现子弹, 可以指定发射位置, 发发射角度, 有方向, 可以反弹的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/738984

相关文章

Spring Boot 实现 IP 限流的原理、实践与利弊解析

《SpringBoot实现IP限流的原理、实践与利弊解析》在SpringBoot中实现IP限流是一种简单而有效的方式来保障系统的稳定性和可用性,本文给大家介绍SpringBoot实现IP限... 目录一、引言二、IP 限流原理2.1 令牌桶算法2.2 漏桶算法三、使用场景3.1 防止恶意攻击3.2 控制资源

springboot下载接口限速功能实现

《springboot下载接口限速功能实现》通过Redis统计并发数动态调整每个用户带宽,核心逻辑为每秒读取并发送限定数据量,防止单用户占用过多资源,确保整体下载均衡且高效,本文给大家介绍spring... 目录 一、整体目标 二、涉及的主要类/方法✅ 三、核心流程图解(简化) 四、关键代码详解1️⃣ 设置

Nginx 配置跨域的实现及常见问题解决

《Nginx配置跨域的实现及常见问题解决》本文主要介绍了Nginx配置跨域的实现及常见问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来... 目录1. 跨域1.1 同源策略1.2 跨域资源共享(CORS)2. Nginx 配置跨域的场景2.1

Python中提取文件名扩展名的多种方法实现

《Python中提取文件名扩展名的多种方法实现》在Python编程中,经常会遇到需要从文件名中提取扩展名的场景,Python提供了多种方法来实现这一功能,不同方法适用于不同的场景和需求,包括os.pa... 目录技术背景实现步骤方法一:使用os.path.splitext方法二:使用pathlib模块方法三

CSS实现元素撑满剩余空间的五种方法

《CSS实现元素撑满剩余空间的五种方法》在日常开发中,我们经常需要让某个元素占据容器的剩余空间,本文将介绍5种不同的方法来实现这个需求,并分析各种方法的优缺点,感兴趣的朋友一起看看吧... css实现元素撑满剩余空间的5种方法 在日常开发中,我们经常需要让某个元素占据容器的剩余空间。这是一个常见的布局需求

HTML5 getUserMedia API网页录音实现指南示例小结

《HTML5getUserMediaAPI网页录音实现指南示例小结》本教程将指导你如何利用这一API,结合WebAudioAPI,实现网页录音功能,从获取音频流到处理和保存录音,整个过程将逐步... 目录1. html5 getUserMedia API简介1.1 API概念与历史1.2 功能与优势1.3

Java实现删除文件中的指定内容

《Java实现删除文件中的指定内容》在日常开发中,经常需要对文本文件进行批量处理,其中,删除文件中指定内容是最常见的需求之一,下面我们就来看看如何使用java实现删除文件中的指定内容吧... 目录1. 项目背景详细介绍2. 项目需求详细介绍2.1 功能需求2.2 非功能需求3. 相关技术详细介绍3.1 Ja

使用Python和OpenCV库实现实时颜色识别系统

《使用Python和OpenCV库实现实时颜色识别系统》:本文主要介绍使用Python和OpenCV库实现的实时颜色识别系统,这个系统能够通过摄像头捕捉视频流,并在视频中指定区域内识别主要颜色(红... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间详解

PostgreSQL中MVCC 机制的实现

《PostgreSQL中MVCC机制的实现》本文主要介绍了PostgreSQL中MVCC机制的实现,通过多版本数据存储、快照隔离和事务ID管理实现高并发读写,具有一定的参考价值,感兴趣的可以了解一下... 目录一 MVCC 基本原理python1.1 MVCC 核心概念1.2 与传统锁机制对比二 Postg

SpringBoot整合Flowable实现工作流的详细流程

《SpringBoot整合Flowable实现工作流的详细流程》Flowable是一个使用Java编写的轻量级业务流程引擎,Flowable流程引擎可用于部署BPMN2.0流程定义,创建这些流程定义的... 目录1、流程引擎介绍2、创建项目3、画流程图4、开发接口4.1 Java 类梳理4.2 查看流程图4