quick cocos2d-x 入门---井字棋

时间:2022-10-25 23:37:30

学习quick cocos2d-x 第二天 ,使用quick-x 做了一个井字棋游戏 。

我假设读者已经 http://wiki.quick-x.com/doku.php?id=zh_cn阅读了这个链接下的内容 ,并学会了如何搭建环境和创建新的工程,并假高读者有一定cocos2d-x基础

建议读者多研究一下quick-x自带的例子coinflip。并阅读framework下的lua源码,尤其注意用lua模拟出面象对象的部分(可参考《Lua程序设计》第二版的13,16两章)。

quick cocos2d-x 入门---井字棋

一。准备工作:

1.如何在场景(层)添加一个Sprite

我们在MainScene中添加一个Sprite

function MainScene:ctor()
self.bg = display.newSprite("board.png", display.cx, display.cy)
self:addChild(self.bg)
-- keypad layer, for android
self.layer = Board.new()
self:addChild(self.layer)
end

display 是处理显示有关的一个“类”。

newSprite则类似cocos2d-x中的CCSprite::create()

注意:Lua中除用local 修饰的变量都是全局变量。我们self.bg这样定义,而不直接定义,目的是不污染全局环境,和把bg作为MainScene“类”(其实是表)的一个变量。

2.定义一个Layer

Board是我定义的一个层,添加在MainScene上。

定义层的方法为:

在Board.lua文件 中

local Board = class("Board", function()
return display.newLayer()
end)

return Board

大家可以到framework下看看class是如何实现的。

3.如何增加touch事件

3.1在 Board:actor中增加以下代码

self:addTouchEventListener(handler(self, self.onTouch))
self:setNodeEventEnabled(true)

3.2 在onEnter,onExit中分别设置和移除相关事件监听

function Board:onEnter()
self:setTouchEnabled(true)
end function Board:onExit()
self:removeAllEventListeners()
end

3.3 在Board:onTouch中处理事件

function Board:onTouch(event, x, y)
//TODO 处理点击事件
end

二。定义数据 

我使用一个2维的表来描述整个棋盘(也可以使用一维表)

myBoard = {{"-","-","-"},
{"-","-","-"},
{"-","-","-"}}
theWiner = "-1"

myBoard即棋盘,“-1”表示没有棋子,“X”表示有“X”形棋子,“O”表示有“O”型棋子。

theWiner表示获胜者,初始为-1。

三。程序流程

1.玩家点击事件后,在相应的位置放置棋子,并修改myBoard数据

比如简单,直接附代码了,写的比较粗糙,因为 也刚学Lua才两三天。

turn = "O"
function Board:makeMove(x,y)
if theWiner ~= "-1" then
return
end
row,co = self:getBoardLocation(x,y)
if row == - then
return
end
self:makeEle(row,co) end
function Board:makeEle(row,co)
local file = "piece_o.png"
if turn == "X" then
file = "piece_x.png"
else
file = "piece_o.png"
end myBoard[row][co] = turn;
self.ele = display.newSprite(file, display.cx+*(co-) , display.cy+*(-row))
self:addChild(self.ele)
local ret = Board:winCheck(row,co)
print("winCheck",ret) if ret == "O" then
self.lable:setString("O is the winer")
end
if ret == "X" then
self.lable:setString("X is the winner")
end
if ret == "He" then
self.lable:setString("No one is the winner")
end
if ret == "Wh" then
self.lable:setString("Continue")
end if turn == "X" then
turn = "O"
else
turn = "X"
end
end
function Board:getBoardLocation(x,y)
if x < display.cx- or x >display.cx+ then
return -
end
if y > display.cy+ or y < display.cy- then
return -
end local co
if x <= display.cx - then
co =
elseif x > display.cx- and x < display.cx+ then
co =
else
co =
end local row
if y <= display.cy - then
row =
elseif y > display.cy- and y < display.cy+ then
row =
else
row =
end return row,co end

2.检查玩家是否获胜或平局

function Board:winCheck(row,co)
local cur = myBoard[row][co] if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] ==cur then
return cur
end if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end
if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end
if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end if myBoard[][] == cur and myBoard[][] == cur and myBoard[][] == cur then
return cur
end open = true;
for i = , do
for j = , do
if myBoard[i][j] == "-" then
open = false
end
end
end if open then
return "He"
else
return "Wh"
end
end

搞了一天,有点累了,写的不详细,有问题请大家在评论里问吧

quick cocos2d-x 入门---井字棋的更多相关文章

  1. 程序设计入门—Java语言 第五周编程题 2井字棋(5分)

    2 井字棋(5分) 题目内容: 嗯,就是视频里说的那个井字棋.视频里说了它的基本思路,现在,需要你把它全部实现出来啦. 你的程序先要读入一个整数n,范围是[3,100],这表示井字棋棋盘的边长.比如n ...

  2. TicTacToe井字棋 by reinforcement learning

    对于初学强化学习的同学,数学公式也看不太懂, 一定希望有一些简单明了的代码实现加强对入门强化学习的直觉认识,这是一篇初级入门代码, 希望能对你们开始学习强化学习起到基本的作用. 井字棋具体玩法参考百度 ...

  3. &lbrack;CareerCup&rsqb; 17&period;2 Tic Tac Toe 井字棋游戏

    17.2 Design an algorithm to figure out if someone has won a game oftic-tac-toe. 这道题让我们判断玩家是否能赢井字棋游戏, ...

  4. &lbrack;C&plus;&plus;&rsqb; 井字棋游戏源码

    TicTac.h #define EX 1 //该点左鼠标 #define OH 2 //该点右鼠标 class CMyApp : public CWinApp { public: virtual B ...

  5. &lbrack;游戏学习22&rsqb; MFC 井字棋 双人对战

    >_<:太多啦,感觉用英语说的太慢啦,没想到一年做的东西竟然这么多.....接下来要加速啦! >_<:注意这里必须用MFC和前面的Win32不一样啦! >_<:这也 ...

  6. 井字棋&lpar;Tic-Tac-Toe&rpar;

    井字棋介绍:https://en.wikipedia.org/wiki/Tic-tac-toe 井字棋简单,但是获胜策略却和直觉不同,四角比中间重要性要高,而且先手有很大的获胜概率获胜(先手胜:91, ...

  7. &lbrack;HTML5实现人工智能&rsqb;小游戏《井字棋》发布,据说IQ上200才能赢

    一,什么是TicTacToe(井字棋)   本 游戏 为在下用lufylegend开发的第二款小游戏.此游戏是大家想必大家小时候都玩过,因为玩它很简单,只需要一张草稿纸和一只笔就能开始游戏,所以广受儿 ...

  8. &lbrack;LeetCode&rsqb; Valid Tic-Tac-Toe State 验证井字棋状态

    A Tic-Tac-Toe board is given as a string array board. Return True if and only if it is possible to r ...

  9. python 井字棋(Tic Tac Toe)

    说明 用python实现了井字棋,整个框架是本人自己构思的,自认为比较满意.另外,90%+的代码也是本人逐字逐句敲的. minimax算法还没完全理解,所以参考了这里的代码,并作了修改. 特点 可以选 ...

随机推荐

  1. substring的用法

    public String substring(int beginIndex, int endIndex) 返回一个新字符串,它是此字符串的一个子字符串.该子字符串从指定的 beginIndex 处开 ...

  2. MyBatis 配置文件头部换行异常

    INFO - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory ...

  3. Android从零开始--安装

    1.下载安装eclipse.adt和Android sdk(以前一直以为Android使用的sdk也是java jdk呢,呵呵) 2.都安装完成后配置eclipse的Android的环境,将Andro ...

  4. &lbrack;学习笔记&rsqb;tarjan求割点

    都口胡了求割边,就顺便口胡求割点好了QAQ 的定义同求有向图强连通分量. 枚举当前点的所有邻接点: 1.如果某个邻接点未被访问过,则访问,并在回溯后更新 2.如果某个邻接点已被访问过,则更新 对于当前 ...

  5. php flush&lpar;&rpar;刷新不能输出缓冲的原因分析

    在php程序编写中,flush()的使用率还是挺高的,它在网页表现即时信息效果时发挥了极为重要的作用,比如之前写的php实现限制文件下载速度的代码实例,flush()就起了举足轻重的作用,是进度条实现 ...

  6. JAVASCRIPT、ANDROID、C&num;分别实现普通日期转换多少小时前、多少分钟前、多少秒

    貌似最近很流行这个,就写了个js函数实现之 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> ...

  7. 基础笔记(二)HTTP协议

    GET与POST的区别 1.GET提交的数据会放在URL之后,以?分割URL和传输数据,参数之间用&连接:POST是把提交的数据放在HTTP的body中. 2.GET提交的数据大小有限制(协议 ...

  8. MVC小系列(十九)【mvc与站点地图】

    我的MvcSiteMap地图主要由实体文件,XML配置文件,C#调用文件组成,当然为了前台调用方法,可以为HtmlHelper添加一个扩展方法 第一步 定义站点地图实体 public class Mv ...

  9. ACdream群赛1112(Alice and Bob)

    题意:http://acdream.info/problem?pid=1112 Problem Description Here  is Alice and Bob again ! Alice and ...

  10. Anacond win10安装与介绍

    Anacond的介绍 Anaconda指的是一个开源的Python发行版本,其包含了conda.Python等180多个科学包及其依赖项. 因为包含了大量的科学包,Anaconda 的下载文件比较大( ...