🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Bitmasks

Started by
0 comments, last by Akura 24 years, 6 months ago
Hi, im doing an adventure game and im using bitmaskes for abotu everything, liek walkability, lights, shadows,, all the stuff... are any drawn backs using this and is teher a better way to do it ??

thks

akura

It's good to be an outcast, you don't need to explain what you do, you just do it and say you don't belong there.
Advertisement
The tradeoff when using bitmasks as opposed to separate variables for each energy is memory space over speed. Using bitmasks makes good use of memory, but it takes a couple of operations to read & write. Using variables is very fast, but wasteful of memory if your variables only have a couple of states and don't use the full dynamic range of their type.

All programming is tradeoffs. Well, that and finesse. Style. Pressure. OK, but tradeoffs are a big part of it.

This topic is closed to new replies.

Advertisement