Tag Archives: Game Dev

GDC12 – Tuesday

Day Two of the 2012 Game Developers Conference was all about the physics for me. Today, there was an all day Physics for Game Programmers tutorial, and like with the previous day’s math tutorial, some of the talks were hits and some were misses. The day began with a great discussion of collision detection and a conceptually complex method utilizing something called a configuration space object. Details about the process of creating a utility object by sweeping one of the game objects with another. The properties of the object generated by this sweep, the configuration space object, allows for quick collision detection by determining if the coordinate system origin in configuration space lies within the CSO. Not only does this procedure allow for the detection of the collision, but it also allows for the rapid determination of the collision point, and the collision normal, both of which are critical for resolving the velocities after the collision. You can learn more about this procedure and download the code at http://www.dtecta.com/.

The second talk of the day was a party of tensors and Newton’s 2nd Law. I loved it! Solving Rigid Body Contacts by Richard Tonge of nVidia focused on collision resolution. Once you know that a collision has occurred, you then need to figure out how to handle that collision. One thing that I found interesting is that was that game devs use the term impulse to refer to a \Delta \vec{v} as opposed to the physical definition of \Delta \vec{p} . After listening for a while, it was completely understandable why. Collision resolution happens instantaneously, and the change in the objects motion is achieved by applying the simple statement, \vec{v_{new}} = \vec{v_{old}} + \Delta \vec{v}. Getting this \Delta \vec{v} physically right, doesn’t always result in physical behaviour from the simulation. Tweaking of collision-induced impulse is needed to produce more realistic appearing motion and reactions.

The afternoon sessions were all about ragdoll physics, which would have been very interesting if there was any depth to the talks, but they were all very high-level and filled with pretty video sims and devoid of any serious discussion of the physics modeling. Unfortunate, that. The salvation of the afternoon was a talk by the tutorial’s facilitator and organizer, Jim Van Verth. Jim talked about the basics of fluid simulation including introductions to the Navier-Stokes equation and methods for modeling and solving it.

The most straightforward way to model fluids is by gridding your space and evaluating the continuity and momentum equations discretely at the center of each grid element. This is robust, but expensive. It also only operates in the space in which you’ve established your grid. You won’t want to use it world-wide because of the computational costs, but it is useful for very localized fluid effects such as puffs of smoke during destruction events and the like. This method also doesn’t model splashes well. The fluid remains intact, rather than separating into droplets as a real fluid will.

A method that is more globally applicable and that does a good job of modeling splashes is Smooth Particle Hydrodynamics (SPH). SPH uses kinetic modeling of small particles with an attractor force, simulating a surface tension, to loosely bind the particle together. The ensemble of particles is then skinned to produce a realistic looking fluid surface. Splashes are well modeled by this technique, and since its a kinetic system, not a cell-based system, its globally applicable. You don’t need to grid out your space, and the fluid is free to flow wherever physics takes it in the world.

The last method demonstrated was a method of simply modeling the surface of a fluid, such as an ocean surface. Ocean waves are not of a simple single frequency, but are complex structures comprised by a multitude of wave modes. To generate realistic looking waves, a Fourier sum is used to add multiple wave modes to the entire surface and the wave speed is properly calculated via a frequency-dependent dispersion relationship. Building these modes in frequency-space and then using a FFT to transform back to time-space results in extremely realistic fluid surfaces. This is the method used to generate the ocean surface in the movie Titanic. Cool!

Last event of the day was the IGDA party. Its something that we attend every year, at least for a half-hour or so. Typically there have been munchies and various innovated board games scattered around. This year, there were vendor tables, no munchies, minimal board games, and a TON of people! Its probably a good thing the fire inspector didn’t stop by. They’d have shut the place down. Oh, yeah, and there were ribbon dancers. :S Just what kind of party is this? It wasn’t your typical professional organization party.

Wednesday, the main part of the conference begins and the expo hall opens! Yay swag! I’ll have pics of swag after my first swing through the expo hall. If you see something you like, be sure to leave a comment for me.

GDC 2012 – Monday

The 2012 Game Developers’ Conference officially got started this morning. For me, it seemed like a late start with the first sessions beginning at 10am. For someone who’s up at 5am on a regular basis, that’s a lot of morning time to kill before getting started! Fortunately, my camera is with me everywhere and I had lots of time to explore before hitting Mel’s Drive-In Diner for breakfast.

The “discovering new experiences” part of the day started VERY early as I experienced my first earthquake. A 4.0 magnitude quake struck the Bay Area at 5:30 this morning. While it wasn’t that strong of a quake, it was still disconcerting while occupying a room on the 8th floor of an old, sketchy hotel! At least now I can scratch “survive an earthquake” off of my bucket list.

Sessions for the day were part of the Math for Game Programmers tutorial. In the past, this has been a weak tutorial, but I was pleasantly surprised by its evolution. While the oratory skills of the organizer had still not improved one bit, nor had his specific talk, the quality of the other presenters and presentations improved quite a bit. First out of the gate was a talk on Bezier curves and splines. Might have to see about working curves and splines into the MATH/PHYS 191 course. It would be a natural succession to introduce them after we discuss parametric equations.

There was also a good talk on collision detection methods which reaffirmed that the work we’re doing in the MATH/PHYS 191 course is in line with what’s being done in the field. All very interesting, and I’ll have links to the slides in time. The last talk of the day was about data as paramount when thinking about how to construct code. The speaker’s motto was “understand the data, and you understand the problem”. As a computational physicist, my reaction was, “Duh!” Preaching to the choir, there.

One of the great things about coming to San Francisco is having the opportunity to meet up with some of my friends and fellow IndyCar fans from Twitter. Tonight, I was introduced to a new place, Pesce, which specialized in tapas-style seafood dishes. It was fabulous! I would include a pic of the lobster ravioli and the pan-seared scallops, but they didn’t stick around long enough. Delicious!

So the first day was successful. At least more than it had been in past years. Tuesday, the second day of the tutorial, is all about Physics for Game Programmers. It will be interesting to see what new things they bring to the sessions this year. Also, the IGDA party is Tuesday night! It’s never been a real blow-out type of party, but at least there’s free food.