Ocyphaps

Published May 26, 2013
Advertisement
I've changed quite a few things since my last entry. First of all, I hit a wall in my Unity rip-off component system. Quite simply, I found it really shitty to work with.

Instead, I took cue from Juliean and took a look at Alec Thomas's EntityX system, and then at Richard Lord's Ash. After pondering these over a bit, I threw out what I had and started again.

I now have:

  • Components: Purely data
  • GameObjects: A simple entity which "holds" components
  • Systems: Things which manage collections of Components or game objects
  • Messages: The way systems communicate

I'm looking at adding in a "View" or "Node" system to let systems manage "Nodes", or groups of components. Ash has this concept, and it's quite interesting. It allows your system to say "subscribe me to objects with component A, B and D" without having to look them up.

Anyway, now I picked up an old project idea and started to run with the new system to see how it worked, any I'm quite happy.

I like using code names for projects. Mostly because I don't have to think of a game name on the spot - my latest project is called Ocyphaps. It's based on an old Amiga classic with trappings and inspirations from Terraria.
Previous Entry Data 'ponents
Next Entry Cloudy Requests
1 likes 2 comments

Comments

Servant of the Lord

WIP names are important to me to help solidify the concept of the game in my mind - even in the very early stages. I usually pick some (really cheesy sounding) name that captures the main feel that I'm going for (e.g. "AdventureFar", "Wanderer", or something similar).

About Entity Component Systems, does your "Entity" hold the components, or do the systems? Also, do you connect components by signals-and-slots, or only by messages?

June 08, 2013 07:36 PM
evolutional

My GameObjectManager creates the components and then exposes Nodes to the systems who then hold them.

June 12, 2013 08:47 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement