All Questions
Tagged with architecture c
4 questions
0
votes
1
answer
136
views
a shader type class in c
Is it possible to setup something sort of like a class in C++ but in c in the simplest terms? I want to avoid using c++ but I would like to create a simple struct that has glsl shader program.
for ...
1
vote
1
answer
2k
views
How do I store multiple bullets' coordinates?
My game is a 2D game(or tries to be) in pure C using SDL(no OpenGL at all). No specific goal in it, it's pretty much boilerplate code.
I decided I want to make my character/player shoot "something", ...
5
votes
3
answers
4k
views
How do I do a game loop in c99?
I'm having trouble with how to structure a game using c99. I've seen a few tutorials on making a game loop, but they are all done with c++ and classes. My main problem seems to be moving data around ...
8
votes
1
answer
993
views
Processing component pools problem - Entity Subsystem
Architecture description
I'm creating (designing) an entity system and I ran into many problems. I'm trying to keep it Data-Oriented and efficient as much as possible. My components are POD ...