Tagged Questions
2
votes
2answers
348 views
Creating a custom binary format for 3D meshes
I've seen people saying it's better and faster to use a custom binary format for your 3D models, based on your needs, instead of using exchange formats. But, I'd like to know how to create a basic ...
1
vote
1answer
192 views
Dealing with binary data and endianness
When distributing my game, I am going to compile all the resources and level data into a single binary package file, which is loaded from by the game. Do I have to worry about my machine being a ...
8
votes
3answers
253 views
How to have operations with character/items in binary with concrete operations?
I have the next problem.
A item can have a lot of states:
NORMAL = 0000000
DRY = 0000001
HOT = 0000010
BURNING = 0000100
WET = 0001000
COLD = 0010000
FROZEN = 0100000
POISONED= ...