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