资源简介

Victoriandemo 横板过关游戏 跑酷 cocos2d-x2.2.3 源代码

资源截图

代码片段和文件信息

/*
    文件名:    AppDelegate.cpp
    描 述:    游戏的AppDelegate
    创建人:    郝萌主 (博客:http://blog.csdn.net/haomengzhu)

    创建日期:   2013.12.05
*/
#include “cocos2d.h“
#include “CCEGLView.h“
#include “AppDelegate.h“
#include “Gamelayer.h“

USING_NS_CC;

AppDelegate::AppDelegate()
{
}

AppDelegate::~AppDelegate()
{
}

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

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

    // 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 = Gamelayer::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();
}

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-12-15 13:10  Classes\
     文件        1259  2013-12-15 13:08  Classes\AppDelegate.cpp
     文件         960  2013-09-19 15:16  Classes\AppDelegate.h
     文件        7989  2013-12-15 13:05  Classes\Block.cpp
     文件        1615  2013-12-15 13:05  Classes\Block.h
     文件       15963  2013-12-15 13:06  Classes\Gamelayer.cpp
     文件        1760  2013-12-15 13:05  Classes\Gamelayer.h
     文件         371  2013-12-15 13:06  Classes\GameSprite.cpp
     文件        1157  2013-12-15 13:06  Classes\GameSprite.h
     文件        4891  2013-12-15 13:09  Classes\Player.cpp
     文件        2576  2013-12-15 13:09  Classes\Player.h
     文件        9619  2013-12-15 13:07  Classes\Terrain.cpp
     文件        1486  2013-12-15 13:07  Classes\Terrain.h
     目录           0  2013-12-15 13:10  Resources\
     文件        4871  2012-12-06 20:07  Resources\bg.png
     文件         923  2012-12-08 09:29  Resources\blank.png
     文件        6311  2013-04-28 16:06  Resources\CloseNormal.png
     文件        5499  2013-04-28 16:06  Resources\CloseSelected.png
     文件        1409  2012-12-06 17:52  Resources\font.fnt
     文件       19939  2012-12-06 17:52  Resources\font.png
     目录           0  2013-12-15 13:10  Resources\fonts\
     文件      778552  2013-11-19 14:29  Resources\fonts\arial.ttf
     文件       25776  2013-09-21 15:45  Resources\fonts\Marker Felt.ttf
     文件      144927  2013-04-28 16:06  Resources\HelloWorld.png
     文件        1483  2012-11-28 09:29  Resources\Info.plist
     文件       61982  2012-11-17 10:48  Resources\iTunesArtwork
     文件       14217  2013-01-07 11:44  Resources\sprite_sheet.plist
     文件      219652  2013-01-07 11:44  Resources\sprite_sheet.png

评论

共有 条评论