android模拟摇杆绘制

2024-06-21 03:38
文章标签 android 模拟 绘制 摇杆

本文主要是介绍android模拟摇杆绘制,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

[java]   view plain copy print ?

  • package com.rp;  
  •   
  • import android.graphics.Canvas;  
  • import android.graphics.Color;  
  • import android.graphics.Paint;  
  •   
  • public class Rocker {   
  • double degreesByNormalSystem = Double.NaN;//一般坐标系下的角度   
  • double rad = Double.NaN;//当前遥感的弧度   
  • int rockerColor = Color.GREEN;  
  • //定义两个圆形的中心点坐标与半径   
  • private static final float rockerCenterXMarginRight4ScreenWidthPercent = 0.05f;//摇杆右边界宽度相对于屏幕宽度百分比   
  • private static final float rockerCenterYMarginBottom4ScreenHeightPercent = 0.05f;//摇杆右边界高度相对于屏幕百分比   
  • private static final float rockerR4ScreenWidthPercent = 0.1f;   
  • private float smallCenterX = 120, smallCenterY = 120, smallCenterR = 20;  
  • private float BigCenterX = 120, BigCenterY = 120, BigCenterR = 40;   
  • Paint paint;   
  • /*
  • * 因为要考虑适应屏幕,所以需要将屏幕宽高放进来
  • * */  
  •   
  • public Rocker(int screenWidth,int screenHeight) {  
  • super();  
  • paint = new Paint();  
  • paint.setAntiAlias(true);   
  • BigCenterR = screenWidth*rockerR4ScreenWidthPercent;   
  • BigCenterX = smallCenterX = screenWidth - BigCenterR*1.5f - rockerCenterXMarginRight4ScreenWidthPercent*screenWidth;  
  • BigCenterY = smallCenterY = screenHeight - BigCenterR*1.5f - rockerCenterYMarginBottom4ScreenHeightPercent*screenHeight;   
  • smallCenterR = BigCenterR/2;  
  • }  
  •   
  • void draw(Canvas canvas){   
  • paint.setColor(rockerColor);  
  • paint.setAlpha(0x77);  
  • canvas.drawCircle(BigCenterX, BigCenterY, BigCenterR, paint);   
  • canvas.drawCircle(smallCenterX, smallCenterY, smallCenterR, paint);   
  • paint.setColor(Color.BLACK);  
  • canvas.drawText("原点在左上坐标系下的弧度:"+rad, 20, 20, paint);  
  • canvas.drawText("由该弧度计算得出角度:"+(rad*180/Math.PI), 20, 40, paint);  
  • canvas.drawText("原点在左下坐标系角度:"+degreesByNormalSystem, 20, 60, paint);   
  • }  
  •   
  •   
  • float getDegrees(float firstX,float firstY,float secondX,float secondY ){   
  • float ret = (float)Math.atan((firstY-secondY)/(firstX-secondX))*180/(float)Math.PI;   
  • if(firstX<secondX){  
  • ret += 180;  
  • }else {  
  • ret += 360;  
  • }  
  • ret = ret >= 360 ? ret - 360: ret;   
  • return ret;  
  • }   
  •   
  • /**  
  • * 小圆针对于大圆做圆周运动时,设置小圆中心点的坐标位置
  • * @param centerX  
  • * 围绕的圆形(大圆)中心点X坐标
  • * @param centerY  
  • * 围绕的圆形(大圆)中心点Y坐标
  • * @param R
  • * 围绕的圆形(大圆)半径
  • * @param rad  
  • * 旋转的弧度  
  • */  
  • public void setSmallCircleXY(float centerX, float centerY, float R, double rad) {  
  • //获取圆周运动的X坐标   
  • smallCenterX = (float) (R * Math.cos(rad)) + centerX;  
  • //获取圆周运动的Y坐标   
  • smallCenterY = (float) (R * Math.sin(rad)) + centerY;  
  • }  
  •   
  • /**
  • * 得到两点之间的弧度
  • * @param px1 第一个点的X坐标
  • * @param py1 第一个点的Y坐标
  • * @param px2 第二个点的X坐标
  • * @param py2 第二个点的Y坐标
  • * @return
  • */  
  • public double getRad(float px1, float py1, float px2, float py2) {  
  • //得到两点X的距离   
  • float dx = px2 - px1;  
  • //得到两点Y的距离   
  • float dy = py1 - py2;  
  • //算出斜边长   
  • float Hypotenuse = (float) Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));  
  • //得到这个角度的余弦值(通过三角函数中的定理 :邻边/斜边=角度余弦值)   
  • float cosAngle = dx / Hypotenuse;  
  • //通过反余弦定理获取到其角度的弧度   
  • float rad = (float) Math.acos(cosAngle);  
  • //当触屏的位置Y坐标<摇杆的Y坐标我们要取反值-0~-180 ????   
  • if (py2 < py1) {  
  • rad = -rad;  
  • }  
  • return rad;  
  • }  
  •   
  • boolean WORKING = false;  
  •   
  • public void reset() {  
  • smallCenterX = BigCenterX;  
  • smallCenterY = BigCenterY;  
  • WORKING = false;  
  • }  
  •   
  • public void update(int pointX,int pointY) {   
  • if(WORKING){   
  • //判断用户点击的位置是否在大圆内   
  • if (Math.sqrt(Math.pow((BigCenterX - pointX), 2) + Math.pow((BigCenterY - pointY), 2)) <= (BigCenterR )) {  
  • //让小圆跟随用户触点位置移动   
  • smallCenterX = pointX;  
  • smallCenterY = pointY;   
  • this.rad = getRad(BigCenterX, BigCenterY, pointX, pointY);   
  • }   
  • else {   
  • this.rad = getRad(BigCenterX, BigCenterY, pointX, pointY);   
  • setSmallCircleXY(BigCenterX, BigCenterY, BigCenterR, rad);  
  • }   
  • degreesByNormalSystem = getDegrees(BigCenterX,BigCenterY,smallCenterX,smallCenterY);   
  • }  
  • }  
  •   
  • public void begin(int pointX,int pointY) {  
  • if (Math.sqrt(Math.pow((BigCenterX - pointX), 2) + Math.pow((BigCenterY - pointY), 2)) <= (BigCenterR )) {  
  • WORKING = true;  
  • update(pointX,pointY);  
  • } else{  
  • WORKING = false;  
  • }  
  • }   
  • }


这类方法很多,网上一大堆,我给大家找了一个,但是这个还没完善如何判断按键是左还是右。于是我加了点自己的笨方法,有好的方法大家评论指出,谢谢


[mw_shl_code=java,true]#include "cocos2d.h" 
using namespace cocos2d; 

class Joystick : 
public CCLayer 
{//本文出自小柒的博客<A >http://blog.csdn.net/cq361106306</A> [/mw_shl_code]

[mw_shl_code=java,true]public: 
Joystick(void); 
~Joystick(void); 
public: 
CCPoint centerPoint; // 摇杆中心 
CCPoint currentPoint; // 摇杆当前位置 
bool active; // 是否激活摇杆 
float radius; // 摇杆半径 
CCSprite *jsSprite; // 摇杆实例 

//************************************ 
// Method: Active 
// FullName: Joystick::Active 
// Access: public 
// Returns: void 
// Qualifier: 设置摇杆功能可用 
//************************************ 
void Active(); 
//************************************ 
// Method: Inactive 
// FullName: Joystick::Inactive 
// Access: public 
// Returns: void 
// Qualifier: 设置摇杆功能不可用 
//************************************ 
void Inactive(); 
//************************************ 
// Method: getDirection 
// FullName: Joystick::getDirection 
// Access: public 
// Returns: cocos2d::CCPoint 
// Qualifier: 获取摇杆方向,这里返回的是单位向量 
//************************************ 
CCPoint getDirection(); 
//************************************ 
// Method: getVelocity 
// FullName: Joystick::getVelocity 
// Access: public 
// Returns: float 
// Qualifier: 获取摇杆的力度 
//************************************ 
float getVelocity(); 
//************************************ 
// Method: updatePos 
// FullName: Joystick::updatePos 
// Access: public 
// Returns: void 
// Qualifier: 刷新函数,交给日程管理器 
// Parameter: ccTime dt 
//************************************ 
void updatePos(ccTime dt); 

//************************************ 
// Method: JoystickWithCenter 
// FullName: Joystick::JoystickWithCenter 
// Access: public static 
// Returns: Joystick* 
// Qualifier: 初始化摇杆 
// Parameter: CCPoint aPoint 摇杆中心 
// Parameter: float aRadius 摇杆半径 
// Parameter: CCSprite * aJsSprite 摇杆控制点 
// Parameter: CCSprite * aJsBg 摇杆背景 
//************************************ 
static Joystick* JoystickWithCenter(CCPoint aPoint, float aRadius, CCSprite* aJsSprite, CCSprite* aJsBg); 
Joystick* initWithCenter(CCPoint aPoint, float aRadius, CCSprite* aJsSprite, CCSprite* aJsBg); 

// 以下是复写Touch响应函数 
virtual bool ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent); 
virtual void ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent); 
virtual void ccTouchEnded(CCTouch *pTouch, CCEvent *pEvent); 

LAYER_NODE_FUNC(Joystick); 
};[/mw_shl_code]

[mw_shl_code=java,true]#include "myCircle.h" 

Joystick::Joystick(void) 



Joystick::~Joystick(void) 



void Joystick::updatePos(ccTime dt) 

jsSprite->setPosition(ccpAdd(jsSprite->getPosition(), ccpMult(ccpSub(currentPoint, jsSprite->getPosition()), 0.5))); 


void Joystick::Active() 

if(!active) 

active = true; 
schedule(schedule_selector(Joystick::updatePos)); // 添加刷新函数 
CCTouchDispatcher::sharedDispatcher()->addTargetedDelegate(this, 0, false); // 添加触摸委托 



void Joystick::Inactive() 

if(active) 

active = false; 
this->unschedule(schedule_selector(Joystick::updatePos)); // 删除刷新函数 
CCTouchDispatcher::sharedDispatcher()->removeDelegate(this); // 删除委托 



bool Joystick::ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent) 

if(!active) 
return false; 

CCPoint touchPoint = pTouch->locationInView(pTouch->view()); 
touchPoint = CCDirector::sharedDirector()->convertToGL(touchPoint); 
if(ccpDistance(touchPoint, centerPoint) > radius) 
return false; 

currentPoint = touchPoint; 
return true; 


void Joystick::ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent) 

CCPoint touchPoint = pTouch->locationInView(pTouch->view()); 
touchPoint = CCDirector::sharedDirector()->convertToGL(touchPoint); 
if(ccpDistance(touchPoint, centerPoint) > radius) 

currentPoint = ccpAdd(centerPoint, ccpMult(ccpNormalize(ccpSub(touchPoint, centerPoint)), radius)); 

else

currentPoint = touchPoint; 



void Joystick::ccTouchEnded(CCTouch *pTouch, CCEvent *pEvent) 

currentPoint = centerPoint; 


CCPoint Joystick::getDirection() 

return ccpNormalize(ccpSub(centerPoint, currentPoint)); 


float Joystick::getVelocity() 

return ccpDistance(centerPoint, currentPoint); 


Joystick* Joystick:: JoystickWithCenter(CCPoint aPoint, float aRadius, CCSprite* aJsSprite, CCSprite* aJsBg) 

Joystick *jstick=Joystick::node(); 
jstick->initWithCenter(aPoint,aRadius,aJsSprite,aJsBg); 

return jstick; 


Joystick* Joystick::initWithCenter(CCPoint aPoint, float aRadius, CCSprite* aJsSprite, CCSprite* aJsBg) 

active = false; 
radius = aRadius; 
centerPoint = aPoint; 
currentPoint = centerPoint; 
jsSprite = aJsSprite; 
jsSprite->setPosition(centerPoint); 
aJsBg->setPosition(centerPoint); 
this->addChild(jsSprite); 
this->addChild(aJsBg); 

return this; 
}[/mw_shl_code]

下面给大家调用这个东西的效果


[mw_shl_code=java,true]//判断方向
CCPoint direct=myCircle->getDirection();
CCPoint right=CCPoint(1,0);
CCPoint left=CCPoint(-1,0);
if(ccpAngle(direct,left)<0.707 &&myCircle->currentPoint.x>myCircle->centerPoint.x)
{
CCLog("left");
}
if(ccpAngle(direct,right)<0.707&&myCircle->currentPoint.x<myCircle->centerPoint.x)
{
CCLog("right");

[/mw_shl_code]

这篇关于android模拟摇杆绘制的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

【WebGPU Unleashed】1.1 绘制三角形

一部2024新的WebGPU教程,作者Shi Yan。内容很好,翻译过来与大家共享,内容上会有改动,加上自己的理解。更多精彩内容尽在 dt.sim3d.cn ,关注公众号【sky的数孪技术】,技术交流、源码下载请添加微信号:digital_twin123 在 3D 渲染领域,三角形是最基本的绘制元素。在这里,我们将学习如何绘制单个三角形。接下来我们将制作一个简单的着色器来定义三角形内的像素

Flutter 进阶:绘制加载动画

绘制加载动画:由小圆组成的大圆 1. 定义 LoadingScreen 类2. 实现 _LoadingScreenState 类3. 定义 LoadingPainter 类4. 总结 实现加载动画 我们需要定义两个类:LoadingScreen 和 LoadingPainter。LoadingScreen 负责控制动画的状态,而 LoadingPainter 则负责绘制动画。

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

hdu4431麻将模拟

给13张牌。问增加哪些牌可以胡牌。 胡牌有以下几种情况: 1、一个对子 + 4组 3个相同的牌或者顺子。 2、7个不同的对子。 3、13幺 贪心的思想: 对于某张牌>=3个,先减去3个相同,再组合顺子。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOExcepti

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点