Beispiel #1
0
        //Initialize variables
        void Start()
        {
            m_programState = OVERALLSTATES.INTRO;                       //Initial beginning of game
            m_menuState    = MENUSTATES.HOME;                           //Prevents triggers from occuring before called
            timeHolder     = Time.time + 3.0f;                          //Initialize first wait period
            menuCreated    = false;                                     //Menu has not been created yet
            m_mapSelection = "nothing";                                 //Nothing has been chosen yet
            mapsCreated    = false;                                     //Map selection has not been created yet

            #region Menu Data Initialisation Stuff

            // Create the empty game object.
            m_menuData = new GameObject("MenuData");

            // Tag it as menu data.
            m_menuData.tag = "MenuDataTag";

            // Add the menu data component.
            m_menuData.AddComponent <MenuData>();

            // Set it to not destroy on load.
            DontDestroyOnLoad(m_menuData);

            // Get the menu data object's script.
            m_menuDataScript = m_menuData.GetComponent <MenuData>();

            #endregion

            //Create Intro Background
            introBackground     = new GameObject("IntroBackground");
            introBackground.tag = "IntroBackground";
            var spriteRender = introBackground.AddComponent <SpriteRenderer>();
            spriteRender.sprite = SpriteReference.spriteIntroBackground;
            SpriteReference.ResizeSpriteToScreen(introBackground, Camera.main, 1, 1);
        }         //end Start
Beispiel #2
0
        }         //end Start

        //Main function for controlling game
        void Update()
        {
            //Will fill in later with game controls. Refer to UMLs for other details.
            //PROGRAM ENTRY POINT
            var state = GameObject.FindGameObjectWithTag("GUITextTag").GetComponent <GUIText> ();

            switch (m_programState)
            {
            //INTRO
            case OVERALLSTATES.INTRO:
                //INTRO ENTRY POINT
                state.text = "Welcome To The Traveler!";
                //After intro finishes, move to menu
                if (Time.time > timeHolder)
                {
                    //Change state
                    m_programState = OVERALLSTATES.MENU;

                    //Destroy old background and text
                    Destroy(GameObject.FindGameObjectWithTag("IntroBackground"));
                    state.text = "";

                    //Create new background
                    menuBackground     = new GameObject("MenuBackground");
                    menuBackground.tag = "MenuBackground";
                    var spriteRender = menuBackground.AddComponent <SpriteRenderer>();
                    spriteRender.sprite = SpriteReference.spriteMenuBackground;
                    SpriteReference.ResizeSpriteToScreen(menuBackground, Camera.main, 1, 1);

                    //Create menu buttons
                    CreateButtons();
                }                 //end wait if
                break;

            //MENU
            case OVERALLSTATES.MENU:
                //MENU ENTRY POINT
                //Center text
                state.transform.position = new Vector3(0.5f, 0.5f, 0.0f);
                switch (m_menuState)
                {
                case MENUSTATES.HOME:
                    //HOME - Menu hub, displays all buttons for menu
                    if (!menuCreated)
                    {
                        CreateButtons();
                        state.text     = "";
                        state.fontSize = 18;
                        m_mapSelection = "nothing";
                        state.anchor   = TextAnchor.MiddleCenter;
                    }                     //end if
                    if (mapsCreated)
                    {
                        DestroyMaps();
                    }                     //end if
                    break;

                //SOLO - Single Player game
                case MENUSTATES.SOLO:
                    //Clear buttons if not cleared yet
                    if (menuCreated)
                    {
                        DestroyButtons();
                    }                     //end if

                    //Display maps for selection
                    state.transform.position = new Vector3(0.5f, 0.4f, 0.0f);
                    if (!mapsCreated)
                    {
                        CreateMaps();
                        state.text = "Click which map you want to play.";
                    }                     //end if

                    //Only continue once a map has been chosen
                    if (m_mapSelection != "nothing")
                    {
                        //Pick player amount
                        #region Menu Data Adding Stuff

                        // Set the number of players to one for solo mode.
                        m_menuDataScript.NumberPlayers = 1;

                        #endregion

                        //Transition into game state
                        m_programState = OVERALLSTATES.GAME;
                    }                     //end if
                    break;

                //MULTI - Multiplayer game
                case MENUSTATES.MULTI:
                    //Clear buttons if not cleared yet
                    if (menuCreated)
                    {
                        DestroyButtons();
                    }                     //end if

                    //Display maps for selection
                    state.transform.position = new Vector3(0.5f, 0.4f, 0.0f);
                    if (!mapsCreated)
                    {
                        CreateMaps();
                        state.text = "Click which map you want to play.";
                    }                     //end if

                    //Only continue once a map has been chosen
                    if (m_mapSelection != "nothing")
                    {
                        state.text = "Enter the number of players (1-4)";
                        //Pick player amount
                        #region Menu Data Adding Stuff

                        //Set number of players
                        if (Input.GetKeyDown(KeyCode.Alpha1) || Input.GetKeyDown(KeyCode.Keypad1))
                        {
                            m_menuDataScript.NumberPlayers = 1;
                            //Transition into game state
                            m_programState = OVERALLSTATES.GAME;
                        }                         //end if
                        else if (Input.GetKeyDown(KeyCode.Alpha2) || Input.GetKeyDown(KeyCode.Keypad2))
                        {
                            m_menuDataScript.NumberPlayers = 2;
                            //Transition into game state
                            m_programState = OVERALLSTATES.GAME;
                        }                         //end if
                        else if (Input.GetKeyDown(KeyCode.Alpha3) || Input.GetKeyDown(KeyCode.Keypad3))
                        {
                            m_menuDataScript.NumberPlayers = 3;
                            //Transition into game state
                            m_programState = OVERALLSTATES.GAME;
                        }                         //end if
                        else if (Input.GetKeyDown(KeyCode.Alpha4) || Input.GetKeyDown(KeyCode.Keypad4))
                        {
                            m_menuDataScript.NumberPlayers = 4;
                            //Transition into game state
                            m_programState = OVERALLSTATES.GAME;
                        }                 //end if
                        #endregion
                    }                     //end if
                    break;

                //CREDITS - Display names and instructions
                case MENUSTATES.CREDITS:
                    //Clear buttons if not cleared yet
                    if (menuCreated)
                    {
                        DestroyButtons();
                    }                     //end if

                    //Show credits
                    state.text = "The Traveler\n\nCreated by:\nBrent Spector - Lead Game Designer\n" +
                                 "Damien Robbs - Lead Programmer\nJavier Mendoza - Lead UI\n" +
                                 "Jacky Yuen - Lead Graphics and Audio.\n\nPress Back to return to the menu.";
                    //Return back to menu home when done
                    break;

                //HELP - Displays the instructions for the game
                case MENUSTATES.HELP:
                    //Clear buttons and display instructions if not cleared yet
                    if (menuCreated)
                    {
                        DestroyButtons();
                        state.text = "GOAL OF THE GAME\nYou are a traveling merchant on a quest to make " +
                                     "Gold. As such you travel location to location in search of resources\nto collect " +
                                     "and sell to the local villages to make Gold. Each location values the resources " +
                                     "the same. Ore is 10 Gold,\nWool is 20 Gold, Wood is 15 Gold, and Fish are 15 Gold. " +
                                     "In order to beat local merchants you must finish with the most\nGold at the end. By " +
                                     "touching a hut at the right end, you will automatically end the contest and force all " +
                                     "other players to\nsell their resources. The merchant with the most Gold at the end " +
                                     "wins the game!\n\nHOW TO PLAY\nTurns are based on the following flow. The first step " +
                                     "is to roll the dice by pressing them flashing Action Button in the\ntop right of your " +
                                     "screen. The box to the left will display how many steps you can move this turn. Use " +
                                     "the arrows to the\nbottom right to move your character. When done, click the End Turn " +
                                     "Action Button in the top right of your screen. This\nwill trigger a map event. If " +
                                     "you landed on a resource, you will pick up that resource. Otherwise a normal map event\n" +
                                     "will occur. You will either face an enemy, find an ally, find an item, or have nothing " +
                                     "occur. Enemies are capable of\nstealing all of one resource from you, allies will aid you " +
                                     "in carrying resources, and items will help you fight enemies\nbetter (usually). Resources " +
                                     "are logs, wool, fish, and ore rocks you find around the map. To end the game, just\nreach " +
                                     "one of the huts on the right side of the map. This will end the game and show the winner!";
                        state.fontSize = 12;
                    }                     //end if

                    state.transform.position = new Vector3(0.5f, 0.6f, 0.0f);
                    break;

                //QUIT - Change program to END to wrap up any loose ends
                case MENUSTATES.QUIT:
                    //Clear buttons if not cleared yet
                    if (menuCreated)
                    {
                        DestroyButtons();
                    }                     //end if

                    //Clear up anything before game ends
                    state.text = "Cleaning up game files, one moment.";

                    //Move to end of program
                    m_programState = OVERALLSTATES.END;

                    break;
                }                 //end Menu Switch
                break;

            //GAME
            case OVERALLSTATES.GAME:
                //GAMEPLAY ENTRY POINT
                //Destroy old background and back button
                Destroy(GameObject.FindGameObjectWithTag("MenuBackground"));
                Destroy(GameObject.FindGameObjectWithTag("BackButton"));

                //Load selected level
                Application.LoadLevel(m_mapSelection);

                //Reset states
                m_programState = OVERALLSTATES.MENU;
                m_menuState    = MENUSTATES.HOME;

                break;

            //END
            case OVERALLSTATES.END:
                //END ENTRY POINT - WATCH OUT UNIVERSE!
                //Wrap up any loose ends here since the program is now exiting.
                state.text = "Cleaning remaining program files, thank you for playing!";

                //Delete exit button if it exists
                if (GameObject.FindGameObjectWithTag("BackButton") != null)
                {
                    Destroy(GameObject.FindGameObjectWithTag("BackButton"));
                }                 //end if

                //Reset state machine to initial
                m_menuState    = MENUSTATES.HOME;
                m_programState = OVERALLSTATES.INTRO;

                //Reset time holder to initial
                timeHolder = Time.time + 3.0f;

                //Exit program if possible
                Application.Quit();

                break;

            //DEFAULT - Catches any exceptions end prints errored state
            default:
                print("Error - No program state " + m_programState + " found.");
                break;
            }     //end Program Switch
        }         //end Update