Exemplo n.º 1
0
    // Update is called once per frame
    void Update()
    {
        if (paused)
        {
            return;
        }

        if (!cameraOk)
        {
            return;
        }

        this.frame = core.GetCameraFrame();
        this.texture.LoadRawTextureData(this.frame);
        this.texture.Apply();
        this.GetComponent <Renderer>().material.SetTexture("_MainTex", this.texture);

        /*
         *
         * if(!m_calibrated && !m_config_exists)
         * {
         *
         *  accTime += Time.deltaTime;
         *  if( accTime >= 1)
         *  {
         *      accTime -= 1;
         *      Debug.Log("mdr");
         *      StartCoroutine(AsycnFindPattern());
         *      //core.AddPatternToCalibrator();
         *
         *      if(core.CheckCalibrator())
         *      {
         *          m_calibrated = true;
         *          core.Calibrate();
         *      }
         *
         *  }
         *  return;
         *
         * }
         *
         */

        //this.camera.Video();
        if (!m_FinishedBuild)
        {
            core.Build();

            if (core.CheckBuid())
            {
                m_FinishedBuild = true;

                core.InitTransformDefault();

                Debug.Log("Built");
                double[]   start      = CoreWrapper.GetInstance().GetBeginCenter();
                GameObject prefabBall = ((GameObject)Resources.Load("Prefabs/" + Const.BALL_PREFAB_NAME, typeof(GameObject)));
                float      x_unity    = -Const.HAUTEUR_MAZE / 2 + Const.HAUTEUR_MAZE * (float)start[0];
                float      y_unity    = (-Const.LARGEUR_MAZE / 2 + Const.LARGEUR_MAZE * (float)start[1]) - 10.15f;

                Vector3    spawnPosition = new Vector3(x_unity, 400.0f, y_unity);
                GameObject objetBall     = Instantiate(prefabBall, spawnPosition, Quaternion.Euler(90.0f, 0.0f, 0.0f));
                objetBall.GetComponent <Ball>().spawnPosition = spawnPosition;

                GameObject o = ((GameObject)Resources.Load("Prefabs/" + Const.MAZE_PREFAB_NAME, typeof(GameObject)));
                maze = Instantiate(o, new Vector3(0.0f, 0.0f, 0.0f), Quaternion.Euler(0.0f, 0.0f, 0.0f));

                GameObject Init = ((GameObject)Resources.Load("Prefabs/" + Const.GAMEINITIALIZER_PREFAB_NAME, typeof(GameObject)));
                GameObject o2   = Instantiate(Init, Vector3.zero, Quaternion.Euler(0.0f, 0.0f, 0.0f));

                double[] rot = core.GetInitRot();

                rotLab = new Vector3(-(float)(rot[0]) + rotOffsetX,
                                     -(float)(rot[2]) + rotOffsetY,
                                     -(float)(rot[1]) + rotOffsetZ);

                inGameController.StartTimer();
            }
        }
        else
        {
            core.Tracking();
            core.UpdateTranform();

            double[] rot = core.GetDeltaRot();
            rotLab += new Vector3(-(float)rot[0], -(float)(rot[2]), -(float)(rot[1]));

            // correction

            /*
             * float rotZ = rotLab[2];
             * if(rotZ > 0)
             *  rotZ -= 35.50f;
             * else
             *  rotZ += 35.5f;
             */

            Quaternion previousRotation = maze.transform.rotation;
            Quaternion nextRotation     = Quaternion.Euler(rotLab);
            maze.transform.rotation = Quaternion.Lerp(previousRotation, nextRotation, Time.deltaTime * 15.0f);
        }
    }