mirror of https://github.com/axmolengine/axmol.git
cocos2d-x in Mac:
Works as expected. All the projects defines CC_KEYBOARD_SUPPORT. Either all of them should define them, or none, otherwise the vtable will be broken
This commit is contained in:
parent
41a6a51208
commit
b846a3060e
|
@ -258,7 +258,6 @@
|
|||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
||||
SDKROOT = macosx;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
|
|
|
@ -64,7 +64,7 @@ THE SOFTWARE.
|
|||
#include "platform/CCImage.h"
|
||||
#include "CCEGLView.h"
|
||||
#include "CCConfiguration.h"
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
#include "keyboard_dispatcher/CCKeyboardDispatcher.h"
|
||||
#endif
|
||||
|
||||
|
@ -154,7 +154,7 @@ bool Director::init(void)
|
|||
_touchDispatcher = new TouchDispatcher();
|
||||
_touchDispatcher->init();
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
// KeyboardDispatcher
|
||||
_keyboardDispatcher = new KeyboardDispatcher();
|
||||
#endif
|
||||
|
@ -185,7 +185,7 @@ Director::~Director(void)
|
|||
CC_SAFE_RELEASE(_scheduler);
|
||||
CC_SAFE_RELEASE(_actionManager);
|
||||
CC_SAFE_RELEASE(_touchDispatcher);
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
CC_SAFE_RELEASE(_keyboardDispatcher);
|
||||
#endif
|
||||
CC_SAFE_RELEASE(_keypadDispatcher);
|
||||
|
@ -1004,7 +1004,7 @@ TouchDispatcher* Director::getTouchDispatcher()
|
|||
return _touchDispatcher;
|
||||
}
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
void Director::setKeyboardDispatcher(KeyboardDispatcher* pKeyboardDispatcher)
|
||||
{
|
||||
CC_SAFE_RETAIN(pKeyboardDispatcher);
|
||||
|
|
|
@ -71,7 +71,7 @@ class Node;
|
|||
class Scheduler;
|
||||
class ActionManager;
|
||||
class TouchDispatcher;
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
class KeyboardDispatcher;
|
||||
#endif
|
||||
class KeypadDispatcher;
|
||||
|
@ -328,7 +328,7 @@ public:
|
|||
*/
|
||||
CC_PROPERTY(TouchDispatcher*, _touchDispatcher, TouchDispatcher);
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
/** KeyboardDispatcher associated with this director
|
||||
@since v?.?
|
||||
*/
|
||||
|
|
|
@ -38,7 +38,7 @@ THE SOFTWARE.
|
|||
#include "support/TransformUtils.h"
|
||||
// extern
|
||||
#include "kazmath/GL/matrix.h"
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
#include "keyboard_dispatcher/CCKeyboardDispatcher.h"
|
||||
#endif
|
||||
|
||||
|
@ -48,7 +48,7 @@ NS_CC_BEGIN
|
|||
Layer::Layer()
|
||||
: _touchEnabled(false)
|
||||
, _accelerometerEnabled(false)
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
, _keyboardEnabled(false)
|
||||
#endif
|
||||
, _keypadEnabled(false)
|
||||
|
@ -279,7 +279,7 @@ void Layer::unregisterScriptAccelerateHandler(void)
|
|||
CC_SAFE_RELEASE_NULL(_scriptAccelerateHandlerEntry);
|
||||
}
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
/// isKeyboardEnabled getter
|
||||
bool Layer::isKeyboardEnabled()
|
||||
{
|
||||
|
@ -845,7 +845,6 @@ void LayerColor::setOpacity(GLubyte opacity)
|
|||
//
|
||||
// LayerGradient
|
||||
//
|
||||
|
||||
LayerGradient* LayerGradient::create(const ccColor4B& start, const ccColor4B& end)
|
||||
{
|
||||
LayerGradient * pLayer = new LayerGradient();
|
||||
|
|
|
@ -67,7 +67,7 @@ public:
|
|||
virtual ~Layer();
|
||||
virtual bool init();
|
||||
|
||||
/** create one layer */
|
||||
/** creates a fullscreen black layer */
|
||||
static Layer *create(void);
|
||||
|
||||
virtual void onEnter();
|
||||
|
@ -134,7 +134,7 @@ public:
|
|||
You can enable / disable accelerometer events with this property.
|
||||
it's new in cocos2d-x
|
||||
*/
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
virtual bool isKeyboardEnabled();
|
||||
virtual void setKeyboardEnabled(bool value);
|
||||
virtual void keyPressed(int keyCode) {};
|
||||
|
@ -157,7 +157,7 @@ public:
|
|||
protected:
|
||||
bool _touchEnabled;
|
||||
bool _accelerometerEnabled;
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
bool _keyboardEnabled;
|
||||
#endif
|
||||
bool _keypadEnabled;
|
||||
|
@ -244,6 +244,7 @@ public:
|
|||
virtual void draw();
|
||||
virtual void setContentSize(const Size & var);
|
||||
|
||||
/** creates a fullscreen black layer */
|
||||
static LayerColor* create();
|
||||
|
||||
/** creates a Layer with color, width and height in Points */
|
||||
|
@ -304,6 +305,9 @@ class CC_DLL LayerGradient : public LayerColor
|
|||
{
|
||||
public:
|
||||
|
||||
/** Creates a fullscreen black layer */
|
||||
static LayerGradient* create();
|
||||
|
||||
/** Creates a full-screen Layer with a gradient between start and end. */
|
||||
static LayerGradient* create(const ccColor4B& start, const ccColor4B& end);
|
||||
|
||||
|
@ -332,8 +336,6 @@ public:
|
|||
virtual void setCompressedInterpolation(bool bCompressedInterpolation);
|
||||
virtual bool isCompressedInterpolation();
|
||||
|
||||
static LayerGradient* create();
|
||||
|
||||
protected:
|
||||
virtual void updateColor();
|
||||
};
|
||||
|
|
|
@ -1 +1 @@
|
|||
14f06ca9e6652e501a7f9709b6ef7a2ed52a35b1
|
||||
1dc917cb6f1a62d8d7536db3c3db9f25562d59b7
|
|
@ -1013,7 +1013,7 @@
|
|||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
CC_TARGET_OS_MAC,
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
|
@ -1042,6 +1042,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
NDEBUG,
|
||||
CC_TARGET_OS_MAC,
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "KeyboardTest.h"
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
|
||||
KeyboardTest::KeyboardTest()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _KEYBOARD_TEST_H_
|
||||
#define _KEYBOARD_TEST_H_
|
||||
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
|
||||
#include "cocos2d.h"
|
||||
#include "../testBasic.h"
|
||||
|
|
|
@ -16,7 +16,9 @@ static std::function<Layer*()> createFunctions[] = {
|
|||
CL(LayerTest1),
|
||||
CL(LayerTest2),
|
||||
CL(LayerTestBlend),
|
||||
CL(LayerGradient),
|
||||
CL(LayerGradientTest),
|
||||
CL(LayerGradientTest2),
|
||||
CL(LayerGradientTest3),
|
||||
CL(LayerIgnoreAnchorPointPos),
|
||||
CL(LayerIgnoreAnchorPointRot),
|
||||
CL(LayerIgnoreAnchorPointScale),
|
||||
|
@ -581,7 +583,7 @@ std::string LayerTestBlend::title()
|
|||
|
||||
//------------------------------------------------------------------
|
||||
//
|
||||
// LayerGradient
|
||||
// LayerGradientTest
|
||||
//
|
||||
//------------------------------------------------------------------
|
||||
LayerGradientTest::LayerGradientTest()
|
||||
|
@ -633,6 +635,51 @@ string LayerGradientTest::subtitle()
|
|||
return "Touch the screen and move your finger";
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------
|
||||
//
|
||||
// LayerGradientTest2
|
||||
//
|
||||
//------------------------------------------------------------------
|
||||
LayerGradientTest2::LayerGradientTest2()
|
||||
{
|
||||
LayerGradient* layer = new LayerGradient;
|
||||
layer->initWithColor(ccc4(255,0,0,255), ccc4(255,255,0,255));
|
||||
layer->autorelease();
|
||||
addChild(layer);
|
||||
}
|
||||
|
||||
std::string LayerGradientTest2::title()
|
||||
{
|
||||
return "LayerGradientTest 2";
|
||||
}
|
||||
|
||||
string LayerGradientTest2::subtitle()
|
||||
{
|
||||
return "You should see a gradient";
|
||||
}
|
||||
|
||||
|
||||
//------------------------------------------------------------------
|
||||
//
|
||||
// LayerGradientTest3
|
||||
//
|
||||
//------------------------------------------------------------------
|
||||
LayerGradientTest3::LayerGradientTest3()
|
||||
{
|
||||
LayerGradient* layer1 = LayerGradient::create(ccc4(255,0,0,255), ccc4(255,255,0,255));
|
||||
addChild(layer1);
|
||||
}
|
||||
|
||||
std::string LayerGradientTest3::title()
|
||||
{
|
||||
return "LayerGradientTest 3";
|
||||
}
|
||||
|
||||
string LayerGradientTest3::subtitle()
|
||||
{
|
||||
return "You should see a gradient";
|
||||
}
|
||||
|
||||
// LayerIgnoreAnchorPointPos
|
||||
|
||||
#define kLayerIgnoreAnchorPoint 1000
|
||||
|
|
|
@ -105,6 +105,22 @@ public:
|
|||
void toggleItem(cocos2d::Object *sender);
|
||||
};
|
||||
|
||||
class LayerGradientTest2 : public LayerTest
|
||||
{
|
||||
public:
|
||||
LayerGradientTest2();
|
||||
virtual std::string title();
|
||||
virtual std::string subtitle();
|
||||
};
|
||||
|
||||
class LayerGradientTest3 : public LayerTest
|
||||
{
|
||||
public:
|
||||
LayerGradientTest3();
|
||||
virtual std::string title();
|
||||
virtual std::string subtitle();
|
||||
};
|
||||
|
||||
class LayerIgnoreAnchorPointPos : public LayerTest
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -49,7 +49,7 @@ struct {
|
|||
{ "FileUtilsTest", []() { return new FileUtilsTestScene(); } },
|
||||
{ "FontTest", []() { return new FontTestScene(); } },
|
||||
{ "IntervalTest", [](){return new IntervalTestScene(); } },
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
{ "KeyboardTest", []() { return new KeyboardTestScene(); } },
|
||||
#endif
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_BADA)
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "EffectsAdvancedTest/EffectsAdvancedTest.h"
|
||||
#include "AccelerometerTest/AccelerometerTest.h"
|
||||
#include "KeypadTest/KeypadTest.h"
|
||||
#ifdef KEYBOARD_SUPPORT
|
||||
#ifdef CC_KEYBOARD_SUPPORT
|
||||
#include "KeyboardTest/KeyboardTest.h"
|
||||
#endif
|
||||
#include "PerformanceTest/PerformanceTest.h"
|
||||
|
|
|
@ -1 +1 @@
|
|||
a1c526dca23c3ded2ceec95cfd144e0e99c49b79
|
||||
71bef727d03198fd6e3a9fe575af0d7c7c3e5449
|
|
@ -639,6 +639,7 @@
|
|||
CC_ENABLE_CHIPMUNK_INTEGRATION,
|
||||
CC_TARGET_OS_MAC,
|
||||
DEBUG,
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
@ -678,6 +679,7 @@
|
|||
CC_ENABLE_CHIPMUNK_INTEGRATION,
|
||||
CC_TARGET_OS_MAC,
|
||||
NDEBUG,
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
|
@ -698,7 +700,6 @@
|
|||
"\"$(SRCROOT)/../../../../cocos2dx/platform/third_party/mac/libraries\"",
|
||||
"\"$(SRCROOT)/../../../../external/libwebsockets/mac/lib\"",
|
||||
);
|
||||
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Release;
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 1629fa860dd1c378c0c1d2d39463d796e51f0043
|
||||
Subproject commit 0e511fd6d1f9ff3117b27c4ebc40c4b01f296437
|
|
@ -511,9 +511,9 @@
|
|||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"$(inherited)",
|
||||
"DEBUG=1",
|
||||
CC_TARGET_OS_MAC,
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
@ -541,6 +541,7 @@
|
|||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
NDEBUG,
|
||||
CC_TARGET_OS_MAC,
|
||||
CC_KEYBOARD_SUPPORT,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
|
|
Loading…
Reference in New Issue