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

I written the following ruby files in order to demonstrate a possible protocol base for a multiplayer game. It uses BSON, JSON and SHA1.

Write Protocol to wire/file:

#!/usr/bin/env ruby
require 'json'
require 'bson'
require 'digest/sha1'

src_message = { :c => "login_server" }

message_bin = BSON.serialize(src_message)
message_bin_size = [ message_bin.length ].pack("S>")


fingerprint = Digest::SHA1.hexdigest message_bin.to_s
fingerprint_bin = BSON.serialize( { :f => fingerprint } )
fingerprint_bin_size =  [ fingerprint_bin.length ].pack("S>")


payload = message_bin_size + fingerprint_bin_size + fingerprint_bin.to_s + message_bin.to_s 
payload_size = [ payload.length ].pack("S>")

# format:
# packet size (S> 16bit big endian) | message_bin_size | size of fingerprint | fingerprint | payload (array)
packet = payload_size + payload

# write to file, generally send via network though
File.open "packet.bin", "wb" do |io|
    io.write(packet)
end

and read back from socket/net/file:

#!/usr/bin/env ruby
require 'json'
require 'bson'
require 'digest/sha1'

File.open("packet.bin", "r") do |io|

    payload_size_bin = io.read(2)
    payload_size_arr = payload_size_bin.unpack "S>"
    payload_size = payload_size_arr[0]

    #print "Payload Size: " + payload_size.to_s + " bytes \n"


    message_size_bin = io.read(2)
    message_size_arr = message_size_bin.unpack "S>"
    message_size = message_size_arr[0]

    #print "Message (bson) Size: " + message_size.to_s + " bytes \n"


    fingerprint_size_bin = io.read(2)
    fingerprint_size_arr = fingerprint_size_bin.unpack "S>"
    fingerprint_size = fingerprint_size_arr[0]

    #print "Fingerprint Size: " + fingerprint_size.to_s + " bytes \n"


    fingerprint_bin = io.read(fingerprint_size)
    fingerprint_json_content = BSON.deserialize fingerprint_bin
    fingerprint = fingerprint_json_content["f"]


    message_bin = io.read(message_size)

    message_bin_fingerprint = Digest::SHA1.hexdigest message_bin.to_s



    if fingerprint.to_s != message_bin_fingerprint.to_s
        print "\nMSG_BIN: #{message_bin_fingerprint} | REAL_MSG_BIN: #{fingerprint} \n"
        print "\n\n Fingerprints don't match \n\n" 
        exit 1
    end

    message_json_content = BSON.deserialize message_bin
    message = message_json_content["c"]

    print "\n" + "c: " + message + "\n"
end

Both the write and read files work but i'm wondering whether this is efficient or can be done better.. The packet.bin file is reading 84 Bytes, that would mean each player would send at least 84 bytes (in real world, much more) for each message.

My question is, can this be done more efficiently? (perhaps using something other than SHA1, MD5?). What should i change? Also, is this practical in your opinion for a multiplayer game?

PS: I'm not tied to JSON, BSON or SHA1 and the reason i'm not using Marshal.dump is because i'll more than likely be using Java Apache Mina as Server and Flash (AS3) as client for my game.. Please don't suggest using already made socket servers like red5, smartfoxserver etc, i am wanting to make the protocol custom or adapt to a more efficient protocol if available.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.