Ejemplo n.º 1
0
    // Use this for initialization
    void Start()
    {
        previousCube = CubeType.none;
        gameLogicScript = GameObject.Find("GameLogic").GetComponent<gamelogic>();

        if(isAINgram){
            ngramPredictor = new NGramPredictor();
            ngramPredictor.Start();
            ngramPredictor.nValue = NgramWindowSize + 1;
            ngramPredictor.doDebugLogs = doDebugLogs;
            ngramPredictor.playerThisNgramPredictorBelongsTo = this.gameObject.ToString();
        }

        otherPlayerScript = gameLogicScript.returnOtherPlayer(this);
        //track previous actions if other player uses ngrams
        if(otherPlayerScript.isAINgram){
            previousCubePicks = new CubeType[otherPlayerScript.NgramWindowSize + 1];

            for (int i = 0; i < previousCubePicks.Length; i++)
                previousCubePicks[i] = CubeType.none;
        }
    }