基于C#弹幕类射击游戏的实现——(九)BOSS

BOSS类和Enemy差不多,其实貌似因该继承自GameEnemy才对??

public class GameBoss : GameObject  
    {  
        protected Box[] SubBoxCollider = null; // BoxCollider用作大范围的检测,SubBoxCollider是细节检测  
          
        protected GameBarrage mBarrage = null; // 弹幕生成器  
          
        protected int BossWidth;  
        protected int BossHeight;  
        protected int HalfBossWidth;  
        protected int HalfBossHeight;  
          
        protected Vector2 Speed;  
          
        protected int Life; // 当前生命值  
        protected int MaxLife; // 最大生命值  
        public bool IsLive; // 是否存活  
          
        protected float ShowLife; // 用于显示血条  
        protected Rectangle HpRect = new Rectangle(10, 5, Config.ScreenWidth - 20, 8); // 血条显示位置  
          
        protected int State = 0; // BOSS状态,也可理解为当前应该发射的弹幕状态  
          
        public GameBoss(GameBarrage barrage)  
        {  
            this.mBarrage = barrage;  
            this.Life = 1;  
            this.MaxLife = 1;  
            this.ShowLife = 1;  
            this.IsLive = true;  
        }  
          
        public bool Collide(Box box)  
        {  
            // 先用大范围的碰撞盒检测  
            if ( BoxCollider.Collide(box) == false )  
            {  
                return false;  
            }  
              
            foreach ( Box subBox in SubBoxCollider )  
            {  
                if ( subBox.Collide(box) == true )  
                {  
                    return true;  
                }  
            }  
              
            return false;  
        }  
          
        public void DecLife(int decLife)  
        {  
            Life -= decLife;  
              
            if ( Life <= 0 )  
            {  
                IsLive = false;  
                GameBombManager.AddBomb(Position, true, 1.0f);  
            }  
        }  
          
        protected virtual void MoveLogic(float elapsedTime)  
        {  
              
        }  
          
        protected virtual void ShootLogic(float elapsedTime)  
        {  
              
        }  
          
        public override void Update(float elapsedTime)  
        {  
            float diff = Life - ShowLife;  
              
            ShowLife += diff * 2 * elapsedTime;  
              
            if ( ShowLife < Life )  
            {  
                ShowLife = Life;  
            }  
        }  
          
        public override void Render(Graphics g)  
        {  
            g.DrawRectangle(Pens.Wheat, HpRect);  
            g.FillRectangle(Brushes.Red, new Rectangle(12, 7, (int)((float)(HpRect.Width - 3) * ShowLife / (float)MaxLife), 5));  
            g.FillRectangle(Brushes.Green, new Rectangle(12, 7, (int)((float)(HpRect.Width - 3) * (float)Life / (float)MaxLife), 5));  
              
            if ( Config.IsDebug )  
            {  
                if ( Config.IsShowBox )  
                {  
                    foreach ( Box subBox in SubBoxCollider )  
                    {  
                        g.DrawRectangle(Pens.Green, subBox.ToRectangle());  
                    }  
                }  
                  
                g.DrawString("BossHP:" + Life.ToString(), Data.NormalFont, Brushes.Red, 300, 30);  
            }  
        }  
    }

唯一多出来的是BOSS会显示一个酷炫的血条。而且血条会像街机一样,受到大量伤害的时候,先猛的少一节,然后背景色才跟着慢慢减少的那种。。
管理类,依然简单

public class GameBossManager  
    {  
        private List<GameBoss> mBosss;  
          
        public GameBossManager()  
        {  
            this.mBosss = new List<GameBoss>();  
        }  
          
        public void AddBoss(GameBoss boss)  
        {  
            mBosss.Add(boss);  
        }  
          
        public bool Collide(Box box, int decLife)  
        {  
            for ( int i = 0; i < mBosss.Count; i++ )  
            {  
                if ( mBosss[i].Collide(box) == true )  
                {  
                    mBosss[i].DecLife(decLife);  
                    return true;  
                }  
            }  
              
            return false;  
        }  
          
        public void Update(float elapsedTime)  
        {  
            for ( int i = 0; i < mBosss.Count; i++ )  
            {  
                mBosss[i].Update(elapsedTime);  
                  
                if ( mBosss[i].IsLive == false )  
                {  
                    mBosss.RemoveAt(i);  
                    i--;  
                    continue;  
                }  
            }  
        }  
          
        public void Render(Graphics g)  
        {  
            foreach ( GameBoss boss in mBosss )  
            {  
                boss.Render(g);  
            }  
        }  
    }

接下来实现我们游戏里第一个BOSS
逻辑简单,比较笨弹幕也很弱。。但我能实现的就这么多了

public class Boss1 : GameBoss  
    {  
        private float WaitTime;  
        private float ShootWaitTime;  
          
        private float MoveDistance;  
        private bool IsLeft;  
          
        public Boss1(GameBarrage barrage, Vector2 position)  
            : base(barrage)  
        {  
            this.Position = position;  
              
            this.BoxCollider = new Box((int)position.X, (int)position.Y, 144, 156);  
              
            this.SubBoxCollider = new Box[3];  
            this.SubBoxCollider[0] = new Box(4 + 34 / 2, 0 + 147 / 2, 34, 147);  
            this.SubBoxCollider[1] = new Box(106 + 34 / 2, 0 + 147 / 2, 34, 147);  
            this.SubBoxCollider[2] = new Box(38 + 68 / 2, 0 + 90 / 2, 68, 90);  
              
            this.Life = 100;  
            this.MaxLife = 100;  
            this.ShowLife = 100;  
            this.Speed = new Vector2(50, 100);  
            this.IsLeft = false;  
              
            this.WaitTime = 0.5f;  
            this.ShootWaitTime = 1.0f;  
            this.MoveDistance = 0;  
              
            this.BossWidth = 144;  
            this.BossHeight = 156;  
            this.HalfBossWidth = BossWidth / 2;  
            this.HalfBossHeight = BossHeight / 2;  
        }  
          
        protected override void MoveLogic(float elapsedTime)  
        {  
            if (Position.Y < 120 )  
            {  
                Position.Y += Speed.Y * elapsedTime;  
                return;  
            }  
              
            if ( WaitTime > 0 )  
            {  
                WaitTime -= elapsedTime;  
                return;  
            }  
              
            if ( MoveDistance <= 0 )  
            {  
                MoveDistance = Helper.GetRandomFloat(50, 100);  
                  
                IsLeft = (Position.X - GameScene.MainScene.Player1Position.X) < 0 ? false : true;  
                  
                WaitTime = 2.0f;  
            }  
            else  
            {  
                if ( IsLeft )  
                {  
                    Position.X -= Speed.X * elapsedTime;  
                }  
                else  
                {  
                    Position.X += Speed.X * elapsedTime;  
                }  
                MoveDistance -= Speed.X * elapsedTime;  
            }  
        }  
          
        protected override void ShootLogic(float elapsedTime)  
        {  
            if ( ShootWaitTime > 0 )  
            {  
                ShootWaitTime -= elapsedTime;  
                return;  
            }  
              
            int time = 1;  
              
            switch ( State )  
            {  
                case 0:  
                    State = 1;  
                    time = BossBarrage.TwoFans(mBarrage, Position);  
                    break;  
                case 1:  
                    State = 2;  
                    time = BossBarrage.ThreeCircle(mBarrage, Position);  
                    break;  
                case 2:  
                    State = 3;  
                    time = BossBarrage.TwoReverseRotate(mBarrage, Position);  
                    break;  
                case 3:  
                    State = 4;  
                    time = BossBarrage.Line(mBarrage);  
                    time += BossBarrage.ThreeCircle(mBarrage, Position);  
                    break;  
                case 4:  
                    State = 5;  
                    time = BossBarrage.TwoFans(mBarrage, Position);  
                    time += BossBarrage.TwoReverseRotate(mBarrage, Position);  
                    time += BossBarrage.ThreeCircle(mBarrage, Position);  
                    break;  
                case 5:  
                    State = 6;  
                    time = BossBarrage.Line(mBarrage);  
                    time += BossBarrage.Petal(mBarrage, Position);  
                    break;  
                case 6:  
                    State = 7;  
                    time = BossBarrage.Line(mBarrage);  
                    time += BossBarrage.Petal(mBarrage, Position);  
                    time += BossBarrage.TwoFans(mBarrage, Position);  
                    break;  
                case 7:  
                    State = 0;  
                    time = BossBarrage.Line(mBarrage);  
                    time += BossBarrage.Petal(mBarrage, Position);  
                    time += BossBarrage.TwoFans(mBarrage, Position);  
                    time += BossBarrage.TwoReverseRotate(mBarrage, Position);  
                    break;  
                default:  
                    break;  
            }  
              
            WaitTime = 2;  
            ShootWaitTime = time + 2;  
              
            //BossBarrage.Petal(mBarrage, Position);  
        }  
          
        public override void Update(float elapsedTime)  
        {  
            MoveLogic(elapsedTime);  
            ShootLogic(elapsedTime);  
              
            SubBoxCollider[0].X = (int)Position.X + 4 + 34 / 2 - HalfBossWidth;  
            SubBoxCollider[0].Y = (int)Position.Y + 147 / 2 - HalfBossHeight;  
            SubBoxCollider[1].X = (int)Position.X + 106 + 34 / 2 - HalfBossWidth;  
            SubBoxCollider[1].Y = (int)Position.Y + 147 / 2 - HalfBossHeight;  
            SubBoxCollider[2].X = (int)Position.X + 38 + 68 / 2 - HalfBossWidth;  
            SubBoxCollider[2].Y = (int)Position.Y + 90 / 2 - HalfBossHeight;  
              
            base.Update(elapsedTime);  
        }  
          
        public override void Render(Graphics g)  
        {  
            g.DrawImage(Data.Boss1Source,  
                        new Rectangle((int)Position.X - HalfBossWidth, (int)Position.Y - HalfBossHeight, BossWidth, BossHeight),  
                        new Rectangle(0, 0, BossWidth, BossHeight),  
                        GraphicsUnit.Pixel);  
              
            base.Render(g);  
        }  
    }

可以看出,BOSS分为几个阶段,不同阶段会发射不同种类的弹幕(会有组合弹幕)
BOSS是发挥创意最好的地方,通过不同的弹幕可以组合出不同种类的BOSS,最好用脚本语言来控制AI,推荐Lua

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,193评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,306评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,130评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,110评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,118评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,085评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,007评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,844评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,283评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,508评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,395评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,985评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,630评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,797评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,653评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,553评论 2 352

推荐阅读更多精彩内容