2022-07-30 12:24:03 -04:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2011 ForzeField Studios S.L.
|
|
|
|
|
|
|
|
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 __CCMOTION_STREAK_H__
|
|
|
|
#define __CCMOTION_STREAK_H__
|
|
|
|
|
2022-11-16 09:41:14 -05:00
|
|
|
#include "../base_nodes/CCNode.h"
|
2022-10-17 08:46:36 -04:00
|
|
|
#include "../include/CCProtocols.h"
|
|
|
|
#include "../include/ccTypes.h"
|
2022-11-16 09:41:14 -05:00
|
|
|
#include "../textures/CCTexture2D.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
#ifdef EMSCRIPTEN
|
2022-11-16 09:41:14 -05:00
|
|
|
#include "../base_nodes/CCGLBufferedNode.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
#endif // EMSCRIPTEN
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup misc_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** MotionStreak.
|
|
|
|
Creates a trailing path.
|
|
|
|
*/
|
2022-11-16 09:41:14 -05:00
|
|
|
class CC_DLL CCMotionStreak :
|
|
|
|
public CCNodeRGBA,
|
|
|
|
public CCTextureProtocol
|
2022-07-30 12:24:03 -04:00
|
|
|
#ifdef EMSCRIPTEN
|
2022-11-16 09:41:14 -05:00
|
|
|
,
|
|
|
|
public CCGLBufferedNode
|
2022-07-30 12:24:03 -04:00
|
|
|
#endif // EMSCRIPTEN
|
|
|
|
{
|
2023-06-05 08:45:12 -04:00
|
|
|
GEODE_FRIEND_MODIFY
|
2022-07-30 12:24:03 -04:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
CCMotionStreak();
|
2023-06-05 08:45:12 -04:00
|
|
|
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCMotionStreak, CCNodeRGBA)
|
2022-07-30 12:24:03 -04:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~CCMotionStreak();
|
|
|
|
|
2022-11-16 09:41:14 -05:00
|
|
|
/** creates and initializes a motion streak with fade in seconds, minimum segments, stroke's
|
|
|
|
* width, color, texture filename */
|
|
|
|
static CCMotionStreak* create(
|
|
|
|
float fade, float minSeg, float stroke, ccColor3B const& color, char const* path
|
|
|
|
);
|
|
|
|
/** creates and initializes a motion streak with fade in seconds, minimum segments, stroke's
|
|
|
|
* width, color, texture */
|
|
|
|
static CCMotionStreak* create(
|
|
|
|
float fade, float minSeg, float stroke, ccColor3B const& color, CCTexture2D* texture
|
|
|
|
);
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-11-16 09:41:14 -05:00
|
|
|
/** initializes a motion streak with fade in seconds, minimum segments, stroke's width, color
|
|
|
|
* and texture filename */
|
|
|
|
bool initWithFade(
|
|
|
|
float fade, float minSeg, float stroke, ccColor3B const& color, char const* path
|
|
|
|
);
|
|
|
|
/** initializes a motion streak with fade in seconds, minimum segments, stroke's width, color
|
|
|
|
* and texture */
|
|
|
|
bool initWithFade(
|
|
|
|
float fade, float minSeg, float stroke, ccColor3B const& color, CCTexture2D* texture
|
|
|
|
);
|
2022-07-30 12:24:03 -04:00
|
|
|
|
|
|
|
/** color used for the tint */
|
|
|
|
void tintWithColor(ccColor3B colors);
|
|
|
|
|
|
|
|
/** Remove all living segments of the ribbon */
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
/** Override super methods */
|
2022-11-16 09:41:14 -05:00
|
|
|
virtual void setPosition(CCPoint const& position);
|
2022-07-30 12:24:03 -04:00
|
|
|
virtual void draw();
|
|
|
|
virtual void update(float delta);
|
|
|
|
|
|
|
|
/* Implement interfaces */
|
|
|
|
virtual CCTexture2D* getTexture(void);
|
2022-11-16 09:41:14 -05:00
|
|
|
virtual void setTexture(CCTexture2D* texture);
|
2022-07-30 12:24:03 -04:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
*/
|
|
|
|
virtual void setBlendFunc(ccBlendFunc blendFunc);
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
*/
|
|
|
|
virtual ccBlendFunc getBlendFunc(void);
|
|
|
|
virtual GLubyte getOpacity(void);
|
|
|
|
virtual void setOpacity(GLubyte opacity);
|
|
|
|
virtual void setOpacityModifyRGB(bool bValue);
|
|
|
|
virtual bool isOpacityModifyRGB(void);
|
|
|
|
|
2023-06-05 08:45:12 -04:00
|
|
|
RT_ADD(
|
|
|
|
void resumeStroke();
|
|
|
|
void stopStroke();
|
2023-12-20 21:14:53 -05:00
|
|
|
|
|
|
|
void enableRepeatMode(float);
|
|
|
|
|
|
|
|
bool getDontOpacityFade() const;
|
|
|
|
void setDontOpacityFade(bool);
|
|
|
|
|
|
|
|
float getM_fMaxSeg() const;
|
|
|
|
void setM_fMaxSeg(float);
|
|
|
|
|
|
|
|
void setStroke(float);
|
|
|
|
void updateFade(float);
|
|
|
|
|
|
|
|
|
2023-06-05 08:45:12 -04:00
|
|
|
)
|
2022-07-30 12:24:03 -04:00
|
|
|
|
|
|
|
/** When fast mode is enabled, new points are added faster but with lower precision */
|
2022-11-16 09:41:14 -05:00
|
|
|
inline bool isFastMode() {
|
|
|
|
return m_bFastMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void setFastMode(bool bFastMode) {
|
|
|
|
m_bFastMode = bFastMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isStartingPositionInitialized() {
|
|
|
|
return m_bStartingPositionInitialized;
|
|
|
|
}
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-11-16 09:41:14 -05:00
|
|
|
inline void setStartingPositionInitialized(bool bStartingPositionInitialized) {
|
|
|
|
m_bStartingPositionInitialized = bStartingPositionInitialized;
|
2022-07-30 12:24:03 -04:00
|
|
|
}
|
2022-11-16 09:41:14 -05:00
|
|
|
|
2022-07-30 12:24:03 -04:00
|
|
|
protected:
|
|
|
|
bool m_bFastMode;
|
|
|
|
bool m_bStartingPositionInitialized;
|
2023-06-05 08:45:12 -04:00
|
|
|
bool m_bStroke;
|
2022-07-30 12:24:03 -04:00
|
|
|
/** texture used for the motion streak */
|
|
|
|
CCTexture2D* m_pTexture;
|
|
|
|
ccBlendFunc m_tBlendFunc;
|
|
|
|
CCPoint m_tPositionR;
|
|
|
|
|
|
|
|
float m_fStroke;
|
|
|
|
float m_fFadeDelta;
|
|
|
|
float m_fMinSeg;
|
|
|
|
|
|
|
|
unsigned int m_uMaxPoints;
|
|
|
|
unsigned int m_uNuPoints;
|
|
|
|
unsigned int m_uPreviousNuPoints;
|
|
|
|
|
|
|
|
/** Pointers */
|
|
|
|
CCPoint* m_pPointVertexes;
|
|
|
|
float* m_pPointState;
|
|
|
|
|
|
|
|
// Opengl
|
|
|
|
ccVertex2F* m_pVertices;
|
|
|
|
GLubyte* m_pColorPointer;
|
|
|
|
ccTex2F* m_pTexCoords;
|
2023-06-05 08:45:12 -04:00
|
|
|
|
|
|
|
RT_ADD(
|
|
|
|
bool m_bRepeatMode;
|
|
|
|
float m_fRepeatSpeed;
|
|
|
|
float m_fRepeatTime;
|
|
|
|
bool m_idk;
|
|
|
|
float m_fMaxSeg;
|
|
|
|
bool m_bDontOpacityFade;
|
|
|
|
)
|
2022-07-30 12:24:03 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// end of misc_nodes group
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif //__CCMOTION_STREAK_H__
|