Minecraft Server Sleep Manager
This project is a Windows console application that enables a Minecraft server to be on-demand. The application achieves this by listening to activity on the server's port. Upon starting the application it begins listening to the server's port and will only start the server when someone pings it or tries to connect to it. After starting the server the application will scan established connections every 30 minutes. If no established connections are found (i.e. no players playing on the server) it will shut down the server and continue where it began (listening to server's port).
The application is programmed for the use of a Minecraft server but can possibly be applied to other types of servers. It reads information about the server from the standard Minecraft server configuration file. The stopping of the server is performed via RCON and thus follows Minecraft's RCON protocol. This would all likely need to be changed if the application were to be used for another type of server.
Idea and technology
I got the idea for this project when I was hosting a Minecraft server for me and my friends on a spare computer. I didn't want the computer to be running the server and using resources unless it was absolutely needed. This also gave me a reliable way of restarting the server to make sure it was always performing at its best.
The application is pretty basic and coded in just one C++ file. It uses the Windows libraries ws2_32 (Windows Sockets 2) and iphlpapi.
Biggest challenges
This project is the first I've programmed using Windows libraries and that was the biggest challenge. Reliably spawning a process, creating sockets for listening to and sending network activity as well as retrieving a list of the computer's endpoints.
Sending an RCON packet was also a challenge but one that I managed to overcome easily with documentation about Minecraft's RCON protocol.