这是清华大学c#游戏开发书籍代码,里面包含了10几个小游戏源代码,对于通过c#开发游戏来说非常有帮助。
2023-11-25 23:48:04 41.14MB c#游戏开发
1
C#学习游戏编程的入门书籍,比较好的,大家好好看一下
2023-11-16 05:03:01 1.93MB C#+游戏编程入门
1
CSDN学生大本营文章代码 http://student.csdn.net/space.php?uid=301568 使用C#写游戏--推箱子源码
2023-10-29 05:01:14 142KB C# 游戏 推箱子 源码
1
数据库的大作业基于c#开发的游戏评分推荐系统源码.zip
1
三肿C#实用编程速查宝典 整理目的:为了让更多朋友加入学习C#的行列 整理人:三肿 特别感谢: 史莱姆 ( QQ:54488**** ) Rabbit ( QQ:54487**** ) 度娘 谷哥 声明: 1:本文档内容部分来自互联网,部分来自三肿自己编写整理,部分来自以上感谢过的码友或者组织。 2:本文档以纯学术交流使用,无针对任何公司,组织,或者个人。 3:本文档不含任何恶意捆绑程序,如发现有恶意捆绑程序,请及时告知三肿本人。 4:本文档不定期进行更新,如果有好的意见或者建议,请随时联系三肿本人。 5:本文档内容概括面较广,条理性不强,代码组织可能不够到位,如果查看过后发现有什么不适,请及时就医,不爽的话,你来打我啊?
2023-01-28 12:20:06 326KB C# 游戏辅助 开发文档
1
C#做的俄罗斯方块游戏using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Xml; using System.IO; using System.Security.Cryptography; using System.Text; using System.Runtime.Serialization.Formatters.Binary; namespace RussiaBlock { public class MainForm : System.Windows.Forms.Form { #region 变量 private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button3; private System.Windows.Forms.Button button4; private System.Windows.Forms.Timer timer1; private Block block; private Block nextBlock; private int nextShapeNO; private bool paused; private DateTime atStart; private DateTime atPause; private TimeSpan pauseTime; private System.Windows.Forms.Panel panel3; private System.Windows.Forms.TextBox textBox1; private ControlForm sform; private Keys[] keys; private System.Windows.Forms.Label label4; private int level; private int startLevel; private bool trans; private int rowDelNum; private bool failed; private System.Windows.Forms.Label label5; private System.Windows.Forms.MainMenu mainMenu1; private System.Windows.Forms.MenuItem menuItem1; private System.Windows.Forms.MenuItem menuItem2; private System.Windows.Forms.MenuItem menuItem3; private System.Windows.Forms.MenuItem menuItem4; private System.Windows.Forms.MenuItem menuItem5; private System.Windows.Forms.MenuItem menuItem6; private AxWMPLib.AxWindowsMediaPlayer axMediaPlayer1; private System.Windows.Forms.MenuItem menuItem7; private System.ComponentModel.IContainer components; #endregion public MainForm() { InitializeComponent(); } protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } static void Main() { Application.Run(new MainForm()); } private void Initiate() { try { XmlDocument doc = new XmlDocument(); doc.Load("c:\\setting.ini"); XmlNodeList nodes=doc.DocumentElement.ChildNodes; this.startLevel=Convert.ToInt32(nodes[0].InnerText); this.level=this.startLevel; this.trans=Convert.ToBoolean(nodes[1].InnerText); keys=new Keys[5]; for(int i=0;i=30) { this.rowDelNum+=30; this.level++; this.timer1.Interval=500-50*(level-1); this.label4.Text="级别: "+this.level; } bool createOK=this.CreateBlock(); this.CreateNextBlock(); if(!createOK) this.Fail(); } private void SaveSetting() { try { XmlDocument doc = new XmlDocument(); XmlDeclaration xmlDec=doc.CreateXmlDeclaration ("1.0","gb2312",null); XmlElement setting=doc.CreateElement("SETTING"); doc.AppendChild(setting); XmlElement level=doc.CreateElement("LEVEL"); level.InnerText=this.startLevel.ToString(); setting.AppendChild(level); XmlElement trans=doc.CreateElement("TRANSPARENT"); trans.InnerText=this.trans.ToString(); setting.AppendChild(trans); XmlElement keys=doc.CreateElement("KEYS"); setting.AppendChild(keys); foreach(Keys k in this.keys) { KeysConverter kc=new KeysConverter(); XmlElement x=doc.CreateElement("SUBKEYS"); x.InnerText=kc.ConvertToString(k); keys.AppendChild(x); } XmlElement root=doc.DocumentElement; doc.InsertBefore(xmlDec,root); doc.Save("c:\\setting.ini"); } catch(Exception xe) { MessageBox.Show(xe.Message); } } #region Windows 窗体设计器生成的代码 private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm)); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.button1 = new System.Windows.Forms.Button(); this.button3 = new System.Windows.Forms.Button(); this.button4 = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.panel3 = new System.Windows.Forms.Panel(); this.textBox1 = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.mainMenu1 = new System.Windows.Forms.MainMenu(); this.menuItem1 = new System.Windows.Forms.MenuItem(); this.menuItem2 = new System.Windows.Forms.MenuItem(); this.menuItem3 = new System.Windows.Forms.MenuItem(); this.menuItem4 = new System.Windows.Forms.MenuItem(); this.menuItem6 = new System.Windows.Forms.MenuItem(); this.menuItem5 = new System.Windows.Forms.MenuItem(); this.axMediaPlayer1 = new AxWMPLib.AxWindowsMediaPlayer(); this.menuItem7 = new System.Windows.Forms.MenuItem(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.axMediaPlayer1)).BeginInit(); this.SuspendLayout(); // // panel1 // this.panel1.BackColor = System.Drawing.Color.Black; this.panel1.Location = new System.Drawing.Point(8, 8); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(251, 501); this.panel1.TabIndex = 0; this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint); // // panel2 // this.panel2.BackColor = System.Drawing.Color.Black; this.panel2.Location = new System.Drawing.Point(16, 8); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(81, 48); this.panel2.TabIndex = 1; this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint); // // label1 // this.label1.AutoSize = true; this.label1.BackColor = System.Drawing.SystemColors.AppWorkspace; this.label1.Font = new System.Drawing.Font("楷体_GB2312", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.ForeColor = System.Drawing.Color.Red; this.label1.Location = new System.Drawing.Point(264, 248); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(66, 25); this.label1.TabIndex = 2; this.label1.Text = "手速:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label2 // this.label2.AutoSize = true; this.label2.BackColor = System.Drawing.SystemColors.AppWorkspace; this.label2.Font = new System.Drawing.Font("楷体_GB2312", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.ForeColor = System.Drawing.Color.Red; this.label2.Location = new System.Drawing.Point(264, 168); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(66, 25); this.label2.TabIndex = 3; this.label2.Text = "块数:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label3 // this.label3.AutoSize = true; this.label3.BackColor = System.Drawing.SystemColors.AppWorkspace; this.label3.Font = new System.Drawing.Font("楷体_GB2312", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.ForeColor = System.Drawing.Color.Red; this.label3.Location = new System.Drawing.Point(264, 208); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(66, 25); this.label3.TabIndex = 4; this.label3.Text = "行数:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // button1 // this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.button1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.button1.ForeColor = System.Drawing.Color.Red; this.button1.Location = new System.Drawing.Point(288, 296); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(72, 24); this.button1.TabIndex = 10; this.button1.Text = "开始"; this.button1.Click += new System.EventHandler(this.button1_Click); // // button3 // this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.button3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.button3.ForeColor = System.Drawing.Color.Red; this.button3.Location = new System.Drawing.Point(288, 352); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(72, 24); this.button3.TabIndex = 7; this.button3.Text = "设置"; this.button3.Click += new System.EventHandler(this.button3_Click); // // button4 // this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.button4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.button4.ForeColor = System.Drawing.Color.Red; this.button4.Location = new System.Drawing.Point(288, 408); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(72, 24); this.button4.TabIndex = 8; this.button4.Text = "暂停"; this.button4.Click += new System.EventHandler(this.button4_Click); // // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // panel3 // this.panel3.BackColor = System.Drawing.Color.Black; this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.panel3.Controls.Add(this.panel2); this.panel3.Location = new System.Drawing.Point(272, 8); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(112, 72); this.panel3.TabIndex = 9; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(352, 408); this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.Size = new System.Drawing.Size(1, 21); this.textBox1.TabIndex = 5; this.textBox1.Text = ""; // // label4 // this.label4.AutoSize = true; this.label4.BackColor = System.Drawing.SystemColors.AppWorkspace; this.label4.Font = new System.Drawing.Font("楷体_GB2312", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.ForeColor = System.Drawing.Color.Red; this.label4.Location = new System.Drawing.Point(264, 128); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(66, 25); this.label4.TabIndex = 11; this.label4.Text = "级别:"; this.label4.TextAlign = System.Drawing.ContentAlignment.BottomLeft; // // label5 // this.label5.BackColor = System.Drawing.SystemColors.AppWorkspace; this.label5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.ForeColor = System.Drawing.Color.Blue; this.label5.Location = new System.Drawing.Point(328, 488); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(64, 16); this.label5.TabIndex = 12; this.label5.Text = "版本:1.0"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label5.MouseEnter += new System.EventHandler(this.label5_MouseEnter); this.label5.MouseLeave += new System.EventHandler(this.label5_MouseLeave); // // mainMenu1 // this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem1, this.menuItem3, this.menuItem5}); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem2}); this.menuItem1.Text = "游戏设置"; // // menuItem2 // this.menuItem2.Index = 0; this.menuItem2.Text = "退出"; this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click); // // menuItem3 // this.menuItem3.Index = 1; this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem4, this.menuItem6}); this.menuItem3.Text = "控制"; // // menuItem4 // this.menuItem4.Index = 0; this.menuItem4.Text = "操作控制"; this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click); // // menuItem6 // this.menuItem6.Index = 1; this.menuItem6.Text = "打开音乐"; this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click); // // menuItem5 // this.menuItem5.Index = 2; this.menuItem5.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuItem7}); this.menuItem5.Text = "帮助"; // // axMediaPlayer1 // this.axMediaPlayer1.Enabled = true; this.axMediaPlayer1.Location = new System.Drawing.Point(272, 456); this.axMediaPlayer1.Name = "axMediaPlayer1"; this.axMediaPlayer1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMediaPlayer1.OcxState"))); this.axMediaPlayer1.Size = new System.Drawing.Size(40, 48); this.axMediaPlayer1.TabIndex = 14; // // menuItem7 // this.menuItem7.Index = 0; this.menuItem7.Text = "帮助"; // // MainForm // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.BackColor = System.Drawing.SystemColors.Window; this.ClientSize = new System.Drawing.Size(400, 517); this.Controls.Add(this.axMediaPlayer1); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.textBox1); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.panel3); this.Controls.Add(this.button4); this.Controls.Add(this.button3); this.Controls.Add(this.button1); this.Controls.Add(this.panel1); this.ForeColor = System.Drawing.SystemColors.ControlText; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.IsMdiContainer = true; this.KeyPreview = true; this.MaximizeBox = false; this.Menu = this.mainMenu1; this.MinimizeBox = false; this.Name = "MainForm"; this.Text = "俄罗斯方块"; this.TransparencyKey = System.Drawing.Color.Transparent; this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown); this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing); this.Load += new System.EventHandler(this.MainForm_Load); this.panel3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.axMediaPlayer1)).EndInit(); this.ResumeLayout(false); } #endregion private void button1_Click(object sender, System.EventArgs e) { this.Start(); this.textBox1.Focus(); } private void button2_Click(object sender, System.EventArgs e) { this.textBox1.Focus(); } private void MainForm_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) { if(block!=null && this.paused==false && !this.failed) { if(e.KeyCode==this.keys[0]) { if(block.Move(0)) { block.EraseLast(); } } else if(e.KeyCode==this.keys[1]) { if(block.Move(1)) { block.EraseLast(); } } else if(e.KeyCode==this.keys[2]) { if(!block.Move(2)) { this.FixAndCreate(); } else { block.EraseLast(); } } else if(e.KeyCode==this.keys[3]) { if(block.Rotate()) { block.EraseLast(); } } else if(e.KeyCode==this.keys[4]) { block.Drop(); block.EraseLast(); this.FixAndCreate(); } } if(e.KeyCode==Keys.F2) { this.Start(); } else if(e.KeyCode==Keys.F3) { this.button4_Click(null,null); } } private void panel1_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { if(block!=null) { block.DrawBlocks(e.ClipRectangle); } if(this.failed) { Graphics gra=e.Graphics; gra.DrawString("Game Over",new Font("Arial Black",25f),new SolidBrush(Color.Gray),30,30); } } private void timer1_Tick(object sender, System.EventArgs e) { if(block!=null && !this.failed) { if(!block.Move(2)) { this.FixAndCreate(); } else { block.EraseLast(); } } } private void panel2_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { if(nextBlock!=null) { nextBlock.DrawBlocks(e.ClipRectangle); } } private void button4_Click(object sender, System.EventArgs e) { if(!this.failed) { if(paused) { this.pauseTime+=DateTime.Now-this.atPause; paused=false; this.timer1.Start(); } else { this.atPause=DateTime.Now; paused=true; this.timer1.Stop(); } } this.textBox1.Focus(); } private void button3_Click(object sender, System.EventArgs e) { if(!paused) { this.atPause=DateTime.Now; this.paused=true; this.timer1.Stop(); } sform=new ControlForm(); sform.SetOptions(this.keys,this.startLevel,this.trans); sform.DialogResult=DialogResult.Cancel; sform.ShowDialog(); if(sform.DialogResult==DialogResult.OK) { sform.GetOptions(ref this.keys,ref this.startLevel,ref this.trans); this.level=this.startLevel; this.label4.Text="级别: "+this.level; this.timer1.Interval=500-50*(level-1); if(this.trans) { this.TransparencyKey=Color.Black; } else this.TransparencyKey=Color.Transparent; } this.paused=false; this.pauseTime+=DateTime.Now-this.atPause; this.timer1.Start(); this.textBox1.Focus(); } private void MainForm_Load(object sender, System.EventArgs e) { this.Initiate(); } private void MainForm_Closing(object sender, System.ComponentModel.CancelEventArgs e) { this.SaveSetting(); } private void label5_MouseEnter(object sender, System.EventArgs e) { this.label5.Text="开源"; } private void label5_MouseLeave(object sender, System.EventArgs e) { this.label5.Text="版本:1.0"; } private void menuItem2_Click(object sender, System.EventArgs e) { Application.Exit(); } private void menuItem4_Click(object sender, System.EventArgs e) { Form controlForm = new ControlForm(); controlForm.Show(); } private void menuItem6_Click(object sender, System.EventArgs e) { OpenFileDialog ofDialog = new OpenFileDialog(); ofDialog.AddExtension = true; ofDialog.CheckFileExists = true; ofDialog.CheckPathExists = true; //the next sentence must be in single line ofDialog.Filter = "MP3文件(*.mp3)|*.mp3|Audio文件(*.avi)|*.avi|VCD文件(*.dat)|*.dat|WAV文件(*.wav)|*.wav|所有文件 (*.*)|*.*"; ofDialog.DefaultExt = "*.mp3"; if(ofDialog.ShowDialog() == DialogResult.OK) { this.axMediaPlayer1.URL= ofDialog.FileName; } } } }
2023-01-03 10:23:08 564KB C# 游戏 俄罗斯方块
1
在此游戏里,玩家需要将挡住红车的其他车移开,令红车移到出口处就算成功一局过关。所有的车只能前进后退,不能横行转弯。通过游戏开发玩家潜在的智慧、提高逻辑思维能力。
2022-12-19 22:26:33 607KB C# 游戏 IQ
1
摘要:C#源码,游戏开发,贪吃蛇  又一个C#贪吃蛇,没有抓到截图,源代码完整,请使用VS2008以上版本,学习C#游戏可以参选的一个小源码。
2022-12-17 17:12:28 33KB C#源代码 游戏开发
1
这是本人及小组人员编的第一个游戏,为c#语言所编。 有需要改进的地方欢迎提出。
2022-12-10 23:54:42 524KB C#游戏
1
这个是一个用C#写数独游戏,有兴趣的自己可以看一哈。
2022-11-30 18:57:45 264KB C# 游戏
1