分享
分销 收藏 举报 申诉 / 22
播放页_导航下方通栏广告

类型opengl粒子系统实现.doc

  • 上传人:pc****0
  • 文档编号:6546625
  • 上传时间:2024-12-12
  • 格式:DOC
  • 页数:22
  • 大小:1.08MB
  • 下载积分:10 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    opengl 粒子 系统 实现
    资源描述:
      OpenGL进阶(六)-粒子系统 一、提要        有一款例子特效软件叫做particle illution,在影视后期和游戏制作领域都可以用到,相信很多人都接触过,今天我们用SDL+OpenGL来实现例子效果。 确保你搞定了物理模拟的代码!    代码下载 二、原理简介      所谓的例子系统,就是同时控制一大堆类似的对象,这些对象可能是形体,可能是图片,有着不同的特征(寿命,速度,位置)。有了之前的基础,我们可以很轻易地搞定今天的东西。 三、代码清单 首先是粒子的头文件,我直接写成结构体了,里面有一些基本的属性。 [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particle.h  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.20  9.  *****************************************************************************/   10. #ifndef PARTICLE_H   11. #define PARTICLE_H   12. #include "vector3d.h"   13. typedef struct   14. {   15.     float r;   16.     float g;   17.     float b;   18.     float alpha;   19. }Color;   20.    21. typedef struct   22. {   23.     Vector3D position;   24.     Vector3D velocity;   25.     Vector3D acceleration;   26.     Color color;   27.     float age;   28.     float life;   29.     float size;   30. }Particle;   31.    32. #endif // PARTICLE_H   [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particle.h  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.20  9.  *****************************************************************************/   10. #ifndef PARTICLE_H   11. #define PARTICLE_H   12. #include "vector3d.h"   13. typedef struct   14. {   15.     float r;   16.     float g;   17.     float b;   18.     float alpha;   19. }Color;   20.    21. typedef struct   22. {   23.     Vector3D position;   24.     Vector3D velocity;   25.     Vector3D acceleration;   26.     Color color;   27.     float age;   28.     float life;   29.     float size;   30. }Particle;   31.    32. #endif // PARTICLE_H   我们用球体来模拟例子,所以size表示的就是球体的半径。 接下来是粒子系统类(类名拼写错了*-*) [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particalsystem.h  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.20  9.  *****************************************************************************/   10.    11. #ifndef PARTICALSYSTEM_H   12. #define PARTICALSYSTEM_H   13. #include <vector>   14. #include <math.h>   15. #include <time.h>   16. #include <stdlib.h>   17. #include <iostream>   18. #include <GL/gl.h>   19. #include <GL/glu.h>   20. #include "particle.h"   21. #define PI 3.1415926   22. using namespace std;   23. class ParticalSystem   24. {   25.     public:   26.         ParticalSystem();   27.         ParticalSystem(int _count,float _gravity){ptlCount=_count;gravity=_gravity;};   28.         void init();   29.         void simulate(float dt);   30.         void aging(float dt);   31.         void applyGravity();   32.         void kinematics(float dt);   33.         void render();   34.         virtual ~ParticalSystem();   35.     protected:   36.     private:   37.     int ptlCount;   38.     float gravity;   39.     GLUquadricObj *mySphere;   40.     vector<Particle> particles;   41. };   42.    43. #endif // PARTICALSYSTEM_H   [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particalsystem.h  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.20  9.  *****************************************************************************/   10.    11. #ifndef PARTICALSYSTEM_H   12. #define PARTICALSYSTEM_H   13. #include <vector>   14. #include <math.h>   15. #include <time.h>   16. #include <stdlib.h>   17. #include <iostream>   18. #include <GL/gl.h>   19. #include <GL/glu.h>   20. #include "particle.h"   21. #define PI 3.1415926   22. using namespace std;   23. class ParticalSystem   24. {   25.     public:   26.         ParticalSystem();   27.         ParticalSystem(int _count,float _gravity){ptlCount=_count;gravity=_gravity;};   28.         void init();   29.         void simulate(float dt);   30.         void aging(float dt);   31.         void applyGravity();   32.         void kinematics(float dt);   33.         void render();   34.         virtual ~ParticalSystem();   35.     protected:   36.     private:   37.     int ptlCount;   38.     float gravity;   39.     GLUquadricObj *mySphere;   40.     vector<Particle> particles;   41. };   42.    43. #endif // PARTICALSYSTEM_H   解释一下几个重要函数: init:做一些例子系统的初始化工作; aging:计算粒子的年龄; applyGravity:向粒子施加重力; kinematics:这个单词的意思是运动学,所以就是负责管理粒子的加速,位移; simulate:例子模拟的总负责函数; render:渲染粒子; 然后来看函数是怎么实现的: [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particalsystem.Cpp  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.22  9.  *****************************************************************************/   10.    11. #include "particalsystem.h"   12.    13. ParticalSystem::ParticalSystem()   14. {   15.     //ctor   16. }   17.    18. ParticalSystem::~ParticalSystem()   19. {   20.     //dtor   21. }   22.    23. void ParticalSystem::init()   24. {   25.     int i;   26.     srand(unsigned(time(0)));   27.     Color colors[3]={{0,0,1,1},{1,0,1,1}};   28.     for(i=0;i<ptlCount;i++)   29.     {   30.         //theta =(rand()%361)/360.0* 2*PI;   31.         Particle tmp={Vector3D(0,0,0),Vector3D(((rand()%50)-26.0f),((rand()%50)-26.0f),((rand()%50)-26.0f)),Vector3D(0,0,0),colors[rand()%2],0.0f,0.5+0.05*(rand()%10),0.3f};   32.         particles.push_back(tmp);   33.     }   34.     mySphere=gluNewQuadric();   35. }   36. void ParticalSystem::simulate(float dt)   37. {   38.     aging(dt);   39.     applyGravity();   40.     kinematics(dt);   41. }   42. void ParticalSystem::aging(float dt)   43. {   44.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   45.     {   46.         iter->age+=dt;   47.         if(iter->age>iter->life)   48.         {   49.             iter->position=Vector3D(0,0,0);   50.             iter->age=0.0;   51.             iter->velocity=Vector3D(((rand()%30)-15.0f),((rand()%30)-11.0f),((rand()%30)-15.0f));   52.         }   53.     }   54. }   55. void ParticalSystem::applyGravity()   56. {   57.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   58.             iter->acceleration=Vector3D(0,gravity,0);   59. }   60.    61. void ParticalSystem::kinematics(float dt)   62. {   63.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   64.     {   65.         iter->position = iter->position+iter->velocity*dt;   66.         iter->velocity = iter->velocity+iter->acceleration*dt;   67.     }   68. }   69. void ParticalSystem::render()   70. {   71.    72.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   73.     {   74.         float alpha = 1 - iter->age / iter->life;//calculate the alpha value according to the age of particle.   75.         Vector3D tmp=iter->position;   76.         glColor4f(iter->color.r,iter->color.g,iter->color.b,alpha);   77.         glPushMatrix();   78.         glTranslatef(tmp.x,tmp.y,tmp.z);   79.         gluSphere(mySphere,iter->size, 32, 16);   80.         glPopMatrix();   81.     }   82.    83. }   [cpp] view plaincopy 1. /*****************************************************************************  2. Copyright: 2012, ustc All rights reserved.  3. contact:k283228391@  4. File name: particalsystem.Cpp  5. Description:Partical in opengl.  6. Author:Silang Quan  7. Version: 1.0  8. Date: 2012.12.22  9.  *****************************************************************************/   10.    11. #include "particalsystem.h"   12.    13. ParticalSystem::ParticalSystem()   14. {   15.     //ctor   16. }   17.    18. ParticalSystem::~ParticalSystem()   19. {   20.     //dtor   21. }   22.    23. void ParticalSystem::init()   24. {   25.     int i;   26.     srand(unsigned(time(0)));   27.     Color colors[3]={{0,0,1,1},{1,0,1,1}};   28.     for(i=0;i<ptlCount;i++)   29.     {   30.         //theta =(rand()%361)/360.0* 2*PI;   31.         Particle tmp={Vector3D(0,0,0),Vector3D(((rand()%50)-26.0f),((rand()%50)-26.0f),((rand()%50)-26.0f)),Vector3D(0,0,0),colors[rand()%2],0.0f,0.5+0.05*(rand()%10),0.3f};   32.         particles.push_back(tmp);   33.     }   34.     mySphere=gluNewQuadric();   35. }   36. void ParticalSystem::simulate(float dt)   37. {   38.     aging(dt);   39.     applyGravity();   40.     kinematics(dt);   41. }   42. void ParticalSystem::aging(float dt)   43. {   44.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   45.     {   46.         iter->age+=dt;   47.         if(iter->age>iter->life)   48.         {   49.             iter->position=Vector3D(0,0,0);   50.             iter->age=0.0;   51.             iter->velocity=Vector3D(((rand()%30)-15.0f),((rand()%30)-11.0f),((rand()%30)-15.0f));   52.         }   53.     }   54. }   55. void ParticalSystem::applyGravity()   56. {   57.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   58.             iter->acceleration=Vector3D(0,gravity,0);   59. }   60.    61. void ParticalSystem::kinematics(float dt)   62. {   63.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   64.     {   65.         iter->position = iter->position+iter->velocity*dt;   66.         iter->velocity = iter->velocity+iter->acceleration*dt;   67.     }   68. }   69. void ParticalSystem::render()   70. {   71.    72.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   73.     {   74.         float alpha = 1 - iter->age / iter->life;//calculate the alpha value according to the age of particle.   75.         Vector3D tmp=iter->position;   76.         glColor4f(iter->color.r,iter->color.g,iter->color.b,alpha);   77.         glPushMatrix();   78.         glTranslatef(tmp.x,tmp.y,tmp.z);   79.         gluSphere(mySphere,iter->size, 32, 16);   80.         glPopMatrix();   81.     }   82.    83. }   实现还是比较简单的,下面渲染看一下^^. 首先要在initGL函数中添加两句话: [cpp] view plaincopy 1. glEnable(GL_BLEND);   2. glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);   [cpp] view plaincopy 1. glEnable(GL_BLEND);   2. glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);   这样透明度才会有效。 接着初始化一个例子系统,并对例子进行初始化: [cpp] view plaincopy 1. ParticalSystem ps;   [cpp] view plaincopy 1. ParticalSystem ps;   [plain] view plaincopy 1. int main( int argc, char* argv[] )   2. {   3.     // Color depth in bits of our window.   4.     int flags= SDL_OPENGL|SDL_RESIZABLE;   5.     //Set the SDL   6.     initSDL(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP,flags);   7.     //Set the OpenGL   8.     initGL(SCREEN_WIDTH, SCREEN_HEIGHT );   9.     ps=ParticalSystem(100,-15.0);   10.     ps.init();   11.     //main loop   12.     while(true)   13.     {   14.         /* Process incoming events. */   15.         handleEvents( );   16.         ps.simulate(0.01);   17.         /* Draw the screen. */   18.         renderGL( );   19.     }   20.     return 0;   21. }   [plain] view plaincopy 1. int main( int argc, char* argv[] )   2. {   3.     // Color depth in bits of our window.   4.     int flags= SDL_OPENGL|SDL_RESIZABLE;   5.     //Set the SDL   6.     initSDL(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP,flags);   7.     //Set the OpenGL   8.     initGL(SCREEN_WIDTH, SCREEN_HEIGHT );   9.     ps=ParticalSystem(100,-15.0);   10.     ps.init();   11.     //main loop   12.     while(true)   13.     {   14.         /* Process incoming events. */   15.         handleEvents( );   16.         ps.simulate(0.01);   17.         /* Draw the screen. */   18.         renderGL( );   19.     }   20.     return 0;   21. }   然后是渲染函数: [cpp] view plaincopy 1. void renderGL()   2. {   3.     // Clear the color and depth buffers.   4.     glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT );   5.     // We don't want to modify the projection matrix. */   6.     glMatrixMode( GL_MODELVIEW );   7.     glLoadIdentity( );   8.     // Move down the z-axis.   9.     glTranslatef(0.0f,0.0f,-35.0f);   10.     ps.render();   11.     SDL_GL_SwapBuffers( );   12. }   [cpp] view plaincopy 1. void renderGL()   2. {   3.     // Clear the color and depth buffers.   4.     glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT );   5.     // We don't want to modify the projection matrix. */   6.     glMatrixMode( GL_MODELVIEW );   7.     glLoadIdentity( );   8.     // Move down the z-axis.   9.     glTranslatef(0.0f,0.0f,-35.0f);   10.     ps.render();   11.     SDL_GL_SwapBuffers( );   12. }   跑一下: 效果还是不错的~下面我们来实现一些更棒的效果! 四、动态模糊和碰撞检测 动态模糊的实现比较简单,主循环不再每次把整个画面清空,而是每帧画一个半透明的黑色长方形,就可以模拟动态模糊(motion blur)的效果。 将之前的 [cpp] view plaincopy 1. // Clear the color and depth buffers.   2. glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT );   [cpp] view plaincopy 1. // Clear the color and depth buffers.   2. glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT );   改成 [cpp] view plaincopy 1. // Clear the depth buffers.   2. glClear(GL_DEPTH_BUFFER_BIT );   [cpp] view plaincopy 1. // Clear the depth buffers.   2. glClear(GL_DEPTH_BUFFER_BIT );   然后在例子系统的render函数中添加画矩形的代码: [cpp] view plaincopy 1. void ParticalSystem::render()   2. {   3.    4.     for(vector<Particle>::iterator iter=particles.begin();iter!=particles.end();iter++)   5.     {   6.         float alpha = 1 - iter->age / iter->life;   7.         Vector3D tmp=iter->position;   8.         glColor4f(iter->color.r,iter->color.g,iter->color.b,alpha);   9.         //glColor4f(1.0f, 1.0f, 1.0f, 0.1);   10.         glPushMatrix();   11.         glTranslatef(tmp.x,tmp.y,tmp.z);   12.         gluSphere(mySphere,iter->size, 32, 16);   13.         glPopMatrix();   14.     }   15.        16.     //Motion blue   17.     glColor4f(0.0f,0.0f,0.0f,0.1);   18.     glBegin(GL_QUADS);   19.     glVertex3f(-20.0f  , -20.0f  ,  20.0f  );   20.     glVertex3f( 20.0f  , -20.0f  ,  20.0f  );   21.     g
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:opengl粒子系统实现.doc
    链接地址:https://www.zixin.com.cn/doc/6546625.html
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork