Android實現遊戲搖杆的原始碼

來源:互聯網
上載者:User

這段時間研究Android自訂控制項,遂想起遊戲裡的搖杆的實現挺有意思,於是來自己寫一套熟悉熟悉,關於SurfaceView的特性網上也有很多,故不贅述,反正繪圖用起來挺爽就是了,永遠的告別了JAVA GUI手動實現雙緩衝的時代了……

Android相關內容:

  • Android浮動搜尋方塊開發與配置
  • Android用戶端請求服務端資源教程
  • android操作SQLite增刪改減教程
  • android怎麼實現檔案儲存
  • Android裡的HTML和XML逸出字元大全

import com.game.graphics.utils.MathUtils;
 
 import android.content.Context;
 import android.graphics.Canvas;
 import android.graphics.Color;
 import android.graphics.Paint;
 import android.graphics.PixelFormat;
 import android.graphics.Point;
 import android.graphics.PorterDuff.Mode;
 import android.util.AttributeSet;
 import android.view.MotionEvent;
 import android.view.SurfaceHolder;
 import android.view.SurfaceView;
 import android.view.SurfaceHolder.Callback;
 
 public class Rudder extends SurfaceView implements Runnable,Callback{
 
     private SurfaceHolder mHolder;
     private boolean isStop = false;
     private Thread mThread;
     private Paint  mPaint;
     private Point  mRockerPosition; //搖杆位置
     private Point  mCtrlPoint = new Point(80,80);//搖杆起始位置
     private int    mRudderRadius = 20;//搖杆半徑
     private int    mWheelRadius = 60;//搖杆活動範圍半徑
     private RudderListener listener = null; //事件回調介面
     public static final int ACTION_RUDDER = 1 , ACTION_ATTACK = 2; // 1:搖杆事件 2:按鈕事件(未實現)
    
     public Rudder(Context context) {
         super(context);
     }
    
     public Rudder(Context context, AttributeSet as) {
         super(context, as);
         this.setKeepScreenOn(true);
         mHolder = getHolder();
         mHolder.addCallback(this);
         mThread = new Thread(this);
         mPaint = new Paint();
         mPaint.setColor(Color.GREEN);
         mPaint.setAntiAlias(true);//消除鋸齒
         mRockerPosition = new Point(mCtrlPoint);
         setFocusable(true);
         setFocusableInTouchMode(true);
         setZOrderOnTop(true);
         mHolder.setFormat(PixelFormat.TRANSPARENT);//設定背景透明
     }
    
     //設定回調介面
     public void setRudderListener(RudderListener rockerListener) {
         listener = rockerListener;
     }
 
     @Override
     public void run() {
         Canvas canvas = null;
         while(!isStop) {
             try {
                 canvas = mHolder.lockCanvas();
                 canvas.drawColor(Color.TRANSPARENT,Mode.CLEAR);//清除螢幕
                 mPaint.setColor(Color.CYAN);
                 canvas.drawCircle(mCtrlPoint.x, mCtrlPoint.y, mWheelRadius, mPaint);//繪製範圍
                 mPaint.setColor(Color.RED);
                 canvas.drawCircle(mRockerPosition.x, mRockerPosition.y, mRudderRadius, mPaint);//繪製搖杆
             } catch (Exception e) {
                 e.printStackTrace();
             } finally {
                 if(canvas != null) {
                     mHolder.unlockCanvasAndPost(canvas);
                 }
             }
             try {
                 Thread.sleep(30);
             } catch (InterruptedException e) {
                 e.printStackTrace();
             }
         }
     }
    
     @Override
     public void surfaceChanged(SurfaceHolder holder, int format, int width,
             int height) {
        
     }
 
     @Override
     public void surfaceCreated(SurfaceHolder holder) {
         mThread.start();
     }
 
     @Override
     public void surfaceDestroyed(SurfaceHolder holder) {
         isStop = true;
     }
    
     @Override
     public boolean onTouchEvent(MotionEvent event) {
         int len = MathUtils.getLength(mCtrlPoint.x, mCtrlPoint.y, event.getX(), event.getY());
         if(event.getAction() == MotionEvent.ACTION_DOWN) {
             //如果螢幕接觸點不在搖杆揮動範圍內,則不處理
             if(len >mWheelRadius) {
                 return true;
             }
         }
         if(event.getAction() == MotionEvent.ACTION_MOVE){
             if(len <= mWheelRadius) {
                 //如果手指在搖杆活動範圍內,則搖杆處於手指觸摸位置
                 mRockerPosition.set((int)event.getX(), (int)event.getY());
                
             }else{
                 //設定搖杆位置,使其處於手指觸摸方向的 搖杆活動範圍邊緣
                 mRockerPosition = MathUtils.getBorderPoint(mCtrlPoint,
new Point((int)event.getX(), (int)event.getY()), mWheelRadius);
             }
             if(listener != null) {
                 float radian = MathUtils.getRadian(mCtrlPoint, new Point((int)event.getX(), (int)event.getY()));
                 listener.onSteeringWheelChanged(ACTION_RUDDER,Rudder.this.getAngleCouvert(radian));
             }
         }
         //如果手指離開螢幕,則搖杆返回初始位置
         if(event.getAction() == MotionEvent.ACTION_UP) {
             mRockerPosition = new Point(mCtrlPoint);
         }
         return true;
     }
    
     //擷取搖杆位移角度 0-360°
     private int getAngleCouvert(float radian) {
         int tmp = (int)Math.round(radian/Math.PI*180);
         if(tmp < 0) {
             return -tmp;
         }else{
             return 180 + (180 - tmp);
         }
     }
    
     //回調介面
     public interface RudderListener {
         void onSteeringWheelChanged(int action,int angle);
     }
 }

import android.graphics.Point;
 
 public class MathUtils {
     //擷取兩點間直線距離
     public static int getLength(float x1,float y1,float x2,float y2) {
         return (int)Math.sqrt(Math.pow(x1-x2, 2) + Math.pow(y1-y2, 2));
     }
     /**
      * 擷取線段上某個點的座標,長度為a.x - cutRadius
      * @param a 點A
      * @param b 點B
      * @param cutRadius 截斷距離
      * @return 截斷點
      */
     public static Point getBorderPoint(Point a, Point b,int cutRadius) {
         float radian = getRadian(a, b);
         return new Point(a.x + (int)(cutRadius * Math.cos(radian)), a.x + (int)(cutRadius * Math.sin(radian)));
     }
    
     //擷取水平線夾角弧度
     public static float getRadian (Point a, Point b) {
         float lenA = b.x-a.x;
         float lenB = b.y-a.y;
         float lenC = (float)Math.sqrt(lenA*lenA+lenB*lenB);
         float ang = (float)Math.acos(lenA/lenC);
         ang = ang * (b.y < a.y ? -1 : 1);
         return ang;
     }
 }

 

<?xml version="1.0" encoding="utf-8"?>
 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">
     <ImageView
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:scaleType="fitXY"
         android:src="@drawable/xx"/>
     <RelativeLayout
         android:id="@+id/ctrls"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
          <com.game.demo.views.Rudder
             android:id="@+id/rudder"
             android:layout_width="480dip"
             android:layout_height="160dip"
             android:layout_alignParentBottom="true"
             android:layout_centerHorizontal="true"/>
     </RelativeLayout>
 </FrameLayout>

 

     setContentView(R.layout.main);
         Rudder rudder = (Rudder) findViewById(R.id.rudder);
         rudder.setRudderListener(new RudderListener() {
            
             @Override
             public void onSteeringWheelChanged(int action, int angle) {
                 if(action == Rudder.ACTION_RUDDER) {
                     //TODO:事件實現
                 }
             }
         });

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.