diff --git a/README.md b/README.md index 7b1b358..b750f06 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ # srmp-public -Currently working on going through the code, adding notes and fixing some of the bugs in my free time. -I adore this mod and want to give both credit and a huge thank you to Saty for the corigional creation of the mod. +This is the code for the Slime Rancher MultiPlayer Mod (SRMP). - -I am slowly working my way through the list of bugs as seen below. +The suer manual can be found [here](/manual.md). -# Bug Status +## Bug Status Notes: Bug list compiled from last known bug list of version 1488 FIXED: @@ -32,15 +30,20 @@ Known Bugs: - Upgrades sometimes does not get applied to All players - #Notes Status -Files in the following folders still need notes: -- Custom UI +##Current Status +@Twirlbug +- Currently working on going through the code, adding notes and fixing some of the bugs in my free time. +- I adore this mod and want to give both credit and a huge thank you to Saty for the origional creation of the mod. +I am slowly working my way through the list of bugs as seen above. + +###Notation Status +Files in the following folders still need more notation: - Networking - Packets - Patches ---------------------------------------------------------------------------------- -Origional File From SatyPardus +--------------------------------------------------------------------------------- +##Origional File From SatyPardus It's bad. It's really really bad. diff --git a/SRMP/Custom UI/MultiplayerUI.cs b/SRMP/Custom UI/MultiplayerUI.cs index 12c2643..542a9cb 100644 --- a/SRMP/Custom UI/MultiplayerUI.cs +++ b/SRMP/Custom UI/MultiplayerUI.cs @@ -56,6 +56,9 @@ public class MultiplayerUI : SRSingleton Hosting, } + /// + /// Creation of gui with side panel is last display state + /// public override void Awake() { base.Awake(); @@ -69,6 +72,9 @@ public class MultiplayerUI : SRSingleton username = Globals.Username; } + /// + /// Update of panel display + /// private void Update() { if (lastCodeUse > 0f) @@ -94,7 +100,9 @@ public class MultiplayerUI : SRSingleton menuOpen = menuOpen < 2 ? 2 : 1; } } - + /// + /// Handle draw event of the gui + /// private void OnGUI() { //verify on a window that the menu can be drawn on @@ -138,6 +146,9 @@ public class MultiplayerUI : SRSingleton } } + /// + /// display for the function keyps section of the gui + /// private void FunctionKeys() { if (menuOpen != 0) @@ -156,7 +167,10 @@ public class MultiplayerUI : SRSingleton } GUILayout.EndHorizontal(); } - + /// + /// Sets the window display for collapsed + /// Only activated if the id is the id for the window + /// private void ClosedWindow(int id) { if (id != 1) return; @@ -165,6 +179,10 @@ public class MultiplayerUI : SRSingleton GUI.DragWindow(new Rect(0, 0, 10000, 10000)); } + /// + /// Sets the window display for summary mode + /// Only activated if the id is the id for the window + /// private void MiniWindow(int id) { if (id != 1) return; @@ -232,7 +250,10 @@ public class MultiplayerUI : SRSingleton } GUI.DragWindow(new Rect(0, 0, 10000, 10000)); } - + /// + /// Sets the window display for full display mode + /// Only activated if the id is the id for the window + /// private void MultiplayerWindow(int id) { if (id != 1) return; @@ -286,6 +307,9 @@ public class MultiplayerUI : SRSingleton GUI.DragWindow(new Rect(0, 0, 10000, 10000)); } + /// + /// Display the active server info part of the gui + /// private void ServerGUI() { GUILayout.Label("You are the server"); @@ -308,7 +332,9 @@ public class MultiplayerUI : SRSingleton } GUILayout.EndScrollView(); } - + /// + /// Display the client info part of the gui + /// private void ClientGUI() { GUILayout.Label("You are a client"); @@ -326,7 +352,11 @@ public class MultiplayerUI : SRSingleton } GUILayout.EndScrollView(); } - + /// + /// Display the connection information of the gui + /// this section includes user information, + /// how to and other imbedded sections for handling display + /// private void ConnectGUI() { GUILayout.Label("Username: " + Globals.Username); @@ -407,6 +437,9 @@ public class MultiplayerUI : SRSingleton } } + /// + /// Display the hosting info part of the gui + /// private void HostGUI() { GUILayout.Label("Username: " + Globals.Username); @@ -434,7 +467,9 @@ public class MultiplayerUI : SRSingleton } } } - + /// + /// Display the Help info part of the gui with instructions for hosting + /// private void HelpGUI() { switch (help) @@ -458,7 +493,9 @@ public class MultiplayerUI : SRSingleton break; } } - + /// + /// Display the Error summaries in the gui + /// private void ErrorGUI() { switch (error) @@ -511,7 +548,9 @@ public class MultiplayerUI : SRSingleton break; } } - + /// + /// Display the Current user information + /// private void UsernameGUI() { GUILayout.BeginHorizontal(); @@ -533,14 +572,18 @@ public class MultiplayerUI : SRSingleton } } } - + /// + /// Saves the gui settings for the user + /// private void SaveSettings() { PlayerPrefs.SetString("SRMP_Username", Globals.Username); PlayerPrefs.SetString("SRMP_IP", ipaddress); PlayerPrefs.GetString("SRMP_Port", port); } - + /// + /// Handles connection resonces display when connection is lost from the server + /// public void ConnectResponse(ConnectError connectError, string message = "") { lastCodeUse = 0f;