• 大小: 24.76MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-04
  • 语言: C/C++
  • 标签:

资源简介

象棋AI参考逻辑,中国象棋是起源于中国的一种棋戏,属于二人对抗性游戏。

资源截图

代码片段和文件信息

#include “AppDelegate.h“
#include “SceneStart.h“

USING_NS_CC;

AppDelegate::AppDelegate() {

}

AppDelegate::~AppDelegate() 
{
}

bool AppDelegate::applicationDidFinishLaunching() {
    // initialize director
    CCDirector* pDirector = CCDirector::sharedDirector();
    CCEGLView* pEGLView = CCEGLView::sharedOpenGLView();

    pDirector->setOpenGLView(pEGLView);

    pEGLView->setDesignResolutionSize(800 480 kResolutionExactFit);

    // turn on display FPS
    pDirector->setDisplayStats(false);

    // set FPS. the default value is 1.0/60 if you don‘t call this
    pDirector->setAnimationInterval(1.0 / 60);

    // create a scene. it‘s an autorelease object
    CCScene *pScene = SceneStart::scene();

    // run
    pDirector->runWithScene(pScene);

    return true;
}

// This function will be called when the app is inactive. When comes a phone callit‘s be invoked too
void AppDelegate::applicationDidEnterBackground() {
    CCDirector::sharedDirector()->stopAnimation();

    // if you use SimpleAudioEngine it must be pause
    // SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
}

// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground() {
    CCDirector::sharedDirector()->startAnimation();

    // if you use SimpleAudioEngine it must resume here
    // SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-11-07 17:19  Classes\
     文件        1406  2014-11-07 14:19  Classes\AppDelegate.cpp
     文件         955  2014-03-13 10:04  Classes\AppDelegate.h
     文件        2765  2014-03-13 10:04  Classes\AppMacros.h
     文件       23716  2014-11-07 17:00  Classes\SceneGame.cpp
     文件        3635  2014-11-07 08:43  Classes\SceneGame.h
     文件        2851  2014-10-31 10:49  Classes\SceneStart.cpp
     文件         479  2014-10-27 22:22  Classes\SceneStart.h
     文件        3691  2014-11-06 14:54  Classes\Stone.cpp
     文件        1204  2014-11-07 15:21  Classes\Stone.h
     目录           0  2014-11-07 17:19  Resources\
     文件      465389  2014-05-07 23:32  Resources\background.png
     文件        6749  2014-05-07 23:32  Resources\bche.png
     文件        6985  2014-05-07 23:32  Resources\bjiang.png
     文件        8531  2014-05-07 23:32  Resources\bkg1.png
     文件        8330  2014-05-07 23:32  Resources\bkg2.png
     文件        6801  2014-05-07 23:32  Resources\bma.png
     文件        6948  2014-05-07 23:32  Resources\bpao.png
     文件        6604  2014-05-07 23:32  Resources\bshi.png
     文件        7121  2014-05-07 23:32  Resources\bxiang.png
     文件        6709  2014-05-07 23:32  Resources\bzu.png
     文件        8752  2014-05-07 23:32  Resources\closeVolice.png
     文件       21812  2014-05-07 23:32  Resources\difficulty.jpg
     文件       29338  2014-05-07 23:32  Resources\floor.jpg
     文件    29053484  2014-11-06 10:45  Resources\floor.wav
     文件        5531  2014-05-07 23:32  Resources\icon.png
     文件       20974  2014-05-07 23:32  Resources\new.jpg
     文件        8522  2014-05-07 23:32  Resources\openVolice.png
     文件       20993  2014-05-07 23:32  Resources\pause.jpg
     文件        6925  2014-05-07 23:32  Resources\rbing.png
     文件        6936  2014-05-07 23:32  Resources\rche.png
............此处省略9个文件信息

评论

共有 条评论

相关资源