Posted 07 January 2013 - 06:32 AM
so, i'm running a Tekkit server for me and a few friends and we decided we wanted a way to control some things on the server from computers. for example, we have a factory and a fortress an wanted a way to control machines in the factory from a terminal in the fortress. so i wrote the code an it actually worked (after a lot of testing)
but we have now decided to generate a new map and use world edit to port some of the bigger buildings over, (namely the factory and fortress) because the old map was getting a little cramped.
so, here is my problem. all the buildings have been now spaced so far a part from the "central server" that i need to make a booster station to get all the terminals to connect to it. i don't really want to split the code up again into individual "areas" and so far my attempts at a booster/relay station have sort of failed, and this is why i'm here.
the code has 4 main parts:
The main server part; handles password checking and command execution.
The client part; handles the (very basic) UI and some status display parts. consists of 5 user accounts each of which grants access to manage a different facility, the admin account allows management of everything_
The booster station part: handles boosting commands (system will not work without at least 1 of these present)
The status screen part; handles displaying system status in each area (we have a big building with all the status screens in it to see whats going on everywhere at a glance. updates once every 10 seconds or so)
but we have now decided to generate a new map and use world edit to port some of the bigger buildings over, (namely the factory and fortress) because the old map was getting a little cramped.
so, here is my problem. all the buildings have been now spaced so far a part from the "central server" that i need to make a booster station to get all the terminals to connect to it. i don't really want to split the code up again into individual "areas" and so far my attempts at a booster/relay station have sort of failed, and this is why i'm here.
the code has 4 main parts:
The main server part; handles password checking and command execution.
The client part; handles the (very basic) UI and some status display parts. consists of 5 user accounts each of which grants access to manage a different facility, the admin account allows management of everything_
The booster station part: handles boosting commands (system will not work without at least 1 of these present)
The status screen part; handles displaying system status in each area (we have a big building with all the status screens in it to see whats going on everywhere at a glance. updates once every 10 seconds or so)