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

I have server objects that have corresponding client objects. The data to be kept in sync is inside the server object's key/value dictionary. To keep the client objects in sync with the sever objects, I want the server to send the key/value dictionary every frame for each object.

What data-structure/algorithm will allow me to send a list of key/value dictionaries using the least amount of bits?

Bonus constraint 1: For each type of object, the values of some keys change more often than others. Bonus constraint 2: Memory usage on the server side is relatively expensive.

share|improve this question
Would you please accept an answer? (Given that you still visit, of course.) – Yannbane Nov 23 '12 at 10:50

migrated from gamedev.stackexchange.com Oct 22 '12 at 19:16

2 Answers

up vote 3 down vote accepted

You probably don't want to send the dictionary each frame. Send it in longer intervals, and compute state on the client to achieve smoothness. Also, don't send the entire dictionary, but only what has changed. I suggest you extend the class for your dictionaries and include code that measures the changes between gets. Other than that, you're just sending bits and bytes over the net...

share|improve this answer

There are no special data structures or algorithms. Transferring delimited data is enough.

Example data (as a C string, note the "\\" which is actually a "\"): key1;value1;key2;value2;key3\\;with delimiter inside it;value3;\0

You can choose which keys you send, it's easy to read* and write**, takes little memory and can even be compressed (since it's just one stream of bytes).

*-Read:

while( peekbyte() != 0 )
{
    key = readuntil( ';' ); // checks if previous byte isn't "\" while looking for char.
    value = readuntil( ';' );
    add( key, value );
}

**-Write:

foreach( key in keylist )
{
    write( replace( ';', '\\;', key ) );
    write( replace( ';', '\\;', dict[ key ] ) );
}
write( '\0' );
share|improve this answer

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.