Giving life is obviously the best feeling there is. This is probably why mothers want to be mothers! Well, if you can’t afford to be a mother, like me, fret not, computer graphics can take you a long way. (I am not endorsing computer graphics over motherhood. Don’t sue me mothers!)
I am going to give a very brief introduction to building a physics engine that can power a ragdoll.. and henceforth, power your emotions! 😉 You can go ahead and make a game… or a dame (if you know what I mean… I mean nothing, you pervert)!
If you’ve ever thought that building a physics engine would be so cool when you were playing those physics based games, but again, thought that the implementation could be daunting, let me assure you that it is a very simple task (ahem.. watch out for my over-simplifications. No… Just kidding, it’s actually pretty simple). You’ll probably have a harder time to set the OpenGL environment up than to build this physics engine. You can find this part of setting up OpenGL in a lot of places on the internet. In fact, you can even find a few articles about building a custom physics engine as well. But I’ll go ahead and write my article and try to do a better job at introducing physics based graphics with OpenGL.
Let me start with the (not so) boring theory. You should know a little of Newtonian Physics to get a context of what this is about, in which case these equations should be familiar:
sn = sp + vpt + (at2)/2
vn = vp + at
We will use these equations to power our engine. We discretize these equations by bringing in the Δt terms. Velocity Verlet integrators plug in the Δt directly into these equations. On the other hand, with a little bit of rearrangement, we can use the regular Verlet integration:
xn = 2xc – xp + a Δt2
n, c and p correspond to new, current and previous respectively.
Verlet integration is very popular. This could be because this equation saves us from the exponentially increasing t2 term which occurs in the former set of equations, which will potentially introduce errors as time increases. Also, this equation turns out to be better for the general implementation because sc and sp can be just swapped. Where as, in the former case, new positions and velocities must be calculated separately. This separate calculation of velocity can also introduce instability in the system.
Here are the things that you need to be ready with:
- A simple OpenGL (of course you can use any graphics library) program that plots points in 2D
- Zeal
This is just a proof of concept, so we’ll do away with 2D. Note that extending this to 3D must be easier than a cake walk. Let’s build that physics engine in tiny steps.
The Gravity
I’m assuming you have an array, vector or an equivalent to track the fucking points. Now let’s implement a part of the fucking equation to drive the fucking points down to earth. The fucking points need to learn the fucking lesson, don’t they? To do this, of course, we can implement only the acceleration part of the fucking equation:
xn += a Δt2
Where “a” can be –10 or whatever the fuck you want. We’d see something like this:

Of course, we can have any fucking number of force vectors, which can then be added to find the effective fucking acceleration of the fucking particles.

All this swearing must be enough to apprise you of the fucking gravity of the situation!
A Trajectory
With the remaining part of the equation, we can give initial velocity of the particle. This will allow us to model a trajectory with initial velocity vector as the control parameter. Something of this sorts:

xn = 2xc – xp + a Δt2
If, xp was (0,0), xc could’ve been (1,1) to get an initial angle of 45º. You get the idea.
Constraints
What we saw until now was finding the next step of a particle in a seemingly infinite universe without any limitations. They were just a set of points that were influenced by the forces that we modelled as if nothing else was there that influenced the movement. But this is not really the case in real life. There are a lot of interactive forces that act between infinite number of points. So, to model something like this, let’s put constraints into our existing engine. Of course, we’ll limit ourselves to a minimalistic set of points that are enough to make our animation look convincing enough. The flow of our program would be like this:
|
void generateFrame(){ verletStep(); satisfyConstraints(); } |
Yet again, let’s build the constraint system in small steps:
The Bounding Box
This is the simplest constraint to implement. Just check if the particle has moved beyond the box and limit it to the box.
|
cVertices[i].x = (cVertices[i].x<50) ? 50 : cVertices[i].x; cVertices[i].x = (cVertices[i].x>450) ? 450 : cVertices[i].x; cVertices[i].y = (cVertices[i].y<50) ? 50 : cVertices[i].y; cVertices[i].y = (cVertices[i].y>450) ? 450 : cVertices[i].y; |

The Distance Constraint
This is where we’ll see things getting interesting. Adding this constraint is a huge step towards modelling our ragdoll. As the name says, this step involves fixing the distance between any two points. For the sake of convenience, let’s say the points are A and B. We put a constraint that the distance between these two points must be say, d. If the new distance is d’ is different from d, then the delta, d’–d is found. Each point is pushed delta/2 away from or closer to each other based on the sign of delta. The direction of this push/pull is parallel to A–B.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
// Original Vector A-B Vertex r = Vertex::delta(vertices[a], vertices[b]); // Vector A'-B', A' and B' are current positions of A and B Vertex d = Vertex::delta(cVertices[a], cVertices[b]); // Finding the scalar distance to push/pull by double dp = Vertex::dot(d, d); double rl = Vertex::dot(r, r); double sc = ((rl)/(dp+rl))-0.5; // Associate that scalar to vector 'd' d.scale(sc); // Push the current positions, thus satisfying the distance constraint cVertices[a].minus(d); cVertices[b].plus(d); |
Do keep in mind that this constraint is added to the existing set of constraints, The Bounding Box constraint. We see something like this:

Grand Finalè
Believe it or not (no, just believe it), what we’ve built until now, is enough to model a stick figure. So let’s build it and fool around with it! ?
Go ahead and make a simple stick figure with dimensions that please you. Put the distance constraints to keep it from collapsing into a singleton, and save yourself from the embarrassment of being called like a simpleton. Also, keep in mind that you’ll need a few distance constraints where you don’t really wanna draw a stick. You’ll hopefully understand it better from the GIF below.

Appendix
You can of course explore other kinds of constraints, or structures of the constraints. There’s a lot of exploratory opportunity (…not that kind!), and there are a lot of things can be implemented just with the knowledge that we’ve gained here.
For instance, to implement dragging of the model, we can add a new constraint on some point. The constrain here would be that the point position is equal to the mouse co-ordinate. The other constraints ensure that the model moves with that one point that we’re moving.

And this can also do a manageable job at simulating cloth. Just set the vertices and constraints accordingly to generate a cloth and sim away!

This write-up and my implementation is inspired from the classic paper Advanced Character Physics written by Thomas Jakobsen.
Pat yourself, because you can be proud that you’ve just learnt something that was used in one of the best franchise games of the current world! Yes, this was used in a 2001 game, Hitman: Codename 47, for the first time in the gaming industry.
And now, time for a small pep talk… What we learnt now is just a tool. Remember, all the knowledge in the world is just that, a tool. The greatness lies upon the one who can make the best of them. I know, we’re all tired of people quoting random stuff and associating it with Einstein, but trust me on this one, I’ve got this from a reliable source: “Imagination is more important than knowledge. For knowledge is limited to all we now know and understand, while imagination embraces the entire world, and all there ever will be to know and understand.”
Believe yourself to be an artist and you are one. And do not hesitate to take up unconventionalities.
“I am an artist you know… it is my right to be odd.”
― E A Bucchianeri, Brushstrokes of a Gadfly