How does a packet system work?

Started by
3 comments, last by hplus0603 10 years, 5 months ago

I've dealt with editing multiplayer game-servers that use a packet system, however I could never fully understand how it works, I understand that you would send a packetID from the Client/Server which contains the Data for that packet, however, I'm not sure how to go about sending/recieving it. Throughout my research I've found people doing it like this.

1: They would have a String that is converted to Bytes that is sent to the server, but it would have a number/seperator

  • Example: String = "5;" + userName;

2: They would then create a string array using the Bytes recieved

  • Example: String[] data = recieved.split(";");

3: They would then TryParse to get the number

  • Example: Int packetID = Integer.TryParse(data[0]);

4: They would then have a switch statement filled with all the various packet IDs.

This doesn't seem very efficient to me, however I'm just getting started with network programming (From scratch anyway) and I would like to have some peoples input here, I want to learn how to do this properly, I am developing in C#, however if you could post the code in Java or any other language that should be fine, because i should be able to easily convert it.

Thanks in advance, if you cannot supply code for me to learn from (Which is honestly, how I learn, from looking at basic, but completed code), then please try to explain exactly what I'm doing, I'm using Sockets in C# if that means anything to anyone, not sure how it differs from the TcpClient.

Advertisement

Well, that is pretty much how it goes. Recover the ID, parse the rest of the message as the id indicates, ALWAYS testing if the data is in the right format since a hacker can send fake packages.

Also, most packet protocols I have seen use binary information - not text - since it this will save a lot of CPU and bandwidth (think that you need to send a character position at 1578.4783892301 is a 4 bytes float/8 bytes double, but 16 bytes string), not to mention conversion problems.

Currently working on a scene editor for ORX (http://orx-project.org), using kivy (http://kivy.org).

Well, that is pretty much how it goes. Recover the ID, parse the rest of the message as the id indicates, ALWAYS testing if the data is in the right format since a hacker can send fake packages.

Also, most packet protocols I have seen use binary information - not text - since it this will save a lot of CPU and bandwidth (think that you need to send a character position at 1578.4783892301 is a 4 bytes float/8 bytes double, but 16 bytes string), not to mention conversion problems.

Do you know where I can find any tutorials on this? I'm just jumping into networking as I stated before, whilist I know the basic programming mechanics, this is a completely new field.

Unfortunately I don't know how this goes on C#, I never worked with it, I can tell you how to do so in python or C.

If you are new to networking, I would tell you to first get a simple client/server application working. In a very high level, it goes like this (the names in bold are the common functions/methods/class names, so you can google how to use them on your favorite language):

Server side:

- Create a socket, mostly with socket function or class.

- Use a bind function or method to reserve a port to that socket.

- Set the socket to listen state.

- Wait in a loop with accept. Accept will likely to be a blocking operation, so your loop will stay blocked in it, consuming no CPU, until a new connection arrives.

- When a new connection arrives, accept will give a new socket, that will manage the server connection with the client.

- You then call recv to receive data from the new socket.

- The received data needed to be parsed.

- You can send data to the client by calling send.

- When data transfer is finished call close to tell you OS that socket is no longer needed.

Client side:

- Create a socket.

- Call connect with the server information.

- Call send and recv to communicate with the server.

- When data transfer is finished call close to tell you OS that socket is no longer needed.

With this simple model you should be able to make a very simple client server application that sends/receives a string. When you get it working you can try something more complex, but I would advise you to start small :D

Currently working on a scene editor for ORX (http://orx-project.org), using kivy (http://kivy.org).

Text mode marshaling is not very efficient. Typically, you will send byte buffers. Strings in C# (and Java, JavaScript, and may other dynamic languages) are inefficient if you keep changing/splitting/concatenating them.

Even more typically, you'll pre-allocate your buffers as arrays of bytes, and re-use them between operations (with async operations, you have to keep track of which are currently "in use" or not.)

Your marshaling and demarshaling code would typically take a triple of byte array, offset to start of data, and length of data block.

Often, this triple is wrapped in a writable stream subclass.

enum Bool { True, False, FileNotFound };

This topic is closed to new replies.

Advertisement