首页 > 作文

微信公众平台开发实现2048游戏的方法

更新时间:2023-04-06 19:12:39 阅读: 评论:0

本文实例讲述了微信公众平台开发实现2048游戏的方法。分享给大家供大家参考。具体如下:

一、2048游戏概述

《2048》是比较流行的一款数字游戏。原版2048首先在github上发布,原作者是gabriele cirulli。它是基于《1024》和《小3传奇》的玩法开发而成的新型数字游戏 。

随后2048便出现各种版本,走各大平台。由ketchapp公司移植到ios的版本最为火热,现在约有1000万下载,其名字跟原版一模一样。衍生版中最出名的是《2048六边形》版本,先后在全球81个国家中的board game中排进了前200。安卓版非常火爆的有《挑战2048》,其2.0.0版以后还加入了双人对战。其次比较特别的有2048中国朝代版。更有2048自定义版,可以自己定义文字和图片。《2048》是ios中流行的一款。

how to play:u yourarrow keysto move the tiles. when two tiles with the same number touch, theymerge into one!
note:this 无锡太湖学院学费site is the official version of 2048. you can play it on your phone via.all other apps or sites are derivatives or fakes, and should be ud with caution好的文章摘抄.
created by gabriele cirulli.bad on 1024 by veewo studioand conceptually similar to threes by ashe vollmer.

游戏规则很简单,每次可以选择上下左右其中一个方向去滑动,每滑动一次,所有的数字方块都会往滑动的方向靠拢外,系统也会在空白的地方乱数出现一个数字方块,相同数字的方块在靠拢、相撞时会相加。系统给予的数字方块不是2就是4,玩家要想办法在这小小的16格范围中凑出“2048”这个数字方块。

游戏的画面很简单,一开始整体16个方格大部分都是灰色的,当玩家拼图出现数字之后就会改变颜色,整体格调很是简单。

在玩法规则也非常的简单,一开始方格内会出现2或者4等这两个小数字,玩家只需要上下左右其中一个方向来移动出现的数字,所有的数字就会向滑动的方向靠拢,而滑出的空白方块就会随机出现一个数字,相同的数字相撞时会叠加靠拢,然后一直这样,不断的叠加最终拼凑出2048这个数字就算成功。

如果你是一个数字爱好者,或者是比较有天赋的数学天才,一上手便会为之着迷。就算不是数学天才,一般的玩家也能够玩转这款游戏,感兴趣的话就去下载体验一番。

目前这个游戏是开源的,所以不需要再来重新开发,

完整实例代码点击此处。

二、微信公众平台

把2048源码放到自己的服务器上,得到游戏url。

当用户关注时,提示回复2048可玩这个游戏,

当用户回复2048时,回复图文消息,图文中带2048游戏链接。

完整代码如下所示。

<?php/* 方倍工作室 copyright 2014 all rights rerved*/define("token", "weixin");$wechatobj = new wechatcallbackapitest();if (!ist($_get['echostr'])) { $wechatobj->responmsg();}el{ $wechatobj->valid();}class wechatcallbackapitest{ //验证签名 public function valid() {  $echostr = $_get["echostr"];  $signature = $_get["signature"];  $timestamp = $_get["timestamp"];  $nonce = $_get["nonce"];  $token = token;  $tmparr = array($token, $timestamp, $nonce);  sort($tmparr);  $tmpstr = implode($tmparr);  $tmpstr = sha1($tmpstr);  if($tmpstr == $signature){   echo $echostr;   exit;  } } //响应消息 public function responmsg() {  $poststr = $globals["http_raw_post_data"];  if (!empty($poststr)){   $postobj = simplexml_load_string($poststr, 'simplexmlelement', lib人生哲理文章xml_nocdata);   $rx_type = trim($postobj->msgtype);       //消息类型分离   switch ($rx_type)   {    ca "event":     $result = $this->receiveevent($postobj);     break;    ca "text":     $result = $this->receivetext($postobj);     break;   }   echo $result;  }el {   echo "";   exit;  } } //接收事件消息 private function receiveevent($object) {  $content = "";  switch ($object->event)  {   ca "subscribe":    $content = "欢迎关注方倍工作室\n回复 2048 开始游戏";    break;  }  if(is_array($content)){   if (ist($content[0])){    $result = $this->transmitnews($object, $content);   }el if (ist($content['musicurl'])){    $result = $this->resulttransmitmusic($object, $content);   }  }el{   $result = $this->transmittext($object, $content);  }  return $result; } //接收文本消息 private function receivetext($object) {  $keyword = trim($object->content);    if (strstr($keyword, "2048")){   $content = array();   $content[] = array("title"=>"2048游戏", "description"=>"游戏规则很简单,每次可以选择上下左右其中一个方向去滑动,每滑动一次,所有的数字方块都会往滑动的方向靠拢外,系统也会在空白的地方乱数出现一个数字方块,相同数字的方块在靠拢、相撞时会相加。系统给予的数字方块不是2就是4,玩家要想办法在这小小的16格范围中凑出“2048”这个数字方块。", "picurl"=>"/d/file/titlepic/1395908994962.png", "url" =>"http://gabrielecirulli.github.io/2048/");  }el{   $content = date("y-m-d h:i:s",time())."\n技术支持 方倍工作室";  }    if(is_array($content)){   if (ist($content[0]['picurl'])){    $result = $this->transmitnews($object, $content);   }el if (ist($content['musicurl'])){    $result = $this->transmitmusic($object, $content);   }  }el{   $result = $this->transmittext($object, $content);  } } //回复文本消息 private function transmittext($object, $content) {  $xmltpl = "<xml><tourname><![cdata[%s]]></tourname><fromurname><![cdata[%s]]></fromurname><createtime>%s</createtime><msgtype><![cdata[text]]></msgtype><content><![cdata[%s]]></content></xml>";  $result = sprintf($xmltpl, $object->fromurname, $object->tourname, time(), $content);  return $result; } //回复图文消息 private function transmitnews($object, $newsarray) {  if(!is_array($newsarray)){   return;  }  $itemtpl = " <item>  <title><![cdata[%s]]></title>  <description><![cdata[%s]]></description>  <picurl><![cdata[%s]]></picurl>  <url><![cdata[%s]]></url> </item>";  $item_str = "";  foreach ($newsarray as $item){   $item_str .= sprintf($itemtpl, $item['title'], $item['description'], $item['picurl'], $item['url']);  }  $xmltpl = "<xml><tourname><![cdata[%s]]></tourname><fromurname><![cdata[%s]]></fromurname><createtime>%s</createtime><msgtype><![cdata[news]]></msgtype><articlecount>%s</articlecount><articles>$item_str</articles></xml>";  $result = sprintf($xmltpl, $陕西医学院object->fromurname, $object->tourname, time(), count($newsarray));  return $result; }}?>

希望本文所述对大家基于php的微信公众平台开发有所帮助。

本文发布于:2023-04-06 19:12:21,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/93a2624133f18a38686b45bdd4a0658d.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:微信公众平台开发实现2048游戏的方法.doc

本文 PDF 下载地址:微信公众平台开发实现2048游戏的方法.pdf

标签:数字   方块   游戏   消息
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图