mirror of https://github.com/axmolengine/axmol.git
Code conforms with the cocos2d-x c++ guidelines
This commit is contained in:
parent
f8b9e9e445
commit
33a2d0451c
|
@ -108,7 +108,7 @@ Speed* Speed::create(ActionInterval* action, float speed)
|
|||
|
||||
bool Speed::initWithAction(ActionInterval *action, float speed)
|
||||
{
|
||||
CCASSERT(action != nullptr, "");
|
||||
CCASSERT(action != nullptr, "action must not be NULL");
|
||||
action->retain();
|
||||
_innerAction = action;
|
||||
_speed = speed;
|
||||
|
@ -198,7 +198,7 @@ Follow* Follow::reverse() const
|
|||
|
||||
bool Follow::initWithTarget(Node *followedNode, const Rect& rect/* = Rect::ZERO*/)
|
||||
{
|
||||
CCASSERT(followedNode != nullptr, "");
|
||||
CCASSERT(followedNode != nullptr, "FollowedNode can't be NULL");
|
||||
|
||||
followedNode->retain();
|
||||
_followedNode = followedNode;
|
||||
|
|
|
@ -244,7 +244,8 @@ public:
|
|||
|
||||
inline bool isBoundarySet() const { return _boundarySet; }
|
||||
/** alter behavior - turn on/off boundary */
|
||||
inline void setBoudarySet(bool value) { _boundarySet = value; }
|
||||
inline void setBoundarySet(bool value) { _boundarySet = value; }
|
||||
CC_DEPRECATED_ATTRIBUTE inline void setBoudarySet(bool value) { setBoundarySet(value); }
|
||||
|
||||
//
|
||||
// Override
|
||||
|
|
|
@ -498,7 +498,7 @@ void Label::setMaxLineWidth(unsigned int maxLineWidth)
|
|||
}
|
||||
}
|
||||
|
||||
void Label::setDimensions(unsigned int width,unsigned int height)
|
||||
void Label::setDimensions(unsigned int width, unsigned int height)
|
||||
{
|
||||
if (height != _labelHeight || width != _labelWidth)
|
||||
{
|
||||
|
|
|
@ -982,7 +982,7 @@ SpriteFrame* Sprite::getSpriteFrame() const
|
|||
CC_SIZE_POINTS_TO_PIXELS(_contentSize));
|
||||
}
|
||||
|
||||
SpriteBatchNode* Sprite::getBatchNode()
|
||||
SpriteBatchNode* Sprite::getBatchNode() const
|
||||
{
|
||||
return _batchNode;
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@ public:
|
|||
* @return The SpriteBatchNode object if this sprite is rendered by SpriteBatchNode,
|
||||
* nullptr if the sprite isn't used batch node.
|
||||
*/
|
||||
virtual SpriteBatchNode* getBatchNode(void);
|
||||
virtual SpriteBatchNode* getBatchNode() const;
|
||||
/**
|
||||
* Sets the batch node to sprite
|
||||
* @warning This method is not recommended for game developers. Sample code for using batch node
|
||||
|
@ -183,7 +183,6 @@ public:
|
|||
/// @} end of BatchNode methods
|
||||
|
||||
|
||||
|
||||
/// @{
|
||||
/// @name Texture / Frame methods
|
||||
|
||||
|
|
|
@ -378,7 +378,7 @@ void SpriteBatchNode::draw(Renderer *renderer, const Mat4 &transform, uint32_t f
|
|||
renderer->addCommand(&_batchCommand);
|
||||
}
|
||||
|
||||
void SpriteBatchNode::increaseAtlasCapacity(void)
|
||||
void SpriteBatchNode::increaseAtlasCapacity()
|
||||
{
|
||||
// if we're going beyond the current TextureAtlas's capacity,
|
||||
// all the previously initialized sprites will need to redo their texture coords
|
||||
|
@ -574,7 +574,7 @@ void SpriteBatchNode::removeSpriteFromAtlas(Sprite *sprite)
|
|||
}
|
||||
}
|
||||
|
||||
void SpriteBatchNode::updateBlendFunc(void)
|
||||
void SpriteBatchNode::updateBlendFunc()
|
||||
{
|
||||
if (! _textureAtlas->getTexture()->hasPremultipliedAlpha())
|
||||
{
|
||||
|
@ -594,12 +594,12 @@ void SpriteBatchNode::setBlendFunc(const BlendFunc &blendFunc)
|
|||
_blendFunc = blendFunc;
|
||||
}
|
||||
|
||||
const BlendFunc& SpriteBatchNode::getBlendFunc(void) const
|
||||
const BlendFunc& SpriteBatchNode::getBlendFunc() const
|
||||
{
|
||||
return _blendFunc;
|
||||
}
|
||||
|
||||
Texture2D* SpriteBatchNode::getTexture(void) const
|
||||
Texture2D* SpriteBatchNode::getTexture() const
|
||||
{
|
||||
return _textureAtlas->getTexture();
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ public:
|
|||
|
||||
|
||||
/** returns the TextureAtlas object */
|
||||
inline TextureAtlas* getTextureAtlas(void) { return _textureAtlas; }
|
||||
inline TextureAtlas* getTextureAtlas() { return _textureAtlas; }
|
||||
|
||||
/** sets the TextureAtlas object */
|
||||
inline void setTextureAtlas(TextureAtlas* textureAtlas)
|
||||
|
|
|
@ -69,7 +69,7 @@ SpriteFrame* SpriteFrame::create(const std::string& filename, const Rect& rect,
|
|||
return spriteFrame;
|
||||
}
|
||||
|
||||
SpriteFrame::SpriteFrame(void)
|
||||
SpriteFrame::SpriteFrame()
|
||||
: _rotated(false)
|
||||
, _texture(nullptr)
|
||||
{
|
||||
|
@ -123,7 +123,7 @@ bool SpriteFrame::initWithTextureFilename(const std::string& filename, const Rec
|
|||
return true;
|
||||
}
|
||||
|
||||
SpriteFrame::~SpriteFrame(void)
|
||||
SpriteFrame::~SpriteFrame()
|
||||
{
|
||||
CCLOGINFO("deallocing SpriteFrame: %p", this);
|
||||
CC_SAFE_RELEASE(_texture);
|
||||
|
@ -182,7 +182,7 @@ void SpriteFrame::setTexture(Texture2D * texture)
|
|||
}
|
||||
}
|
||||
|
||||
Texture2D* SpriteFrame::getTexture(void)
|
||||
Texture2D* SpriteFrame::getTexture()
|
||||
{
|
||||
if( _texture ) {
|
||||
return _texture;
|
||||
|
|
|
@ -79,35 +79,35 @@ public:
|
|||
inline const Rect& getRectInPixels() const { return _rectInPixels; }
|
||||
void setRectInPixels(const Rect& rectInPixels);
|
||||
|
||||
inline bool isRotated(void) const { return _rotated; }
|
||||
inline bool isRotated() const { return _rotated; }
|
||||
inline void setRotated(bool rotated) { _rotated = rotated; }
|
||||
|
||||
/** get rect of the frame */
|
||||
inline const Rect& getRect(void) const { return _rect; }
|
||||
inline const Rect& getRect() const { return _rect; }
|
||||
/** set rect of the frame */
|
||||
void setRect(const Rect& rect);
|
||||
|
||||
/** get offset of the frame */
|
||||
const Vec2& getOffsetInPixels(void) const;
|
||||
const Vec2& getOffsetInPixels() const;
|
||||
/** set offset of the frame */
|
||||
void setOffsetInPixels(const Vec2& offsetInPixels);
|
||||
|
||||
/** get original size of the trimmed image */
|
||||
inline const Size& getOriginalSizeInPixels(void) const { return _originalSizeInPixels; }
|
||||
inline const Size& getOriginalSizeInPixels() const { return _originalSizeInPixels; }
|
||||
/** set original size of the trimmed image */
|
||||
inline void setOriginalSizeInPixels(const Size& sizeInPixels) { _originalSizeInPixels = sizeInPixels; }
|
||||
|
||||
/** get original size of the trimmed image */
|
||||
inline const Size& getOriginalSize(void) const { return _originalSize; }
|
||||
inline const Size& getOriginalSize() const { return _originalSize; }
|
||||
/** set original size of the trimmed image */
|
||||
inline void setOriginalSize(const Size& sizeInPixels) { _originalSize = sizeInPixels; }
|
||||
|
||||
/** get texture of the frame */
|
||||
Texture2D* getTexture(void);
|
||||
Texture2D* getTexture();
|
||||
/** set texture of the frame, the texture is retained */
|
||||
void setTexture(Texture2D* pobTexture);
|
||||
|
||||
const Vec2& getOffset(void) const;
|
||||
const Vec2& getOffset() const;
|
||||
void setOffset(const Vec2& offsets);
|
||||
|
||||
// Overrides
|
||||
|
@ -117,12 +117,12 @@ CC_CONSTRUCTOR_ACCESS:
|
|||
/**
|
||||
* @lua NA
|
||||
*/
|
||||
SpriteFrame(void);
|
||||
SpriteFrame();
|
||||
|
||||
/**
|
||||
* @lua NA
|
||||
*/
|
||||
virtual ~SpriteFrame(void);
|
||||
virtual ~SpriteFrame();
|
||||
|
||||
/** Initializes a SpriteFrame with a texture, rect in points.
|
||||
It is assumed that the frame was not trimmed.
|
||||
|
|
|
@ -70,11 +70,6 @@ public:
|
|||
/** @deprecated Use destroyInstance() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE static void purgeSharedSpriteFrameCache() { return SpriteFrameCache::destroyInstance(); }
|
||||
|
||||
protected:
|
||||
// MARMALADE: Made this protected not private, as deriving from this class is pretty useful
|
||||
SpriteFrameCache(){}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @js NA
|
||||
* @lua NA
|
||||
|
@ -82,7 +77,6 @@ public:
|
|||
virtual ~SpriteFrameCache();
|
||||
bool init();
|
||||
|
||||
public:
|
||||
/** Adds multiple Sprite Frames from a plist file.
|
||||
* A texture will be loaded automatically. The texture name will composed by replacing the .plist suffix with .png
|
||||
* If you want to use another texture, you should use the addSpriteFramesWithFile(const std::string& plist, const std::string& textureFileName) method.
|
||||
|
@ -162,7 +156,10 @@ public:
|
|||
/** @deprecated use getSpriteFrameByName() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE SpriteFrame* spriteFrameByName(const std::string&name) { return getSpriteFrameByName(name); }
|
||||
|
||||
private:
|
||||
protected:
|
||||
// MARMALADE: Made this protected not private, as deriving from this class is pretty useful
|
||||
SpriteFrameCache(){}
|
||||
|
||||
/*Adds multiple Sprite Frames with a dictionary. The texture will be associated with the created sprite frames.
|
||||
*/
|
||||
void addSpriteFramesWithDictionary(ValueMap& dictionary, Texture2D *texture);
|
||||
|
@ -172,7 +169,7 @@ private:
|
|||
*/
|
||||
void removeSpriteFramesFromDictionary(ValueMap& dictionary);
|
||||
|
||||
protected:
|
||||
|
||||
Map<std::string, SpriteFrame*> _spriteFrames;
|
||||
ValueMap _spriteFramesAliases;
|
||||
std::set<std::string>* _loadedFileNames;
|
||||
|
|
|
@ -190,7 +190,7 @@ public:
|
|||
void removeChild(Node* child, bool cleanup) override;
|
||||
virtual std::string getDescription() const override;
|
||||
|
||||
private:
|
||||
protected:
|
||||
Vec2 getPositionForIsoAt(const Vec2& pos);
|
||||
Vec2 getPositionForOrthoAt(const Vec2& pos);
|
||||
Vec2 getPositionForHexAt(const Vec2& pos);
|
||||
|
@ -212,7 +212,7 @@ private:
|
|||
ssize_t atlasIndexForExistantZ(int z);
|
||||
ssize_t atlasIndexForNewZ(int z);
|
||||
|
||||
protected:
|
||||
|
||||
//! name of the layer
|
||||
std::string _layerName;
|
||||
//! TMX Layer supports opacity
|
||||
|
|
|
@ -240,7 +240,7 @@ void TextFieldTTF::deleteBackward()
|
|||
|
||||
if (_delegate && _delegate->onTextFieldDeleteBackward(this, _inputText.c_str() + len - deleteLen, static_cast<int>(deleteLen)))
|
||||
{
|
||||
// delegate doesn't wan't to delete backwards
|
||||
// delegate doesn't want to delete backwards
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -160,7 +160,7 @@ public:
|
|||
// place holder text property
|
||||
// place holder text displayed when there is no text in the text field.
|
||||
virtual void setPlaceHolder(const std::string& text);
|
||||
virtual const std::string& getPlaceHolder(void) const;
|
||||
virtual const std::string& getPlaceHolder() const;
|
||||
|
||||
virtual void setSecureTextEntry(bool value);
|
||||
virtual bool isSecureTextEntry();
|
||||
|
|
|
@ -85,7 +85,7 @@ public:
|
|||
float getWeight() const { return _weight; }
|
||||
void setWeight(float weight);
|
||||
|
||||
/** animate transistion time */
|
||||
/** animate transition time */
|
||||
static float getTransitionTime() { return _transTime; }
|
||||
|
||||
/**get & set play reverse, these are deprecated, use set negative speed instead*/
|
||||
|
|
|
@ -70,17 +70,14 @@ public:
|
|||
Curve* getBoneCurveByName(const std::string& name) const;
|
||||
|
||||
CC_CONSTRUCTOR_ACCESS:
|
||||
|
||||
Animation3D();
|
||||
virtual ~Animation3D();
|
||||
/**init Animation3D from bundle data*/
|
||||
bool init(const Animation3DData& data);
|
||||
|
||||
protected:
|
||||
|
||||
std::unordered_map<std::string, Curve*> _boneCurves;//bone curves map, key bone name, value AnimationCurve
|
||||
|
||||
|
||||
float _duration; //animation duration
|
||||
};
|
||||
|
||||
|
|
|
@ -53,10 +53,8 @@ public:
|
|||
|
||||
void addCallbacks(const std::function<void()> &callback);
|
||||
|
||||
private:
|
||||
|
||||
protected:
|
||||
void readDataTask();
|
||||
|
||||
void invokingCallbacks();
|
||||
|
||||
//pcm data related stuff
|
||||
|
|
|
@ -53,13 +53,13 @@ using namespace cocos2d;
|
|||
using namespace cocos2d::experimental;
|
||||
|
||||
AudioCache::AudioCache()
|
||||
: _pcmData(nullptr)
|
||||
, _dataSize(0)
|
||||
: _dataSize(0)
|
||||
, _pcmData(nullptr)
|
||||
, _bytesOfRead(0)
|
||||
, _exitReadDataTask(false)
|
||||
, _queBufferFrames(0)
|
||||
, _queBufferBytes(0)
|
||||
, _alBufferReady(false)
|
||||
, _exitReadDataTask(false)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -128,11 +128,10 @@ namespace cocos2d {
|
|||
}
|
||||
|
||||
AudioEngineImpl::AudioEngineImpl()
|
||||
: _lazyInitLoop(true)
|
||||
, _threadPool(nullptr)
|
||||
: _threadPool(nullptr)
|
||||
, _lazyInitLoop(true)
|
||||
, _currentAudioID(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
AudioEngineImpl::~AudioEngineImpl()
|
||||
|
|
|
@ -36,15 +36,14 @@ using namespace cocos2d;
|
|||
using namespace cocos2d::experimental;
|
||||
|
||||
AudioPlayer::AudioPlayer()
|
||||
: _exitThread(false)
|
||||
, _streamingSource(false)
|
||||
, _timeDirty(false)
|
||||
, _currTime(0.0f)
|
||||
: _audioCache(nullptr)
|
||||
, _finishCallbak(nullptr)
|
||||
, _ready(false)
|
||||
, _audioCache(nullptr)
|
||||
, _currTime(0.0f)
|
||||
, _streamingSource(false)
|
||||
, _exitThread(false)
|
||||
, _timeDirty(false)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
AudioPlayer::~AudioPlayer()
|
||||
|
|
|
@ -162,7 +162,7 @@ public:
|
|||
SocketIO::SIODelegate* getDelegate() { return _delegate; };
|
||||
|
||||
/**
|
||||
* @brief Disconnect from the endpoint, onClose will be called on the delegate when comlpete
|
||||
* @brief Disconnect from the endpoint, onClose will be called on the delegate when complete
|
||||
*/
|
||||
void disconnect();
|
||||
/**
|
||||
|
@ -174,7 +174,7 @@ public:
|
|||
*/
|
||||
void emit(std::string eventname, std::string args);
|
||||
/**
|
||||
* @brief Used to resgister a socket.io event callback
|
||||
* @brief Used to register a socket.io event callback
|
||||
* Event argument should be passed using CC_CALLBACK2(&Base::function, this)
|
||||
*/
|
||||
void on(const std::string& eventName, SIOEvent e);
|
||||
|
|
|
@ -176,13 +176,13 @@ static Layer* restartSpriteTestAction()
|
|||
|
||||
Camera3DTestDemo::Camera3DTestDemo(void)
|
||||
: BaseTest()
|
||||
, _camera(nullptr)
|
||||
, _incRot(nullptr)
|
||||
, _camera(nullptr)
|
||||
, _decRot(nullptr)
|
||||
,_bZoomOut(false)
|
||||
,_bZoomIn(false)
|
||||
,_bRotateLeft(false)
|
||||
,_bRotateRight(false)
|
||||
, _bZoomOut(false)
|
||||
, _bZoomIn(false)
|
||||
, _bRotateLeft(false)
|
||||
, _bRotateRight(false)
|
||||
{
|
||||
}
|
||||
Camera3DTestDemo::~Camera3DTestDemo(void)
|
||||
|
|
|
@ -790,8 +790,7 @@ void AttributeComponentTest::defaultPlay()
|
|||
}
|
||||
|
||||
TriggerTest::TriggerTest()
|
||||
: _node(nullptr)
|
||||
, _touchListener(nullptr)
|
||||
: _touchListener(nullptr)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -222,11 +222,10 @@ public:
|
|||
// create scene
|
||||
cocos2d::Node* createGameScene();
|
||||
|
||||
private:
|
||||
cocos2d::Node *_node;
|
||||
cocos2d::EventListener* _touchListener;
|
||||
private:
|
||||
void defaultPlay();
|
||||
|
||||
cocos2d::EventListener* _touchListener;
|
||||
};
|
||||
|
||||
#endif // __HELLOWORLD_SCENE_H__
|
||||
|
|
|
@ -77,7 +77,6 @@ void Light::updateLightState()
|
|||
}
|
||||
|
||||
NotificationCenterTest::NotificationCenterTest()
|
||||
: _showImage(false)
|
||||
{
|
||||
auto s = Director::getInstance()->getWinSize();
|
||||
|
||||
|
|
|
@ -11,8 +11,6 @@ public:
|
|||
void toggleSwitch(cocos2d::Ref *sender);
|
||||
void connectToSwitch(cocos2d::Ref *sender);
|
||||
void doNothing(cocos2d::Ref *sender);
|
||||
private:
|
||||
bool _showImage;
|
||||
};
|
||||
|
||||
void runNotificationCenterTest();
|
||||
|
|
|
@ -1351,16 +1351,13 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
|
||||
EventListenerTouchOneByOne * _eventListener;
|
||||
int _fixedPriority;
|
||||
EventListenerTouchOneByOne* _eventListener;
|
||||
TappedCallback _tappedCallback;
|
||||
};
|
||||
|
||||
DanglingNodePointersTest::DanglingNodePointersTest()
|
||||
{
|
||||
#if CC_NODE_DEBUG_VERIFY_EVENT_LISTENERS == 1 && COCOS2D_DEBUG > 0
|
||||
|
||||
Vec2 origin = Director::getInstance()->getVisibleOrigin();
|
||||
Size size = Director::getInstance()->getVisibleSize();
|
||||
|
||||
|
|
|
@ -155,8 +155,8 @@ std::string Parallax2::title() const
|
|||
//------------------------------------------------------------------
|
||||
Issue2572::Issue2572()
|
||||
: _preListSize(0)
|
||||
, _printCount(0)
|
||||
, _moveTimer(0.0f)
|
||||
, _printCount(0)
|
||||
, _addTimer(0.0f)
|
||||
{
|
||||
_addChildStep = 1.0f;
|
||||
|
|
Loading…
Reference in New Issue