Example #1
0
    private void wave1()
    {
        RoadBlock RB = new RoadBlock(387);
        Warning   WR = new Warning(410);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(WR);
    }
    public void ReturnObjectsToPool(RoadBlock owner)
    {
        owner.roadBlockData.firePointData.ReturnObjectsToPool(owner.firePoint);
        GameObject firePointToReturn = owner.firePoint.gameObject;

        ObjectPoolersHolder.RoadBlocksFirePointPooler.ReturnToPool(firePointToReturn, firePointToReturn.name);
        ObjectPoolersHolder.EventPooler.ReturnToPool(owner.gameObject, "RoadBlock");
    }
Example #3
0
    private void wave5()
    {
        RoadBlock RB = new RoadBlock(1247);
        Warning   WR = new Warning(1280);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(WR);
    }
Example #4
0
    private void wave2()
    {
        RoadBlock RB = new RoadBlock(603);
        Warning   WR = new Warning(630);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(WR);
    }
Example #5
0
    private void wave3()
    {
        RoadBlock RB = new RoadBlock(821);
        Warning   WR = new Warning(850);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(WR);
    }
Example #6
0
		// Roadblock must be initiated with proper values before this, as the block is tied to road and the type of hexa is being changed
		public void addRoadBlock(RoadBlock block) {
			if (block == null)
				return;
			block.roadId = this.roadId;
			roadBlocks.Add (block);
			GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().roadBlock = block;
			GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().rbid = block.blockId;
			GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().setType (MapHexa.HexType.Road);
		}
Example #7
0
    private void SpawnNextBlock()
    {
        var       last          = roadBlocks[roadBlocks.Count - 1];
        Vector3   blockPosition = last.transform.position + Vector3.forward * roadBlockPrefab.BlockLength();
        RoadBlock newBlock      = Instantiate(roadBlockPrefab, blockPosition, Quaternion.identity);

        newBlock.transform.parent = transform;
        roadBlocks.Add(newBlock);

        GenerateObjectsForBlock(newBlock);
    }
Example #8
0
    private void wave7()
    {
        RoadBlock RB2 = new RoadBlock(603);
        Warning   WR2 = new Warning(630);
        RoadBlock RB  = new RoadBlock(1037);
        Warning   WR  = new Warning(1060);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);
    }
Example #9
0
    private void wave6()
    {
        RoadBlock RB2 = new RoadBlock(387);
        Warning   WR2 = new Warning(410);
        RoadBlock RB  = new RoadBlock(1247);
        Warning   WR  = new Warning(1280);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);
    }
Example #10
0
    private void wave11()
    {
        RoadBlock RB2 = new RoadBlock(821);
        Warning   WR2 = new Warning(850);
        RoadBlock RB  = new RoadBlock(1037);
        Warning   WR  = new Warning(1060);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);
    }
Example #11
0
    private void wave10()
    {
        RoadBlock RB2 = new RoadBlock(603);
        Warning   WR2 = new Warning(630);
        RoadBlock RB  = new RoadBlock(821);
        Warning   WR  = new Warning(850);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);
    }
Example #12
0
    private void wave8()
    {
        RoadBlock RB2 = new RoadBlock(387);
        Warning   WR2 = new Warning(410);
        RoadBlock RB  = new RoadBlock(821);
        Warning   WR  = new Warning(850);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);

        PowerUpLife pul = new PowerUpLife(603);

        Game.main.LateAddChild(pul);
        PowerUpSign PS = new PowerUpSign(630);

        Game.main.LateAddChild(PS);
    }
    public void PermanentSetUpRoadBlock(RoadBlock owner)
    {
        string     firePointName = firePointType.ToString();
        GameObject block         = ObjectPoolersHolder.RoadBlocksFirePointPooler.PermanentSpawn(firePointName);

        block.transform.parent           = owner.transform;
        owner.firePoint                  = block.GetComponent <FirePoint>();
        block.transform.localPosition    = Vector3.zero;
        block.transform.localEulerAngles = Vector3.zero;

        //for (int i = 0; i < block.transform.GetChild(0).transform.childCount; i++)
        //{
        //    bool randomActiveExplosion = Random.value > 0.7f ? true : false;
        //    block.transform.GetChild(0).transform.GetChild(i).transform.GetChild(0).gameObject.SetActive(randomActiveExplosion);
        //    block.transform.GetChild(0).transform.GetChild(i).GetComponent<EntityCondition>().ResetCurrentCondition(conditionPerWall);
        //}

        owner.roadBlockData.firePointData.PermanentSetUpFirePoint(owner.firePoint);
    }
Example #14
0
    private void wave9()
    {
        RoadBlock RB2 = new RoadBlock(821);
        Warning   WR2 = new Warning(850);
        RoadBlock RB  = new RoadBlock(1247);
        Warning   WR  = new Warning(1280);

        Game.main.LateAddChild(RB);
        Game.main.LateAddChild(RB2);
        Game.main.LateAddChild(WR);
        Game.main.LateAddChild(WR2);

        PowerUpGun pug = new PowerUpGun(1037);

        Game.main.LateAddChild(pug);
        PowerUpSign PS = new PowerUpSign(1060);

        Game.main.LateAddChild(PS);
    }
Example #15
0
    private void GenerateObjectsForBlock(RoadBlock block)
    {
        //
        int maxNumberOfCoins     = gameManager.GetMaxNumberOfCoins();
        int maxNumberOfObstacles = gameManager.GetMaxNumberOfObstacles();

        // Generate number of coins
        int numberOfGeneratedCoins = Random.Range(0, maxNumberOfCoins + 1);

        // Generate number of obstacles
        int numberOfGeneratedObstacles = Random.Range(0, maxNumberOfObstacles + 1);

        // Create objects
        List <GameObject> roadObjects = new List <GameObject>();

        foreach (int _ in Enumerable.Range(0, numberOfGeneratedCoins))
        {
            var prefab = foodPrefabs[Random.Range(0, foodPrefabs.Length)];
            roadObjects.Add(Instantiate(prefab));
        }

        foreach (int _ in Enumerable.Range(0, numberOfGeneratedObstacles))
        {
            var prefab = obstaclePrefabs[Random.Range(0, obstaclePrefabs.Length)];
            roadObjects.Add(Instantiate(prefab));
        }

        // Get indices
        var indices = block.GetAllIndices();

        // Put objects to road object
        foreach (GameObject roadObject in roadObjects)
        {
            var position = Random.Range(0, indices.Count);
            var index    = indices[position];
            block.PutObject(roadObject, index.row, index.column);
        }
    }
 public void setNextRoadBlock(RoadBlock rb)
 {
     nextRoadBlock = rb;
 }
 public RoadBlock(MapHexa.Coordinate coords, int id)
 {
     coord = coords;
     //roadDirection = dir;
     setBlockId(id);
     nextRoadBlock = null;
 }
 public void addRoadBlock(RoadBlock block)
 {
     if (block == null)
         return;
     block.setRoadId( this.roadId);
     roadBlocks.Add (block);
     // Set hexagon data, linking hexa to the added block and giving it a road -type
     GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().roadBlock = block;
     GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().rbid = block.getBlockId();
     GameObject.Find ("GameController").GetComponent<MapData> ().getHexa (block.coord).GetComponent<MapHexa> ().setType (MapHexa.HexType.Road);
 }
Example #19
0
        /// <summary>
        /// Load graphics content for the screen.
        /// </summary>
        public override void LoadContent()
        {
            spriteBatch  = new SpriteBatch(m_core.GraphicsDevice);
            m_player     = new Player();
            m_floor      = new Floor();
            m_enemy      = new Enemy();
            m_car        = new Car();
            m_tree       = new Tree();
            m_building1  = new Building();
            m_building2  = new Building();
            m_building3  = new Building();
            m_building4  = new Building();
            m_building5  = new Building();
            m_building6  = new Building();
            m_building7  = new Building();
            m_building8  = new Building();
            m_building9  = new Building();
            m_building10 = new Building();
            m_building11 = new Building();
            m_building12 = new Building();

            coll_manager = new CollisionManager();

            m_block = new RoadBlock();

            GameCore.Camera.Player = m_player;

            font           = m_core.Content.Load <SpriteFont>("gamefont");
            m_player.Model = m_core.Content.Load <Model>("player/soldier2");
            m_floor.Model  = m_core.Content.Load <Model>("other/model2");
            m_enemy.Model  = m_core.Content.Load <Model>("player/zombie");

            m_car.Model   = m_core.Content.Load <Model>("other/skoda");
            m_tree.Model  = m_core.Content.Load <Model>("other/strom");
            m_block.Model = m_core.Content.Load <Model>("other/zataras");

            m_building1.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_a");
            m_building2.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_a");
            m_building3.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_a");
            m_building4.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_a");
            m_building5.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_b");
            m_building6.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_c");
            m_building7.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_c");
            m_building8.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_c");
            m_building9.Model  = m_core.Content.Load <Model>("other/budova_skola/blok_vchod_a");
            m_building10.Model = m_core.Content.Load <Model>("other/budova_skola/blok_vchod_b");
            m_building11.Model = m_core.Content.Load <Model>("other/budova_skola/blok_vchod_a");
            m_building12.Model = m_core.Content.Load <Model>("other/budova_skola/blok_podstava");


            m_car.Position = new Vector3(0, -6, -20);
            m_car.setBoundingBox();
            coll_manager.AddEntity(m_car);

            m_block.Position = new Vector3(20, -6, -20);
            m_block.setBoundingBox();
            coll_manager.AddEntity(m_block);

            m_tree.Position = new Vector3(20, 5, 0);
            m_tree.setBoundingBox();
            coll_manager.AddEntity(m_tree);

            m_building1.Position  = new Vector3(130, 4, 90);
            m_building2.Position  = new Vector3(-30, 4, 90);
            m_building3.Position  = new Vector3(-190, 4, 90);
            m_building4.Position  = new Vector3(290, 4, 90);
            m_building5.Position  = new Vector3(-200, 4, 100);
            m_building6.Position  = new Vector3(-130, 4, 140);
            m_building7.Position  = new Vector3(30, 4, 140);
            m_building8.Position  = new Vector3(190, 4, 140);
            m_building9.Position  = new Vector3(-130, 4, 80);
            m_building10.Position = new Vector3(30, 4, 80);
            m_building11.Position = new Vector3(190, 4, 80);
            m_building12.Position = new Vector3(250, -5, 30);

            m_building1.setBoundingBox();
            m_building2.setBoundingBox();
            m_building3.setBoundingBox();
            m_building4.setBoundingBox();
            m_building5.setBoundingBox();
            m_building6.setBoundingBox();
            m_building7.setBoundingBox();
            m_building8.setBoundingBox();
            m_building9.setBoundingBox();
            m_building10.setBoundingBox();
            m_building11.setBoundingBox();

            coll_manager.AddEntity(m_building1);
            coll_manager.AddEntity(m_building2);
            coll_manager.AddEntity(m_building3);
            coll_manager.AddEntity(m_building4);
            coll_manager.AddEntity(m_building5);
            coll_manager.AddEntity(m_building6);
            coll_manager.AddEntity(m_building7);
            coll_manager.AddEntity(m_building8);
            coll_manager.AddEntity(m_building9);
            coll_manager.AddEntity(m_building10);

            m_player.Manager = coll_manager;
        }
Example #20
0
        public async static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new ApplicationDbContext(serviceProvider.GetRequiredService <DbContextOptions <ApplicationDbContext> >()))
            {
                var roleStore = new RoleStore <IdentityRole>(context);
                var userstore = new UserStore <User>(context);

                if (!context.Roles.Any(r => r.Name == "Administrator"))
                {
                    var role = new IdentityRole {
                        Name = "Administrator", NormalizedName = "Administrator"
                    };
                    await roleStore.CreateAsync(role);
                }

                if (!context.User.Any(u => u.Email == "*****@*****.**"))
                {
                    //  This method will be called after migrating to the latest version.
                    User user = new User
                    {
                        UserName           = "******",
                        NormalizedUserName = "******",
                        Email           = "*****@*****.**",
                        NormalizedEmail = "*****@*****.**",
                        EmailConfirmed  = true,
                        LockoutEnabled  = false,
                        SecurityStamp   = Guid.NewGuid().ToString("D")
                    };
                    var passwordHash = new PasswordHasher <User>();
                    user.PasswordHash = passwordHash.HashPassword(user, "Admin8*");
                    await userstore.CreateAsync(user);

                    await userstore.AddToRoleAsync(user, "Administrator");
                }

                // Look for any unitClasses.
                if (context.UnitClass.Any())
                {
                    return;   // DB has been seeded
                }

                var unitClass = new UnitClass[]
                {
                    new UnitClass {
                        Name = "Basic",

                        AbilityOneName        = "Punch",
                        AbilityOneDescription = "Lash out with your fists and smack the shit out of the enemy!",
                        AbilityOneDamage      = 15,

                        AbilityTwoName        = "Slap of Death",
                        AbilityTwoDescription = "Slap the life right out of the enemy!",
                        AbilityTwoDamage      = 50,
                        HpModifier            = 1
                    },
                };

                foreach (UnitClass u in unitClass)
                {
                    context.UnitClass.Add(u);
                }
                context.SaveChanges();

                var characters = new Character[]
                {
                    new Character {
                        Name        = "Mordran",
                        UnitClassId = unitClass.Single(u => u.Name == "Basic").Id,
                        HP          = 100,
                        User        = context.User.Single(user => user.Email == "*****@*****.**")
                    },
                };

                foreach (Character c in characters)
                {
                    context.Character.Add(c);
                }
                context.SaveChanges();


                var enemy = new Enemy[]
                {
                    new Enemy {
                        Name        = "Zombie",
                        UnitClassId = unitClass.Single(u => u.Name == "Basic").Id,
                        HP          = 100,
                        Boss        = false
                    },
                    new Enemy {
                        Name        = "Lich",
                        UnitClassId = unitClass.Single(u => u.Name == "Basic").Id,
                        HP          = 75,
                        Boss        = false
                    },
                    new Enemy {
                        Name        = "Balrog",
                        UnitClassId = unitClass.Single(u => u.Name == "Basic").Id,
                        HP          = 200,
                        Boss        = true
                    }
                };

                foreach (Enemy e in enemy)
                {
                    context.Enemy.Add(e);
                }
                context.SaveChanges();

                var adventure = new Adventure[]
                {
                    new Adventure {
                        Title = "The Epic One"
                    },
                };

                foreach (Adventure a in adventure)
                {
                    context.Adventure.Add(a);
                }
                context.SaveChanges();

                var roadBlock1 = new RoadBlock();
                roadBlock1.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock1.StartingPoint    = true;
                roadBlock1.Description      = "You are a loyal member of the Kings Army.  One evening, while on patrol, a woman rushes up to you and says 'It took my necklace!!  That THING took the necklace that's been in my family for generations!' You look past her to see a large creature skulking into the woods nearby.";
                roadBlock1.PreviousOptionId = null;

                context.RoadBlock.Add(roadBlock1);
                context.SaveChanges();

                var options1 = new PathOption[]
                {
                    new PathOption
                    {
                        Description   = "Rush into the woods after the creature!",
                        LeadsToCombat = false
                    },
                    new PathOption
                    {
                        Description   = "Keep on walking, this isn't any of your concern.",
                        LeadsToCombat = true
                    }
                };

                foreach (PathOption p in options1)
                {
                    context.PathOption.Add(p);

                    StoryPath path = new StoryPath();

                    path.RoadBlockId  = roadBlock1.Id;
                    path.PathOptionId = p.Id;

                    context.StoryPath.Add(path);
                }
                context.SaveChanges();

                var roadBlock2_1 = new RoadBlock();
                roadBlock2_1.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock2_1.Description      = "As you enter the woods the world goes black.  The forrest is so dark you cannot see.  You hear nothing but the wind rushing through the branches.";
                roadBlock2_1.PreviousOptionId = options1.Single(p => p.Description == "Rush into the woods after the creature!").Id;
                roadBlock2_1.StartingPoint    = false;

                context.RoadBlock.Add(roadBlock2_1);
                context.SaveChanges();

                var options2_1 = new PathOption[]
                {
                    new PathOption
                    {
                        Description   = "Feel around in the darkness for something to make a torch.",
                        LeadsToCombat = false
                    },

                    new PathOption
                    {
                        Description   = "Rush ahead blindly, the creature is getting away!",
                        LeadsToCombat = true
                    }
                };

                foreach (PathOption p in options2_1)
                {
                    context.PathOption.Add(p);

                    StoryPath path = new StoryPath();

                    path.RoadBlockId  = roadBlock2_1.Id;
                    path.PathOptionId = p.Id;

                    context.StoryPath.Add(path);
                }
                context.SaveChanges();

                RoadBlock Woods_1 = new RoadBlock();
                Woods_1.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                Woods_1.Description      = "You feel desparately on the ground for anything that will burn.  You find a dry branch, tear the sleae of your tunic off and wrap the top of the branch with it.  You use flint to spark the cloth alight.  You press on into the forrest.  You come to a clearing blanketed in low hanging fog.  The air feels cold, and across the clearing you see the necklace lying on the stump of a tree.  You rush forward but stop short as a figure glides around from the forrest edge towards the necklace.  The figure is floating half a foot off the ground and is cloaked in a black decrepit looking robe embroidered with glittering runes.  Its skin is pale and you can see spots where the flesh is decaying.  You recognize the creature as a Lich, an undead sorceror.  The Lich doesn't appear to have noticed your presence.  It turns towards the necklace and green magic shoots from its fingers!  The necklace rises from the stump.  The lich is transfering its essence into the neckalce to create a phylactory!  If it succeeds it will become immortal and torment the nearby village!";
                Woods_1.PreviousOptionId = options2_1.Single(o => o.Description == "Feel around in the darkness for something to make a torch.").Id;
                Woods_1.StartingPoint    = false;

                context.RoadBlock.Add(Woods_1);
                context.SaveChanges();

                RoadBlock Woods_2 = new RoadBlock();
                Woods_2.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                Woods_2.Description      = "You run with your arms splayed in front of you feeling for any trees that might be in your way.  Brush snags at your trousers.  You feel wiry twigs claw at your face.  Suddenly the ground beneath your feet disapears.  You fall off the edge of a cliff and plummett to your death.";
                Woods_2.GameOver         = true;
                Woods_2.PreviousOptionId = options2_1.Single(o => o.Description == "Rush ahead blindly, the creature is getting away!").Id;
                Woods_2.StartingPoint    = false;

                context.RoadBlock.Add(Woods_2);
                context.SaveChanges();

                var optionsWood_1 = new PathOption[]
                {
                    new PathOption()
                    {
                        Description   = "Draw your weapon and prepare for battle!  This creature cannot be allowed to terrorize your people!",
                        LeadsToCombat = true
                    },
                    new PathOption()
                    {
                        Description   = "The creature fills you with terror and you turn and run back towards the woods to try and escape!",
                        LeadsToCombat = false
                    }
                };

                foreach (PathOption o in optionsWood_1)
                {
                    context.PathOption.Add(o);

                    StoryPath path = new StoryPath();
                    path.PathOptionId = o.Id;
                    path.RoadBlockId  = Woods_1.Id;

                    context.StoryPath.Add(path);
                }

                context.SaveChanges();

                RoadBlock Woods_1_2 = new RoadBlock();
                Woods_1_2.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                Woods_1_2.Description      = "The Lich hears you rushing away!  The air around you glows green and you feel your body leave the ground.  You are pulled back with such force that the air is knocked out of your lungs!  The Lich is in front of you now, its eyes glowing a sinister blue.  It raises a hand and lighting crackles from its fingertips.  Your body is wracked with pain and you all to the ground in a heap!";
                Woods_1_2.PreviousOptionId = optionsWood_1.Single(o => o.Description == "The creature fills you with terror and you turn and run back towards the woods to try and escape!").Id;
                Woods_1_2.StartingPoint    = false;

                context.RoadBlock.Add(Woods_1_2);
                context.SaveChanges();

                PathOption Woods_1_2options = new PathOption();
                Woods_1_2options.Description   = "There is no escaping!  Stand and draw your weapon.  Even though you are injured the time has come to end this!";
                Woods_1_2options.LeadsToCombat = true;

                context.PathOption.Add(Woods_1_2options);

                StoryPath WoodsPathFinal = new StoryPath();
                WoodsPathFinal.PathOptionId = Woods_1_2options.Id;
                WoodsPathFinal.RoadBlockId  = Woods_1_2.Id;

                context.StoryPath.Add(WoodsPathFinal);
                context.SaveChanges();

                RoadBlock WoodsFinale1 = new RoadBlock()
                {
                    Description      = "With one final blow, the Lich lets out an agonizing screech and dissipates into a clowd of smoke.  You are vicotrious!  The Lich was unusccessful in creating its phylactery.  You grab the necklace from the ground and venture back towards the village.  You find the woman waiting by the roadside.  You hand her the necklace and she thanks you!  You turn towards the nearest tavern, you deserve a drink!",
                    StartingPoint    = false,
                    AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id,
                    PreviousOptionId = Woods_1_2options.Id,
                };

                context.RoadBlock.Add(WoodsFinale1);
                context.SaveChanges();

                RoadBlock WoodsFinale2 = new RoadBlock()
                {
                    Description      = "With one final blow, the Lich lets out an agonizing screech and dissipates into a clowd of smoke.  You are vicotrious!  The Lich was unusccessful in creating its phylactery.  You grab the necklace from the ground and venture back towards the village.  You find the woman waiting by the roadside.  You hand her the necklace and she thanks you!  You turn towards the nearest tavern, you deserve a drink!",
                    StartingPoint    = false,
                    AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id,
                    PreviousOptionId = optionsWood_1.Single(o => o.Description == "Draw your weapon and prepare for battle!  This creature cannot be allowed to terrorize your people!").Id
                };

                context.RoadBlock.Add(WoodsFinale2);
                context.SaveChanges();



                RoadBlock roadBlock2_2 = new RoadBlock();
                roadBlock2_2.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock2_2.Description      = "As you turn to leave the woman becomes angry.  You turn away to head back towards the barracks.  You hear the sound of bones breaking, and cloth ripping.  The moon goes dark and the world rings out with a bellowing roar!";
                roadBlock2_2.PreviousOptionId = options1.Single(o => o.Description == "Keep on walking, this isn't any of your concern.").Id;
                roadBlock2_2.StartingPoint    = false;

                context.RoadBlock.Add(roadBlock2_2);
                context.SaveChanges();

                var options2_2 = new PathOption[]
                {
                    new PathOption()
                    {
                        Description   = "Stop and look back.",
                        LeadsToCombat = false
                    },

                    new PathOption()
                    {
                        Description   = "RUN FAST!",
                        LeadsToCombat = false
                    }
                };

                foreach (PathOption p in options2_2)
                {
                    context.PathOption.Add(p);

                    StoryPath path = new StoryPath();
                    path.RoadBlockId  = roadBlock2_2.Id;
                    path.PathOptionId = p.Id;

                    context.StoryPath.Add(path);
                }
                context.SaveChanges();

                RoadBlock roadBlock3_1 = new RoadBlock();
                roadBlock3_1.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock3_1.Description      = "As you turn you see an enormous dragon where the woman once stood.  The dragon is black with glowing red eyes.  Its immense wings unfold from its back.  Smoke and fiery sparks lick from its great jaws.  Clearly the woman was hiding her true nature from you.  The dragon bares takes a step towards you and belows a challanging roar!";
                roadBlock3_1.PreviousOptionId = options2_2.Single(p => p.Description == "Stop and look back.").Id;
                roadBlock3_1.StartingPoint    = false;

                context.RoadBlock.Add(roadBlock3_1);
                context.SaveChanges();

                RoadBlock roadBlock3_2 = new RoadBlock();
                roadBlock3_2.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock3_2.Description      = "You run faster than you've ever run before.  From behind you comes a ground shaking roar and you feel the ground shaking beneath you.  You steal a glance behind you and see an enormous dragon barelling towards you!  Clearly the woman wasn't telling you the entire truth.  The woman, now in the form of a immense black dragon, unfurls her immense wings.  The gust of wind from her wings causes you to plummet to the ground.  You roll over on your back to see the behemoth tower above you!  It raises it's head with smoke and fiery sparks escaping its jaws and roars!";
                roadBlock3_2.StartingPoint    = false;
                roadBlock3_2.PreviousOptionId = options2_2.Single(p => p.Description == "RUN FAST!").Id;

                context.RoadBlock.Add(roadBlock3_2);
                context.SaveChanges();

                PathOption option3_1 = new PathOption();
                option3_1.Description   = "Draw your weapon and prepare for battle!";
                option3_1.LeadsToCombat = true;

                context.PathOption.Add(option3_1);
                context.SaveChanges();

                StoryPath path3_1 = new StoryPath();
                path3_1.PathOptionId = option3_1.Id;
                path3_1.RoadBlockId  = roadBlock3_1.Id;

                context.StoryPath.Add(path3_1);
                context.SaveChanges();

                PathOption option3_2 = new PathOption();
                option3_2.Description   = "You roll out of reach of the beasts immense claws.  Get to your feet and draw your weapon.  This Isn't going to be easy.";
                option3_2.LeadsToCombat = true;

                context.PathOption.Add(option3_2);
                context.SaveChanges();

                StoryPath path3_2 = new StoryPath();
                path3_2.PathOptionId = option3_2.Id;
                path3_2.RoadBlockId  = roadBlock3_2.Id;

                RoadBlock roadBlock4_Final = new RoadBlock();
                roadBlock4_Final.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock4_Final.Description      = "The dragon let's out one final gutteral roar as it drops lifelessly to the ground.  You dust yourself off, sheath your sword and head to the nearest tavern.  You deserve a drink!";
                roadBlock4_Final.PreviousOptionId = option3_1.Id;
                roadBlock4_Final.StartingPoint    = false;

                context.RoadBlock.Add(roadBlock4_Final);
                context.SaveChanges();

                RoadBlock roadBlock4_2Final = new RoadBlock();
                roadBlock4_2Final.AdventureId      = adventure.Single(a => a.Title == "The Epic One").Id;
                roadBlock4_2Final.Description      = "The dragon let's out one final gutteral roar as it drops lifelessly to the ground.  You dust yourself off, sheath your sword and head to the nearest tavern.  You deserve a drink!";
                roadBlock4_2Final.PreviousOptionId = option3_1.Id;
                roadBlock4_2Final.StartingPoint    = false;

                context.RoadBlock.Add(roadBlock4_2Final);
                context.SaveChanges();
            }
        }
Example #21
0
 private void DespawnObstacles(RoadBlock block)
 {
     _obstacleManager.ReturnObstacle(block.LeftLane.Obstacle);
     _obstacleManager.ReturnObstacle(block.MiddleLane.Obstacle);
     _obstacleManager.ReturnObstacle(block.RightLane.Obstacle);
 }
Example #22
0
 private void DestroyLastBlock(RoadBlock first)
 {
     Destroy(first.gameObject);
     roadBlocks.Remove(first);
 }