Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
yes, what have you tried? – Jodrell Jan 7 at 16:48
2  
@Jodrell I tried reading about bitwise operations, it got me all confused :) – user1306322 Jan 7 at 16:48
2  
I was just having a little nibble (apologies to anybody who gets this.) – Jodrell Jan 7 at 16:50
Unfortunately you'd have to read about bitwise operations again several times and try things yourself... There is not much you can do to pack multiple values in single byte/integer without them (see @sradforth +1 answer). – Alexei Levenkov Jan 7 at 16:52
1  
@Jodrell Is it "nibble" or "nybble"? I've seen it spelled both ways! – Chris Dunaway Jan 7 at 17:11

3 Answers

up vote 3 down vote accepted

To piggy back off of sradforth's answer, and to answer your question about properties:

private byte _myByte;
public byte LowerHalf
{
    get
    {
        return (byte)(_myByte & 15);
    }
    set
    {
        _myByte = (byte)(value | UpperHalf * 16);
    }
}
public byte UpperHalf
{
    get
    {
        return (byte)(_myByte / 16);
    }
    set
    {
        _myByte = (byte)(LowerHalf | value * 16);
    }
}
share|improve this answer
Thanks! I wasn't getting anywhere with sradforth's answer, it's still too foggy for me. – user1306322 Jan 7 at 17:09

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...

a = byte & 15;
b = byte / 16;

setting is just the reverse as

byte = a | b * 16;

Using the shift operator is better but the compiler optimizers usually do this for you nowadays.

byte = a | (b << 4);
share|improve this answer

Below are some properties and some backing store, I've tried to write them in a way that makes the logic easy to follow.

private byte HiAndLo = 0;

private const byte LoMask = 15;  // 00001111
private const byte HiMask = 240; // 11110000

public byte Lo
{
    get
    {
       // ----&&&&
       return (byte)(this.hiAndLo & LoMask);
    }

    set
    {
       if (value > LoMask) // 
       {
           // Values over 15 are too high.
           throw new OverflowException();
       }

       // &&&&0000
       // 0000----
       // ||||||||
       this.hiAndLo = (byte)((this.hiAndLo & HiMask) | value);
    }
}

public byte Hi
{
    get
    {
        // &&&&XXXX >> 0000&&&&
        return (byte)((this.hiAndLo & HiMask) >> 4);
    }

    set
    {
        if (value > LoMask)
        {
            // Values over 15 are too high.
            throw new OverflowException();
        }

        // -------- << ----0000
        //             XXXX&&&&
        //             ||||||||
        this.hiAndLo = (byte)((hiAndLo & LoMask) | (value << 4 )); 
    }
}
share|improve this answer
@useruser1306322 I added comments to my code to aid understanding. – Jodrell Jan 8 at 9:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.