Post by Amelorate on Sept 24, 2014 22:39:26 GMT
So I've rewritten this about 5 times, and instead of rephrasing this over and over getting nothing over I'm just going to write this and see how it turns out. If you don't understand something I will ask and I will answer.
Basically everything uses packets to communicate with each other. A packet is basically a small message from one machine to another. They work in a Key : Content form. The key describes the content. Most packets should be able so you can sorta guess what they do. You should be able to sniff them and send raw packets. I'll explain this later in the post.
An example of a packet would be:
Sniffers should give you all the packets send as they are being sent out. If PDAs will be added, sniffers should be part of a cartridge.
Senders should allow you to create your own packets and send them out. Possibly you should be able to have different tiers of antennas. For example you would have the built in one in a PDA which would cover a mid sized station, while you could have a mounted antenna that can send messages to other stations. Also possibly a repeater antenna which would take all messages it sniffs and sends it again.
If files are ever implemented I also have an idea for how they can be easily sent.
Basically everything uses packets to communicate with each other. A packet is basically a small message from one machine to another. They work in a Key : Content form. The key describes the content. Most packets should be able so you can sorta guess what they do. You should be able to sniff them and send raw packets. I'll explain this later in the post.
An example of a packet would be:
address_1 : 1234567890abcdef An address is always 16 characters and can have 0-9 and a-f.
address_2 : 2134567890abcdef You can include multiple address keys to send it to multiple things. This would be the message logging server.
send_address : 3124567890abcdef The sender of the packet; you in this case. You should be able to modify this string only with modified equipment.
type : text_message type is basically the protocol used for the packet.
message : "Hey bill how how have you been?" type specific keys start at this line.
sender_name : "Jhon John"
Sniffers should give you all the packets send as they are being sent out. If PDAs will be added, sniffers should be part of a cartridge.
Senders should allow you to create your own packets and send them out. Possibly you should be able to have different tiers of antennas. For example you would have the built in one in a PDA which would cover a mid sized station, while you could have a mounted antenna that can send messages to other stations. Also possibly a repeater antenna which would take all messages it sniffs and sends it again.
If files are ever implemented I also have an idea for how they can be easily sent.