Наследование: MonoBehaviour
Пример #1
0
    // Use this for initialization
    void Start()
    {
        var levelBuilder = LevelBuilderPrefab.GetComponent <LevelBuilder>();

        miniMap = GameObject.Find("mini_map").GetComponent <MinimapScript>();

        levelBuilder.Generate();
        roomInstances = levelBuilder.RoomInstances;

        miniMap.SetRooms(levelBuilder.Rooms);

        SetCurrentPosition(new Vector2(4, 4));
        Player.transform.position = new Vector3(roomWidth * CurrentPosition.x, roomHeight * CurrentPosition.y - 2, Player.transform.position.z);
    }
Пример #2
0
    //function to spawn in the player
    void SpawnPlayer()
    {
        Vector2 spawn = deadEnds[Random.Range(0, deadEnds.Count)]; //Get a random spawn postion

        deadEnds.Remove(spawn);                                    //remove spawn from the list of possible spawns

        //Instantiate an empty game object to hold the position for the player
        GameObject spawnSpace = new GameObject();

        spawnSpace.transform.SetParent(mazeSpawn);
        spawnSpace.transform.localPosition = new Vector3(spawn.x, 2.5f, spawn.y);

        //Instantiate the player
        player = Object.Instantiate(playerPrefab, Vector3.zero, Quaternion.identity);
        player.transform.localPosition = spawnSpace.transform.position; //use the empty game object position
        Destroy(spawnSpace);                                            //Get rid of the space now that the player is inplace

        MinimapScript minimap = minimapCamera.GetComponent <MinimapScript>();

        minimap.player = player.transform;
    }
Пример #3
0
 private void Awake()
 {
     GMS           = GameObject.Find("GameManager").GetComponent <GameManagerScript>();
     MinimapScript = GameObject.Find("MinimapCamera").GetComponent <MinimapScript>();
     oen           = GameObject.Find("GlobalControl").GetComponent <OpenvibeEventNotifier>();
 }
Пример #4
0
    void Start()
    {
        // These variables will change their meaning over the course of the method
        RoomControl thisRoom;
        RoomControl adjRoom;
        RoomControl chosenRoom;
        Vector2     roomVector;
        Vector2     roomVectorRel;
        Ramp        r2   = r.GetComponent <Ramp> ();
        double      ramp = Math.Pow(r2.ramp, r2.times);

        // All level components are scaled based on the current required difficulty.
        // Debugging added to aid testing.

        Debug.Log("We r ramp!");

        double temp;

        temp              = (double)roomsToSpawn * ramp;
        roomsToSpawn      = (int)temp;
        temp              = (double)totalEnemies * ramp;
        totalEnemies      = (int)temp;
        temp              = (double)maxEnemiesPerRoom * ramp;
        maxEnemiesPerRoom = (int)temp;

        Debug.Log("Pls make me " + roomsToSpawn.ToString() + " rooms kthanx");
        Debug.Log("Ramp was " + ramp.ToString() + ". Hopefully that's what you expected.");


        // Reference the minimap, so it can be generated in unison with the actual floor
        MinimapScript minimapScript = minimapUI.GetComponent <MinimapScript>();

        // Start room

        thisRoom           = ((GameObject)Instantiate(roomPrefab, new Vector3(0, 0, 0), Quaternion.identity)).GetComponent <RoomControl>();
        thisRoom.minimapUI = minimapUI;
        thisRoom.Floor     = startPrefab;     // pick set floor

        thisRoom.Index = new Vector2(0, 0);
        minimapScript.GenerateMapBlock(thisRoom.Index);

        roomsDict.Add(thisRoom.Index, thisRoom);

        thisRoom.gameObject.name = "Room " + 0;
        thisRoom.spawnEnemies    = false;
        thisRoom.spawnWebs       = false;

        thisRoom.gameObject.transform.Find("Lights").gameObject.SetActive(true);

        // normal rooms

        for (int i = 1; i < roomsToSpawn - 1; i++)
        {
            int a = 0;
            do
            {
                adjRoom = RandomRoom();
                if (a > 1000)
                {
                    throw new System.Exception("Infinite loop occuring.");
                }
                a++;
            } while (!IsNextToEmpty(adjRoom));

            roomVectorRel = RandomEmpty(adjRoom);
            roomVector    = adjRoom.Index + roomVectorRel;

            thisRoom           = ((GameObject)Instantiate(roomPrefab, RoomControl.IndexToPosition(roomVector), Quaternion.identity)).GetComponent <RoomControl>();
            thisRoom.minimapUI = minimapUI;
            thisRoom.Floor     = floorPrefabs[UnityEngine.Random.Range(0, floorPrefabs.Count)];
            thisRoom.Index     = roomVector;
            minimapScript.GenerateMapBlock(thisRoom.Index);
            thisRoom.gameObject.name = "Room " + i;

            SetAdj(adjRoom, roomVectorRel, thisRoom);

            roomsDict.Add(thisRoom.Index, thisRoom);
        }

        // boss room

        int b = 0;

        do
        {
            adjRoom = RandomRoom();
            if (b > 1000)
            {
                throw new System.Exception("Infinite loop occuring.");
            }
            b++;
        } while (!IsNextToEmpty(adjRoom));

        roomVectorRel = RandomEmpty(adjRoom);
        roomVector    = adjRoom.Index + roomVectorRel;

        thisRoom           = ((GameObject)Instantiate(roomPrefab, RoomControl.IndexToPosition(roomVector), Quaternion.identity)).GetComponent <RoomControl>();
        thisRoom.minimapUI = minimapUI;
        thisRoom.Floor     = bossFloor;
        thisRoom.Index     = roomVector;
        minimapScript.GenerateMapBlock(thisRoom.Index);
        thisRoom.gameObject.name = "Boss Room";

        SetAdj(adjRoom, roomVectorRel, thisRoom);

        roomsDict.Add(thisRoom.Index, thisRoom);

        if (boss.transform.name == "Boss3")
        {
            int temp1 = UnityEngine.Random.Range(-18, 18);
            int temp2 = UnityEngine.Random.Range(-10, 10);
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(temp1, 2, temp2), Quaternion.identity);
            BossThree bs3 = boss.GetComponent <BossThree> ();
            bs3.roomCont = thisRoom.GetComponent <RoomControl> ();
        }
        else if (boss.transform.name == "FlyBoss" || boss.transform.name == "FlyBossTest")
        {
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(0, 4, 0), Quaternion.identity);
        }
        else
        {
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(0, 2, 0), Quaternion.identity);
        }

        // Buffs boss health and damage based on ramp params.
        temp = (double)boss.GetComponent <EnemyHealth> ().currentHealth *ramp;
        boss.GetComponent <EnemyHealth> ().currentHealth = (int)temp;
        temp = (double)boss.GetComponent <EnemyHealth> ().startingHealth *ramp;
        boss.GetComponent <EnemyHealth> ().startingHealth = (int)temp;
        temp = (double)boss.GetComponent <EnemyAttack> ().damage *ramp;
        boss.GetComponent <EnemyAttack> ().damage = (int)temp;

        boss.GetComponent <AIPath>().target = GameObject.FindWithTag("Player").transform;


        // link rooms
        // ensures no infinite loops by incrementing i by nine when a door is already there.
        for (int i = 0; i < roomsToSpawn * 3; i++)
        {
            chosenRoom = RandomRoom();

            Vector2 chosen = RandomNotEmpty(chosenRoom);
            if (!chosenRoom.adjRoomsDict.ContainsKey(chosen))
            {
                i += 9;
            }
            SetAdj(chosenRoom, chosen, get(chosenRoom.Index + chosen));
        }

        minimapScript.PlayerEntersRoom(new Vector2(0, 0), get(new Vector2(0, 0)).adjRoomsDict.Keys.ToList());

        // add pathfinding graph and webs
        foreach (RoomControl room in roomsDict.Values)
        {
            room.PopulateCells();
            room.AddGraph();
            if (room.spawnWebs)
            {
                room.AddWebs(web, UnityEngine.Random.Range(minWebs, maxWebs));
            }
        }

        AstarPath.active.Scan();

        // populate rooms

        int totalTickets = enemyCommonness.Sum();

        for (int i = 0; i < totalEnemies; i++)
        {
            int c = 0;
            do
            {
                chosenRoom = RandomRoom();
                if (c > 1000)
                {
                    throw new System.Exception("Infinite loop occuring.");
                }
                c++;
            } while (chosenRoom.enemies.Count >= maxEnemiesPerRoom || chosenRoom.spawnEnemies == false);

            int ticket = UnityEngine.Random.Range(0, totalTickets);

            int hopeful = 0;
            int sum     = enemyCommonness[hopeful];

            while (sum <= ticket)
            {
                hopeful++;
                sum += enemyCommonness[hopeful];
            }
            // With ramp method used to ensure scaling is performed.
            chosenRoom.AddEnemyWithRamp(enemies[hopeful], ramp);
        }
        aStarGrids.Scan();
    }
Пример #5
0
    /// Start generates the rooms adds enemies, boss, webs and minimap
    void Start()
    {
        // These variables will change their meaning over the course of the method bu
        RoomControl thisRoom;
        RoomControl adjRoom;
        RoomControl chosenRoom;
        Vector2     roomVector;
        Vector2     roomVectorRel;

        if (seed == "")
        {
            // Generate seed if there was none given
            actseed = System.Environment.TickCount;
        }
        else
        {
            // Assign seed based on specified values
            string[] parts = seed.ToString().Split('#');
            actseed           = Int32.Parse(parts[0]);
            roomsToSpawn      = Int32.Parse(parts[1]);
            totalEnemies      = Int32.Parse(parts[2]);
            maxEnemiesPerRoom = Int32.Parse(parts[3]);
            minWebs           = Int32.Parse(parts[4]);
            maxWebs           = Int32.Parse(parts[5]);
        }
        UnityEngine.Random.seed = actseed;

        // Reference to the minimap, so it can be generated in unison with the actual floor
        MinimapScript minimapScript = minimapUI.GetComponent <MinimapScript>();

        // Start room
        thisRoom           = ((GameObject)Instantiate(roomPrefab, new Vector3(0, 0, 0), Quaternion.identity)).GetComponent <RoomControl>();
        thisRoom.minimapUI = minimapUI;
        thisRoom.Floor     = startPrefab;     // pick set floor

        thisRoom.Index = new Vector2(0, 0);
        minimapScript.GenerateMapBlock(thisRoom.Index);

        roomsDict.Add(thisRoom.Index, thisRoom);

        thisRoom.gameObject.name = "Room " + 0;
        thisRoom.spawnEnemies    = false;      // first room should be safe
        thisRoom.spawnWebs       = false;

        thisRoom.gameObject.transform.Find("Lights").gameObject.SetActive(true);

        // Normal rooms
        // First room and boss room are counted in "roomsToSpawn", but aren't done in this loop.
        for (int i = 1; i < roomsToSpawn - 1; i++)
        {
            int a = 0;
            do               // Find empty room to put the new room adjacent to
            {
                adjRoom = RandomRoom();
                if (a > 1000)
                {
                    throw new System.Exception("Infinite loop occuring.");
                }
                a++;
            } while (!IsNextToEmpty(adjRoom));

            roomVectorRel = RandomEmpty(adjRoom);
            roomVector    = adjRoom.Index + roomVectorRel;

            thisRoom           = ((GameObject)Instantiate(roomPrefab, RoomControl.IndexToPosition(roomVector), Quaternion.identity)).GetComponent <RoomControl>();
            thisRoom.minimapUI = minimapUI;
            thisRoom.Floor     = floorPrefabs[UnityEngine.Random.Range(0, floorPrefabs.Count)];
            thisRoom.Index     = roomVector;
            minimapScript.GenerateMapBlock(thisRoom.Index);
            thisRoom.gameObject.name = "Room " + i;

            SetAdj(adjRoom, roomVectorRel, thisRoom);

            roomsDict.Add(thisRoom.Index, thisRoom);
        }

        // Boss room
        int b = 0;

        do           // Find empty room to put the new room adjacent to
        {
            adjRoom = RandomRoom();
            if (b > 1000)
            {
                throw new System.Exception("Infinite loop occuring.");
            }
            b++;
        } while (!IsNextToEmpty(adjRoom));

        roomVectorRel = RandomEmpty(adjRoom);
        roomVector    = adjRoom.Index + roomVectorRel;

        thisRoom           = ((GameObject)Instantiate(roomPrefab, RoomControl.IndexToPosition(roomVector), Quaternion.identity)).GetComponent <RoomControl>();
        thisRoom.minimapUI = minimapUI;
        thisRoom.Floor     = bossFloor;
        thisRoom.Index     = roomVector;
        minimapScript.GenerateMapBlock(thisRoom.Index);
        thisRoom.gameObject.name = "Boss Room";

        thisRoom.spawnEnemies = false;

        SetAdj(adjRoom, roomVectorRel, thisRoom);

        roomsDict.Add(thisRoom.Index, thisRoom);

        // Special stuff for each boss. Should be refactored
        if (boss.transform.name == "Boss3")
        {
            int temp1 = UnityEngine.Random.Range(-18, 18);
            int temp2 = UnityEngine.Random.Range(-10, 10);
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(temp1, 2, temp2), Quaternion.identity);
            BossThree bs3 = boss.GetComponent <BossThree> ();
            bs3.roomCont = thisRoom.GetComponent <RoomControl> ();
        }
        else if (boss.transform.name == "FlyBoss" || boss.transform.name == "FlyBossTest")
        {
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(0, 4, 0), Quaternion.identity);
            boss.GetComponent <EnemyControl>().home = thisRoom.transform;
            boss.GetComponent <AIPath>().enabled    = false;         // Flying bosses movement is disable until the player enters the room
        }
        else
        {
            boss = (GameObject)Instantiate(boss, thisRoom.transform.position + new Vector3(0, 2, 0), Quaternion.identity);
        }
        boss.GetComponent <AIPath>().target = GameObject.FindWithTag("Player").transform;
        thisRoom.AddBoss(boss);

        // link rooms
        // The room adding loop above does not allow loops. Here extra doors are added so that there can be loops.
        // Depending on level layout, extra doors may not be addable.
        // Loop finds two adjacent rooms. If there is no door already there, a door is added and loop var incremented by one
        // If there already was a door, increment by 0.1
        // This means there will never be an infinite loop
        for (float i = 0f; i < roomsToSpawn / 3.3f; i += 0.1f)
        {
            chosenRoom = RandomRoom();

            Vector2 chosen = RandomNotEmpty(chosenRoom);
            if (!chosenRoom.adjRoomsDict.ContainsKey(chosen))
            {
                i += 0.9f;
            }
            SetAdj(chosenRoom, chosen, get(chosenRoom.Index + chosen));
        }

        minimapScript.PlayerEntersRoom(new Vector2(0, 0), get(new Vector2(0, 0)).adjRoomsDict.Keys.ToList());

        // add pathfinding graph and webs
        foreach (RoomControl room in roomsDict.Values)
        {
            room.PopulateCells();
            room.AddGraph();
            if (room.spawnWebs)
            {
                room.AddWebs(web, UnityEngine.Random.Range(minWebs, maxWebs));
            }
        }

        // Sets up the pathfinding based on the generated map
        AstarPath.active.Scan();

        // Modify total enemies so that it is a legal value
        int maxLegalEnemies = (roomsToSpawn - 2) * maxEnemiesPerRoom;

        if (totalEnemies > maxLegalEnemies)
        {
            totalEnemies = maxLegalEnemies;
        }
        if (totalEnemies < 0)
        {
            totalEnemies = 0;
        }


        // Populate rooms
        // A room is randomly chosen with equal probability, so long as the room doesn't have too many already
        // A raffle is held on the enemy types to decide which enemy type spawns.
        // enemyCommonness decides how many tickets that enemy type has
        // Winning ticket is chosen and we iterate over the enemy types till we find the winner

        int totalTickets = enemyCommonness.Sum();

        for (int i = 0; i < totalEnemies; i++)
        {
            int c = 0;
            do
            {
                chosenRoom = RandomRoom();
                if (c > 1000)
                {
                    throw new System.Exception("Infinite loop occurring.");
                }
                c++;
            } while (chosenRoom.enemies.Count >= maxEnemiesPerRoom || chosenRoom.spawnEnemies == false);

            int winningTicket = UnityEngine.Random.Range(0, totalTickets);

            int hopeful = 0;
            int sum     = enemyCommonness[hopeful];

            while (sum <= winningTicket)
            {
                hopeful++;
                sum += enemyCommonness[hopeful];
            }

            chosenRoom.AddEnemy(enemies[hopeful]);
        }
        // Generate seed for recreate
        seed = actseed.ToString() + "#" + roomsToSpawn.ToString() + "#" + totalEnemies.ToString()
               + "#" + maxEnemiesPerRoom.ToString() + "#" + minWebs.ToString() + "#" + maxWebs.ToString() + "#" + Application.loadedLevelName;
        aStarGrids.Scan();
    }