资源简介

压缩文件目录内容: AngryBird source 愤怒的小鸟Demo源代码,基于Cocos2dx C++,box2d技术。 run 可执行程序目录

资源截图

代码片段和文件信息

#include “AppDelegate.h“
#include “HelloWorldScene.h“

USING_NS_CC;

AppDelegate::AppDelegate() {

}

AppDelegate::~AppDelegate() 
{
}

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

    pDirector->setOpenGLView(pEGLView);

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

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

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

     文件       1390  2014-03-26 11:09  AngryBird Demo\AngryBirds source\Classes\AppDelegate.cpp

     文件        993  2013-10-16 15:46  AngryBird Demo\AngryBirds source\Classes\AppDelegate.h

     文件       7144  2014-03-27 12:03  AngryBird Demo\AngryBirds source\Classes\GB2ShapeCache-x.cpp

     文件       2079  2013-04-16 01:03  AngryBird Demo\AngryBirds source\Classes\GB2ShapeCache-x.h

     文件       7587  2013-04-16 01:03  AngryBird Demo\AngryBirds source\Classes\GLES-Render.cpp

     文件       2179  2013-04-16 01:03  AngryBird Demo\AngryBirds source\Classes\GLES-Render.h

     文件       9125  2014-03-27 18:20  AngryBird Demo\AngryBirds source\Classes\HelloWorldScene.cpp

     文件        995  2014-03-27 11:24  AngryBird Demo\AngryBirds source\Classes\HelloWorldScene.h

     文件        364  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\.classpath

     文件      10956  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\.cproject

     文件       3712  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\.project

     文件       1253  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\AndroidManifest.xml

     文件        715  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\ant.properties

     文件       3584  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\build.xml

     文件       1625  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\build_native.sh

     文件        894  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\jni\Android.mk

     文件        103  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\jni\Application.mk

     文件       1194  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\jni\hellocpp\main.cpp

     文件        801  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\proguard-project.txt

     文件        442  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\project.properties

     文件       3364  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\README.md

     文件      12200  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\res\drawable-hdpi\icon.png

     文件       5295  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\res\drawable-ldpi\icon.png

     文件       7590  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.android\res\drawable-mdpi\icon.png

     文件        116  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\res\values\strings.xml

     文件       1927  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.android\src\com\MyGame\Game\AngryBirds.java

     文件      67042  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.blackberry\.cproject

     文件       3155  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.blackberry\.project

     文件       6854  2014-03-26 10:38  AngryBird Demo\AngryBirds source\proj.blackberry\bar-descriptor.xml

     文件          0  2013-10-16 15:46  AngryBird Demo\AngryBirds source\proj.blackberry\empty\empty

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

评论

共有 条评论