2010-08-26 10:44:00 +08:00
|
|
|
/****************************************************************************
|
2011-03-19 10:59:01 +08:00
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2009-2010 Ricardo Quesada
|
2011-07-04 14:11:43 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2010-08-26 10:44:00 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CCPARALLAX_NODE_H__
|
|
|
|
#define __CCPARALLAX_NODE_H__
|
|
|
|
|
2010-08-26 11:30:52 +08:00
|
|
|
#include "CCNode.h"
|
2010-09-04 11:55:42 +08:00
|
|
|
/*#include "support/data_support/ccArray.h"*/
|
2010-08-26 10:44:00 +08:00
|
|
|
|
2010-08-26 11:30:52 +08:00
|
|
|
namespace cocos2d {
|
2010-09-04 11:55:42 +08:00
|
|
|
struct _ccArray;
|
2010-08-26 11:30:52 +08:00
|
|
|
|
2010-09-29 09:44:57 +08:00
|
|
|
/** @brief CCParallaxNode: A node that simulates a parallax scroller
|
2010-08-26 11:30:52 +08:00
|
|
|
|
|
|
|
The children will be moved faster / slower than the parent according the the parallax ratio.
|
|
|
|
|
|
|
|
*/
|
2011-03-07 17:11:57 +08:00
|
|
|
class CC_DLL CCParallaxNode : public CCNode
|
2010-08-26 11:30:52 +08:00
|
|
|
{
|
2010-08-27 15:17:15 +08:00
|
|
|
/** array that holds the offset / ratio of the children */
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_SYNTHESIZE(struct _ccArray *, m_pParallaxArray, ParallaxArray)
|
2010-08-27 15:17:15 +08:00
|
|
|
|
2010-08-26 11:30:52 +08:00
|
|
|
public:
|
|
|
|
/** Adds a child to the container with a z-order, a parallax ratio and a position offset
|
|
|
|
It returns self, so you can chain several addChilds.
|
|
|
|
@since v0.8
|
|
|
|
*/
|
|
|
|
CCParallaxNode();
|
|
|
|
virtual ~CCParallaxNode();
|
2010-08-26 11:34:22 +08:00
|
|
|
static CCParallaxNode * node();
|
2011-07-04 14:11:43 +08:00
|
|
|
virtual void addChild(CCNode * child, unsigned int z, CCPoint parallaxRatio, CCPoint positionOffset);
|
2010-08-26 11:30:52 +08:00
|
|
|
// super methods
|
2011-07-04 14:11:43 +08:00
|
|
|
virtual void addChild(CCNode * child, unsigned int zOrder, int tag);
|
2010-08-26 11:30:52 +08:00
|
|
|
virtual void removeChild(CCNode* child, bool cleanup);
|
|
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup);
|
|
|
|
virtual void visit(void);
|
|
|
|
private:
|
2011-03-07 17:11:57 +08:00
|
|
|
CCPoint absolutePosition();
|
2010-08-26 11:30:52 +08:00
|
|
|
protected:
|
2011-03-07 17:11:57 +08:00
|
|
|
CCPoint m_tLastPosition;
|
2010-08-26 11:30:52 +08:00
|
|
|
};
|
2010-08-26 10:44:00 +08:00
|
|
|
|
|
|
|
} // namespace cocos2d
|
|
|
|
#endif //__CCPARALLAX_NODE_H__
|
|
|
|
|
|
|
|
|