Ejemplo n.º 1
0
    // Use to process your families.
    protected override void onProcess(int familiesUpdateCount)
    {
        if (gameData.step)
        {
            foreach (GameObject go in controllableGO)
            {
                if (!ActionManipulator.endOfScript(go))
                {
                    Action action = ActionManipulator.getCurrentAction(go);

                    switch (action.actionType)
                    {
                    case Action.ActionType.Forward:
                        ApplyForward(go);
                        break;

                    case Action.ActionType.TurnLeft:
                        ApplyTurnLeft(go);
                        break;

                    case Action.ActionType.TurnRight:
                        ApplyTurnRight(go);
                        break;

                    case Action.ActionType.Wait:
                        break;

                    case Action.ActionType.Activate:
                        foreach (GameObject actGo in activableGO)
                        {
                            if (actGo.GetComponent <Position>().x == go.GetComponent <Position>().x&& actGo.GetComponent <Position>().z == go.GetComponent <Position>().z)
                            {
                                actGo.GetComponent <AudioSource>().Play();
                                actGo.GetComponent <Activable>().isActivated = true;
                            }
                        }
                        break;
                    }
                    ActionManipulator.incrementActionScript(go.GetComponent <Script>());
                }
            }

            /*foreach( GameObject go in playerGO){
             *      if(ActionManipulator.endOfScript(go)){
             *              ActionManipulator.restartScript(go.GetComponent<Script>());
             *      }
             * }*/
        }
    }
Ejemplo n.º 2
0
    // Use to process your families.
    protected override void onProcess(int familiesUpdateCount)
    {
        if (gameData.checkStep)
        {
            //Check if the player is on the end of the level
            int nbEnd = 0;
            foreach (GameObject player in playerGO)
            {
                foreach (GameObject exit in exitGO)
                {
                    if (gameData.nbStep == 1 && player.GetComponent <Position>().x == exit.GetComponent <Position>().x&& player.GetComponent <Position>().z == exit.GetComponent <Position>().z)
                    {
                        nbEnd++;
                        //end level
                        if (nbEnd >= playerGO.Count)
                        {
                            Debug.Log("Fin du niveau");
                            gameData.endLevel = 2;
                        }
                    }
                }
            }

            //Check Activations
            foreach (GameObject activable in activableGO)
            {
                if (activable.GetComponent <Activable>().isActivated&& !activable.GetComponent <Activable>().isFullyActivated)
                {
                    activate(activable);
                }
            }

            //Check if If actions are valid
            int nbStepToAdd = 0;
            foreach (GameObject scripted in scriptedGO)
            {
                int nbStepPlayer = 0;
                ActionManipulator.invalidAllIf(scripted.GetComponent <Script>());
                Action nextIf = ActionManipulator.getCurrentIf(scripted);

                while (nextIf != null && !ActionManipulator.endOfScript(scripted))
                {
                    //Check if ok
                    bool    ifok = nextIf.ifNot;
                    Vector2 vec  = new Vector2();
                    switch (ActionManipulator.getDirection(scripted.GetComponent <Direction>().direction, nextIf.ifDirection))
                    {
                    case Direction.Dir.North:
                        vec = new Vector2(0, 1);
                        break;

                    case Direction.Dir.South:
                        vec = new Vector2(0, -1);
                        break;

                    case Direction.Dir.East:
                        vec = new Vector2(1, 0);
                        break;

                    case Direction.Dir.West:
                        vec = new Vector2(-1, 0);
                        break;
                    }

                    switch (nextIf.ifEntityType)
                    {
                    case 0:
                        for (int i = 1; i <= nextIf.range; i++)
                        {
                            foreach (GameObject go in wallGO)
                            {
                                if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i)
                                {
                                    ifok = !nextIf.ifNot;
                                }
                            }
                        }
                        break;

                    case 1:
                        for (int i = 1; i <= nextIf.range; i++)
                        {
                            foreach (GameObject go in scriptedGO)
                            {
                                if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i &&
                                    go.tag == "Ennemy")
                                {
                                    ifok = !nextIf.ifNot;
                                }
                            }
                        }
                        break;

                    case 2:
                        for (int i = 1; i <= nextIf.range; i++)
                        {
                            foreach (GameObject go in scriptedGO)
                            {
                                if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i &&
                                    go.tag == "Player")
                                {
                                    ifok = !nextIf.ifNot;
                                }
                            }
                        }
                        break;
                    }

                    if (ifok)
                    {
                        nextIf.ifValid = true;
                        if (scripted.tag == "Player")
                        {
                            nbStepPlayer += ActionManipulator.getNbStep(nextIf, true);
                        }
                    }
                    else
                    {
                        nextIf.currentAction = nextIf.actions.Count - 1;
                        ActionManipulator.incrementActionScript(scripted.GetComponent <Script>());
                    }
                    nextIf = ActionManipulator.getCurrentIf(scripted);
                }

                if (nbStepPlayer > nbStepToAdd)
                {
                    nbStepToAdd = nbStepPlayer;
                }
            }
            gameData.nbStep += nbStepToAdd;


            foreach (GameObject player in playerGO)
            {
                //Check if the player collide with a non-player

                /*foreach( GameObject noPlayer in noPlayerGO){
                 *      if(player.GetComponent<Position>().x == noPlayer.GetComponent<Position>().x && player.GetComponent<Position>().z == noPlayer.GetComponent<Position>().z){
                 *              //end level
                 *              Debug.Log("Repéré !");
                 *              gameData.endLevel = 1;
                 *      }
                 * }*/

                //Check if the player collide with a detection cell
                foreach (GameObject detector in detectorGO)
                {
                    if (player.GetComponent <Position>().x == detector.GetComponent <Position>().x&& player.GetComponent <Position>().z == detector.GetComponent <Position>().z)
                    {
                        //end level
                        Debug.Log("Repéré !");
                        gameData.endLevel = 1;
                    }
                }
            }
        }
    }
Ejemplo n.º 3
0
    public void applyScriptToPlayer()
    {
        foreach (GameObject go in playerGO)
        {
            ActionManipulator.resetScript(go.GetComponent <Script>());
            go.GetComponent <Script>().actions = ActionManipulator.ScriptContainerToActionList(scriptComposer);
            gameData.nbStep = ActionManipulator.getNbStep(go.GetComponent <Script>());
        }

        //Check if If actions are valid
        int nbStepToAdd = 0;

        foreach (GameObject scripted in controllableGO)
        {
            int nbStepPlayer = 0;
            ActionManipulator.invalidAllIf(scripted.GetComponent <Script>());
            Action nextIf = ActionManipulator.getCurrentIf(scripted);

            while (nextIf != null && !ActionManipulator.endOfScript(scripted))
            {
                //Check if ok
                bool    ifok = nextIf.ifNot;
                Vector2 vec  = new Vector2();
                switch (ActionManipulator.getDirection(scripted.GetComponent <Direction>().direction, nextIf.ifDirection))
                {
                case Direction.Dir.North:
                    vec = new Vector2(0, 1);
                    break;

                case Direction.Dir.South:
                    vec = new Vector2(0, -1);
                    break;

                case Direction.Dir.East:
                    vec = new Vector2(1, 0);
                    break;

                case Direction.Dir.West:
                    vec = new Vector2(-1, 0);
                    break;
                }

                switch (nextIf.ifEntityType)
                {
                case 0:
                    for (int i = 1; i <= nextIf.range; i++)
                    {
                        foreach (GameObject go in wallGO)
                        {
                            if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i)
                            {
                                ifok = !nextIf.ifNot;
                            }
                        }
                    }
                    break;

                case 1:
                    for (int i = 1; i <= nextIf.range; i++)
                    {
                        foreach (GameObject go in controllableGO)
                        {
                            if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i &&
                                go.tag == "Ennemy")
                            {
                                ifok = !nextIf.ifNot;
                            }
                        }
                    }
                    break;

                case 2:
                    for (int i = 1; i <= nextIf.range; i++)
                    {
                        foreach (GameObject go in controllableGO)
                        {
                            if (go.GetComponent <Position>().x == scripted.GetComponent <Position>().x + vec.x * i && go.GetComponent <Position>().z == scripted.GetComponent <Position>().z + vec.y * i &&
                                go.tag == "Player")
                            {
                                ifok = !nextIf.ifNot;
                            }
                        }
                    }
                    break;
                }

                if (ifok)
                {
                    nextIf.ifValid = true;
                    if (scripted.tag == "Player")
                    {
                        nbStepPlayer += ActionManipulator.getNbStep(nextIf, true);
                    }
                }
                else
                {
                    nextIf.currentAction = nextIf.actions.Count - 1;
                    ActionManipulator.incrementActionScript(scripted.GetComponent <Script>());
                }
                nextIf = ActionManipulator.getCurrentIf(scripted);
            }

            if (nbStepPlayer > nbStepToAdd)
            {
                nbStepToAdd = nbStepPlayer;
            }
        }
        gameData.nbStep += nbStepToAdd;

        if (gameData.nbStep > 0)
        {
            gameData.totalExecute++;
        }
    }