Blog /
My simple game engine architecture
January 13, 2019, at 03:35 AM (1 comments)
Title: My simple game engine architecture Author: mgarcia Date: 2019-01-13 13:35 +1100 Tags: 2019, Blog, GameDev, Pics Comments: Open
Comments are open.
β
An IndieWeb Webring πΈπ
β
1 comments on "My simple game engine architecture"
On top of SDL I have some functions which massage the data into the required data types.
The Game Libs are pretty basic stuff, lighting I do in software (CPU) and used in RGB values, MD2 is QUAKE's 1 & 2 vector animation file format.
Capturing input and playing it back is easy to do and a must for any gamedev!
Next is the core loop code, this is mostly game specific, 2D & 3D specific code and game logic code.
The pipeline is mostly straight forward, except for the world.. the 3DS really can't process many polygons, so Chunks with Chunks and 3 levels of LOD is pretty much required.
This is what a real game engine looks like:
http://mgarcia.org/Blog/GameEngineArchitecture