CCMotionStreak(ccnode子类 可实现拖尾效果 需要设置--- 消隐动画时长,拖尾条带相邻顶点间的最小距离,拖尾条带的宽度,顶点颜色,纹理)

本文主要是介绍CCMotionStreak(ccnode子类 可实现拖尾效果 需要设置--- 消隐动画时长,拖尾条带相邻顶点间的最小距离,拖尾条带的宽度,顶点颜色,纹理),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

例子:

以下示例出自tests项目中的MotionStreakTest文件夹下的MotionStreakTest.cpp文件,其中的MotionStreakTest2类如代码清单3-43所示。

代码清单3-43 定义CCMotionStreak对象
void MotionStreakTest2::onEnter()
{
    MotionStreakTest::onEnter();

    setTouchEnabled(true);

    CCSize s = CCDirector::sharedDirector()->getWinSize();
       
    streak = CCMotionStreak::create(3, 3, 64, ccWHITE, s_streak );
    addChild(streak);
   
    streak->setPosition( CCPointMake(s.width/2, s.height/2) );
}

 

void MotionStreakTest2::ccTouchesMoved(CCSet* touches, CCEvent* event)
{
    CCSetIterator it = touches->begin();
    CCTouch* touch = (CCTouch*)(*it);

    CCPoint touchLocation = touch->locationInView();   
    touchLocation = CCDirector::sharedDirector()->convertToGL( touchLocation );
   
    streak->setPosition( touchLocation );
}

以上代码使用create函数创建CCMotionStreak对象,每次调用setPosition函数重新设置对象位置时,“影子”将被创建并且慢慢渐隐,


#ifndef __CCMOTION_STREAK_H__

#define __CCMOTION_STREAK_H__


#include "CCProtocols.h"

#include "textures/CCTexture2D.h"

#include "ccTypes.h"

#include "base_nodes/CCNode.h"

#ifdef EMSCRIPTEN

#include "base_nodes/CCGLBufferedNode.h"

#endif // EMSCRIPTEN


NS_CC_BEGIN


/**

 * @addtogroup misc_nodes

 * @{

 */


/** MotionStreak.

 Creates a trailing path.

 */

class CC_DLL CCMotionStreak : public CCNodeRGBA, public CCTextureProtocol

#ifdef EMSCRIPTEN

, public CCGLBufferedNode

#endif // EMSCRIPTEN

{

public:

    CCMotionStreak();

    virtual ~CCMotionStreak();


   // 创建一个拖尾效果,参一为消隐动画时长,参二为拖尾条带相邻顶点间的最小距离,参三为拖尾条带的宽度,参四为顶点颜色值,参五为所使用的纹理图片。

    static CCMotionStreak* create(float fade, float minSeg, float stroke, ccColor3B color, const char* path);

//同上 参五为所使用的纹理对象指针。 

    static CCMotionStreak* create(float fade, float minSeg, float stroke, ccColor3B color, CCTexture2D* texture);

    bool initWithFade(float fade, float minSeg, float stroke, ccColor3B color, const char* path);   

{

    CCAssert(path != NULL, "Invalid filename");

    CCTexture2D *texture = CCTextureCache::sharedTextureCache()->addImage(path);

    return initWithFade(fade, minSeg, stroke, color, texture);

}

bool initWithFade(float fade, float minSeg, float stroke, ccColor3B color, CCTexture2D* texture);

{

    CCNode::setPosition(CCPointZero);

    setAnchorPoint(CCPointZero);

    ignoreAnchorPointForPosition(true);

    m_bStartingPositionInitialized = false;


    m_tPositionR = CCPointZero;

    m_bFastMode = true;

    m_fMinSeg = (minSeg == -1.0f) ? stroke/5.0f : minSeg;

    m_fMinSeg *= m_fMinSeg;


    m_fStroke = stroke;

    m_fFadeDelta = 1.0f/fade;


    m_uMaxPoints = (int)(fade*60.0f)+2;

    m_uNuPoints = 0;

    m_pPointState = (float *)malloc(sizeof(float) * m_uMaxPoints);

    m_pPointVertexes = (CCPoint*)malloc(sizeof(CCPoint) * m_uMaxPoints);


    m_pVertices = (ccVertex2F*)malloc(sizeof(ccVertex2F) * m_uMaxPoints * 2);

    m_pTexCoords = (ccTex2F*)malloc(sizeof(ccTex2F) * m_uMaxPoints * 2);

    m_pColorPointer =  (GLubyte*)malloc(sizeof(GLubyte) * m_uMaxPoints * 2 * 4);


    // Set blend mode

    m_tBlendFunc.src = GL_SRC_ALPHA;

    m_tBlendFunc.dst = GL_ONE_MINUS_SRC_ALPHA;


    // shader program

    setShaderProgram(CCShaderCache::sharedShaderCache()->programForKey(kCCShader_PositionTextureColor));


    setTexture(texture);

    setColor(color);

    scheduleUpdate();


    return true;

}

    /** color used for the tint */

    void tintWithColor(ccColor3B colors);

{

    setColor(colors);


    // Fast assignation

    for(unsigned int i = 0; i<m_uNuPoints*2; i++) 

    {

        *((ccColor3B*) (m_pColorPointer+i*4)) = colors;

    }

}


   //删除所有的条带段  

    void reset();



    virtual void setPosition(const CCPoint& position);

{

    m_bStartingPositionInitialized = true;

    m_tPositionR = position;

}


    virtual void draw();

{

    if(m_uNuPoints <= 1)

        return;


    CC_NODE_DRAW_SETUP();


    ccGLEnableVertexAttribs(kCCVertexAttribFlag_PosColorTex );

    ccGLBlendFunc( m_tBlendFunc.src, m_tBlendFunc.dst );


    ccGLBindTexture2D( m_pTexture->getName() );


#ifdef EMSCRIPTEN

    // Size calculations from ::initWithFade

    setGLBufferData(m_pVertices, (sizeof(ccVertex2F) * m_uMaxPoints * 2), 0);

    glVertexAttribPointer(kCCVertexAttrib_Position, 2, GL_FLOAT, GL_FALSE, 0, 0);


    setGLBufferData(m_pTexCoords, (sizeof(ccTex2F) * m_uMaxPoints * 2), 1);

    glVertexAttribPointer(kCCVertexAttrib_TexCoords, 2, GL_FLOAT, GL_FALSE, 0, 0);


    setGLBufferData(m_pColorPointer, (sizeof(GLubyte) * m_uMaxPoints * 2 * 4), 2);

    glVertexAttribPointer(kCCVertexAttrib_Color, 4, GL_UNSIGNED_BYTE, GL_TRUE, 0, 0);

#else

    glVertexAttribPointer(kCCVertexAttrib_Position, 2, GL_FLOAT, GL_FALSE, 0, m_pVertices);

    glVertexAttribPointer(kCCVertexAttrib_TexCoords, 2, GL_FLOAT, GL_FALSE, 0, m_pTexCoords);

    glVertexAttribPointer(kCCVertexAttrib_Color, 4, GL_UNSIGNED_BYTE, GL_TRUE, 0, m_pColorPointer);

#endif // EMSCRIPTEN


    glDrawArrays(GL_TRIANGLE_STRIP, 0, (GLsizei)m_uNuPoints*2);


    CC_INCREMENT_GL_DRAWS(1);

}


    virtual void update(float delta);

{

    if (!m_bStartingPositionInitialized)

    {

        return;

    }

    

    delta *= m_fFadeDelta;


    unsigned int newIdx, newIdx2, i, i2;

    unsigned int mov = 0;


    // Update current points

    for(i = 0; i<m_uNuPoints; i++)

    {

        m_pPointState[i]-=delta;


        if(m_pPointState[i] <= 0)

            mov++;

        else

        {

            newIdx = i-mov;


            if(mov>0)

            {

                // Move data

                m_pPointState[newIdx] = m_pPointState[i];


                // Move point

                m_pPointVertexes[newIdx] = m_pPointVertexes[i];


                // Move vertices

                i2 = i*2;

                newIdx2 = newIdx*2;

                m_pVertices[newIdx2] = m_pVertices[i2];

                m_pVertices[newIdx2+1] = m_pVertices[i2+1];


                // Move color

                i2 *= 4;

                newIdx2 *= 4;

                m_pColorPointer[newIdx2+0] = m_pColorPointer[i2+0];

                m_pColorPointer[newIdx2+1] = m_pColorPointer[i2+1];

                m_pColorPointer[newIdx2+2] = m_pColorPointer[i2+2];

                m_pColorPointer[newIdx2+4] = m_pColorPointer[i2+4];

                m_pColorPointer[newIdx2+5] = m_pColorPointer[i2+5];

                m_pColorPointer[newIdx2+6] = m_pColorPointer[i2+6];

            }else

                newIdx2 = newIdx*8;


            const GLubyte op = (GLubyte)(m_pPointState[newIdx] * 255.0f);

            m_pColorPointer[newIdx2+3] = op;

            m_pColorPointer[newIdx2+7] = op;

        }

    }

    m_uNuPoints-=mov;


    // Append new point

    bool appendNewPoint = true;

    if(m_uNuPoints >= m_uMaxPoints)

    {

        appendNewPoint = false;

    }


    else if(m_uNuPoints>0)

    {

        bool a1 = ccpDistanceSQ(m_pPointVertexes[m_uNuPoints-1], m_tPositionR) < m_fMinSeg;

        bool a2 = (m_uNuPoints == 1) ? false : (ccpDistanceSQ(m_pPointVertexes[m_uNuPoints-2], m_tPositionR) < (m_fMinSeg * 2.0f));

        if(a1 || a2)

        {

            appendNewPoint = false;

        }

    }


    if(appendNewPoint)

    {

        m_pPointVertexes[m_uNuPoints] = m_tPositionR;

        m_pPointState[m_uNuPoints] = 1.0f;


        // Color assignment

        const unsigned int offset = m_uNuPoints*8;

        *((ccColor3B*)(m_pColorPointer + offset)) = _displayedColor;

        *((ccColor3B*)(m_pColorPointer + offset+4)) = _displayedColor;


        // Opacity

        m_pColorPointer[offset+3] = 255;

        m_pColorPointer[offset+7] = 255;


        // Generate polygon

        if(m_uNuPoints > 0 && m_bFastMode )

        {

            if(m_uNuPoints > 1)

            {

                ccVertexLineToPolygon(m_pPointVertexes, m_fStroke, m_pVertices, m_uNuPoints, 1);

            }

            else

            {

                ccVertexLineToPolygon(m_pPointVertexes, m_fStroke, m_pVertices, 0, 2);

            }

        }


        m_uNuPoints ++;

    }


    if( ! m_bFastMode )

    {

        ccVertexLineToPolygon(m_pPointVertexes, m_fStroke, m_pVertices, 0, m_uNuPoints);

    }


    // Updated Tex Coords only if they are different than previous step

    if( m_uNuPoints  && m_uPreviousNuPoints != m_uNuPoints ) {

        float texDelta = 1.0f / m_uNuPoints;

        for( i=0; i < m_uNuPoints; i++ ) {

            m_pTexCoords[i*2] = tex2(0, texDelta*i);

            m_pTexCoords[i*2+1] = tex2(1, texDelta*i);

        }


        m_uPreviousNuPoints = m_uNuPoints;

    }

}





    /* Implement interfaces */

    virtual CCTexture2D* getTexture(void);

    virtual void setTexture(CCTexture2D *texture); //set get 纹理

    virtual void setBlendFunc(ccBlendFunc blendFunc);

    virtual ccBlendFunc getBlendFunc(void);         //set get BlendFunc

    virtual GLubyte getOpacity(void);

    virtual void setOpacity(GLubyte opacity);           //set get Opacity  

    virtual void setOpacityModifyRGB(bool bValue);

    virtual bool isOpacityModifyRGB(void);


    /** When fast mode is enabled, new points are added faster but with lower precision(精密度) */

//快速模式开启时  新的点被更快的添加 但精密度降低

    inline bool isFastMode() { return m_bFastMode; }

    inline void setFastMode(bool bFastMode) { m_bFastMode = bFastMode; }

//起点是否初始化  

    inline bool isStartingPositionInitialized() { return m_bStartingPositionInitialized; }

    inline void setStartingPositionInitialized(bool bStartingPositionInitialized) 

    { 

        m_bStartingPositionInitialized = bStartingPositionInitialized; 

    }

protected:

    bool m_bFastMode;

    bool m_bStartingPositionInitialized;

private:

    /** texture used for the motion streak */

    CCTexture2D* m_pTexture;

    ccBlendFunc m_tBlendFunc; //ALPHA混合方案  

    CCPoint m_tPositionR; //当前拖尾起点位置  


    float m_fStroke; //拖尾线条的宽度,越大当前越粗  

    float m_fFadeDelta;   //每秒条带渐隐的alpha值减少量  

    float m_fMinSeg;     //拖尾中用于划分条带的顶点的最小距离。  


    unsigned int m_uMaxPoints;   //顶点最大数量 

    unsigned int m_uNuPoints;    //当前的顶点数量  

    unsigned int m_uPreviousNuPoints;    //上次的顶点数量  


    /** Pointers */

    CCPoint* m_pPointVertexes;    //顶点位置数组  

    float* m_pPointState;    //顶点的状态值数组,这个状态值取值为0~1.0间,代表了消隐程度,其实就是alpha值。  


       // OPENGL所用的顶点各类数据绘冲 

    ccVertex2F* m_pVertices;   //位置  

    GLubyte* m_pColorPointer;     //颜色  

    ccTex2F* m_pTexCoords;     //纹理UV  

};




这篇关于CCMotionStreak(ccnode子类 可实现拖尾效果 需要设置--- 消隐动画时长,拖尾条带相邻顶点间的最小距离,拖尾条带的宽度,顶点颜色,纹理)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!


原文地址:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.chinasem.cn/article/661608

相关文章

Java实现将byte[]转换为File对象

《Java实现将byte[]转换为File对象》这篇文章将通过一个简单的例子为大家演示Java如何实现byte[]转换为File对象,并将其上传到外部服务器,感兴趣的小伙伴可以跟随小编一起学习一下... 目录前言1. 问题背景2. 环境准备3. 实现步骤3.1 从 URL 获取图片字节数据3.2 将字节数组

Win32下C++实现快速获取硬盘分区信息

《Win32下C++实现快速获取硬盘分区信息》这篇文章主要为大家详细介绍了Win32下C++如何实现快速获取硬盘分区信息,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 实现代码CDiskDriveUtils.h#pragma once #include <wtypesbase

Nginx实现前端灰度发布

《Nginx实现前端灰度发布》灰度发布是一种重要的策略,它允许我们在不影响所有用户的情况下,逐步推出新功能或更新,通过灰度发布,我们可以测试新版本的稳定性和性能,下面就来介绍一下前端灰度发布的使用,感... 目录前言一、基于权重的流量分配二、基于 Cookie 的分流三、基于请求头的分流四、基于请求参数的分

Python Excel实现自动添加编号

《PythonExcel实现自动添加编号》这篇文章主要为大家详细介绍了如何使用Python在Excel中实现自动添加编号效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1、背景介绍2、库的安装3、核心代码4、完整代码1、背景介绍简单的说,就是在Excel中有一列h=会有重复

MySQL的隐式锁(Implicit Lock)原理实现

《MySQL的隐式锁(ImplicitLock)原理实现》MySQL的InnoDB存储引擎中隐式锁是一种自动管理的锁,用于保证事务在行级别操作时的数据一致性和安全性,本文主要介绍了MySQL的隐式锁... 目录1. 背景:什么是隐式锁?2. 隐式锁的工作原理3. 隐式锁的类型4. 隐式锁的实现与源代码分析4

如何通过Golang的container/list实现LRU缓存算法

《如何通过Golang的container/list实现LRU缓存算法》文章介绍了Go语言中container/list包实现的双向链表,并探讨了如何使用链表实现LRU缓存,LRU缓存通过维护一个双向... 目录力扣:146. LRU 缓存主要结构 List 和 Element常用方法1. 初始化链表2.

MySQL中Next-Key Lock底层原理实现

《MySQL中Next-KeyLock底层原理实现》Next-KeyLock是MySQLInnoDB存储引擎中的一种锁机制,结合记录锁和间隙锁,用于高效并发控制并避免幻读,本文主要介绍了MySQL中... 目录一、Next-Key Lock 的定义与作用二、底层原理三、源代码解析四、总结Next-Key L

Java中数组转换为列表的两种实现方式(超简单)

《Java中数组转换为列表的两种实现方式(超简单)》本文介绍了在Java中将数组转换为列表的两种常见方法使用Arrays.asList和Java8的StreamAPI,Arrays.asList方法简... 目录1. 使用Java Collections框架(Arrays.asList)1.1 示例代码1.

如何关闭 Mac 触发角功能或设置修饰键? mac电脑防止误触设置技巧

《如何关闭Mac触发角功能或设置修饰键?mac电脑防止误触设置技巧》从Windows换到iOS大半年来,触发角是我觉得值得吹爆的MacBook效率神器,成为一大说服理由,下面我们就来看看mac电... MAC 的「触发角」功能虽然提高了效率,但过于灵敏也让不少用户感到头疼。特别是在关键时刻,一不小心就可能触

Redis实现RBAC权限管理

《Redis实现RBAC权限管理》本文主要介绍了Redis实现RBAC权限管理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录1. 什么是 RBAC?2. 为什么使用 Redis 实现 RBAC?3. 设计 RBAC 数据结构