2016-12-24 05:55:17 +01:00
|
|
|
package net.ME1312.SubServers.Bungee.Host;
|
2016-12-05 04:21:04 +01:00
|
|
|
|
2016-12-24 05:55:17 +01:00
|
|
|
import net.ME1312.SubServers.Bungee.Library.Exception.InvalidServerException;
|
|
|
|
import net.ME1312.SubServers.Bungee.Network.Client;
|
|
|
|
import net.ME1312.SubServers.Bungee.Network.ClientHandler;
|
2016-12-05 04:21:04 +01:00
|
|
|
import net.md_5.bungee.BungeeServerInfo;
|
|
|
|
import net.md_5.bungee.api.ChatColor;
|
|
|
|
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Server Class
|
|
|
|
*
|
|
|
|
* @author ME1312
|
|
|
|
*/
|
|
|
|
public class Server extends BungeeServerInfo implements ClientHandler {
|
|
|
|
private Client client = null;
|
2016-12-20 00:31:01 +01:00
|
|
|
private String motd;
|
|
|
|
private boolean restricted;
|
|
|
|
private boolean hidden;
|
2016-12-05 04:21:04 +01:00
|
|
|
|
2016-12-19 01:38:02 +01:00
|
|
|
public Server(String name, InetSocketAddress address, String motd, boolean hidden, boolean restricted) throws InvalidServerException {
|
2016-12-05 04:21:04 +01:00
|
|
|
super(name, address, ChatColor.translateAlternateColorCodes('&', motd), restricted);
|
|
|
|
if (name.contains(" ")) throw new InvalidServerException("Server names cannot have spaces: " + name);
|
2016-12-20 00:31:01 +01:00
|
|
|
this.motd = motd;
|
|
|
|
this.restricted = restricted;
|
|
|
|
this.hidden = hidden;
|
2016-12-05 04:21:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Client getSubDataClient() {
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void linkSubDataClient(Client client) {
|
|
|
|
if (this.client == null) {
|
|
|
|
client.setHandler(this);
|
|
|
|
this.client = client;
|
|
|
|
} else if (client == null) {
|
|
|
|
this.client = null;
|
|
|
|
} else throw new IllegalStateException("A SubData Client is already linked to Server: " + getName());
|
|
|
|
}
|
2016-12-20 00:31:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the server is hidden from players
|
|
|
|
*
|
|
|
|
* @return Hidden Status
|
|
|
|
*/
|
|
|
|
public boolean isHidden() {
|
|
|
|
return hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set if the server is hidden from players
|
|
|
|
*
|
|
|
|
* @param value Value
|
|
|
|
*/
|
|
|
|
public void setHidden(boolean value) {
|
|
|
|
this.hidden = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the MOTD of the Server
|
|
|
|
*
|
|
|
|
* @return Server MOTD
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public String getMotd() {
|
|
|
|
return motd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the MOTD of the Server
|
|
|
|
*
|
|
|
|
* @param value Value
|
|
|
|
*/
|
|
|
|
public void setMotd(String value) {
|
|
|
|
this.motd = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets if the Server is Restricted
|
|
|
|
*
|
|
|
|
* @return Restricted Status
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean isRestricted() {
|
|
|
|
return restricted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets if the Server is Restricted
|
|
|
|
*
|
|
|
|
* @param value Value
|
|
|
|
*/
|
|
|
|
public void setRestricted(boolean value) {
|
|
|
|
this.restricted = value;
|
|
|
|
}
|
2016-12-05 04:21:04 +01:00
|
|
|
}
|