资源简介
本科阶段写过一个小游戏,是一门课的大作业,当时能力有限,代码能力以及对设计模式的理解和运用都不够,后来研究生期间,由于《软件结构设计与模式分析》这门课的期末考试需要我们编写并分析一个软件,软件类型不限,由于觉得这款小游戏题材不错,又有趣味性,所以借鉴了该游戏的思路并对它进行了重构,不仅界面进行了大量优化,同时也加入了一些设计模式,大大提高了软件的扩展性
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DragonQuest.General;
using System.Drawing;
namespace DragonQuest
{
///
/// 血条,生命值
///
public class BloodBar : Element
{
//血条的单位长度
private const int WIDTH = 1;
//血条的高度
private const int HEIGHT = 10;
private int allLife nowLife;
public int X
{
get { return x; }
set { x = value; }
}
public int Y
{
get{return y;}
set { y = value; }
}
public BloodBar(int x int y int allLife)
: base(x y)
{
this.allLife = allLife;
this.nowLife = allLife;
}
public int NowLife
{
get
{
return nowLife;
}
set
{
nowLife = value;
}
}
public override void Draw(System.Drawing.Graphics g)
{
g.DrawString(“Life:“ new Font(“Arial“ 10f) new SolidBrush(Color.Red) x+50 y-20);
g.DrawRectangle(new Pen(Color.Red) x+85 y-18 WIDTH * allLife HEIGHT);
g.FillRectangle(new SolidBrush(Color.Red) x+85 y-18 WIDTH * nowLife HEIGHT);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 362707 2013-12-31 16:40 系统整体类图.pdf
文件 269198 2013-07-18 19:34 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\backgroundMUsic\i_comic.mp3
文件 1446589 2013-07-18 19:34 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\backgroundMUsic\r_bgm_01.mp3
文件 1446589 2013-07-18 19:34 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\backgroundMUsic\r_bgm_02.mp3
文件 1159033 2013-07-18 19:34 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\backgroundMUsic\u_bgm.mp3
文件 12778028 2013-12-31 10:01 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\backgroundMUsic\u_bgm.wav
文件 83456 2014-01-01 21:27 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\DragonQuest.exe
文件 132608 2014-01-01 21:27 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\DragonQuest.pdb
文件 22704 2014-01-01 21:26 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\DragonQuest.vshost.exe
文件 490 2013-03-18 17:00 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\DragonQuest.vshost.exe.manifest
文件 31747 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\background.png
文件 35870 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\background1.png
文件 284 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_0.gif
文件 423 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_1.gif
文件 680 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_2.gif
文件 740 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_3.gif
文件 765 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_4.gif
文件 624 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_5.gif
文件 500 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_6.gif
文件 286 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_7.gif
文件 241 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast1_8.gif
文件 907 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_0.gif
文件 1224 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_1.gif
文件 5288 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_2.gif
文件 1971 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_3.gif
文件 6458 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_4.gif
文件 8367 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_5.gif
文件 9076 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_6.gif
文件 8988 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_7.gif
文件 3592 2011-06-16 22:57 DragonQuest(VS2013版)\DragonQuest\DragonQuest\bin\Debug\images\blast2_8.gif
............此处省略138个文件信息
相关资源
- UML 2.0学习指南 pdf
- 实习生管理系统HP实习项目 s2sh
- 设计模式之禅 第二版 书和源码
- 研磨设计模式完整版pdfpart3 (3-3)
- 研磨设计模式完整版pdfpart2 2-3
- HeadFirst设计模式中文版.pdf 带目录版
- 设计模式ppt
- 李建忠_设计模式源码和课件.rar
- 《设计模式之禅第2版》高清完整PDF版
- 代码阅读方法与实践(中英文版及源
- MVVM企业级架构指南 (英文版).pdf
- 时间触发嵌入式系统设计模式---文档
- 设计模式全集.rar
-
ob
ject Oriented Design and Patterns - Head First 设计模式中文完整版+目录+
- 时间触发嵌入式系统设计模式.pdf
- Head First 设计模式中文版.pdf
- HEAD FIRST设计模式 中文版 PDF电子书
- Head First 设计模式(中文版) 高清完
- Head First 设计模式 中文完整版 高清版
- 大话设计模式(带目录完整版).rar
- 设计模式之禅高清PDF+源代码
- 设计模式(包含5个设计模式)含源代
- 设计模式解析(第2版)
- 图解设计模式高清PDF带目录和源码
- 界面设计模式 Designing Interfaces 中文版
- 图解设计模式完整版pdf 高清中文版
- 大话设计模式.rar
- 界面设计模式等UI设计多本合集PDF
- 大话设计模式_程杰.zip
评论
共有 条评论