axmol/cocos2dx/actions/CCActionTiledGrid.h

326 lines
10 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2009 On-Core
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 __ACTION_CCTILEDGRID_ACTION_H__
#define __ACTION_CCTILEDGRID_ACTION_H__
#include "CCActionGrid.h"
NS_CC_BEGIN
2012-06-20 18:09:11 +08:00
/**
* @addtogroup actions
* @{
*/
/** @brief ShakyTiles3D action */
class CC_DLL ShakyTiles3D : public TiledGrid3DAction
{
public:
/** initializes the action with a range, whether or not to shake Z vertices, a grid size, and duration */
virtual bool initWithDuration(float duration, const Size& gridSize, int nRange, bool bShakeZ);
/** returns a new clone of the action */
virtual ShakyTiles3D* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
public:
/** creates the action with a range, whether or not to shake Z vertices, a grid size, and duration */
static ShakyTiles3D* create(float duration, const Size& gridSize, int nRange, bool bShakeZ);
protected:
int _randrange;
bool _shakeZ;
};
/** @brief ShatteredTiles3D action */
class CC_DLL ShatteredTiles3D : public TiledGrid3DAction
{
public:
/** initializes the action with a range, whether or not to shatter Z vertices, a grid size and duration */
virtual bool initWithDuration(float duration, const Size& gridSize, int nRange, bool bShatterZ);
/** returns a new clone of the action */
virtual ShatteredTiles3D* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
public:
/** creates the action with a range, whether of not to shatter Z vertices, a grid size and duration */
static ShatteredTiles3D* create(float duration, const Size& gridSize, int nRange, bool bShatterZ);
protected:
int _randrange;
bool _once;
bool _shatterZ;
};
struct Tile;
/** @brief ShuffleTiles action
Shuffle the tiles in random order
*/
class CC_DLL ShuffleTiles : public TiledGrid3DAction
{
public:
~ShuffleTiles(void);
/** initializes the action with a random seed, the grid size and the duration */
virtual bool initWithDuration(float duration, const Size& gridSize, unsigned int seed);
void shuffle(unsigned int *pArray, unsigned int nLen);
Size getDelta(const Size& pos) const;
void placeTile(const Point& pos, Tile *t);
virtual void startWithTarget(Node *pTarget);
2012-06-08 13:55:28 +08:00
virtual void update(float time);
/** returns a new clone of the action */
virtual ShuffleTiles* clone() const;
public:
/** creates the action with a random seed, the grid size and the duration */
static ShuffleTiles* create(float duration, const Size& gridSize, unsigned int seed);
protected:
unsigned int _seed;
unsigned int _tilesCount;
unsigned int* _tilesOrder;
Tile* _tiles;
};
/** @brief FadeOutTRTiles action
Fades out the tiles in a Top-Right direction
*/
class CC_DLL FadeOutTRTiles : public TiledGrid3DAction
{
public:
virtual float testFunc(const Size& pos, float time);
void turnOnTile(const Point& pos);
void turnOffTile(const Point& pos);
virtual void transformTile(const Point& pos, float distance);
2012-06-08 13:55:28 +08:00
virtual void update(float time);
/** returns a new clone of the action */
virtual FadeOutTRTiles* clone() const;
public:
/** creates the action with the grid size and the duration */
static FadeOutTRTiles* create(float duration, const Size& gridSize);
};
/** @brief FadeOutBLTiles action.
Fades out the tiles in a Bottom-Left direction
*/
class CC_DLL FadeOutBLTiles : public FadeOutTRTiles
{
public:
virtual float testFunc(const Size& pos, float time);
/** returns a new clone of the action */
virtual FadeOutBLTiles* clone() const;
public:
/** creates the action with the grid size and the duration */
static FadeOutBLTiles* create(float duration, const Size& gridSize);
};
/** @brief FadeOutUpTiles action.
Fades out the tiles in upwards direction
*/
class CC_DLL FadeOutUpTiles : public FadeOutTRTiles
{
public:
virtual float testFunc(const Size& pos, float time);
virtual void transformTile(const Point& pos, float distance);
/** returns a new clone of the action */
virtual FadeOutUpTiles* clone() const;
public:
/** creates the action with the grid size and the duration */
static FadeOutUpTiles* create(float duration, const Size& gridSize);
};
/** @brief FadeOutDownTiles action.
Fades out the tiles in downwards direction
*/
class CC_DLL FadeOutDownTiles : public FadeOutUpTiles
{
public:
/** returns a new clone of the action */
virtual FadeOutDownTiles* clone() const;
virtual float testFunc(const Size& pos, float time);
public:
/** creates the action with the grid size and the duration */
static FadeOutDownTiles* create(float duration, const Size& gridSize);
};
/** @brief TurnOffTiles action.
Turn off the files in random order
*/
class CC_DLL TurnOffTiles : public TiledGrid3DAction
{
public:
~TurnOffTiles(void);
/** initializes the action with a random seed, the grid size and the duration */
virtual bool initWithDuration(float duration, const Size& gridSize, unsigned int seed);
void shuffle(unsigned int *pArray, unsigned int nLen);
void turnOnTile(const Point& pos);
void turnOffTile(const Point& pos);
/** returns a new clone of the action */
virtual TurnOffTiles* clone() const;
virtual void startWithTarget(Node *pTarget);
2012-06-08 13:55:28 +08:00
virtual void update(float time);
public:
/** creates the action with the grid size and the duration */
static TurnOffTiles* create(float duration, const Size& gridSize);
/** creates the action with a random seed, the grid size and the duration */
static TurnOffTiles* create(float duration, const Size& gridSize, unsigned int seed);
protected:
unsigned int _seed;
unsigned int _tilesCount;
unsigned int* _tilesOrder;
};
/** @brief WavesTiles3D action. */
class CC_DLL WavesTiles3D : public TiledGrid3DAction
{
public:
/** waves amplitude */
inline float getAmplitude(void) const { return _amplitude; }
inline void setAmplitude(float fAmplitude) { _amplitude = fAmplitude; }
/** waves amplitude rate */
inline float getAmplitudeRate(void) const { return _amplitudeRate; }
inline void setAmplitudeRate(float fAmplitudeRate) { _amplitudeRate = fAmplitudeRate; }
/** initializes the action with a number of waves, the waves amplitude, the grid size and the duration */
virtual bool initWithDuration(float duration, const Size& gridSize, unsigned int waves, float amplitude);
/** returns a new clone of the action */
virtual WavesTiles3D* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
public:
/** creates the action with a number of waves, the waves amplitude, the grid size and the duration */
static WavesTiles3D* create(float duration, const Size& gridSize, unsigned int waves, float amplitude);
protected:
unsigned int _waves;
float _amplitude;
float _amplitudeRate;
};
/** @brief JumpTiles3D action.
A sin function is executed to move the tiles across the Z axis
*/
class CC_DLL JumpTiles3D : public TiledGrid3DAction
{
public:
/** amplitude of the sin*/
inline float getAmplitude(void) const { return _amplitude; }
inline void setAmplitude(float fAmplitude) { _amplitude = fAmplitude; }
/** amplitude rate */
inline float getAmplitudeRate(void) const { return _amplitudeRate; }
inline void setAmplitudeRate(float fAmplitudeRate) { _amplitudeRate = fAmplitudeRate; }
/** initializes the action with the number of jumps, the sin amplitude, the grid size and the duration */
bool initWithDuration(float duration, const Size& gridSize, unsigned int numberOfJumps, float amplitude);
/** returns a new clone of the action */
virtual JumpTiles3D* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
public:
/** creates the action with the number of jumps, the sin amplitude, the grid size and the duration */
static JumpTiles3D* create(float duration, const Size& gridSize, unsigned int numberOfJumps, float amplitude);
protected:
unsigned int _jumps;
float _amplitude;
float _amplitudeRate;
};
/** @brief SplitRows action */
class CC_DLL SplitRows : public TiledGrid3DAction
{
public :
/** initializes the action with the number of rows to split and the duration */
virtual bool initWithDuration(float duration, unsigned int nRows);
/** returns a new clone of the action */
virtual SplitRows* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
virtual void startWithTarget(Node *pTarget);
public:
/** creates the action with the number of rows to split and the duration */
static SplitRows* create(float duration, unsigned int nRows);
protected:
unsigned int _rows;
Size _winSize;
};
/** @brief SplitCols action */
class CC_DLL SplitCols : public TiledGrid3DAction
{
public:
/** initializes the action with the number of columns to split and the duration */
virtual bool initWithDuration(float duration, unsigned int nCols);
/** returns a new clone of the action */
virtual SplitCols* clone() const;
2012-06-08 13:55:28 +08:00
virtual void update(float time);
virtual void startWithTarget(Node *pTarget);
public:
/** creates the action with the number of columns to split and the duration */
static SplitCols* create(float duration, unsigned int nCols);
protected:
unsigned int _cols;
Size _winSize;
};
2012-06-20 18:09:11 +08:00
// end of actions group
/// @}
NS_CC_END
#endif // __ACTION_CCTILEDGRID_ACTION_H__