C# 拼图魔方小游戏
工作闲暇之余去逛了逛CodeProject,刚好现有项目主要用到就是winform,浏览了下照片,找到上周带着蛋挞打疫苗回家的照片,于是新生一记,如何把这些图片玩起来~
80后应该都有印象,小时候有种玩具,叫做拼图魔方,90后00后的世界这种玩具应该早已灭绝了。一个塑料小板,上面分隔了很多小图框,通过移动这些小图框,最后拼接成完整的图片
话不多说开始吧~先上一张原图
代码也很简单,主要就是通过BitMap分隔现有(后面有时间可以优化下,让玩家自动上传图片,应该会更有意思)图片,然后Random随机打乱分割后图片的顺序,通过点击小方格来完成图片的拼图,为了更方便玩家,每个小方格添加了序号,玩家也可以不参考原图,按照小方格上的序号进行拼图
序号功能实现主要是类MyButton集成父类Button实现:
publicclassMyButton:Button { privateintnumber; publicintNumber { get { returnthis.number; } set { this.Text=value.ToString(); this.number=value; } } publicMyButton() { } }
随机分隔
Randomr=newRandom(); int[]a=newint[24]; inti=0; intb; boolexist; while(i!=a.Length) { exist=false; b=(r.Next(24)+1); for(intj=0;j点击小方格,通过改变当前点击的小方格X,Y坐标来更新小方格的位置
privatevoidmyButton_LocationChanged(objectsender,EventArgse) { MyButtonA=senderasMyButton; YouWin=true; intButtonNumber; this.NumberOfMoves++; if(ButtonArray==null) { this.FrmMain_Load(sender,e); } for(inti=0;i<5;i++) { if(YouWin==false) break; elsefor(intj=0;j<5;j++) { ButtonNumber=i*5+j; if(i==4&&j==4) break; elseif(GetNumber(ButtonArray[ButtonNumber].Location.X,ButtonArray[ButtonNumber].Location.Y)==ButtonArray[ButtonNumber].Number) continue; else { YouWin=false; break; } } } if(YouWin) { if(MessageBox.Show("YouWinThisGamein"+this.NumberOfMoves.ToString()+"Moves\n\rDoYouWantToPlayAnotherGame?","Congratulation",MessageBoxButtons.YesNo)==DialogResult.Yes) this.LoadNewGame(); else this.Close(); } }privatevoidmyButton_LocationChanged(objectsender,EventArgse) { MyButtonA=senderasMyButton; YouWin=true; intButtonNumber; this.NumberOfMoves++; if(ButtonArray==null) { this.FrmMain_Load(sender,e); } for(inti=0;i<5;i++) { if(YouWin==false) break; elsefor(intj=0;j<5;j++) { ButtonNumber=i*5+j; if(i==4&&j==4) break; elseif(GetNumber(ButtonArray[ButtonNumber].Location.X,ButtonArray[ButtonNumber].Location.Y)==ButtonArray[ButtonNumber].Number) continue; else { YouWin=false; break; } } } if(YouWin) { if(MessageBox.Show("YouWinThisGamein"+this.NumberOfMoves.ToString()+"Moves\n\rDoYouWantToPlayAnotherGame?","Congratulation",MessageBoxButtons.YesNo)==DialogResult.Yes) this.LoadNewGame(); else this.Close(); } }具体效果如下:
代码有很多已知的可以优化的地方,后面有闲暇时间会处理,如果大家有更好的建议,不妨在下方评论区告知,在此感谢~
【点击下载源码】
到此这篇关于C#拼图魔方小游戏的文章就介绍到这了,更多相关C#拼图魔方内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。