C#游戏编程:《控制台小游戏系列》之《八、爆破七色砖实例》

一、游戏分析

    相信各位读者都曾玩过一款叫做《打砖块》的小游戏,和贪吃蛇一样,也是一款80后皆知的经典小游戏。游戏虽然简单但极富挑战性,这章的内容就是制作一款类打砖块的小游戏,继续说明和熟悉游戏框架的使用。和前几个小游戏不同,本章的小游戏有了一些进步,最明显的是有了关卡的概念,游戏不再是单调的一关,你可以自己设计自己所想要的关卡,这一定程度上提高了游戏的可玩性。但是这个游戏和前面的一样,也是一个DEMO游戏,游戏还不是完整的,至少这个游戏就没有开始界面和信息保存等特征,目的有二:第一,为了减少代码篇幅,显得更清晰简单;第二,界面的实现与具体游戏的逻辑关联不大,把焦点放到游戏的主要部分而不是次要的,更能清晰地让读者理解游戏运行的逻辑。
  让我们把焦点放到这个游戏上,这款游戏继承了原始打砖块游戏的优良传统,又有我们定制的各种特征,山寨中不失创新,更难能可贵的是:我们是在控制台实现,用一个个字符绘制出来的,最后实现的画面效果平滑、操作灵活。玩过打砖块游戏的读者都知道,游戏中主要的对象有撞击砖块的小球、有反弹小球的挡板和被爆破的砖墙,当然,砖墙就是一个个砖块组合而成的。游戏的对象非常清晰,对它们更详细的分析,并建立相关的类,加上游戏规则和游戏逻辑,游戏自然而然的就出来了。
  说到游戏规则,让我们看看我们自己的打砖块的游戏规则:
  ■游戏开始小球有99条生命(吃了唐僧肉),得分为0分,关卡默认为第一关。
  ■按空格键开始/暂停游戏,开始游戏小球在挡板上方下落,玩家需要控制挡板把小球接住,这过程中小球的反弹方向和速度可能会发生3种情况:第一,挡板速度为0,即挡板不动,小球按正常方向反弹;第二,挡板在运动中,小球的反弹速度得到加成;第三,小球会得到一个随机的反弹值,挡板如果运动中就速度加成。
  ■小球反弹方向与挡板运动方向相反。
  ■小球撞中砖块,砖块消失,玩家得分10分,小球Y方向相反运动,这过程中可能会发生连撞砖块情况,当然,这款游戏没有对此进行特殊奖励,只是加快通关罢了。
  ■小球与边界的碰撞,除了下边界外,小球与其他边界的碰撞都发生反弹动作。
  ■小球死亡,小球下落到挡板以下,减一条生命,当得分大于20分时,扣减20分。
  ■通关规则,小球撞掉所有砖块,进入下一关,得分增加100分。
  ■游戏结束,小球生命为0,游戏结束,显示结束画面。
  ■按F1切换上一关,按F2切换下一关。
  游戏规则建立以后,就要考虑游戏中的对象了,需要为它们建立模型:

  挡板
  从图中可以看到,挡板就是一条长为N宽为1有N个小方块组成的长方行板块状(当然,在我们这里可以称为一个N*1的矩形),挡板固定在游戏界面的底端,只可以左右方向移动。
  小球
  从图中可以看到,小球用一个圆形字符表示,小球可以在游戏屏幕区域自由反弹。
  砖块
   从图中可以看到,砖块是由4*2的方块字符组成的,然而,在游戏中,我们把它们当作一个整体,也即是一块砖块。
  砖墙
  也就是砖块的集合。
   砖墙的数据不是硬编码到代码中,否则每次添加一个新的关卡就要重新编译项目了,我们把表示砖墙的数据存储在磁盘中的文本文档或者是xml文件上,这样当添加新关卡或者想修改关卡数据的时候就只需要修改程序外部数据文件即可。两种存储方法为:
  文本文档存储法:
   文件名约定:Level+编号.txt
   砖墙数据表示:(0表示空,非0表示砖块,其中5表示砖的行数,7表示砖的列数,列数不能超过7)
   
  XML文档表示法:
   文件名约定:Level+编号.xml
   砖墙数据表示:(0表示空,非0表示砖块,Rn列数不能超过7)
   
   为了能够使游戏在通关之后能够进入下一关,我们还需要一个关卡列表,记录关卡播放的顺序,关卡列表中的关卡数据是用一个名为LevelList的文本文档记录,其中存放的关卡项只存储与关卡文件关联的关卡名,文件类型后缀忽略,当然,关卡顺序可以随意调整,但要确保每个关卡名都存在与之对应的关卡文件:
   
    注意:以上关卡文件和关卡列表文件均放在游戏可执行文件路径下的Level文件夹下!

二、游戏类图分析

   游戏需求等分析清楚之后,我们把相关对象关联起来并分析,这里用UML静态类图表示(我画的图可能不是最准确的,但这就是我目前的想法,还希望你们的指点):

  类图分析:
  游戏对象:
     ■精灵类(Sprite)
     一个精灵表示游戏中的一个对象,也可以说是“参与”游戏中的一个演员,这是一个抽象类,封装有具体演员共有的属性和方法信息,比如演员的位置,演员的颜色,演员的速度方向等,所有的演员还有移动和绘制本身等功能。总的来说,这个类为其他演员类提供一个模板,要想成为“演员”就必须具有这样的特征,一定程度上提高了代码的重用性,减少冗余。
     ■小球类(Ball)
     小球是这个游戏的“演员”,所以它继承了精灵类,拥有了精灵的所有特征,然而小球这个演员与其他演员外表不同,它有自己的渲染实现。
     ■挡板类(Board)
     挡板这个“演员”也继承了精灵类,也有着精灵的特征。
     ■砖块类(Brick)
     这里的砖块有人会说它不是一个演员,最多只能算一个道具,听起来不错,不过因情况来考虑了,这里为了减少代码的重复编写,又考虑到砖块的特征与精灵十分接近,我们也让它继承精灵类,把它看作是一个不会动的演员(挂了?)。
     ■砖墙类(Wall)
     砖墙由砖块组合而成,是一对多的关系。
  数据访问接口:
    ■数据读写接口(IDataAccessor)
     为考虑到数据的存储形式的多样性,这里提供数据的读写接口,提供给具体读写类实现。   
    ■文本数据读写类(TxtDataAccessor)
     实现文本文档类型数据读写。
    ■XML数据读写类(XmlDataAccessor)
     实现xml类型数据读写。
  游戏类:
    ■游戏类(BreakoutGame)
     实现游戏的相关逻辑并呈现游戏画面。
    ■关卡类(Level)
     实现关卡的切换。

四、游戏实现

   有句话说得好:不打无准备之仗。在游戏实现之前,我们先实现游戏需要的辅助类,在这个游戏中,辅助的类包括数据的读写类和关卡类,我们先实现它们,以便提供给后期使用,而不必在写游戏逻辑过程中又考虑回来编写这些辅助类。
  首先实现数据的读写:
  ///IDataAccessor接口实现
[csharp]  view plain copy print ?
  1. using System;  
  2. namespace Breakout.DAL  
  3. {  
  4.     ///   
  5.     /// 数据存取接口  
  6.     ///   
  7.     public interface IDataAccessor  
  8.     {  
  9.         ///   
  10.         /// 读取数据  
  11.         ///   
  12.         ///   
  13.         Int32[,] read();  
  14.         ///   
  15.         /// 写入数据  
  16.         ///   
  17.         void write(Int32[,] mapData);  
  18.     }  
  19. }  
   文本文档类型数据的读写类:
  ///TxtDataAccessor类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using System.IO;  
  3. using System.Text;  
  4.   
  5. namespace Breakout.DAL  
  6. {  
  7.     ///   
  8.     /// TXT数据访问类  
  9.     ///   
  10.     public class TxtDataAccessor : IDataAccessor  
  11.     {  
  12.         private String fileName;  
  13.   
  14.         public TxtDataAccessor(String fileName)  
  15.         {  
  16.             this.fileName = fileName;  
  17.         }  
  18.   
  19.         public Int32[,] read()  
  20.         {  
  21.             Int32 rows = 0;  
  22.             Int32 cols = 0;  
  23.             Int32 index = 0;  
  24.             Int32[,] mapData = null;  
  25.   
  26.             try  
  27.             {  
  28.                 StreamReader sr = new StreamReader(fileName);  
  29.                 String[] data = sr.ReadLine().Split(',');  
  30.                 rows = Int32.Parse(data[0]);  
  31.                 cols = Int32.Parse(data[1]);  
  32.                 mapData = new Int32[rows, cols];  
  33.   
  34.                 while (!sr.EndOfStream)  
  35.                 {  
  36.                     String[] values = sr.ReadLine().Split(',');  
  37.   
  38.                     for (Int32 c = 0; c < cols; c++)  
  39.                     {  
  40.                         mapData[index, c] = Int32.Parse(values[c]);  
  41.                     }  
  42.                     index++;  
  43.                 }  
  44.   
  45.                 return mapData;  
  46.             }  
  47.             catch (FileNotFoundException e)  
  48.             {  
  49.                 throw e;  
  50.             }  
  51.         }  
  52.   
  53.         public void write(Int32[,] mapData)  
  54.         {  
  55.             if (mapData == null)  
  56.                 return;  
  57.             try  
  58.             {  
  59.                 Int32 rows = mapData.GetUpperBound(0) + 1;  
  60.                 Int32 cols = mapData.GetUpperBound(1) + 1;  
  61.   
  62.                 StreamWriter sw = new StreamWriter(fileName, false);  
  63.                 sw.WriteLine(rows.ToString() + "," + cols.ToString());  
  64.                 for (Int32 r = 0; r < rows; r++)  
  65.                 {  
  66.                     StringBuilder strb = new StringBuilder();  
  67.                     for (Int32 c = 0; c < cols; c++)  
  68.                     {  
  69.                         strb.Append(mapData[r, c].ToString() + ",");  
  70.                     }  
  71.                     sw.WriteLine(strb.Remove(strb.Length - 1, 1).ToString());  
  72.                 }  
  73.                 sw.Close();  
  74.             }  
  75.             catch (Exception e)  
  76.             {  
  77.                 throw e;  
  78.             }  
  79.         }  
  80.     }  
  81. }  
   xml类型数据读写类实现为:
  ///XmlDataAccessor类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using System.Text;  
  3. using System.Xml;  
  4. using System.IO;  
  5.   
  6. namespace Breakout.DAL  
  7. {  
  8.     ///   
  9.     /// XML数据访问类  
  10.     ///   
  11.     public class XmlDataAccessor : IDataAccessor  
  12.     {  
  13.         private String fileName;  
  14.   
  15.         public XmlDataAccessor(String fileName)  
  16.         {  
  17.             this.fileName = fileName;  
  18.         }  
  19.   
  20.         public Int32[,] read()  
  21.         {  
  22.             try  
  23.             {  
  24.                 Int32[,] mapData = null;  
  25.                 XmlDocument xmlDoc = new XmlDocument();  
  26.                 xmlDoc.Load(fileName);  
  27.   
  28.                 XmlNodeList nodelist = xmlDoc.SelectSingleNode("Map").ChildNodes;  
  29.   
  30.                 if (nodelist[0].InnerText != "")  
  31.                 {  
  32.                     Int32 cols = nodelist[0].InnerText.Split(',').Length;  
  33.                     mapData = new Int32[nodelist.Count, cols];  
  34.   
  35.                     for (Int32 r = 0; r < nodelist.Count; r++)  
  36.                     {  
  37.                         for (Int32 c = 0; c < cols; c++)  
  38.                         {  
  39.                             mapData[r, c] = Int32.Parse(nodelist[r].InnerText.Split(',')[c]);  
  40.                         }  
  41.                     }  
  42.                 }  
  43.                 return mapData;  
  44.             }  
  45.             catch (FileNotFoundException e)  
  46.             {  
  47.                 throw e;  
  48.             }  
  49.         }  
  50.   
  51.         public void write(Int32[,] mapData)  
  52.         {  
  53.             if (mapData == null)  
  54.                 return;  
  55.             try  
  56.             {  
  57.                 FileInfo file = new FileInfo(fileName);  
  58.   
  59.                 if (file.Exists)  
  60.                 {  
  61.                     file.Delete();  
  62.                 }  
  63.   
  64.                 if (mapData != null)  
  65.                 {  
  66.                     XmlWriterSettings setting = new XmlWriterSettings();  
  67.                     setting.Indent = true;  
  68.                     setting.IndentChars = "    ";  
  69.                     using (XmlWriter writer = XmlWriter.Create(fileName, setting))  
  70.                     {  
  71.                         writer.WriteStartElement("Map");  
  72.                         for (Int32 r = 0; r <= mapData.GetUpperBound(0); r++)  
  73.                         {  
  74.                             StringBuilder strb = new StringBuilder();  
  75.                             for (Int32 c = 0; c <= mapData.GetUpperBound(1); c++)  
  76.                             {  
  77.                                 strb.Append(mapData[r, c].ToString() + ",");  
  78.                             }  
  79.                             writer.WriteElementString("R" + (r + 1).ToString(), strb.Remove(strb.Length - 1, 1).ToString());  
  80.                         }  
  81.                         writer.WriteEndElement();  
  82.                         writer.Flush();  
  83.                     }  
  84.                 }  
  85.             }  
  86.             catch (FileNotFoundException e)  
  87.             {  
  88.                 throw e;  
  89.             }  
  90.         }  
  91.   
  92.     }  
  93. }  
   关卡类主要是实现关卡列表的播放,切换游戏关卡:
  ///Level类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using System.IO;  
  3. using System.Collections.Generic;  
  4.   
  5. namespace Breakout  
  6. {  
  7.     ///   
  8.     /// 关卡类  
  9.     ///   
  10.     internal class Level  
  11.     {  
  12.         ///   
  13.         /// 关卡列表  
  14.         ///   
  15.         private static List m_levels = new List();  
  16.         private static Int32 m_index = -1;  
  17.   
  18.         ///   
  19.         /// 初始化关卡列表  
  20.         ///   
  21.         static Level()  
  22.         {  
  23.             try  
  24.             {  
  25.                 StreamReader sr = new StreamReader(@"Level\LevelList.txt");  
  26.   
  27.                 if (sr != null)  
  28.                 {  
  29.                     while (!sr.EndOfStream)  
  30.                     {  
  31.                         String level = sr.ReadLine();  
  32.                         if (level.IndexOf("Level") != -1)  
  33.                         {  
  34.                             m_levels.Add(@"Level\" + level + ".txt");  
  35.                         }  
  36.                     }  
  37.   
  38.                     sr.Close();  
  39.                     sr = null;  
  40.                 }  
  41.             }  
  42.             catch (Exception e)  
  43.             {  
  44.                 Console.WriteLine(e.Message);  
  45.                 Console.ReadLine();  
  46.             }  
  47.         }  
  48.   
  49.         ///   
  50.         /// 下一关  
  51.         ///   
  52.         ///   
  53.         public static String next()  
  54.         {      
  55.             if (++m_index > m_levels.Count - 1)  
  56.             {  
  57.                 m_index = 0;  
  58.             }   
  59.               
  60.             return m_levels[m_index];  
  61.         }  
  62.   
  63.         ///   
  64.         /// 上一关  
  65.         ///   
  66.         ///   
  67.         public static String prev()  
  68.         {  
  69.             if (--m_index < 0)  
  70.             {  
  71.                 m_index = 0;  
  72.             }  
  73.             return m_levels[m_index];  
  74.         }  
  75.   
  76.         ///   
  77.         /// 当前关卡  
  78.         ///   
  79.         ///   
  80.         public static String curr()  
  81.         {  
  82.             String level = m_levels[m_index];  
  83.   
  84.             Int32 dashIndex = level.LastIndexOf(@"\");  
  85.   
  86.             level = level.Substring(dashIndex + 1, level.Length - dashIndex - 1);  
  87.             level = level.Substring(0, level.LastIndexOf('.'));  
  88.             return level;  
  89.         }  
  90.     }  
  91. }  
   万事开头难,辅助类已经实现完毕,以后就可以为我们所用了 ,转移焦点到游戏主要对象上,这才是我们编写游戏的核心内容,从现在开始,你就是一个翻译官:把UML类图翻译为代码,首先实现的是精灵类:
  ///Sprite类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CGraphics;  
  3.   
  4. namespace Breakout  
  5. {  
  6.     ///   
  7.     /// 精灵类  
  8.     ///   
  9.     internal abstract class Sprite  
  10.     {  
  11.         #region 字段  
  12.   
  13.         ///   
  14.         /// 精灵颜色  
  15.         ///   
  16.         protected ConsoleColor m_color;  
  17.         ///   
  18.         /// 精灵位置  
  19.         ///   
  20.         protected CPoint m_position;  
  21.         ///   
  22.         /// 精灵上一时刻位置  
  23.         ///   
  24.         protected CPoint m_oldPoint;  
  25.         ///   
  26.         /// 精灵X轴方向速度  
  27.         ///   
  28.         protected Int32 m_vx;  
  29.         ///   
  30.         /// 精灵Y轴方向速度  
  31.         ///   
  32.         protected Int32 m_vy;  
  33.  
  34.         #endregion  
  35.  
  36.         #region 构造函数  
  37.   
  38.         ///   
  39.         /// 构造函数  
  40.         ///   
  41.         ///   
  42.         ///   
  43.         public Sprite(CPoint point, ConsoleColor color)  
  44.         {  
  45.             this.m_position = point;  
  46.             this.m_color = color;  
  47.             this.m_vx = 0;  
  48.             this.m_vy = 0;  
  49.         }  
  50.   
  51.         ///   
  52.         /// 构造函数  
  53.         ///   
  54.         ///   
  55.         ///   
  56.         ///   
  57.         public Sprite(Int32 x, Int32 y, ConsoleColor color)  
  58.         {  
  59.             this.m_position = new CPoint(x, y);  
  60.             this.m_color = color;  
  61.             this.m_vx = 0;  
  62.             this.m_vy = 0;  
  63.         }  
  64.  
  65.         #endregion  
  66.  
  67.         #region get set functions  
  68.   
  69.         public void setColor(ConsoleColor color)  
  70.         {  
  71.             this.m_color = color;  
  72.         }  
  73.   
  74.         public ConsoleColor getColor()  
  75.         {  
  76.             return this.m_color;  
  77.         }  
  78.   
  79.         public void setPosition(CPoint point)  
  80.         {  
  81.             this.m_position = point;  
  82.         }  
  83.   
  84.         public void setPosition(Int32 x, Int32 y)  
  85.         {  
  86.             this.m_position = new CPoint(x, y);  
  87.         }  
  88.   
  89.         public CPoint getPosition()  
  90.         {  
  91.             return m_position;  
  92.         }  
  93.   
  94.         public void setVelocityX(Int32 vx)  
  95.         {  
  96.             this.m_vx = vx;  
  97.         }  
  98.   
  99.         public Int32 getVelocityX()  
  100.         {  
  101.             return this.m_vx;  
  102.         }  
  103.   
  104.         public void setVelocityY(Int32 vy)  
  105.         {  
  106.             this.m_vy = vy;  
  107.         }  
  108.   
  109.         public Int32 getVelocityY()  
  110.         {  
  111.             return this.m_vy;  
  112.         }  
  113.  
  114.         #endregion  
  115.  
  116.         #region 虚拟/抽象方法  
  117.   
  118.         ///   
  119.         /// 精灵移动  
  120.         ///   
  121.         public virtual void move()  
  122.         {  
  123.             //保存上一时刻精灵灵位置  
  124.             this.m_oldPoint = this.m_position;  
  125.             //更新这一时刻精灵位置  
  126.             Int32 dx = this.m_position.getX() + m_vx;  
  127.             Int32 dy = this.m_position.getY() + m_vy;  
  128.   
  129.             dx = dx < 0 ? 0 : dx;  
  130.             dy = dy < 0 ? 0 : dy;  
  131.   
  132.             this.m_position.setX(dx);  
  133.             this.m_position.setY(dy);  
  134.         }  
  135.   
  136.         ///   
  137.         /// 绘制精灵  
  138.         ///   
  139.         ///   
  140.         public abstract void draw(CDraw draw);  
  141.  
  142.         #endregion  
  143.     }  
  144. }  
   这是一个相对简单的精灵类,准确地说刚刚好满足这个游戏的需要,然而这是一个“潜力类”,还有非常多的特性等待你去总结,这里以简单为宗旨,能越简单地实现目标就用最简单的方法。简单地说明一下精灵类的move方法,此方法记录了精灵前一时刻和当前时刻的坐标,保存前一时刻坐标的目的是为了擦除精灵移动过程中留下的轨迹,当然,这只是现在处理精灵移动痕迹的方法。精灵移动方法很简单,就是精灵的坐标与速度的加成,而且还处理了精灵越界,防止出现意外的错误异常。精灵的移动与上章中贪吃蛇的移动有细微差别,上一章中,贪吃蛇的移动方法里不仅处理了蛇的移动,还处理了边界的碰撞问题;而在这一章的精灵中,移动就是纯粹移动,没有进行游戏中碰撞等的逻辑判断,而是把这样的判断延迟到游戏类中去,让游戏类中的游戏逻辑汇总处理这样的逻辑。这样的好处是,当修改游戏逻辑的时候,就能集中精力在游戏类上,而不必要修改相关的游戏对象类,当把游戏逻辑转移到脚本(LUA等)处理时,也减少对象与脚本之间的依赖性,总的来说,只需要关心游戏类和脚本语言的交互即可。
   精灵类就是为演员们准备的,首先登场的是小球这个演员,有了精灵类这个基础,小球类的实现真是简单:
  ///Ball类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CGraphics;  
  3.   
  4. namespace Breakout  
  5. {  
  6.     ///   
  7.     /// 小球类  
  8.     ///   
  9.     internal class Ball : Sprite  
  10.     {  
  11.         ///   
  12.         /// 构造函数  
  13.         ///   
  14.         ///   
  15.         ///   
  16.         public Ball(CPoint point, ConsoleColor color)  
  17.             : base(point, color)  
  18.         {  
  19.   
  20.         }  
  21.   
  22.         ///   
  23.         /// 构造函数  
  24.         ///   
  25.         ///   
  26.         ///   
  27.         ///   
  28.         public Ball(Int32 x, Int32 y, ConsoleColor color)  
  29.             : base(x, y, color)  
  30.         {  
  31.   
  32.         }  
  33.   
  34.         ///   
  35.         /// 小球呈现  
  36.         ///   
  37.         ///   
  38.         public override void draw(CDraw draw)  
  39.         {  
  40.             if (m_oldPoint != m_position)  
  41.             {  
  42.                 //擦除颜色必须指定缺省符号  
  43.                 draw.setDrawSymbol(CSymbol.DEFAULT);  
  44.                 //擦除旧画面  
  45.                 draw.fillRect(m_oldPoint.getX()>>1, m_oldPoint.getY(), 1, 1, draw.getBackcolor());  
  46.                 //绘制新画面  
  47.                 draw.drawText("●", m_position.getX(), m_position.getY(), m_color);  
  48.             }  
  49.         }  
  50.     }  
  51. }  
   这个小球类是不是非常之简单呢,细心的读者可能会发现到,绘制小球为什么不统一用绘制矩形的方法绘制小球,而是用绘制字符串这个函数?答案是:如果看过我前面的文章的就会知道这个绘制字符串与绘制矩形在X轴坐标上有细微差别,不指定字符串绘制区域的绘制字符串函数坐标X按每字符来计算,其他的绘制方法是按每字来计算,这样的好处是小球拥有了比按字计算多双倍的屏幕运动空间,小球的运动会更加自然和准确。
  小球演员登场之后势必轮到它的好搭档,挡板演员闪亮登场,挡板类也很简单,唯一扩展的是挡板有了它的运行状态,其目的只是为了避免挡板的重绘导致的闪烁(如果你想拥有闪烁着的挡板,不防把这个状态去掉,代码显得更为清晰简单)。
  ///Board类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CGraphics;  
  3.   
  4. namespace Breakout  
  5. {  
  6.     ///   
  7.     /// 挡板状态枚举  
  8.     ///   
  9.     internal enum BoardState  
  10.     {  
  11.         Run,  
  12.         Stop  
  13.     }  
  14.   
  15.     ///   
  16.     /// 挡板类  
  17.     ///   
  18.     internal class Board : Sprite  
  19.     {  
  20.         ///   
  21.         /// 长度  
  22.         ///   
  23.         private Int32 m_length;  
  24.         ///   
  25.         /// 状态  
  26.         ///   
  27.         private BoardState m_state;  
  28.   
  29.         ///   
  30.         /// 构造函数  
  31.         ///   
  32.         ///   
  33.         ///   
  34.         public Board(CPoint point, Int32 len, ConsoleColor color)  
  35.             : base(point, color)  
  36.         {  
  37.             this.m_length = len;  
  38.   
  39.             this.m_state = BoardState.Run;  
  40.         }  
  41.   
  42.         ///   
  43.         /// 构造函数  
  44.         ///   
  45.         ///   
  46.         ///   
  47.         ///   
  48.         public Board(Int32 x, Int32 y, Int32 len, ConsoleColor color)  
  49.             : base(x, y, color)  
  50.         {  
  51.             this.m_length = len;  
  52.   
  53.             this.m_state = BoardState.Run;  
  54.         }  
  55.   
  56.         public Int32 getLength()  
  57.         {  
  58.             return this.m_length;  
  59.         }  
  60.   
  61.         public void setState(BoardState state)  
  62.         {  
  63.             this.m_state = state;  
  64.         }  
  65.   
  66.         ///   
  67.         /// 挡板呈现  
  68.         ///   
  69.         ///   
  70.         public override void draw(CDraw draw)  
  71.         {  
  72.             if (m_oldPoint != m_position && this.m_state == BoardState.Run)  
  73.             {  
  74.                 if (m_oldPoint.getY() != 0)  
  75.                 {  
  76.                     //擦除颜色必须指定缺省符号  
  77.                     draw.setDrawSymbol(CSymbol.DEFAULT);  
  78.                     //擦除旧画面  
  79.                     draw.fillRect(m_oldPoint.getX() - 1, m_oldPoint.getY(), m_length + 2, 1, draw.getBackcolor());  
  80.                 }  
  81.   
  82.                 draw.setDrawSymbol(CSymbol.RECT_SOLID);  
  83.                 //绘制新画面  
  84.                 draw.fillRect(m_position.getX(), m_position.getY(), m_length, 1, m_color);  
  85.             }  
  86.         }  
  87.     }  
  88. }  
   砖块作为“睡着了的演员”,也是继承精灵类的,实现起来也非常简单:
  ///Brick类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CGraphics;  
  3.   
  4. namespace Breakout  
  5. {  
  6.     ///   
  7.     /// 砖块类  
  8.     ///   
  9.     internal class Brick:Sprite  
  10.     {  
  11.         ///   
  12.         /// 砖块状态  
  13.         ///   
  14.         private Boolean m_bAlive;  
  15.         ///   
  16.         /// 砖块尺寸  
  17.         ///   
  18.         private CSize m_size;  
  19.   
  20.         public Brick(Int32 x, Int32 y, ConsoleColor color)  
  21.             : base(x, y, color)  
  22.         {  
  23.             m_bAlive = true;  
  24.             //宽4高2  
  25.             m_size = new CSize(4,2);  
  26.         }  
  27.   
  28.         public void setAlive(Boolean alive)  
  29.         {  
  30.             this.m_bAlive = alive;  
  31.         }  
  32.   
  33.         public Boolean getAlive()  
  34.         {  
  35.             return this.m_bAlive;  
  36.         }  
  37.   
  38.         public CSize getSize()  
  39.         {  
  40.             return this.m_size;  
  41.         }  
  42.   
  43.         ///   
  44.         /// 擦除砖块  
  45.         ///   
  46.         ///   
  47.         public void erase(CDraw draw)  
  48.         {  
  49.             draw.setDrawSymbol(CSymbol.DEFAULT);  
  50.             draw.fillRect(m_position.getX(), m_position.getY(), m_size.getWidth(), m_size.getHeight(), draw.getBackcolor());  
  51.         }  
  52.   
  53.         ///   
  54.         /// 绘制砖块  
  55.         ///   
  56.         ///   
  57.         public override void draw(CDraw draw)  
  58.         {  
  59.             if (m_bAlive)  
  60.             {  
  61.                 draw.setDrawSymbol(CSymbol.RECT_SOLID);  
  62.                 draw.fillRect(m_position.getX(), m_position.getY(), m_size.getWidth(), m_size.getHeight(), m_color);  
  63.             }  
  64.         }  
  65.     }  
  66. }  
   砖块类有了它自己的成员函数,用于擦除它本身,当小球与之碰撞时,就执行这个函数。
   俗话说:地上本来没有路,走的人多了,便有了路!我们的游戏也一样,游戏本身没有墙,砖头叠多了,便有了墙。很形象吧!砖墙就是砖块组合而成的,从上面的UML类图可以看到,砖墙类依赖于数据访问接口,显然它需要从这个接口得到组成砖墙的砖块数据。除此之外,砖墙类提供一个函数来判断墙是否已经损坏,也即是有砖块被打落,判断的理由为砖块的外接矩形(它本身大小)与小球的外接矩形是否相交,当相交时则证明小球与砖墙发生碰撞,相应的砖块就被打落。为了能判断两个矩形是否相交,我们扩展CRect结构,增加一个判断矩形相交的函数:
  ///扩展CRect结构
[csharp]  view plain copy print ?
  1. public struct CRect  
  2. {  
  3. //略  
  4.      ///   
  5.         /// 两矩形是否相交  
  6.         ///   
  7.         ///   
  8.         ///   
  9.         public Boolean collisionWith(CRect rcCheck)  
  10.         {  
  11.             return m_x <= rcCheck.getX() && rcCheck.getX() <= (m_x + m_width) &&  
  12.                    m_y <= rcCheck.getY() && rcCheck.getY() <= (m_y + m_height);  
  13.         }  
  14. //略  
  15.   
  16. }  
   下图说明了小球与砖块已经发生碰撞,黄色圈为砖头与小球的外接矩形:
   
   分析好了砖墙类,我们就可以实现它了,也非常简单:
///Wall类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CGraphics;  
  3. using Breakout.DAL;  
  4.   
  5. namespace Breakout  
  6. {  
  7.     ///   
  8.     /// 砖墙类  
  9.     ///   
  10.     internal sealed class Wall  
  11.     {  
  12.         ///   
  13.         /// 砖墙相对于工作区的偏移量  
  14.         ///   
  15.         public static Int32 OFFER_X = 3;  
  16.         public static Int32 OFFER_Y = 1;  
  17.         ///   
  18.         /// 随机数  
  19.         ///   
  20.         private Random m_random;  
  21.         ///   
  22.         /// 砖块  
  23.         ///   
  24.         private Brick[,] m_bricks;  
  25.         ///   
  26.         /// 砖块数量  
  27.         ///   
  28.         private Int32 m_count;  
  29.         ///   
  30.         /// 行  
  31.         ///   
  32.         private Int32 m_rows;  
  33.         ///   
  34.         /// 列  
  35.         ///   
  36.         private Int32 m_cols;  
  37.         ///   
  38.         /// 绘图对象  
  39.         ///   
  40.         private CDraw m_draw;  
  41.   
  42.         ///   
  43.         /// 构造函数  
  44.         ///   
  45.         public Wall()  
  46.         {  
  47.             m_draw = new CDraw();  
  48.             m_random = new Random();  
  49.         }  
  50.   
  51.         ///   
  52.         /// 加载砖墙数据  
  53.         ///   
  54.         ///   
  55.         public void loadWall(IDataAccessor idata)  
  56.         {  
  57.             Int32[,] data = idata.read();  
  58.   
  59.             if (data != null)  
  60.             {  
  61.                 m_rows = data.GetUpperBound(0) + 1;  
  62.                 m_cols = data.GetUpperBound(1) + 1;  
  63.   
  64.                 m_bricks = new Brick[m_rows, m_cols];  
  65.                 m_count = 0;  
  66.   
  67.                 for (Int32 i = 0; i < m_rows; i++)  
  68.                 {  
  69.                     for (Int32 j = 0; j < m_cols; j++)  
  70.                     {  
  71.                         if (data[i, j] != 0)  
  72.                         {  
  73.                             Brick brick = new Brick(j, i, (ConsoleColor)m_random.Next(0, 16));  
  74.   
  75.                             Int32 ix = j * (brick.getSize().getWidth() + 1);  
  76.                             Int32 iy = i * (brick.getSize().getHeight() + 1);  
  77.   
  78.                             brick.setPosition(ix + OFFER_X, iy + OFFER_Y);  
  79.                             m_bricks[i, j] = brick;  
  80.                             m_count++;  
  81.                         }  
  82.                     }  
  83.                 }  
  84.             }  
  85.         }  
  86.   
  87.         ///   
  88.         /// 获取砖数量  
  89.         ///   
  90.         ///   
  91.         public Int32 getBrickCount()  
  92.         {  
  93.             return m_count;  
  94.         }  
  95.   
  96.         ///   
  97.         /// 砖墙毁坏  
  98.         ///   
  99.         ///   
  100.         ///   
  101.         public Boolean destroy(CPoint point)  
  102.         {  
  103.             point.setX(point.getX()>>1);  
  104.             for (Int32 i = 0; i < m_rows; i++)  
  105.             {  
  106.                 for (Int32 j = 0; j < m_cols; j++)  
  107.                 {  
  108.                     if (m_bricks[i, j] != null)  
  109.                     {  
  110.                         if (m_bricks[i, j].getAlive())  
  111.                         {  
  112.                             CRect brickRect = new CRect(m_bricks[i, j].getPosition(), m_bricks[i, j].getSize());  
  113.                             if (brickRect.collisionWith(new CRect(point, 1, 1)))  
  114.                             {  
  115.                                 m_bricks[i, j].setAlive(false);  
  116.                                 m_bricks[i, j].erase(m_draw);  
  117.                                 return true;  
  118.                             }  
  119.                         }  
  120.                     }  
  121.                 }  
  122.             }  
  123.             return false;  
  124.         }  
  125.   
  126.         public Boolean destroy(Int32 x, Int32 y)  
  127.         {  
  128.             return destroy(new CPoint(x, y));  
  129.         }  
  130.   
  131.         ///   
  132.         /// 重置砖墙  
  133.         ///   
  134.         public void reset()  
  135.         {  
  136.             for (Int32 i = 0; i < m_rows; i++)  
  137.             {  
  138.                 for (Int32 j = 0; j < m_cols; j++)  
  139.                 {  
  140.                     if (m_bricks[i, j] != null)  
  141.                     {  
  142.                         if (!m_bricks[i, j].getAlive())  
  143.                         {  
  144.                             m_bricks[i, j].setAlive(true);  
  145.                         }  
  146.                     }  
  147.                 }  
  148.             }  
  149.         }  
  150.   
  151.         ///   
  152.         /// 擦除砖墙  
  153.         ///   
  154.         ///   
  155.         public void erase(CDraw draw)  
  156.         {  
  157.             for (Int32 i = 0; i < m_rows; i++)  
  158.             {  
  159.                 for (Int32 j = 0; j < m_cols; j++)  
  160.                 {  
  161.                     if (m_bricks[i, j] != null)  
  162.                     {  
  163.                         m_bricks[i, j].erase(draw);  
  164.                     }  
  165.                 }  
  166.             }  
  167.         }  
  168.   
  169.         ///   
  170.         /// 绘制砖墙  
  171.         ///   
  172.         ///   
  173.         public void draw(CDraw draw)  
  174.         {  
  175.             for (Int32 i = 0; i < m_rows; i++)  
  176.             {  
  177.                 for (Int32 j = 0; j < m_cols; j++)  
  178.                 {  
  179.                     if (m_bricks[i, j] != null)  
  180.                     {  
  181.                         m_bricks[i, j].draw(draw);  
  182.                     }  
  183.                 }  
  184.             }  
  185.         }  
  186.     }  
  187. }  
   砖墙类实现就是如此,万事具备只欠东风,这股风来自我们的游戏类,有了它,万物才能焕发出生机,才能互相建立关系。游戏类处理的是游戏的逻辑,然而这个游戏的运行逻辑就是前面所提及的游戏规则,只要根据规则编写代码即可,代码注释非常详细,这样就不多说了,下面是游戏类的实现:
  ///BreakoutGame类实现
[csharp]  view plain copy print ?
  1. using System;  
  2. using CEngine;  
  3. using CGraphics;  
  4. using Breakout.DAL;  
  5.   
  6. namespace Breakout  
  7. {  
  8.     ///   
  9.     /// 打砖块游戏类  
  10.     ///   
  11.     public class BreakoutGame : CGame  
  12.     {  
  13.         ///   
  14.         /// 工作区宽度  
  15.         ///   
  16.         private static Int32 WINDOW_WIDTH = 100;  
  17.         ///   
  18.         /// 游戏屏幕宽度  
  19.         ///   
  20.         private static Int32 SCREEN_WIDTH = 39;  
  21.         ///   
  22.         /// 游戏屏幕高度  
  23.         ///   
  24.         private static Int32 SCREEN_HEIGHT = 35;  
  25.   
  26.         ///   
  27.         /// 小球初始位置  
  28.         ///   
  29.         private static Int32 BALL_X = 37;  
  30.         private static Int32 BALL_Y = SCREEN_HEIGHT - 5;  
  31.   
  32.         ///   
  33.         /// 挡板初始位置、大小  
  34.         ///   
  35.         private static Int32 BOARD_X = 15;  
  36.         private static Int32 BOARD_Y = SCREEN_HEIGHT - 1;  
  37.         private static Int32 BOARD_LEN = 8;  
  38.   
  39.         ///   
  40.         /// 小球类  
  41.         ///   
  42.         private Ball ball;  
  43.         ///   
  44.         /// 挡板类  
  45.         ///   
  46.         private Board board;  
  47.         ///   
  48.         /// 砖墙  
  49.         ///   
  50.         private Wall wall;  
  51.         ///   
  52.         /// 随机数  
  53.         ///   
  54.         private Random random;  
  55.         ///   
  56.         /// 小球运行速度延迟  
  57.         ///   
  58.         private Int32 delayTime;  
  59.         ///   
  60.         /// 爆破砖块数量  
  61.         ///   
  62.         private Int32 breakCount;  
  63.         ///   
  64.         /// 小球生命  
  65.         ///   
  66.         private Int32 lives;  
  67.         ///   
  68.         /// 得分  
  69.         ///   
  70.         private Int32 score;  
  71.         ///   
  72.         /// 第几关  
  73.         ///   
  74.         private String level;  
  75.         ///   
  76.         /// 选择关卡状态  
  77.         ///   
  78.         private Boolean selectedLevel;  
  79.   
  80.         ///   
  81.         /// 游戏初始化  
  82.         ///   
  83.         protected override void gameInit()  
  84.         {  
  85.             setTitle("控制台小游戏之——爆破七色砖v1.0");  
  86.             setUpdateRate(20);  
  87.             setCursorVisible(false);  
  88.   
  89.             //控制台尺寸  
  90.             Console.WindowWidth = WINDOW_WIDTH;  
  91.             Console.WindowHeight = SCREEN_HEIGHT;  
  92.   
  93.             //执行一次重绘  
  94.             update();  
  95.   
  96.             this.random = new Random();  
  97.   
  98.             this.ball = new Ball(BALL_X, BALL_Y, ConsoleColor.White);  
  99.             this.board = new Board(BOARD_X, BOARD_Y, BOARD_LEN, ConsoleColor.Yellow);  
  100.             this.wall = new Wall();  
  101.             //加载砖墙  
  102.             wall.loadWall(new TxtDataAccessor(Level.next()));  
  103.             //绘制墙  
  104.             wall.draw(getDraw());  
  105.   
  106.             //游戏数据  
  107.             lives = 99;  
  108.             score = 0;  
  109.             level = Level.curr();  
  110.         }  
  111.   
  112.         ///   
  113.         /// 游戏重绘  
  114.         ///   
  115.         ///   
  116.         protected override void onRedraw(CPaintEventArgs e)  
  117.         {  
  118.             base.onRedraw(e);  
  119.   
  120.             //绘制静态界面  
  121.             CDraw draw = e.getDraw();  
  122.   
  123.             draw.setDrawSymbol(CSymbol.RHOMB_SOLID);  
  124.             draw.drawRect(SCREEN_WIDTH + 1, 0, (WINDOW_WIDTH >> 1) - SCREEN_WIDTH - 1, SCREEN_HEIGHT, ConsoleColor.DarkYellow);  
  125.   
  126.             draw.drawText("生命:", (SCREEN_WIDTH << 1) + 4, 4, ConsoleColor.Blue);  
  127.             draw.drawText("得分:", (SCREEN_WIDTH << 1) + 4, 6, ConsoleColor.Blue);  
  128.             draw.drawText("FPS:", (SCREEN_WIDTH << 1) + 4, 8, ConsoleColor.Blue);  
  129.   
  130.             draw.fillRect(SCREEN_WIDTH, 17, (WINDOW_WIDTH >> 1) - SCREEN_WIDTH, 1, ConsoleColor.DarkYellow);  
  131.   
  132.             draw.drawText("操作:空格键开始发球,方向键控制挡板左右移动;F1键切换上一关,F2键切换下一关。",  
  133.                           SCREEN_WIDTH+3,19,6,10,ConsoleColor.DarkGreen);  
  134.   
  135.             draw.setDrawSymbol(CSymbol.RICE);  
  136.             draw.fillRect(0,0,3,SCREEN_HEIGHT,ConsoleColor.DarkCyan);  
  137.             draw.fillRect(SCREEN_WIDTH-2, 0, 3, SCREEN_HEIGHT, ConsoleColor.DarkCyan);  
  138.   
  139.             draw.drawText("By:007 阿理\nD-Zone Studio", SCREEN_WIDTH + 3, 31, 13, 10, ConsoleColor.DarkGray);  
  140.         }  
  141.   
  142.         ///   
  143.         /// 游戏渲染  
  144.         ///   
  145.         ///   
  146.         protected override void gameDraw(CDraw draw)  
  147.         {  
  148.             //绘制小球  
  149.             ball.draw(draw);  
  150.             //绘制挡板  
  151.             board.draw(draw);  
  152.   
  153.             //绘制动态数据  
  154.             draw.drawText(level, (SCREEN_WIDTH <<1) + 9, 2, ConsoleColor.Magenta);  
  155.             draw.drawText(lives.ToString(), (SCREEN_WIDTH << 1) + 10, 4, ConsoleColor.White);  
  156.             draw.drawText(score.ToString(), (SCREEN_WIDTH << 1) + 10, 6, ConsoleColor.White);  
  157.             draw.drawText(getFPS().ToString(), (SCREEN_WIDTH <<1) + 10, 8, ConsoleColor.Green);  
  158.         }  
  159.   
  160.         ///   
  161.         /// 键盘按下  
  162.         ///   
  163.         ///   
  164.         protected override void gameKeyDown(CKeyboardEventArgs e)  
  165.         {  
  166.             if (e.getKey() == CKeys.Left)  
  167.             {  
  168.                 board.setVelocityX(-1);  
  169.                 board.setState(BoardState.Run);  
  170.             }  
  171.             else if (e.getKey() == CKeys.Right)  
  172.             {  
  173.                 board.setVelocityX(1);  
  174.                 board.setState(BoardState.Run);  
  175.             }  
  176.             else if (e.getKey() == CKeys.Space)  
  177.             {  
  178.                 ball.setVelocityY(1);  
  179.             }  
  180.             else if (e.getKey() == CKeys.F1)  
  181.             {  
  182.                 if (!selectedLevel)  
  183.                 {  
  184.                     prevLevel();  
  185.                     selectedLevel = true;  
  186.                 }  
  187.             }  
  188.             else if (e.getKey() == CKeys.F2)  
  189.             {  
  190.                 if (!selectedLevel)  
  191.                 {  
  192.                     nextLevel();  
  193.                     selectedLevel = true;  
  194.                 }  
  195.             }  
  196.             else if (e.getKey() == CKeys.Escape)  
  197.             {  
  198.                 setGameOver(true);  
  199.             }  
  200.         }  
  201.   
  202.         ///   
  203.         /// 键盘释放  
  204.         ///   
  205.         ///   
  206.         protected override void gameKeyUp(CKeyboardEventArgs e)  
  207.         {  
  208.             board.setVelocityX(0);  
  209.             board.setState(BoardState.Stop);  
  210.             selectedLevel = false;  
  211.         }  
  212.   
  213.         ///   
  214.         /// 小球运动  
  215.         ///   
  216.         private void ballRun()  
  217.         {  
  218.             if (--delayTime <= 0)  
  219.             {  
  220.                 //小球开始运动  
  221.                 ball.move();  
  222.   
  223.                 //小球与砖块碰撞检测  
  224.                 if (wall.destroy(ball.getPosition()))  
  225.                 {  
  226.                     ball.setVelocityY(1);  
  227.                     score += 10;  
  228.                     breakCount++;  
  229.                 }  
  230.   
  231.                 //小球与左边界碰撞检测  
  232.                 if (ball.getPosition().getX() <= Wall.OFFER_X<<1)  
  233.                 {  
  234.                     ball.setPosition((Wall.OFFER_X << 1) + 2, ball.getPosition().getY());  
  235.                     ball.setVelocityX(-ball.getVelocityX());  
  236.                 }  
  237.                 //小球与右边界碰撞检测  
  238.                 if (ball.getPosition().getX() >= (SCREEN_WIDTH - Wall.OFFER_X) << 1)  
  239.                 {  
  240.                     ball.setPosition((SCREEN_WIDTH - Wall.OFFER_X) << 1, ball.getPosition().getY());  
  241.                     ball.setVelocityX(-ball.getVelocityX());  
  242.                 }  
  243.                 //小球与上边界碰撞检测  
  244.                 if (ball.getPosition().getY() <= Wall.OFFER_Y)  
  245.                 {  
  246.                     ball.setVelocityY(1);  
  247.                 }  
  248.   
  249.                 //小球与挡板碰撞检测  
  250.                 if (ball.getPosition().getY() == SCREEN_HEIGHT - 2 &&  
  251.                    ball.getPosition().getX() >> 1 >= board.getPosition().getX() &&  
  252.                    ball.getPosition().getX() >> 1 <= board.getPosition().getX() + board.getLength())  
  253.                 {  
  254.                     Int32 ix = random.Next(-2, 3);  
  255.                     ball.setVelocityX(ix - board.getVelocityX());  
  256.                     ball.setVelocityY(-1);  
  257.   
  258.                 }  
  259.                 //小球落到地面  
  260.                 else if (ball.getPosition().getY()> SCREEN_HEIGHT-1)  
  261.                 {  
  262.                     reset();  
  263.   
  264.                     if (score > 20)  
  265.                     {  
  266.                         score -= 20;  
  267.                     }  
  268.   
  269.                     if (lives > 0)  
  270.                     {  
  271.                         lives--;  
  272.                     }  
  273.                     else  
  274.                     {  
  275.                         setGameOver(true);  
  276.                     }  
  277.                 }  
  278.   
  279.                 //延迟时间,建议采取这样的方式延迟对象的运动,而不是修改游戏更新率setUpdateRate  
  280.                 delayTime = 2;  
  281.             }  
  282.         }  
  283.   
  284.         ///   
  285.         /// 挡板运动  
  286.         ///   
  287.         private void boardRun()  
  288.         {  
  289.             Int32 leftX = Wall.OFFER_X+1;  
  290.             Int32 rightX = SCREEN_WIDTH - board.getLength() - Wall.OFFER_X;  
  291.   
  292.             //判断X轴方向是否可以移动  
  293.             if (board.getPosition().getX() >= leftX && board.getPosition().getX() <= rightX)  
  294.             {  
  295.                 if (board.getVelocityX() != 0)  
  296.                 {  
  297.                     board.move();  
  298.                 }  
  299.             }  
  300.             //矫正挡板位置防止嵌入障碍物  
  301.             else if (board.getPosition().getX() < leftX)  
  302.             {  
  303.                 board.setPosition(leftX, board.getPosition().getY());  
  304.                 board.setVelocityX(0);  
  305.             }  
  306.             //矫正挡板位置防止嵌入障碍物  
  307.             else if (board.getPosition().getX() > rightX)  
  308.             {  
  309.                 board.setPosition(rightX, board.getPosition().getY());  
  310.                 board.setVelocityX(0);  
  311.             }  
  312.         }  
  313.   
  314.         ///   
  315.         /// 重置小球和挡板  
  316.         ///   
  317.         private void reset()  
  318.         {  
  319.             ball.setPosition(BALL_X, BALL_Y);  
  320.             ball.setVelocityX(0);  
  321.             ball.setVelocityY(0);  
  322.   
  323.             board.setPosition(BOARD_X, BOARD_Y);  
  324.             board.setState(BoardState.Run);  
  325.   
  326.             getDraw().setDrawSymbol(CSymbol.DEFAULT);  
  327.             getDraw().fillRect(3, SCREEN_HEIGHT - 1,SCREEN_WIDTH-5, 1, getDraw().getBackcolor());  
  328.         }  
  329.   
  330.         ///   
  331.         /// 是否通关  
  332.         ///   
  333.         ///   
  334.         private Boolean isGamePass()  
  335.         {  
  336.             return breakCount == wall.getBrickCount();  
  337.         }  
  338.   
  339.         ///   
  340.         /// 下一关  
  341.         ///   
  342.         private void nextLevel()  
  343.         {  
  344.             wall.erase(base.getDraw());  
  345.             wall.loadWall(new TxtDataAccessor(Level.next()));  
  346.             wall.draw(base.getDraw());  
  347.   
  348.             level = Level.curr();  
  349.         }  
  350.   
  351.         ///   
  352.         /// 上一关  
  353.         ///   
  354.         private void prevLevel()  
  355.         {  
  356.             wall.erase(base.getDraw());  
  357.             wall.loadWall(new TxtDataAccessor(Level.prev()));  
  358.             wall.draw(base.getDraw());  
  359.   
  360.             level = Level.curr();  
  361.         }  
  362.     }  
  363. }  
  游戏类的核心在于小球和挡板的运行逻辑,处理了边界碰撞、小球与砖块碰撞、小球与挡板碰撞的相关逻辑,代码非常简单,就不详说了,需要注意的还有切换关卡的函数,它先擦除旧砖墙,然后加载新的关卡,最后把新墙绘制到界面上。
 
 
最后让我们欣赏下我们的劳动成果:





  效果是不是非常棒呢!关卡由玩家自己创造,你只需要小小修改关卡文件数据,就有一幅全新的关卡,记得要把它添加到关卡列表!这里还提示一下:如果想要不同关卡的难度不同,比如小球速度的快慢,挡板的大小还有砖块需要砸几下才能打破,也可以采取外部文件配置参数的方法来实现,不同关卡附带一个参数文件即可。
  关卡自由创作(有时间再写一个这个游戏的控制台版本关卡编辑器):


  试玩链接:http://download.csdn.net/detail/hwenycocodq520/4644673

四、结语

   总算结束这一章的讲解了,文章的内容均属于我的个人想法,可能会出现不正确或者模糊的地方,如果大家有发现这些情况,请指点出来,你们的意见总是很宝贵的!这一章到此结束,期待下一个游戏的到来吧,下一个游戏将会是什么呢?我也不知道!(头脑风暴中@@@@)

你可能感兴趣的:(C#游戏编程)