예제 #1
0
 public Boss(ContentManager content, Vector3 position)
 {
     this.position = position;
     velocity      = Vector3.Zero;
     health        = 100;
     Model         = content.Load <Model>(@"models/boss1");
     texture       = content.Load <Texture2D>(@"models/BossTexture");
     name          = RealName.Boss1;
     score         = 15;
     weapon        = new BotMissile(content);
     activated     = false;
     rotate(new Vector3(0, -MathHelper.ToRadians(45), 0));
 }
 public MissileBot(ContentManager content, Vector3 position, Vector3 playerPosition)
 {
     this.position = position;
     velocity      = playerPosition - position;
     velocity.Normalize();
     health     = 30;
     Model      = content.Load <Model>(@"models/missilebot");
     texture    = content.Load <Texture2D>(@"models/rocketBotTexture");
     name       = RealName.MeleeBot;
     score      = 30;
     state      = MeleeBotState.Idle;
     timeToFire = TimeSpan.FromSeconds(2);
     weapon     = new BotMissile(content);
     enabled    = true;
     rotate(new Vector3(0, -MathHelper.ToRadians(90), 0));
 }
 public Infector(ContentManager content, Vector3 position)
 {
     this.content    = content;
     this.position   = position;
     velocity        = Vector3.Zero;
     health          = 250;
     Model           = content.Load <Model>(@"models/infector");
     texture         = content.Load <Texture2D>(@"models/BossTexture");
     name            = RealName.Boss1;
     score           = 15;
     weapon          = new BotMissile(content);
     activated       = false;
     cellSphere      = new BoundingSphere(position, 80);
     convertingCells = new List <TimeSpan>();
     rotate(new Vector3(0, MathHelper.ToRadians(90), 0));
 }
예제 #4
0
        public virtual void Update(GameTime gameTime)
        {
            Player p = entities[0] as Player;

            if (p.SwitchedFromShield)
            {
                for (int j = 0; j < entities.Count; j++)
                {
                    if (entities[j] is Shield)
                    {
                        entities.Remove(entities[j]);
                        j = 0;
                    }
                }
                p.SwitchedFromShield = false;
            }
            for (int i = 0; i < entities.Count; i++)
            {
                if (!entities[i].isDead)
                {
                    if (entities[i] is ChargeBall)
                    {
                        ChargeBall cb = entities[i] as ChargeBall;
                        cb.Update(gameTime, p.Position, p.Rotation);
                    }
                    if (entities[i] is Laser)
                    {
                        Laser l = entities[i] as Laser;
                        l.Update(gameTime, p.Position, p.Rotation);
                    }
                    if (entities[i] is Boss)
                    {
                        Boss b = entities[i] as Boss;
                        b.Update(gameTime, p.Position);
                    }
                    if (entities[i] is ClotSide)
                    {
                        ClotSide cs = entities[i] as ClotSide;
                        cs.Update(gameTime, velocity);
                    }
                    if (entities[i] is Infector)
                    {
                        Infector inf = entities[i] as Infector;
                        inf.Update(gameTime, p.Position);
                    }
                    if (entities[i] is TokenPickup)
                    {
                        TokenPickup tp = entities[i] as TokenPickup;
                        tp.Update(gameTime);
                    }
                    if (entities[i] is PlayerWeapon)
                    {
                        PlayerWeapon w = entities[i] as PlayerWeapon;
                        w.Update(gameTime, p.Position, p.Rotation);
                    }
                    if (entities[i] is BotWeapon)
                    {
                        BotWeapon bw = entities[i] as BotWeapon;
                        bw.Update(gameTime, p.Position, p.Rotation);
                    }
                    if (entities[i] is Shield)
                    {
                        Shield s = entities[i] as Shield;
                        s.Update(gameTime, p.Velocity, p.controls.isPlayerFiring());
                    }
                    if (entities[i] is LatchingCell || entities[i] is MeleeBot || entities[i] is MissileBot)
                    {
                        if (entities[i] is LatchingCell)
                        {
                            LatchingCell lc = entities[i] as LatchingCell;
                            lc.Update(gameTime, p.Position);
                        }
                        else if (entities[i] is MeleeBot)
                        {
                            MeleeBot mb = entities[i] as MeleeBot;
                            mb.Update(gameTime, p.Position);
                        }
                        else
                        {
                            MissileBot missBot = entities[i] as MissileBot;
                            missBot.Update(gameTime, p.Position);
                        }
                    }
                    entities[i].Update(gameTime);
                }
                else
                {
                    if (entities[i] is EnemiesAndPlayer)
                    {
                        EnemiesAndPlayer ep = entities[i] as EnemiesAndPlayer;
                        if (ep.killedBy())
                        {
                            p.addScore(ep.Score);
                            p.AddPowerup(15);
                            if (ep is MeleeBot || ep is MissileBot)
                            {
                                if (random.Next(2) == 0)
                                {
                                    Add(new TokenPickup(content, ep.Position));
                                }
                            }
                        }
                    }
                    entities.Remove(entities[i]);
                }
            }
        }