用C#编写一个贪吃蛇的程序,
望高手们给我编一个,给我发到邮箱就行了,我的邮箱是dongkuankuo@yahoo.cn急用!!!!!最好是VS2005做,我的QQ号是596894754,太感谢了!...
望高手们给我编一个,给我发到邮箱就行了,我的邮箱是dongkuankuo@yahoo.cn 急用!!!!!
最好是VS2005做,我的QQ号是596894754,太感谢了! 展开
最好是VS2005做,我的QQ号是596894754,太感谢了! 展开
2个回答
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
BufferedGraphics BufferedGraphicsA = null;
BufferedGraphics BufferedGraphicsB = null;
private void Form1_Load(object sender, EventArgs e)
{
BufferedGraphicsContext context = BufferedGraphicsManager.Current;
BufferedGraphicsA = context.Allocate(this.CreateGraphics(), this.ClientRectangle);
BufferedGraphicsB = context.Allocate(BufferedGraphicsA.Graphics, this.ClientRectangle);
Pen pen = new Pen(Brushes.Blue,3);
for(int i = 0;i < 400;i += 20)
{
BufferedGraphicsB.Graphics.DrawLine(pen, new Point(0, i), new Point(400, i));
BufferedGraphicsB.Graphics.DrawLine(pen, new Point(i, 0), new Point(i, 400));
}
BufferedGraphicsB.Render();
food = this.GetPoint(random);
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
BufferedGraphicsA.Render();
Point p = this.GetPoint(random);
PointList.Add(p);
}
List<Point> PointList = new List<Point>();
Point food = Point.Empty;
Random random = new Random(DateTime.Now.Millisecond);
Keys key = Keys.Left;
private void timer1_Tick(object sender, EventArgs e)
{
if (PointList.Count > 0)
{
Point first = PointList[0];
switch (key)
{
case Keys.Left:
first.X -= 20;
break;
case Keys.Right:
first.X += 20;
break;
case Keys.Up:
first.Y -= 20;
break;
case Keys.Down:
first.Y += 20;
break;
}
if (PointList.IndexOf(first, 0) >= 0)
{
this.timer1.Enabled = false;
MessageBox.Show("游戏结束");
}
BufferedGraphicsB.Render();
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
PointList.Insert(0, first);
if (food != first)
PointList.RemoveAt(PointList.Count - 1);
else
{
food = this.GetPoint(random);
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
}
foreach(Point p in PointList)
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Red,new Rectangle(p,new Size(20,20)));
BufferedGraphicsA.Render();
}
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
key = e.KeyData;
}
private Point GetPoint(Random random)
{
int x = (random.Next(400) / 20) * 20;
int y = (random.Next(400) / 20) * 20;
return new Point(x, y);
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
BufferedGraphicsA.Render();
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
BufferedGraphics BufferedGraphicsA = null;
BufferedGraphics BufferedGraphicsB = null;
private void Form1_Load(object sender, EventArgs e)
{
BufferedGraphicsContext context = BufferedGraphicsManager.Current;
BufferedGraphicsA = context.Allocate(this.CreateGraphics(), this.ClientRectangle);
BufferedGraphicsB = context.Allocate(BufferedGraphicsA.Graphics, this.ClientRectangle);
Pen pen = new Pen(Brushes.Blue,3);
for(int i = 0;i < 400;i += 20)
{
BufferedGraphicsB.Graphics.DrawLine(pen, new Point(0, i), new Point(400, i));
BufferedGraphicsB.Graphics.DrawLine(pen, new Point(i, 0), new Point(i, 400));
}
BufferedGraphicsB.Render();
food = this.GetPoint(random);
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
BufferedGraphicsA.Render();
Point p = this.GetPoint(random);
PointList.Add(p);
}
List<Point> PointList = new List<Point>();
Point food = Point.Empty;
Random random = new Random(DateTime.Now.Millisecond);
Keys key = Keys.Left;
private void timer1_Tick(object sender, EventArgs e)
{
if (PointList.Count > 0)
{
Point first = PointList[0];
switch (key)
{
case Keys.Left:
first.X -= 20;
break;
case Keys.Right:
first.X += 20;
break;
case Keys.Up:
first.Y -= 20;
break;
case Keys.Down:
first.Y += 20;
break;
}
if (PointList.IndexOf(first, 0) >= 0)
{
this.timer1.Enabled = false;
MessageBox.Show("游戏结束");
}
BufferedGraphicsB.Render();
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
PointList.Insert(0, first);
if (food != first)
PointList.RemoveAt(PointList.Count - 1);
else
{
food = this.GetPoint(random);
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Yellow, new Rectangle(food, new Size(20, 20)));
}
foreach(Point p in PointList)
BufferedGraphicsA.Graphics.FillRectangle(Brushes.Red,new Rectangle(p,new Size(20,20)));
BufferedGraphicsA.Render();
}
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
key = e.KeyData;
}
private Point GetPoint(Random random)
{
int x = (random.Next(400) / 20) * 20;
int y = (random.Next(400) / 20) * 20;
return new Point(x, y);
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
BufferedGraphicsA.Render();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
网上找找很多的啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询