设为首页 收藏本站
查看: 639|回复: 0

[经验分享] 用php做扫雷游戏

[复制链接]

尚未签到

发表于 2017-3-24 09:53:50 | 显示全部楼层 |阅读模式
  php其实不适合做游戏,但是简单的游戏还是可以实现的,下面用php 实现简单的扫雷游戏,包含注释,代码只有167行
<?php$init = $_POST["init"];//game restart$clickvalue = $_POST["clickvalue"];//minesweeping$checkflag = 0;//Victory or defeat$click_count = 0;//clicks countif($init == null && $clickvalue == null){//initialization$_POST = array();//set POST with a array$_POST["rows"] = 9;//set rows$_POST["cols"] = 9;//set cols$_POST["num"] = 10;//set num$_POST["timeshow"] = "00:00"; //set starttime$init = true;//set initialization}$rows = $_POST["rows"];//get rows$cols = $_POST["cols"];//get cols$num = $_POST["num"];//get num$starttime = $_POST["starttime"];//get starttimeif($init){// is initialization$timeshow = "00:00";//set starttime$data = array();//data initializationfor($i=0;$i<$rows;$i++){//all the rowsfor($j=0;$j<$cols;$j++){//all the cols$data["data".$i."_".$j] = 0;//set mine with null$data["open".$i."_".$j] = 0;//set node with close}}$i=0;//reset the index,and set the mines(Random setting)while($i < $num){//number of mine$r = rand(0,$rows - 1);//row's index$c = rand(0,$cols - 1);//col's indexif($data["data".$r."_".$c] == 0){//if not a mine$data["data".$r."_".$c] = 100;//set the node with a mine$i++;}}for($i=0;$i<$rows;$i++){//all the rowsfor($j=0;$j<$cols;$j++){//all the colsif($data["data".$i."_".$j] == 100)continue;//is not a mine , set number of adjacent mines $cnt = 0;if($i - 1 >= 0 && $j - 1 >= 0 && $data["data".($i - 1)."_".($j - 1)] == 100)$cnt++;//upper leftif($i - 1 >= 0 && $data["data".($i - 1)."_".$j] == 100)$cnt++;//leftif($i - 1 >= 0 && $j + 1 < $cols && $data["data".($i - 1)."_".($j + 1)] == 100)$cnt++;//lower leftif($j - 1 >= 0 && $data["data".$i."_".($j - 1)] == 100)$cnt++;//upperif($j + 1 < $cols && $data["data".$i."_".($j + 1)] == 100)$cnt++;//lowerif($i + 1 < $rows && $j - 1 >= 0 && $data["data".($i + 1)."_".($j - 1)] == 100)$cnt++;//upper rightif($i + 1 < $rows && $data["data".($i + 1)."_".$j] == 100)$cnt++;//rightif($i + 1 < $rows && $j + 1 < $cols && $data["data".($i + 1)."_".($j + 1)] == 100)$cnt++;//lower right$data["data".$i."_".$j] = $cnt;//set number}}}else{$data = $_POST;//get dataif($data["data".$clickvalue] == 100){//check the value of users click$checkflag = 2;//if click on a mine,gameoverfor($i=0;$i<$rows;$i++){//all the rowsfor($j=0;$j<$cols;$j++){//all the cols$data["open".$i."_".$j] = 1;//set all nodes to open}}}else{$node = explode("_", $clickvalue);//get the node of clickopenNode($node[0],$node[1]);//set nodes to openfor($i=0;$i<$rows;$i++){//all the rowsfor($j=0;$j<$cols;$j++){//all the cols if($data["open".$i."_".$j] == 1)$click_count++;//get the number of opennode }}if($rows*$cols - $click_count == $num)$checkflag = 1;//if all the node is open,game clear }}if($checkflag == 0 && $click_count == 1){//if game is start ,time start$starttime = date("H:i:s");}if($starttime){//Computing time and display$now = date("H:i:s");$nowlist = explode(":",$now);$starttimelist = explode(":",$starttime);$time_count = $nowlist[0]*3600+$nowlist[1]*60 + $nowlist[2] - ($starttimelist[0]*3600+$starttimelist[1]*60 + $starttimelist[2]);$min = floor($time_count / 60);$sec = $time_count % 60;$timeshow = ($min>9?$min:"0".$min).":".($sec>9?$sec:"0".$sec);}else{$timeshow = "00:00";//if game is stop , time stop}function openNode($i,$j){//set nodes to open,if it is can openglobal $rows;//get the rowsglobal $cols;//get the colsglobal $data;//get the dataif($i < 0 || $i >= $rows || $j < 0 || $j >= $cols || $data["open".$i."_".$j])return;//it is not a node,or it has been opened$data["open".$i."_".$j] = 1;//open the nodeif($data["data".$i."_".$j] > 0)return;//need to continue?openNode($i - 1,$j - 1);openNode($i - 1,$j);openNode($i - 1,$j + 1);openNode($i,$j - 1);openNode($i,$j + 1);openNode($i + 1,$j - 1);openNode($i + 1,$j);openNode($i + 1,$j + 1);}?><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>minesweeper</title></head><body><form action="" method="post"><input type="hidden" name="starttime" value="<?php echo $starttime;?>"><input type="hidden" name="clickvalue"><table style="position:absolute;top:10px;left:0px;z-index:0;" border="1px"><tr><td width="100px" align="center"><table width="100%" border="1px"><tr><td>rows:</td><td><input type="text" name="rows" value="<?php echo $rows;?>" size="1"></td></tr><tr><td>cols</td><td><input type="text" name="cols" value="<?php echo $cols;?>" size="1"></td></tr><tr><td>num:</td><td><input type="text" name="num" value="<?php echo $num;?>" size="1"></td></tr><tr><td colspan="2" align="center"><input type="submit" value="restart" name="init"></td></tr></table></td><td width="50px" align="center"><font size="10px"><?php echo $checkflag < 2?"☺":"☹";?></font></td><td width="100px" align="center"><?php if($checkflag == 1)echo "game clear!<br />";else if($checkflag == 2)echo "game over!<br />";?><input type="text" name="timeshow" value="<?php echo $timeshow;?>" size="4" readonly ></td></tr></table><table style="position:absolute;top:155px;left:0px;z-index:0;" border="1px"><?php for($i=0;$i<$rows;$i++){ ?><tr><?php for($j=0;$j<$cols;$j++){?><td style="width:24px;height:24px;" align="center"><input type="hidden" name="open<?php echo $i."_".$j;?>" value="<?php echo $data["open".$i."_".$j];?>"><input type="hidden" name="data<?php echo $i."_".$j;?>" value="<?php echo $data["data".$i."_".$j];?>"><?php if($data["open".$i."_".$j]){//show the value of node,if the node has been opened ?><?php echo $data["data".$i."_".$j]==100?"☀":$data["data".$i."_".$j];?><?php }else{//show a button ,if the node has not been opened ?><input type="button" value="" _".$j;?>')"  style="width:20px;height:20px;"><?php } ?></td><?php } ?></tr><?php } ?></table></form><script type="text/javascript">function clickNum(value){//click a node<?php if($checkflag > 0)echo 'return;';//if game is clear or game is over ?>document.forms[0].clickvalue.value = value;document.forms[0].submit();}<?php if($checkflag == 0 && $click_count>0)echo 'setTimeout("timerun()",1000);';//time running ?><?php if($checkflag == 1)echo 'alert("game clear!");';?><?php if($checkflag == 2)echo 'alert("game over!");';?>function timerun(){//time runningvar timelist = document.forms[0].timeshow.value.split(":");var sec = parseInt(timelist[1],10) + 1;var min = sec < 60?parseInt(timelist[0],10):(parseInt(timelist[0],10) + 1);document.forms[0].timeshow.value = (min>9?min:"0"+min)+":"+(sec > 9?sec:"0"+sec);setTimeout("timerun()",1000);}</script></body></html>

  

  演示地址
  http://www.fsanguo.comoj.com/public/minesweeper/index.php

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-354447-1-1.html 上篇帖子: thrift rpc client in php 下篇帖子: PHP 脚本加密 工具(软件)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表