Example #1
0
    // Update is called once per frame
    void Update()
    {
        MouvementHandler mh = GetComponent <MouvementHandler>();

        /*if (mh.isAMovementInProgress() && !mh.isMyMovementInProgress(moveId)) {
         *  Debug.Log("stopped move " + moveId);
         *  return;
         * } else if (state != 0 && !mh.isMyMovementInProgress(moveId))
         *  state = 0;*/

        int goingRightY = mh.goingRight[MouvementHandler.AXE_Y];
        int goingLeftY  = mh.goingLeft[MouvementHandler.AXE_Y];

        if (state == 0)
        {
            //if (!action && ((goingRightY == 0 && goingLeftY == 0) || (goingRightY == -1 && goingLeftY == -1))) {
            //Debug.Log("Right Y && Left Y" + ((goingRightY == 1 && goingLeftY == 1) ? "true" : "false"));
            if (!action && ((goingRightY == 1 && goingLeftY == 1)))
            {
                state         = 1;
                startPosRight = mh.currPosRight;
                startPosLeft  = mh.currPosLeft;
                action        = true;
            }
        }
        else if (state == 1)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            if (goingRightY == 1 && goingLeftY == 1 && Vector2.Distance(mh.currPosRight, startPosRight) > minMove && Vector2.Distance(mh.currPosLeft, startPosLeft) > minMove)
            {
                if (mh.startMovement(moveId))
                {
                    return;
                }
                state  = 2;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 2)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            Debug.Log("Right = " + Vector2.Distance(mh.currPosRight, startPosRight) + " < " + movementSensitivity + " - Left = " + Vector2.Distance(mh.currPosLeft, startPosLeft) + " < " + movementSensitivity);
            if (goingRightY == -1 && goingLeftY == -1 && Vector2.Distance(mh.currPosRight, startPosRight) < movementSensitivity && Vector2.Distance(mh.currPosLeft, startPosLeft) < movementSensitivity)
            {
                state  = 3;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 3)
        {
            if (action)
            {
                GetComponent <TextDisplayer>().changeText("Mouvement " + moveId);
                action = false;
                mh.endMovement(moveId, true);
            }
            else
            {
                state = 0;
            }
        }
    }
Example #2
0
    // Update is called once per frame
    void Update()
    {
        MouvementHandler mh = GetComponent <MouvementHandler>();

        /*if (mh.isAMovementInProgress() && !mh.isMyMovementInProgress(moveId)) {
         *  Debug.Log("stopped move " + moveId);
         *  return;
         * } else if (state != 0 && !mh.isMyMovementInProgress(moveId))
         *  state = 0;*/

        int goingRightX = mh.goingRight[MouvementHandler.AXE_X];

        if (state == 0)
        {
            //if (!action && (goingRightX == 0 || goingRightX == -1)) {
            if (!action && (goingRightX == 1))
            {
                state    = 1;
                startPos = mh.currPosRight;
                action   = true;
            }
        }
        else if (state == 1)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            //Debug.Log("state1 : "+Vector2.Distance(mh.currPosRight, startPos) + " >  " + minMove);
            if (goingRightX == 1 && Vector2.Distance(mh.currPosRight, startPos) > minMove)
            {
                if (!mh.startMovement(moveId))
                {
                    return;
                }
                state  = 2;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 2)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            //Debug.Log("state2 : " + Vector2.Distance(mh.currPosRight, startPos) + " < " + movementSensitivity);
            if (goingRightX == -1 && Vector2.Distance(mh.currPosRight, startPos) < movementSensitivity)
            {
                state  = 3;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 3)
        {
            if (action)
            {
                GetComponent <TextDisplayer>().changeText("Mouvement " + moveId);
                action = false;
                mh.endMovement(moveId, true);
            }
            else
            {
                state = 0;
            }
        }
    }
Example #3
0
    // Update is called once per frame
    void Update()
    {
        MouvementHandler mh = GetComponent <MouvementHandler>();

        /*if (mh.isAMovementInProgress() && !mh.isMyMovementInProgress(moveId)) {
         *  Debug.Log("stopped move " + moveId);
         *  return;
         * } else if (state != 0 && !mh.isMyMovementInProgress(moveId))
         *  state = 0;*/

        int goingRightX = mh.goingRight[MouvementHandler.AXE_X];

        if (state == 0)
        {
            //if (!action && (goingRightX == 0 || goingRightX == 1)) {
            if (!action && (goingRightX == -1))
            {
                state    = 1;
                startPos = mh.currPosRight;
                action   = true;
            }
        }
        else if (state == 1)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            if (goingRightX == -1 && Vector2.Distance(mh.currPosRight, startPos) > minMove)
            {
                if (mh.startMovement(moveId))
                {
                    return;
                }
                state  = 2;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 2)
        {
            if (action)
            {
                mh.startTimeoutCountdown();
                action = false;
            }
            if (goingRightX == 1 && Vector2.Distance(mh.currPosRight, startPos) < movementSensitivity)
            {
                state  = 3;
                action = true;
            }
            else if (mh.GetMouvementTimeout())
            {
                state = 0;
            }
        }
        else if (state == 3)
        {
            if (action)
            {
                GetComponent <TextDisplayer>().changeText("Mouvement " + moveId);
                action = false;
                mh.endMovement(moveId, true);
            }
            else
            {
                state = 0;
            }
        }



        /*
         * if (currPos.x > lastPos.x && diff >= sensitivity) {
         *  //Debug.Log("to right");
         *  if (goingX == -1 || goingX == 0) {
         *      //Debug.Log("left to right");
         *      startPos = currPos;
         *      startTime = Time.time;
         *      mh.startMovement(moveId);
         *  }
         *  goingX = 1;
         * } else if (currPos.x < lastPos.x && diff >= sensitivity) {
         *  //Debug.Log("to left");
         *  if (goingX == 1) {
         *      //Debug.Log("right to left");
         *      //Debug.Log(Vector2.Distance(currPos, startPos));
         *      if (Vector2.Distance(currPos, startPos) < movementSensitivity) {
         *          goingX = 0;
         *          startTime = 0f;
         *          startPos = new Vector2();
         *          started = false;
         *          //Debug.Log("faux mouvement "+moveId);
         *          mh.endMovement(moveId);
         *      }
         *  }
         *  if (Vector2.Distance(currPos, startPos) < movementSensitivity && startTime != 0) {
         *      goingX = 0;
         *      startTime = 0f;
         *      startPos = new Vector2();
         *      started = false;
         *      Debug.Log("finished move " + moveId);
         *      mh.endMovement(moveId, true);
         *      GetComponent<TextDisplayer>().changeText("Mouvement " + moveId);
         *  }
         *  goingX = -1;
         * }
         *
         * lastPos = currPos;*/
    }