mirror of https://github.com/axmolengine/axmol.git
Compilation fix when CC_ENABLE_BOX2D_INTEGRATION is enabled.
This commit is contained in:
parent
551f95b83c
commit
23c963cbdc
|
@ -17,8 +17,11 @@ Box2DTestLayer::Box2DTestLayer()
|
|||
, world(NULL)
|
||||
{
|
||||
#if CC_ENABLE_BOX2D_INTEGRATION
|
||||
setTouchEnabled( true );
|
||||
setAccelerometerEnabled( true );
|
||||
auto dispatcher = Director::getInstance()->getEventDispatcher();
|
||||
|
||||
auto touchListener = EventListenerTouchAllAtOnce::create();
|
||||
touchListener->onTouchesEnded = CC_CALLBACK_2(Box2DTestLayer::onTouchesEnded, this);
|
||||
dispatcher->addEventListenerWithSceneGraphPriority(touchListener, this);
|
||||
|
||||
// init physics
|
||||
this->initPhysics();
|
||||
|
|
|
@ -23,7 +23,6 @@ public:
|
|||
void update(float dt);
|
||||
void onTouchesEnded(const std::vector<Touch*>& touches, Event* event);
|
||||
|
||||
//CREATE_NODE(Box2DTestLayer);
|
||||
#if CC_ENABLE_BOX2D_INTEGRATION
|
||||
protected:
|
||||
kmMat4 _modelViewMV;
|
||||
|
|
|
@ -85,6 +85,7 @@ void ChipmunkTestLayer::toggleDebugCallback(Object* sender)
|
|||
|
||||
ChipmunkTestLayer::~ChipmunkTestLayer()
|
||||
{
|
||||
#if CC_ENABLE_CHIPMUNK_INTEGRATION
|
||||
// manually Free rogue shapes
|
||||
for( int i=0;i<4;i++) {
|
||||
cpShapeFree( _walls[i] );
|
||||
|
@ -93,7 +94,7 @@ ChipmunkTestLayer::~ChipmunkTestLayer()
|
|||
cpSpaceFree( _space );
|
||||
|
||||
Device::setAccelerometerEnabled(false);
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
void ChipmunkTestLayer::initPhysics()
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
// enable log
|
||||
#define COCOS2D_DEBUG 1
|
||||
|
||||
#include "TextureCacheTest.h"
|
||||
|
||||
// enable log
|
||||
#define COCOS2D_DEBUG 1
|
||||
|
||||
USING_NS_CC;
|
||||
|
||||
TextureCacheTest::TextureCacheTest()
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// enable log
|
||||
#define COCOS2D_DEBUG 1
|
||||
|
||||
#include "UserDefaultTest.h"
|
||||
#include "stdio.h"
|
||||
#include "stdlib.h"
|
||||
|
||||
// enable log
|
||||
#define COCOS2D_DEBUG 1
|
||||
|
||||
UserDefaultTest::UserDefaultTest()
|
||||
{
|
||||
auto s = Director::getInstance()->getWinSize();
|
||||
|
|
|
@ -2,4 +2,4 @@ APP_STL := gnustl_static
|
|||
|
||||
# add -Wno-literal-suffix to avoid warning: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
|
||||
# in NDK_ROOT/arch-arm/usr/include/sys/cdefs_elf.h:35:28: when using ndk-r9
|
||||
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -Wno-literal-suffix -fsigned-char
|
||||
APP_CPPFLAGS := -frtti -DCC_ENABLE_BOX2D_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -Wno-literal-suffix -fsigned-char
|
||||
|
|
Loading…
Reference in New Issue