• 大小: 677KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-20
  • 语言: 其他
  • 标签: cocos2d-x  

资源简介

cocos2d-x联网

资源截图

代码片段和文件信息

#include “cocos2d.h“
#include “CCEGLView.h“
#include “AppDelegate.h“
#include “HelloWorldScene.h“
#include “SimpleAudioEngine.h“

using namespace CocosDenshion;

USING_NS_CC;

AppDelegate::AppDelegate()
{
}

AppDelegate::~AppDelegate()
{
    SimpleAudioEngine::end();
}

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 = HelloWorld::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();

    SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
}

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

    SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-03-12 11:08  AAAHttpRequest\
     目录           0  2013-03-12 11:08  AAAHttpRequest\Classes\
     文件        1318  2013-03-12 11:08  AAAHttpRequest\Classes\AppDelegate.cpp
     文件         960  2013-03-12 11:08  AAAHttpRequest\Classes\AppDelegate.h
     文件        4919  2013-03-12 16:55  AAAHttpRequest\Classes\HelloWorldScene.cpp
     文件         829  2013-03-12 16:41  AAAHttpRequest\Classes\HelloWorldScene.h
     目录           0  2013-03-12 12:43  AAAHttpRequest\proj.win32\
     文件        2310  2013-03-12 11:08  AAAHttpRequest\proj.win32\AAAHttpRequest.rc
     文件        8361  2013-03-12 16:48  AAAHttpRequest\proj.win32\AAAHttpRequest.win32.vcxproj
     文件        2066  2013-03-12 11:08  AAAHttpRequest\proj.win32\AAAHttpRequest.win32.vcxproj.filters
     文件         763  2013-03-12 11:08  AAAHttpRequest\proj.win32\AAAHttpRequest.win32.vcxproj.user
     目录           0  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\
     文件       48544  2013-03-12 12:43  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.res
     文件         406  2013-03-12 12:43  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32.exe.embed.manifest
     文件         472  2013-03-12 12:43  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32.exe.embed.manifest.res
     文件         381  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32.exe.intermediate.manifest
     文件          55  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32.lastbuildstate
     文件        2459  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32.log
     文件         242  2013-03-12 12:43  AAAHttpRequest\proj.win32\Debug.win32\AAAHttpRequest.win32_manifest.rc
     文件      107771  2013-03-12 16:46  AAAHttpRequest\proj.win32\Debug.win32\AppDelegate.obj
     文件        5594  2013-03-12 16:47  AAAHttpRequest\proj.win32\Debug.win32\cl.command.1.tlog
     文件      119954  2013-03-12 16:47  AAAHttpRequest\proj.win32\Debug.win32\CL.read.1.tlog
     文件        2396  2013-03-12 16:47  AAAHttpRequest\proj.win32\Debug.win32\CL.write.1.tlog
     文件      318727  2013-03-12 16:47  AAAHttpRequest\proj.win32\Debug.win32\HelloWorldScene.obj
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link-cvtres.read.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link-cvtres.write.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link.14668-cvtres.read.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link.14668-cvtres.write.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link.14668.read.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link.14668.write.1.tlog
     文件           2  2013-03-12 16:48  AAAHttpRequest\proj.win32\Debug.win32\link.15688-cvtres.read.1.tlog
............此处省略63个文件信息

评论

共有 条评论