• 大小: 28.41MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-16
  • 语言: 其他
  • 标签: 中国象棋  Cocos2d-X  

资源简介

使用Cocos2d-X2.2.3开发的一款中国象棋游戏,游戏中可以实现、新局面、悔棋、游戏音乐、胜利后会显示游戏结果

资源截图

代码片段和文件信息

#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();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       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

     文件     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

     文件      22154  2014-05-07 23:32  中国象棋\Resources\regret.jpg

............此处省略14个文件信息

评论

共有 条评论