Functional Programming and Data-Oriented Design

These two complementary paradigms, rather than object-orientation, could be the future of game development.

Note: This article is a follow up to the previous article, ‘Why Functional Programming Works for Games’.

When we tell the story of functional programming and data-oriented design in games, we tell a story of trade-offs.

What do you get with Functional Programming in games?

  1. A declarative programming interface, such as Elm-style.
  2. Ease in reasoning about program behavior at a high level.
  3. The complete freedom of an open system.
  4. A great debugging experience.

And what do you pay to get it?

  1. Higher performance costs depending on how declarative you want to be.

Conversely, what do you get with Data-Oriented Design?

  1. Unrivaled speed compared to high-level programming paradigms.
  2. Ease in reasoning about program performance at a low level.

And what do you pay to get it?

  1. Be prohibited from using abstractive language features and techniques.
  2. Difficulty in reasoning about program behavior at a high level.
  3. A requirement to work in an exclusively closed system.

By looking at these trade-offs, we see that functional programming and data-oriented programming are quite orthogonal. But for games, that’s actually a great thing because orthogonal means complementary!

So how do we know which approach to use when writing games?

It’s all about knowing in what way your game needs to scale. For an example, let’s look at game Entities in the Nu Game Engine

In Nu, you have 3 tiers of Entity configurations out-of-the-box –

  1. Optimized (Omnipresent = true)
  2. Elm-style (use the EntityDispatcher<_, _, _> type, Omnipresent = true)
  3. Cullable (Omnipresent = false)

Depending on the tier of the Entity, different numbers of them can be changing every frame before soaking the CPU –

  1. Optimized => 25,000* On-Screen
  2. Elm-Style => 12,000* On-Screen
  3. Cullable => 12,000* On-Screen

*These numbers are discovered by running Nu’s Metrics project.

As you can see, you can get additional scalability if you’re willing to dial back declarativity. And since most types of Entities won’t need scalability beyond the hundreds, you can stick with Elm-style or Cullable Entities by default. If you need a thousands of bullets flying around the screen, you can use the Optimized configuration.

What about bleeding edge games where you have certain game elements on screen that number in the many 10,000s or 100,000’s? Well, that’s where you have to eschew Nu’s normal path of programming and embrace the data-oriented style – https://github.com/bryanedds/Nu/blob/master/Nu/Nu/Ecs/Ecs.fs. Even if you were using an object-oriented system, you would still need to duck out to an array-based approach like an ECS to get to the next level of scalability.

4. Data-Oriented / ECS => 100,000+

In my view, game engines of the future will use a mixture of functional programming and data-oriented design. Object-orientation will take a back seat to these emerging paradigms, it having only succeeded in giving us the worst of both worlds — insufficient abstraction and inefficient performance.

By using both functional programming and data-oriented design in games, we will aim to get the best of both worlds!

UPDATE:

5. Compute Shaders => 1,000,000+

And I think I should mention the next level of scalability beyond ECS – compute shaders!

Check out what people are doing with GPU-only simulation programming here –

Of course, Nu doesn’t provide anything specific to enable this, but it should be pretty straight-forward to expose support for this once we implement OpenGL rendering.

So to summarize, entity scaling goes approximately as follows –

Elmish =>          1000's
Classic Nu =>      10000's (same for OOP APIs like Unity)
ECS =>             100000's
Compute Shaders => 1000000's

Nu supports all of these gradients now except for compute shaders, and those are on the horizon as well.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: