Exemplo n.º 1
0
    private void Start()
    {
        GameCtrl.PlayerUnitChangeEvent.AddListener(UpdateMover);
        if ((mover == null && GameCtrl.PlayerUnit != null))
        {
            mover = GameCtrl.PlayerUnit.GetComponent <Mover>();
            rb    = mover.GetComponent <Rigidbody>();
        }
        if (mover == null)
        {
            return;
        }

        mover.V             = InputMgr.GetVerticalAxis();
        mover.H             = InputMgr.GetHorizontalAxis();
        mover.CameraForward = CameraGroupController.Instance.transform.forward;

        if (GameCtrl.IsOnlineGame)
        {
            lastSyncA = Gamef.SystemTimeInMillisecond;
            lastSyncT = Gamef.SystemTimeInMillisecond;
            Unit unit    = GameCtrl.PlayerUnit;
            long instant = Gamef.SystemTimeInMillisecond;
            DataSync.SyncMobileControlAxes(unit, instant, Mathf.RoundToInt(mover.H), Mathf.RoundToInt(mover.V), CameraGroupController.Instance.transform.forward);
            DataSync.SyncTransform(unit, instant, unit.transform.position, unit.transform.rotation, rb.velocity.magnitude);
        }
    }
Exemplo n.º 2
0
    private void Update()
    {
        if (mover == null)
        {
            return;
        }

        float   h, v;
        Vector3 camFwd;

        //if (GameCtrl.IsVR)
        //{
        //    if (GetPressPad())
        //    {
        //        Vector2 pos = PadPos.GetAxis(handType);
        //        h = Mathf.Clamp(pos.x * 5f, -1f, 1f);
        //        v = Mathf.Clamp(pos.y * 5f, -1f, 1f);
        //    }
        //    else
        //    {
        //        h = 0f;
        //        v = 0f;
        //    }
        //    camFwd = CameraGroupController.Instance.transform.forward;
        //}
        //else
        //{
        h      = InputMgr.GetHorizontalAxis();
        v      = InputMgr.GetVerticalAxis();
        camFwd = CameraGroupController.Instance.transform.forward;
        //}

        mover.V             = v;
        mover.H             = h;
        mover.CameraForward = camFwd;

        if (GameCtrl.IsOnlineGame)
        {
            Unit unit    = GameCtrl.PlayerUnit;
            long instant = Gamef.SystemTimeInMillisecond;
            if (instant - lastSyncA >= 33)
            {
                if (instant - lastSyncA <= 40)
                {
                    lastSyncA += 33;
                }
                else
                {
                    lastSyncA = instant;
                }
                if (SendAc)
                {
                    DataSync.SyncMobileControlAxes(unit, instant, Mathf.RoundToInt(h), Mathf.RoundToInt(v), CameraGroupController.Instance.transform.forward);
                }
            }
            if (instant - lastSyncT >= 300)
            {
                if (instant - lastSyncT <= 350)
                {
                    lastSyncT += 300;
                }
                else
                {
                    lastSyncT = instant;
                }
                Debug.Log("Send sync transform");
                if (SendT)
                {
                    DataSync.SyncTransform(unit, instant, unit.transform.position, unit.transform.rotation, rb.velocity.magnitude);
                }
            }
        }
    }
Exemplo n.º 3
0
 private void Update()
 {
     v  = /*Input.GetAxis("Vertical")*/ InputMgr.GetVerticalAxis();
     h  = /*Input.GetAxis("Horizontal")*/ InputMgr.GetHorizontalAxis();
     ac = Input.GetKey(InputMgr.AccelerationKey) ? 1f : 0f;
 }