DEV Community

Cover image for Programming Games by Hand Using Odin
Patrick O'Dacre
Patrick O'Dacre

Posted on

Programming Games by Hand Using Odin

If you're interested in programming games from scratch, you've probably agonized over how to get started.

You could use an existing tool, you could write everything from scratch, or you could do a little bit of both.

I really like the idea of programming everything by hand. Learning how to use an existing engine like Unity or Godot isn't easy. If you're going to invest hours upon hours into learning something, you may as well apply yourself to building something from scratch.

Choosing a Programming Language

When deciding on a language I knew I wanted the following:

  • no garbage collection
  • a simple language
  • a simple toolchain
  • online resources to help me learn game dev using that language

I considered the following languages:

  • C
  • Rust
  • Odin

Each language has aspects that appeal to me.

What about C?

When you're learning it's really helpful to have an abundance of resources, and because C has been around forever, there are many examples of how to make games using C. My favorite resource, Handmade Hero, is a prime example.

I like writing C, and I believe I would really enjoy programming with it, but I would like to have a few more modern conveniences if possible.

Rust? not so much...

I really appreciate Rust's toolchain and learnings resources. I wrote Rust professionally for about 6 months when I was working on a Substrate-based blockchain, and all of these resources really helped me be productive.

But I'm sorry to say that I don't like Rust very much as a language. I found it very tedious to follow along with all the traits, type aliases, impls, etc. I like simplicity, and Rust is complex.

Couldn't I just write my own Rust code to be less complex? Of course, but Rust has one more thing I don't like -- ownership semantics.

Rust has a particular approach to memory management. It is A way to write code, not THE way. And while ownership semantics may work well in a lot of applications, I don't find the approach particularly compelling in a gamedev context.

Hello, Odin

I chose Odin for many reasons.

Odin is simple like C. The language is very practical and offers many useful features like array programming, slices, bit sets, and more.

Odin is fast and modern like Go, but it doesn't have a garbage collector. I want to get more experience with manual memory management, and using something like Go doesn't allow me to do that.

Odin offers officially-maintained bindings for helpful libraries like SDL2. Unlike the Rust bindings which are more "idiomatic", Odin's SDL2 bindings are identical to C, so any gamedev tutorials using C is easily translated to an Odin program.

Visit the official site for a full list of Odin vendor libraries.

And finally, as icing on the cake, I have been regularly impressed by the care and thoughfulness that has gone into the design of the language. This is true for C and Rust, too, of course, but I want to highlight that Ginger Bill has put a lot of thought and care into how Odin works. He has made a deliberate effort to create a language that is incredibly powerful but easy to learn, and fun to program with.

At the end of the day, I want to enjoy the language I'm using, and Odin certainly delivers.

Oldest comments (4)

Collapse
 
pengeszikra profile image
Peter Vivo

Interesting language. JangaFX written in Odin and that program is really impressive. Maybe worth to take look Odin.

Collapse
 
patrickodacre profile image
Patrick O'Dacre

Absolutely. When such a talented team uses the language, you know it has been taken through enough real-world use to make it great.

Collapse
 
yuridevat profile image
Julia πŸ‘©πŸ»β€πŸ’» GDE

Thanks for sharing your inisghts. It sounds great knowing what you are looking for in a language and decide on these thoughts.

Collapse
 
patrickodacre profile image
Patrick O'Dacre

Thanks to everyone that has read this post and liked, bookmarked, etc.

I have started a new series here and on YouTube that I hope you enjoy ::

dev.to/patrickodacre/space-shooter...

Check it out!