2021-08-06 12:31:25 +02:00
|
|
|
|
using GTA;
|
|
|
|
|
|
2022-04-06 02:18:24 +02:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
2021-08-06 12:31:25 +02:00
|
|
|
|
using LemonUI;
|
|
|
|
|
using LemonUI.Menus;
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
namespace RageCoop.Client.Menus
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
2021-12-03 20:30:00 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Don't use it!
|
|
|
|
|
/// </summary>
|
2022-05-23 11:10:11 +08:00
|
|
|
|
public class RageCoopMenu
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public ObjectPool MenuPool = new ObjectPool();
|
2021-08-06 12:31:25 +02:00
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public NativeMenu MainMenu = new NativeMenu("RAGECOOP", "MAIN")
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
|
|
|
|
UseMouse = false,
|
2022-05-22 15:55:26 +08:00
|
|
|
|
Alignment = Main.Settings.FlipMenu ? GTA.UI.Alignment.Right : GTA.UI.Alignment.Left
|
2021-08-06 12:31:25 +02:00
|
|
|
|
};
|
2021-09-27 20:28:27 +02:00
|
|
|
|
#region SUB
|
2022-05-30 14:32:38 +08:00
|
|
|
|
public SettingsMenu SubSettings = new SettingsMenu();
|
2021-08-06 12:31:25 +02:00
|
|
|
|
#endregion
|
|
|
|
|
|
2021-09-27 20:28:27 +02:00
|
|
|
|
#region ITEMS
|
2022-05-22 15:55:26 +08:00
|
|
|
|
private readonly NativeItem _usernameItem = new NativeItem("Username") { AltTitle = Main.Settings.Username };
|
|
|
|
|
public readonly NativeItem ServerIpItem = new NativeItem("Server IP") { AltTitle = Main.Settings.LastServerAddress };
|
2022-04-10 14:34:55 +02:00
|
|
|
|
private readonly NativeItem _serverConnectItem = new NativeItem("Connect");
|
|
|
|
|
private readonly NativeItem _aboutItem = new NativeItem("About", "~y~SOURCE~s~~n~" +
|
2022-04-06 02:18:24 +02:00
|
|
|
|
"https://github.com/RAGECOOP~n~" +
|
2021-09-27 20:28:27 +02:00
|
|
|
|
"~y~VERSION~s~~n~" +
|
2021-09-28 16:51:16 +02:00
|
|
|
|
Main.CurrentVersion.Replace("_", ".")) { LeftBadge = new LemonUI.Elements.ScaledTexture("commonmenu", "shop_new_star") };
|
2022-05-22 15:55:26 +08:00
|
|
|
|
|
|
|
|
|
|
2021-09-27 20:28:27 +02:00
|
|
|
|
#endregion
|
2021-08-06 12:31:25 +02:00
|
|
|
|
|
2021-12-03 20:30:00 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Don't use it!
|
|
|
|
|
/// </summary>
|
2022-05-23 11:10:11 +08:00
|
|
|
|
public RageCoopMenu()
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
2022-04-06 02:18:24 +02:00
|
|
|
|
MainMenu.Banner.Color = Color.FromArgb(225, 0, 0, 0);
|
|
|
|
|
MainMenu.Title.Color = Color.FromArgb(255, 165, 0);
|
|
|
|
|
|
2022-04-10 14:34:55 +02:00
|
|
|
|
_usernameItem.Activated += UsernameActivated;
|
2021-08-06 12:31:25 +02:00
|
|
|
|
ServerIpItem.Activated += ServerIpActivated;
|
2022-05-23 16:59:49 +08:00
|
|
|
|
_serverConnectItem.Activated += (sender, item) => { Networking.DisConnectFromServer(Main.Settings.LastServerAddress); };
|
2021-08-06 12:31:25 +02:00
|
|
|
|
|
2021-12-04 21:34:43 +01:00
|
|
|
|
|
2022-04-10 14:34:55 +02:00
|
|
|
|
MainMenu.Add(_usernameItem);
|
2021-08-06 12:31:25 +02:00
|
|
|
|
MainMenu.Add(ServerIpItem);
|
2022-04-10 14:34:55 +02:00
|
|
|
|
MainMenu.Add(_serverConnectItem);
|
2021-08-06 12:31:25 +02:00
|
|
|
|
|
2022-05-27 14:33:33 +08:00
|
|
|
|
MainMenu.AddSubMenu(SubSettings.Menu);
|
|
|
|
|
MainMenu.AddSubMenu(DevToolMenu.Menu);
|
|
|
|
|
MainMenu.AddSubMenu(DebugMenu.Menu);
|
|
|
|
|
|
|
|
|
|
|
2021-08-06 12:31:25 +02:00
|
|
|
|
MenuPool.Add(MainMenu);
|
2022-05-27 14:33:33 +08:00
|
|
|
|
MenuPool.Add(SubSettings.Menu);
|
|
|
|
|
MenuPool.Add(DevToolMenu.Menu);
|
|
|
|
|
MenuPool.Add(DebugMenu.Menu);
|
2022-05-23 11:10:11 +08:00
|
|
|
|
MenuPool.Add(DebugMenu.DiagnosticMenu);
|
2022-05-30 14:32:38 +08:00
|
|
|
|
|
|
|
|
|
MainMenu.Add(_aboutItem);
|
2021-08-06 12:31:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public void UsernameActivated(object a, System.EventArgs b)
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
2022-04-10 14:34:55 +02:00
|
|
|
|
string newUsername = Game.GetUserInput(WindowTitle.EnterMessage20, _usernameItem.AltTitle, 20);
|
2021-08-06 12:31:25 +02:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(newUsername))
|
|
|
|
|
{
|
2022-05-22 15:55:26 +08:00
|
|
|
|
Main.Settings.Username = newUsername;
|
2021-08-06 12:31:25 +02:00
|
|
|
|
Util.SaveSettings();
|
|
|
|
|
|
2022-04-10 14:34:55 +02:00
|
|
|
|
_usernameItem.AltTitle = newUsername;
|
2021-08-06 12:31:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public void ServerIpActivated(object a, System.EventArgs b)
|
2021-08-06 12:31:25 +02:00
|
|
|
|
{
|
|
|
|
|
string newServerIp = Game.GetUserInput(WindowTitle.EnterMessage60, ServerIpItem.AltTitle, 60);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(newServerIp) && newServerIp.Contains(":"))
|
|
|
|
|
{
|
2022-05-22 15:55:26 +08:00
|
|
|
|
Main.Settings.LastServerAddress = newServerIp;
|
2021-08-06 12:31:25 +02:00
|
|
|
|
Util.SaveSettings();
|
|
|
|
|
|
|
|
|
|
ServerIpItem.AltTitle = newServerIp;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 20:52:23 -06:00
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public void InitiateConnectionMenuSetting()
|
2021-09-26 20:52:23 -06:00
|
|
|
|
{
|
2022-05-30 14:32:38 +08:00
|
|
|
|
_usernameItem.Enabled = false;
|
|
|
|
|
ServerIpItem.Enabled = false;
|
|
|
|
|
_serverConnectItem.Enabled = false;
|
2021-09-26 20:52:23 -06:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public void ConnectedMenuSetting()
|
2021-09-26 20:52:23 -06:00
|
|
|
|
{
|
2022-05-30 14:32:38 +08:00
|
|
|
|
_serverConnectItem.Enabled = true;
|
|
|
|
|
_serverConnectItem.Title = "Disconnect";
|
2021-09-26 20:52:23 -06:00
|
|
|
|
MainMenu.Visible = false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-22 15:55:26 +08:00
|
|
|
|
public void DisconnectedMenuSetting()
|
2021-09-26 20:52:23 -06:00
|
|
|
|
{
|
2022-05-30 14:32:38 +08:00
|
|
|
|
_usernameItem.Enabled = true;
|
|
|
|
|
ServerIpItem.Enabled = true;
|
|
|
|
|
_serverConnectItem.Enabled = true;
|
|
|
|
|
_serverConnectItem.Title = "Connect";
|
2021-09-26 20:52:23 -06:00
|
|
|
|
}
|
2021-08-06 12:31:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|