Particle Systems using Stream-Out in DirectX 11 and SlimDX

Published October 21, 2013
Advertisement
[font=Arial]


Particle systems are a technique commonly used to simulate chaotic phenomena, which are not easy to render using normal polygons. Some common examples include fire, smoke, rain, snow, or sparks. The particle system implementation that we are going to develop will be general enough to support many different effects; we will be using the GPU's StreamOut stage to update our particle systems, which means that all of the physics calculations and logic to update the particles will reside in our shader code, so that by substituting different shaders, we can achieve different effects using our base particle system implementation.

[/font]
[font=Arial]


The code for this example was adapted from Chapter 20 of Frank Luna's Introduction to 3D Game Programming with Direct3D 11.0, ported to C# and SlimDX. The full source for the example can be found at my GitHub repository, at https://github.com/ericrrichards/dx11.git, under the ParticlesDemo project.

[/font]
[font=Arial]


Below, you can see the results of adding two particles systems to our terrain demo. At the center of the screen, we have a flame particle effect, along with a rain particle effect.

[/font][font=Arial]


image_thumb%25255B1%25255D.png?imgmax=800

[/font]
[font=Arial]


Read More...

[/font]
2 likes 2 comments

Comments

riuthamus

You should play with BEPU and see if you can get some crazy stuff going with that particle system.

October 21, 2013 05:34 PM
ericrrichards22

Sounds interesting. At some point in the future, I'm going to work on adding a home-brew physics engine, since I just got this book.

November 08, 2013 04:23 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement