I'm making a tile based 2d platformer and every byte of memory is precious. I have one byte field that can hold values from 0 to 255, but what I need is two properties with values 0~15. How can I turn one byte field into two properties like that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
To piggy back off of sradforth's answer, and to answer your question about properties:
|
||||
|
|
do you mean just use the lower 4 bits for one value and the upper 4 bits for the other? to get two values from 1 byte use...
setting is just the reverse as
Using the shift operator is better but the compiler optimizers usually do this for you nowadays.
|
|||
|
|
|
Below are some properties and some backing store, I've tried to write them in a way that makes the logic easy to follow.
|
||||
|
|