Android 仿doodle jump小游戏

这个游戏的逻辑主要在上升和下降以及触碰原理

图片:
4eb3cc2601e30b38736028f1ed4ba31.jpg
20190523_094047.gif

没有做开始游戏 暂停游戏 和结束游戏,但是主要逻辑全部都做出来了

思路,那个类创建的数据那个类管理

链式模拟Android 的Handler做出来的

d代码如下:

   //存入梯子数据
    public void saveInitData(LadderData ladderData) {


        if (mLadderData == null) {

            mLadderData = ladderData;
            //mLadderData.setIndex(mLadderData.getIndex() == 0 ? 0 : -1);

        } else {

            LadderData ladderData1 = new LadderData();

            ladderData1.setLadderX(ladderData.getLadderX());

            ladderData1.setLadderY(ladderData.getLadderY());

            ladderData1.setmLadderData(mLadderData);


            mLadderData = ladderData1;


        }

        initIndex();
    }

这块逻辑是类似于一个个引用在一块,Handler的代码逻辑:

  Message next() {
        // Return here if the message loop has already quit and been disposed.
        // This can happen if the application tries to restart a looper after quit
        // which is not supported.
        final long ptr = mPtr;
        if (ptr == 0) {
            return null;
        }

        int pendingIdleHandlerCount = -1; // -1 only during first iteration
        int nextPollTimeoutMillis = 0;
        for (;;) {
            if (nextPollTimeoutMillis != 0) {
                Binder.flushPendingCommands();
            }

            nativePollOnce(ptr, nextPollTimeoutMillis);

            synchronized (this) {
                // Try to retrieve the next message.  Return if found.
                final long now = SystemClock.uptimeMillis();
                Message prevMsg = null;
                Message msg = mMessages;
                if (msg != null && msg.target == null) {
                    // Stalled by a barrier.  Find the next asynchronous message in the queue.
                    do {
              //-------------------------------------------------------------------------------------------------------------------------
            
                        prevMsg = msg;

                //这块↓↓
                        msg = msg.next;
                    } while (msg != null && !msg.isAsynchronous());
                }
                if (msg != null) {
                    if (now < msg.when) {
                        // Next message is not ready.  Set a timeout to wake up when it is ready.
                        nextPollTimeoutMillis = (int) Math.min(msg.when - now, Integer.MAX_VALUE);
                    } else {
                        // Got a message.
                        mBlocked = false;
                        if (prevMsg != null) {
                            prevMsg.next = msg.next;
                        } else {

                            mMessages = msg.next;
                        }
                        msg.next = null;
                        if (DEBUG) Log.v(TAG, "Returning message: " + msg);
                        msg.markInUse();
                        return msg;
                    }
                } else {
                    // No more messages.
                    nextPollTimeoutMillis = -1;
                }

                // Process the quit message now that all pending messages have been handled.
                if (mQuitting) {
                    dispose();
                    return null;
                }

                // If first time idle, then get the number of idlers to run.
                // Idle handles only run if the queue is empty or if the first message
                // in the queue (possibly a barrier) is due to be handled in the future.
                if (pendingIdleHandlerCount < 0
                        && (mMessages == null || now < mMessages.when)) {
                    pendingIdleHandlerCount = mIdleHandlers.size();
                }
                if (pendingIdleHandlerCount <= 0) {
                    // No idle handlers to run.  Loop and wait some more.
                    mBlocked = true;
                    continue;
                }

                if (mPendingIdleHandlers == null) {
                    mPendingIdleHandlers = new IdleHandler[Math.max(pendingIdleHandlerCount, 4)];
                }
                mPendingIdleHandlers = mIdleHandlers.toArray(mPendingIdleHandlers);
            }

            // Run the idle handlers.
            // We only ever reach this code block during the first iteration.
            for (int i = 0; i < pendingIdleHandlerCount; i++) {
                final IdleHandler idler = mPendingIdleHandlers[i];
                mPendingIdleHandlers[i] = null; // release the reference to the handler

                boolean keep = false;
                try {
                    keep = idler.queueIdle();
                } catch (Throwable t) {
                    Log.wtf(TAG, "IdleHandler threw exception", t);
                }

                if (!keep) {
                    synchronized (this) {
                        mIdleHandlers.remove(idler);
                    }
                }
            }

            // Reset the idle handler count to 0 so we do not run them again.
            pendingIdleHandlerCount = 0;

            // While calling an idle handler, a new message could have been delivered
            // so go back and look again for a pending message without waiting.
            nextPollTimeoutMillis = 0;
        }
    }

a363f102f2e7efffde3f9ec003210bb.png

根据这个原理,它官方这个就是一个套一个

这个是重力加速度,复习了一下初中知识啊啊啊啊。。。。。。。

    /**
     * 返回抛物位置
     *
     * @return
     */

    private double getParabolic(long time) {


        return mV * (time * 0.001) - (0.5 * g * ((time * 0.001) * (time * 0.001)));


    }

    /**
     * 返回重力坐标
     *
     * @param time
     * @return
     */

    private double gravityM(long time) {


        return 0.5 * g * kg * ((time * 0.001) * (time * 0.001));
    }

主要控制阶梯往上移在这块:

 //开始弹跳

    private void startJumpUp() {


        final int[] x = {0};

        new Thread(new Runnable() {
            @Override
            public void run() {


                while (true) {

                    try {
                        Thread.sleep(5);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    x[0]++;

                    if (arrayListladder != null && arrayListladder.size() > 0) {

                        for (int i = 0; i < arrayListladder.size(); i++) {


                            arrayListladder.get(i).setLadderY(arrayListladder.get(i).getLadderY() + x[0]);


                        }

                    }

                    if (x[0] > 40) {
                        break;
                    }


                }

            }
        }).start();

    }

这块是链式最RAO的一段,可能网络上的大神一下就看明白了,哈哈哈

 //删除最后一个

    private void deleteLast() {

        if (mLadderData == null) {

            return;
        } else {


            LadderData temp = mLadderData;
            LadderData temp2 = null;
            if (mLadderData.getmLadderData() == null) {
                mLadderData = null;
            }


            while (true) {

                if (temp == null) {

                    if (temp2 != null) {
                        temp2.setmLadderData(null);
                    } else {
                        mLadderData = null;
                    }

                    break;
                }

                if (temp != null && temp.getmLadderData() != null)
                    temp2 = temp;
                temp = temp.getmLadderData();


            }

            // showData();

            initIndex();


        }


    }

碰撞的检测功能类

 public void collision(ArrayList<LadderTempData> arrayList, int mLocationY, int x, GravityThread gravityThread, Context mContext) {

        garr.clear();

        for (int i = 0; i < arrayList.size(); i++) {
            LadderTempData ladderTempData = arrayList.get(i);
            int ladderY = ladderTempData.getLadderY();

            if (ladderY > 0) {
                garr.add(ladderTempData);

            }

            if (arrayList.size() < 5) {

                Ladder.temp.addAll(arrayList);
                arrayList.clear();


                Ladder.getInstance().initData(mContext);
                return;
            }

            if (arrayList.get(i).getLadderY() > mContext.getResources().getDisplayMetrics().heightPixels) {

                LadderTempData remove = arrayList.remove(i);
                i--;

            }

        }


        for (int i = 0; i < garr.size(); i++) {


            LadderTempData ladderTempData = garr.get(i);

            int ladderY = ladderTempData.getLadderY();
            int ladderX = ladderTempData.getLadderX();

            Log.e("坐标 X", "x:" + x + " ladderX:" + ladderX + " stopladderX:" + (ladderX + 300));
            Log.e("坐标 Y", "t:" + (ladderY + 5) + " b:" + (ladderY - 5) + " mLocationY:" + mLocationY);

            if (mLocationY < (ladderY + 50) && mLocationY > (ladderY - 50) && x > (ladderX - 40) && x < (ladderX + 300)) {

                gravityThread.height = ladderY + 20;

                Log.e("坐标", "--------------------------");
                break;

            } else {

                gravityThread.initX();
            }


            //ladderY 底部坐标
            //ladderY -40 顶部坐标
            //ladderX 左部坐标
            // ladderX + 300右部坐标


           /* int t = ladderY - 50;
            int b = ladderY;


            int l = ladderX;
            int r = ladderX + 300;

            int pY = mLocationY;
            int pX = x;

            Log.e("坐标", "top: " + (ladderY - 50) + " b:" + b + " mLocationY:" + mLocationY);

            if (pY < b && pY > t && pX > l && pY < r) {
                gravityThread.height = ladderY + 20;

                break;
            } else {
                gravityThread.initX();
            }
*/
        }


    }

类的主要说明

类说明:
XHApplication : 主要的Context
Accelerometer: 方向重力控制类
ControlTheCollision : 碰撞控制类
Gravity:   重力控制类
GravityThread : 重力控制线程
Ladder:梯子数据制造者
GameMainView:绘画

Demo:https://github.com/hanxinhao000/jumpgame

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345