Update Networking docs and put publics on top
This commit is contained in:
parent
ec0d54bb2f
commit
56ff2536b9
@ -9,25 +9,66 @@ using UnityEngine.Networking;
|
||||
/// </summary>
|
||||
public class Client : MonoBehaviour {
|
||||
|
||||
NetworkClient NetClient;
|
||||
private NetworkClient NetClient;
|
||||
private bool Running = false;
|
||||
|
||||
private static Client Singleton;
|
||||
|
||||
/// <summary>
|
||||
/// Creates the client and sets it as the signleton.
|
||||
/// </summary>
|
||||
public Client() {
|
||||
Singleton = this;
|
||||
}
|
||||
|
||||
// Use this for initialization
|
||||
void Start () {
|
||||
// Static interface for usage outside of Client
|
||||
|
||||
/// <summary>
|
||||
/// Will launch the client and attempt to connect to the server.
|
||||
/// Returns false if client is already running, otherwise true.
|
||||
///
|
||||
/// Generally instead of this you should use <see cref="NetworkEstablisher.StartClient(string, int)"/>
|
||||
/// </summary>
|
||||
/// <param name="ip"></param>
|
||||
/// <param name="port"></param>
|
||||
/// <returns>Weather the launch was successful or not.</returns>
|
||||
public static bool Launch(string ip, int port) {
|
||||
return Singleton.LaunchClient(ip, port);
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update () {
|
||||
/// <summary>
|
||||
/// Send messages to the server if the connection is active.
|
||||
/// If client is not active, this will return false, otherwise true.
|
||||
/// </summary>
|
||||
/// <param name="msgType"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <returns>Weather the send was successful or not.</returns>
|
||||
public static bool Send(short msgType, MessageBase message) {
|
||||
if (Singleton.Running) {
|
||||
Singleton.NetClient.Send(msgType, message);
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Launches the client at given IP and port.
|
||||
/// <summary>
|
||||
/// Returns if the client is running or not.
|
||||
/// This is independant weather the client is connected or not.
|
||||
/// </summary>
|
||||
/// <returns>Weather the client is running or not</returns>
|
||||
public static bool IsRunning() {
|
||||
return Singleton.Running;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns if the client is connected or not.
|
||||
/// </summary>
|
||||
/// <returns>Weather the client is connected or not.</returns>
|
||||
public static bool IsConnected() {
|
||||
return Singleton.NetClient.isConnected;
|
||||
}
|
||||
|
||||
private bool LaunchClient(string ip, int port) {
|
||||
if (Running) {
|
||||
@ -58,8 +99,6 @@ public class Client : MonoBehaviour {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Handles custom packets
|
||||
|
||||
private void HandlePacket(NetworkMessage msg) {
|
||||
switch (msg.msgType) {
|
||||
case (PktType.TextMessage):
|
||||
@ -99,50 +138,4 @@ public class Client : MonoBehaviour {
|
||||
Running = false;
|
||||
}
|
||||
|
||||
// Static interface for usage outside of Client
|
||||
|
||||
/// <summary>
|
||||
/// Will launch the client and attempt to connect to the server.
|
||||
/// Returns false if client is already running, otherwise true.
|
||||
/// </summary>
|
||||
/// <param name="ip"></param>
|
||||
/// <param name="port"></param>
|
||||
/// <returns></returns>
|
||||
public static bool Launch(string ip, int port) {
|
||||
return Singleton.LaunchClient(ip, port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Send messages to the server if the connection is active.
|
||||
/// If client is not active, this will return false, otherwise true.
|
||||
/// </summary>
|
||||
/// <param name="msgType"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <returns></returns>
|
||||
public static bool Send(short msgType, MessageBase message) {
|
||||
if (Singleton.Running) {
|
||||
Singleton.NetClient.Send(msgType, message);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns if the client is running or not.
|
||||
/// This is independant weather the client is connected or not.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static bool isRunning() {
|
||||
return Singleton.Running;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns if the client is connected or not.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static bool isConnected() {
|
||||
return Singleton.NetClient.isConnected;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ public class TextMessage : MessageBase {
|
||||
/// <summary>
|
||||
/// Create a TextMessage containing the message to be sent.
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
/// <param name="message">Message to be sent.</param>
|
||||
public TextMessage(string message) {
|
||||
this.Message = message;
|
||||
}
|
||||
|
@ -10,14 +10,26 @@ using UnityEngine.UI;
|
||||
* */
|
||||
public class NetworkEstablisher : MonoBehaviour {
|
||||
|
||||
/// <summary>
|
||||
/// Input field for the IP to which connect to.
|
||||
/// </summary>
|
||||
[Tooltip("Required field only if StartClient() is used.")]
|
||||
public InputField IPField;
|
||||
/// <summary>
|
||||
/// Input field for the client port
|
||||
/// </summary>
|
||||
[Tooltip("Required field only if StartClient() is used.")]
|
||||
public InputField ClientPortField;
|
||||
|
||||
/// <summary>
|
||||
/// Input field for the server port
|
||||
/// </summary>
|
||||
[Tooltip("Required field only if StartServer() is used.")]
|
||||
public InputField ServerPortField;
|
||||
|
||||
/// <summary>
|
||||
/// World Root node, a GameObject.
|
||||
/// </summary>
|
||||
public GameObject WorldRoot;
|
||||
|
||||
// Use this for initialization
|
||||
@ -46,11 +58,9 @@ public class NetworkEstablisher : MonoBehaviour {
|
||||
});
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update () {
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts the client using given input fields. Otherwise functions like <see cref="StartClient(string, int)"/>.
|
||||
/// </summary>
|
||||
public void StartClient() {
|
||||
string IP = IPField.text;
|
||||
if (IP.Length == 0) {
|
||||
@ -64,11 +74,20 @@ public class NetworkEstablisher : MonoBehaviour {
|
||||
StartClient(IP, Port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts the client with the given ip and port.
|
||||
/// This initializes the Client component and launches it properly.
|
||||
/// </summary>
|
||||
/// <param name="ip">IP used to connect.</param>
|
||||
/// <param name="port">port of the host.</param>
|
||||
public void StartClient(string ip, int port) {
|
||||
WorldRoot.AddComponent<Client>();
|
||||
Client.Launch(ip, port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts the server using given input fields. Otherwise functions like <see cref="StartServer(int)"/>.
|
||||
/// </summary>
|
||||
public void StartServer() {
|
||||
string PortText = ServerPortField.text;
|
||||
int Port = 3935;
|
||||
@ -78,6 +97,11 @@ public class NetworkEstablisher : MonoBehaviour {
|
||||
StartServer(Port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts the server using given port.
|
||||
/// This initializes the port and launches the server properly.
|
||||
/// </summary>
|
||||
/// <param name="port">port used for the server.</param>
|
||||
public void StartServer(int port) {
|
||||
WorldRoot.AddComponent<Server>();
|
||||
Server.Launch(port);
|
||||
|
@ -7,14 +7,68 @@ public class Server : MonoBehaviour {
|
||||
|
||||
private static Server Singleton;
|
||||
|
||||
// Use this for initialization
|
||||
void Start () {
|
||||
/// <summary>
|
||||
/// Creates the server-component, and sets the singleton as itself.
|
||||
/// </summary>
|
||||
public Server() {
|
||||
Singleton = this;
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update () {
|
||||
// Static methods for public usage
|
||||
|
||||
/// <summary>
|
||||
/// Launches the server if not already launched.
|
||||
/// Returns false if the server was already launched, true otherwise.
|
||||
///
|
||||
/// Generally instead of this you should use <see cref="NetworkEstablisher.StartServer(int)"/>
|
||||
/// </summary>
|
||||
/// <param name="port">Port used to host the server.</param>
|
||||
/// <returns>Weather the launch was successful.</returns>
|
||||
public static bool Launch(int port) {
|
||||
return Singleton.LaunchServer(port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to send a message to all clients who are listening.
|
||||
/// Returns false if server wasn't active, true otherwise.
|
||||
/// </summary>
|
||||
/// <param name="msgType">Type of the message being sent.</param>
|
||||
/// <param name="message">The message being sent.</param>
|
||||
/// <returns>Weather sending was successful.</returns>
|
||||
public static bool SendToAll(short msgType, MessageBase message) {
|
||||
if (NetworkServer.active) {
|
||||
NetworkServer.SendToAll(msgType, message);
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to send a message to a specific client.
|
||||
/// Returns false if server wasn't active, true otherwise.
|
||||
/// </summary>
|
||||
/// <param name="clientID">ID of the client which to send this message.</param>
|
||||
/// <param name="msgType">Type of message being sent.</param>
|
||||
/// <param name="message">The message being sent.</param>
|
||||
/// <returns>Weather sending was successful.</returns>
|
||||
public static bool Send(int clientID, short msgType, MessageBase message) {
|
||||
if (NetworkServer.active) {
|
||||
NetworkServer.SendToClient(clientID, msgType, message);
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Is the server currently active.
|
||||
/// </summary>
|
||||
/// <returns>Weather the server is running or not</returns>
|
||||
public static bool IsRunning() {
|
||||
return NetworkServer.active;
|
||||
}
|
||||
|
||||
private bool LaunchServer(int port) {
|
||||
@ -46,8 +100,6 @@ public class Server : MonoBehaviour {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Custon packet handler
|
||||
|
||||
private void HandlePacket(NetworkMessage msg) {
|
||||
|
||||
switch(msg.msgType) {
|
||||
@ -79,57 +131,4 @@ public class Server : MonoBehaviour {
|
||||
Debug.LogError("Encountered a network error on server");
|
||||
Term.Println("Encountered a network error on server");
|
||||
}
|
||||
|
||||
// Static methods for public usage
|
||||
|
||||
/// <summary>
|
||||
/// Launches the server if not already launched.
|
||||
/// Returns false if the server was already launched, true otherwise.
|
||||
/// </summary>
|
||||
/// <param name="port"></param>
|
||||
/// <returns></returns>
|
||||
public static bool Launch(int port) {
|
||||
return Singleton.LaunchServer(port);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to send a message to all clients who are listening.
|
||||
/// Returns false if server wasn't active, true otherwise.
|
||||
/// </summary>
|
||||
/// <param name="msgType"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <returns></returns>
|
||||
public static bool SendToAll(short msgType, MessageBase message) {
|
||||
if (NetworkServer.active) {
|
||||
NetworkServer.SendToAll(msgType, message);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to send a message to a specific client.
|
||||
/// Returns false if server wasn't active, true otherwise.
|
||||
/// </summary>
|
||||
/// <param name="clientID"></param>
|
||||
/// <param name="msgType"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <returns></returns>
|
||||
public static bool Send(int clientID, short msgType, MessageBase message) {
|
||||
if (NetworkServer.active) {
|
||||
NetworkServer.SendToClient(clientID, msgType, message);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Is the server currently active.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static bool isRunning() {
|
||||
return NetworkServer.active;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user