C#小游戏—钢铁侠VS太空侵略者
身为漫威迷,最近又把《钢铁侠》和《复仇者联盟》系列又重温了一遍,真的是印证了那句话:“读书百遍,其意自现”。看电影一个道理,每看一遍,都有不懂的感受~ 不知道大伙是不是也有同样的感受,对于好的电影,真的是回味无穷!
本篇博文也是因《复仇者联盟1》的启发,C#语言实现的一个小游戏,所以游戏命名就叫“钢铁侠VS太空侵略者》了!
先上一个游戏原型图:
Talk is Cheap,Show me the Code!
代码方面没有太难的操作,主要依赖于Timer控件:
分别用来监控游戏中Iron man 子弹移动,侵略者左右移动,往下移动,侵略者子弹移动,子弹碰撞,以及观察者监控(主要校验生命值),具体代码如下:
侵略者界面生成:
private void CreateControl(Form p)
{
PictureBox pb = new PictureBox();
pb.Location = new Point(x, y);
pb.Size = new Size(width, height);
pb.BackgroundImage = Properties.Resources.invader;
pb.BackgroundImageLayout = ImageLayout.Stretch;
pb.Name = "Alien";
p.Controls.Add(pb);
}
public void CreateSprites(Form p)
{
for(int i = ; i < rows; i++)
{
for(int j = ; j < columns; j++)
{
CreateControl(p);
x += width + space;
}
y += height + space;
x = ;
}
}
键盘事件绑定:
private void Pressed(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.A || e.KeyCode == Keys.Left)
{
moveLeft = true;
}
else if (e.KeyCode == Keys.D || e.KeyCode == Keys.Right)
{
moveRight = true;
}
else if (e.KeyCode == Keys.Space && game && !fired)
{
Missile();
fired = true;
}
}
private void Released(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.A || e.KeyCode == Keys.Left)
{
moveLeft = false;
}
else if (e.KeyCode == Keys.D || e.KeyCode == Keys.Right)
{
moveRight = false;
}
else if (e.KeyCode == Keys.Space)
{
fired = false;
}
}
Iron man 左右移动:
private void PlayerMove(object sender, EventArgs e)
{
if (moveLeft && Player.Location.X >= )
{
Player.Left--;
}
else if (moveRight && Player.Location.X <= limit)
{
Player.Left++;
}
}
子弹发射:
private void FireBullet(object sender, EventArgs e)
{
foreach (Control c in this.Controls)
{
if (c is PictureBox && c.Name == "Bullet")
{
PictureBox bullet = (PictureBox)c;
bullet.Top -= ; if (bullet.Location.Y <= )
{
this.Controls.Remove(bullet);
} foreach(Control ct in this.Controls)
{
if (ct is PictureBox && ct.Name == "Laser")
{
PictureBox laser = (PictureBox)ct; if (bullet.Bounds.IntersectsWith(laser.Bounds))
{
this.Controls.Remove(bullet);
this.Controls.Remove(laser);
pts++;
Score(pts);
}
}
} foreach(Control ctrl in this.Controls)
{
if (ctrl is PictureBox && ctrl.Name == "Alien")
{
PictureBox alien = (PictureBox)ctrl; if (bullet.Bounds.IntersectsWith(alien.Bounds) && !Touched(alien))
{
this.Controls.Remove(bullet);
this.Controls.Remove(alien);
aliens.Remove(alien);
pts += ;
Score(pts);
CheckForWinner();
}
else if (bullet.Bounds.IntersectsWith(alien.Bounds) && Touched(alien))
{
this.Controls.Remove(bullet);
this.Controls.Remove(alien);
delay.Add(alien);
pts += ;
Score(pts);
CheckForWinner();
}
}
}
}
}
}
子弹
private void Missile()
{
PictureBox bullet = new PictureBox();
bullet.Location = new Point(Player.Location.X +
Player.Width / , Player.Location.Y - );
bullet.Size = new Size(, );
bullet.BackgroundImage = Properties.Resources.bullet;
bullet.BackgroundImageLayout = ImageLayout.Stretch;
bullet.Name = "Bullet";
this.Controls.Add(bullet);
}
侵略者移动:
private void AlienMove()
{
foreach(PictureBox alien in aliens)
{
alien.Location = new Point(alien.Location.X + left,
alien.Location.Y + top);
SetDirection(alien);
Collided(alien);
}
}
private void Collided(PictureBox a)
{
if (a.Bounds.IntersectsWith(Player.Bounds))
{
gameOver();
}
}
子弹移动效果:
private void Beam(PictureBox a)
{
PictureBox laser = new PictureBox();
laser.Location = new Point(a.Location.X + a.Width / ,
a.Location.Y + );
laser.Size = new Size(, );
laser.BackgroundImage = Properties.Resources.laser;
laser.BackgroundImageLayout = ImageLayout.Stretch;
laser.Name = "Laser";
this.Controls.Add(laser);
}
private void StrikeSpan(object sender, EventArgs e)
{
Random r = new Random();
int pick; if (aliens.Count > )
{
pick = r.Next(aliens.Count);
Beam(aliens[pick]);
}
}
private void DetectLaser(object sender, EventArgs e)
{
foreach(Control c in this.Controls)
{
if (c is PictureBox && c.Name == "Laser")
{
PictureBox laser = (PictureBox)c;
laser.Top += ; if (laser.Location.Y >= limit)
{
this.Controls.Remove(laser);
}
if (laser.Bounds.IntersectsWith(Player.Bounds))
{
this.Controls.Remove(laser);
LoseLife();
}
}
}
}
主要核心代码如上,下面看下运行效果图:
何以解忧唯有撸码,欢迎有兴趣的朋友,联系我一起探讨。
最后感谢您的耐心观看,赠人玫瑰,手留余香,觉得本文有些许意思和启发的,记得关注博主公众号(内附源码链接),您的支持,就是我写作莫大的动力!
C#小游戏—钢铁侠VS太空侵略者的更多相关文章
- Delphi的几个跨平台小游戏例子。
Embarcadero开源了几个FireMonkey的小游戏,支持Windows, Android,Ios, MacOS等. 源码地址: https://github.com/EmbarcaderoP ...
- 小游戏大智慧,10 个让人眼前一亮的 JavaScript 游戏
摘要: JS还可以这么玩~ Fundebug经授权转载,版权归原作者所有. 这是一篇有趣的文章,我们精选了 JS13K 游戏编程挑战的优秀作品,与大家分享.JS13K 是专为 JavaScript 开 ...
- jQuery实践-网页版2048小游戏
▓▓▓▓▓▓ 大致介绍 看了一个实现网页版2048小游戏的视频,觉得能做出自己以前喜欢玩的小游戏很有意思便自己动手试了试,真正的验证了这句话-不要以为你以为的就是你以为的,看视频时觉得看懂了,会写了, ...
- 拼图小游戏之计算后样式与CSS动画的冲突
先说结论: 前几天写了几个非常简单的移动端小游戏,其中一个拼图游戏让我郁闷了一段时间.因为要获取每张图片的位置,用`<style>`标签写的样式,直接获取计算后样式再用来交换位置,结果就悲 ...
- 推荐10款超级有趣的HTML5小游戏
HTML5的发展速度比任何人的都想像都要更快.更加强大有效的和专业的解决方案已经被开发......甚至在游戏世界中!这里跟大家分享有10款超级趣味的HTML5游戏,希望大家能够喜欢! Kern Typ ...
- 如何开发一个简单的HTML5 Canvas 小游戏
原文:How to make a simple HTML5 Canvas game 想要快速上手HTML5 Canvas小游戏开发?下面通过一个例子来进行手把手教学.(如果你怀疑我的资历, A Wiz ...
- JavaScript版拼图小游戏
慕课网上准备开个新的jQuery教程,花了3天空闲时间写了一个Javascript版的拼图小游戏,作为新教程配套的分析案例 拼图游戏网上有不少的实现案例了,但是此源码是我自己的实现,所以不做太多的比较 ...
- C语言-纸牌计算24点小游戏
C语言实现纸牌计算24点小游戏 利用系统时间设定随机种子生成4个随机数,并对4个数字之间的运算次序以及运算符号进行枚举,从而计算判断是否能得出24,以达到程序目的.程序主要功能已完成,目前还有部分细节 ...
- Cocos2d-x 版本小游戏 《是男人就下100层》 项目开源
这个是很久就开始动手写的一个小游戏了,直到最近才把它收尾了,拖拖拉拉的毛病总是很难改啊. 项目是基于 cocos2d-x v2.2 版本 ,目前只编译到了 Win8 平台上,并且已经上传到了商店,支持 ...
随机推荐
- 在Python 中怎么表示一个元素在一个list中的数量?
commonest = [1,2,2,2,1,3,4,5,1,1] print(commonest.count(1))
- EXAM-2018-7-27
EXAM-2018-7-27 未完成 [ ] F A 要用ll,然后注意正方形的情况,细心一点 E 有点动态规划的感觉,状态的转移,不难,要注意不要漏掉状态 K 正解是DFS 然后用贪心数据弱的话能过 ...
- fidder 抓包工具设置只拦截指定ip(服务ip)
直接上图:
- YII框架开发一个项目的通用目录结构:
testdrive/ index. assets/ css/ images/ themes/ yiic. commands/ ...
- [LC] 437. Path Sum III
You are given a binary tree in which each node contains an integer value. Find the number of paths t ...
- servlet之间传递数据的方式
Servlet传递数据方式 基本概述 Servlet传递数据的方式有很多,这里提供五种方式: 1.静态变量 2.HttpServletResponse的sendRedirect()方法 3.HttpS ...
- 堆优DIJ模板
Dij:贪心思想的单源最短路,时间复杂度O(n^2). Dij算法流程: d数组记录源点s到每个点的距离,若无边则设为inf,标记源点: 选出d数组中未标记的最小值,该节点记为k,并标记k为已求出最短 ...
- nodejs快速测试
对于一些js功能,可以通过nodejs快速搭建测试环境 1.这里我们先通过express脚手架快速搭建一个项目,或者init一个空项目 2.mkdir script 3.这里假设我们的场景是MQTT接 ...
- mac android sdk manager 无法更新(被墙)
http://www.androiddevtools.cn/ 一句话,相见恨晚!! 想把以前的旧安卓项目拿到MAC上 环境就卡住了,以前的包是4.4的,想试试5.0的,更新不动 Android Too ...
- 蛋白质修饰|phosphors|mascot+X|
生物医学大数据 重点:蛋白质定量 新蛋白可以是全新的蛋白质,也可以是知结构但未知功能的蛋白质,也可以是知道结构有新功能的蛋白质. 新蛋白鉴定可以使用以下方法. 基于基因组,可以基因组中的coding区 ...