mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-01 00:35:29 +02:00
43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
package com.minelittlepony.jumpingcastle.api;
|
|
|
|
/**
|
|
* Targeting method to control who receives a message when sent.
|
|
* Senders choose whether a message is received on other clients, just the server, or both.
|
|
*/
|
|
public enum Target {
|
|
/**
|
|
* Message is ignored by the server and forwarded to connected clients.
|
|
*/
|
|
CLIENTS(true, false),
|
|
/**
|
|
* Only the server should process this message. Clients ignore it.
|
|
*/
|
|
SERVER(false, true),
|
|
/**
|
|
* The server should process this message and forward it to all available clients.
|
|
*/
|
|
SERVER_AND_CLIENTS(true, true);
|
|
|
|
private final boolean clients;
|
|
|
|
private final boolean servers;
|
|
|
|
Target(boolean clients, boolean servers) {
|
|
this.clients = clients;
|
|
this.servers = servers;
|
|
}
|
|
|
|
/**
|
|
* True if messages with this targeting must be processed by the client.
|
|
*/
|
|
public boolean isClients() {
|
|
return clients;
|
|
}
|
|
|
|
/**
|
|
* True if messages with this targeting must be processed by the server.
|
|
*/
|
|
public boolean isServers() {
|
|
return servers;
|
|
}
|
|
}
|