508 lines
20 KiB
C#
508 lines
20 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using IWshRuntimeLibrary;
|
|
using System.Diagnostics;
|
|
using System.Windows.Forms;
|
|
using System.Net;
|
|
using System.IO;
|
|
using DiscordRPC;
|
|
namespace ARCHBLOXLauncherGUI
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
private void CreateShortcut()
|
|
{
|
|
object shDesktop = (object)"Desktop";
|
|
WshShell shell = new WshShell();
|
|
string shortcutAddress = (string)shell.SpecialFolders.Item(ref shDesktop) + @"\ARCHBLOX Launcher.lnk";
|
|
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutAddress);
|
|
shortcut.Description = "The launcher for ARCHBLOX Player.";
|
|
shortcut.TargetPath = ARCHBLOXLauncherGUI.Extensions.GetExecutablePath();
|
|
shortcut.Save();
|
|
}
|
|
bool exitafterarg = false;
|
|
bool lockanims = true;
|
|
bool rbxl = false;
|
|
private DiscordRpcClient client;
|
|
bool ingame = false;
|
|
bool hosting = false;
|
|
private static WebClient wc = new WebClient();
|
|
static byte[] raw = wc.DownloadData("https://archblox.com/client/version.txt");
|
|
static string webData = Encoding.UTF8.GetString(raw);
|
|
static string version_string = webData;
|
|
static string folderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"Archblx\", @"Versions\");
|
|
static string clientPath = Path.Combine(folderPath, version_string + @"\");
|
|
static string filePath = Path.Combine(clientPath, "ArchbloxPlayerBeta.exe");
|
|
void slideOutJoinBox(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
int x = JoinBox.Location.X;
|
|
JoinBox.Location = new Point(x + 10, JoinBox.Location.Y);
|
|
|
|
if (x > 358)
|
|
{
|
|
lockanims = false;
|
|
AnimationHandler_SlideOutJoinBox.Stop();
|
|
}
|
|
}
|
|
void slideInJoinBox(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
int x = JoinBox.Location.X;
|
|
JoinBox.Location = new Point(x - 10, JoinBox.Location.Y);
|
|
|
|
if (x < 30)
|
|
{
|
|
lockanims = false;
|
|
AnimationHandler_SlideInJoinBox.Stop();
|
|
}
|
|
}
|
|
void slideOutHostBox(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
int x = HostBox.Location.X;
|
|
HostBox.Location = new Point(x + 10, HostBox.Location.Y);
|
|
|
|
if (x > 358)
|
|
{
|
|
lockanims = false;
|
|
AnimationHandler_SlideOutHostBox.Stop();
|
|
}
|
|
}
|
|
void slideInHostBox(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
int x = HostBox.Location.X;
|
|
HostBox.Location = new Point(x - 10, HostBox.Location.Y);
|
|
if (x < 30)
|
|
{
|
|
lockanims = false;
|
|
AnimationHandler_SlideInHostBox.Stop();
|
|
}
|
|
}
|
|
void slideOutBackBTNJoin(object sender, EventArgs e)
|
|
{
|
|
int y = BackBTN_Join.Location.Y;
|
|
BackBTN_Join.Location = new Point(BackBTN_Join.Location.X, y - 8);
|
|
|
|
if (y < -25)
|
|
{
|
|
AnimationHandler_SlideOutBackBTNJoin.Stop();
|
|
}
|
|
}
|
|
void slideInBackBTNJoin(object sender, EventArgs e)
|
|
{
|
|
int y = BackBTN_Join.Location.Y;
|
|
BackBTN_Join.Location = new Point(BackBTN_Join.Location.X, y + 8);
|
|
|
|
if (y > 10)
|
|
{
|
|
AnimationHandler_SlideInBackBTNJoin.Stop();
|
|
}
|
|
}
|
|
void slideOutBackBTNHost(object sender, EventArgs e)
|
|
{
|
|
int y = BackBTN_Host.Location.Y;
|
|
BackBTN_Host.Location = new Point(BackBTN_Host.Location.X, y - 8);
|
|
|
|
if (y < -25)
|
|
{
|
|
AnimationHandler_SlideOutBackBTNHost.Stop();
|
|
}
|
|
}
|
|
void slideInBackBTNHost(object sender, EventArgs e)
|
|
{
|
|
int y = BackBTN_Host.Location.Y;
|
|
BackBTN_Host.Location = new Point(BackBTN_Host.Location.X, y + 8);
|
|
|
|
if (y > 10)
|
|
{
|
|
AnimationHandler_SlideInBackBTNHost.Stop();
|
|
}
|
|
}
|
|
void slideInButtons(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
UpdateBTN.Location = new Point(UpdateBTN.Location.X + 8, UpdateBTN.Location.Y);
|
|
JoinBTN.Location = new Point(UpdateBTN.Location.X, JoinBTN.Location.Y);
|
|
HostBTN.Location = new Point(UpdateBTN.Location.X, HostBTN.Location.Y);
|
|
if (UpdateBTN.Location.X > 10)
|
|
{
|
|
AnimationHandler_SlideInButtons.Stop();
|
|
lockanims = false;
|
|
}
|
|
}
|
|
void slideOutButtons(object sender, EventArgs e)
|
|
{
|
|
lockanims = true;
|
|
UpdateBTN.Location = new Point(UpdateBTN.Location.X - 8, UpdateBTN.Location.Y);
|
|
JoinBTN.Location = new Point(UpdateBTN.Location.X, JoinBTN.Location.Y);
|
|
HostBTN.Location = new Point(UpdateBTN.Location.X, HostBTN.Location.Y);
|
|
if (UpdateBTN.Location.X < -278)
|
|
{
|
|
lockanims = false;
|
|
AnimationHandler_SlideOutButtons.Stop();
|
|
}
|
|
}
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
CreateShortcut();
|
|
var lastword = "";
|
|
var info1 = "";
|
|
var info2 = "";
|
|
string[] args = ARCHBLOXProtocol.SharedVariables.Arguments.Split('/');
|
|
foreach (var word in args)
|
|
{
|
|
if (lastword == "host") {
|
|
exitafterarg = true;
|
|
lastword = "stop";
|
|
string[] info = word.Split('|');
|
|
foreach (var word2 in info)
|
|
{
|
|
if (info1 == "") {
|
|
info1 = word2;
|
|
} else {
|
|
info2 = word2;
|
|
}
|
|
}
|
|
if (info1 == "" || info2 == "")
|
|
{
|
|
MessageBox.Show("Paramaters are invalid. Please try again. (ID: 500)", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
Environment.Exit(0);
|
|
}
|
|
var pProcess = new Process();
|
|
hosting = true;
|
|
pProcess.StartInfo.FileName = filePath;
|
|
pProcess.StartInfo.Arguments = "-a \"http://www.morblox.us/\" -j \"http://www.morblox.us/game/gameserver.php?port=" + info1 + "&rbxl=" + info2 + "\" -t \"1\"";
|
|
pProcess.StartInfo.UseShellExecute = false;
|
|
pProcess.StartInfo.RedirectStandardOutput = true;
|
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
|
pProcess.StartInfo.CreateNoWindow = false;
|
|
pProcess.Start();
|
|
MessageBox.Show("Starting game server on port " + info1 + " using " + info2, "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
if (lastword == "join")
|
|
{
|
|
exitafterarg = true;
|
|
lastword = "stop";
|
|
string[] info = word.Split('|');
|
|
foreach (var word2 in info)
|
|
{
|
|
if (info1 == "")
|
|
{
|
|
info1 = word2;
|
|
}
|
|
else
|
|
{
|
|
info2 = word2;
|
|
}
|
|
}
|
|
if (info1 == "" || info2 == "") {
|
|
MessageBox.Show("Paramaters are invalid. Please try again. (ID: 500)", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
Environment.Exit(0);
|
|
}
|
|
var pProcess = new Process();
|
|
hosting = true;
|
|
pProcess.StartInfo.FileName = filePath;
|
|
pProcess.StartInfo.Arguments = "-a \"http://www.morblox.us/\" -j \"http://www.morblox.us/game/join.ashx?port=" + info1 + "&ip=" + info2 + "\" -t \"1\"";
|
|
pProcess.StartInfo.UseShellExecute = false;
|
|
pProcess.StartInfo.RedirectStandardOutput = true;
|
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
|
pProcess.StartInfo.CreateNoWindow = false;
|
|
pProcess.Start();
|
|
MessageBox.Show("Joining " + info2 + ":" + info1, "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
if (word == "install")
|
|
{
|
|
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
|
form2.Show();
|
|
}
|
|
if (word == "") { } else
|
|
{
|
|
lastword = word;
|
|
}
|
|
}
|
|
|
|
if (exitafterarg == true)
|
|
{
|
|
Environment.Exit(0);
|
|
}
|
|
|
|
|
|
AnimationHandler_SlideOutHostBox.Tick += new EventHandler(slideOutHostBox);
|
|
AnimationHandler_SlideInHostBox.Tick += new EventHandler(slideInHostBox);
|
|
|
|
AnimationHandler_SlideOutJoinBox.Tick += new EventHandler(slideOutJoinBox);
|
|
AnimationHandler_SlideInJoinBox.Tick += new EventHandler(slideInJoinBox);
|
|
|
|
AnimationHandler_SlideOutBackBTNHost.Tick += new EventHandler(slideOutBackBTNHost);
|
|
AnimationHandler_SlideInBackBTNHost.Tick += new EventHandler(slideInBackBTNHost);
|
|
|
|
AnimationHandler_SlideOutBackBTNJoin.Tick += new EventHandler(slideOutBackBTNJoin);
|
|
AnimationHandler_SlideInBackBTNJoin.Tick += new EventHandler(slideInBackBTNJoin);
|
|
|
|
AnimationHandler_SlideOutButtons.Tick += new EventHandler(slideOutButtons);
|
|
AnimationHandler_SlideInButtons.Tick += new EventHandler(slideInButtons);
|
|
|
|
AnimationHandler_SlideInButtons.Start();
|
|
|
|
client = new DiscordRpcClient("996030605106090006");
|
|
client.Initialize();
|
|
client.SetPresence(new RichPresence()
|
|
{
|
|
Details = "Launcher",
|
|
State = "Browsing through the menus...",
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "launcher",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
string phrase = textBox2.Text;
|
|
string[] words = phrase.Split('.');
|
|
|
|
foreach (var word in words)
|
|
{
|
|
if (word == "rbxl") {
|
|
rbxl = true;
|
|
} else {
|
|
rbxl = false;
|
|
}
|
|
}
|
|
if (!System.IO.File.Exists(filePath)) {
|
|
DialogResult res = MessageBox.Show("You need to install the latest version of ARCHBLOX to host. Would you like to install it?", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
|
if (res == DialogResult.Yes)
|
|
{
|
|
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
|
form2.Show();
|
|
}
|
|
}
|
|
else if (textBox1.Text == "" || textBox2.Text == "") {
|
|
MessageBox.Show("Please fill in all of the text fields.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
else if (rbxl == false) {
|
|
MessageBox.Show("Please use a valid RBXL.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
else {
|
|
void ProcessExitHandler(object sender, EventArgs args)
|
|
{
|
|
hosting = false;
|
|
if (ingame == true)
|
|
{
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Playing a Game",
|
|
State = "on " + serverip.Text + ":" + serverport.Text,
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "ingame",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
}
|
|
else
|
|
{
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Launcher",
|
|
State = "Browsing through the menus...",
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "launcher",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
}
|
|
}
|
|
var pProcess = new Process();
|
|
hosting = true;
|
|
pProcess.StartInfo.FileName = filePath;
|
|
pProcess.StartInfo.Arguments = "-a \"http://www.morblox.us/\" -j \"http://www.morblox.us/game/gameserver.php?port=" + textBox1.Text + "&rbxl=" + textBox2.Text + "\" -t \"1\"";
|
|
pProcess.StartInfo.UseShellExecute = false;
|
|
pProcess.StartInfo.RedirectStandardOutput = true;
|
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
|
pProcess.StartInfo.CreateNoWindow = false;
|
|
pProcess.Start();
|
|
pProcess.EnableRaisingEvents = true;
|
|
pProcess.Exited += new EventHandler(ProcessExitHandler);
|
|
var random = new Random();
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Hosting",
|
|
State = textBox2.Text,
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "host",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
MessageBox.Show("Starting game server on port " + textBox1.Text + " using " + textBox2.Text, "ARCHBLOX", MessageBoxButtons.OK , MessageBoxIcon.Information);
|
|
}
|
|
}
|
|
|
|
private void button2_Click(object sender, EventArgs e)
|
|
{
|
|
if (!System.IO.File.Exists(filePath))
|
|
{
|
|
DialogResult res = MessageBox.Show("You need to install the latest version of ARCHBLOX to join " + serverip.Text + ":" + serverport.Text + ". Would you like to install it?", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
|
if (res == DialogResult.Yes)
|
|
{
|
|
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
|
form2.Show();
|
|
}
|
|
}
|
|
else if (serverip.Text == "" || serverport.Text == "")
|
|
{
|
|
MessageBox.Show("Please fill in all of the text fields.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
else
|
|
{
|
|
void ProcessExitHandler(object sender, EventArgs args)
|
|
{
|
|
ingame = false;
|
|
if (hosting == true)
|
|
{
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Hosting",
|
|
State = textBox2.Text,
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "host",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
}
|
|
else
|
|
{
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Launcher",
|
|
State = "Browsing through the menus...",
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "launcher",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
});
|
|
}
|
|
}
|
|
var pProcess = new Process();
|
|
ingame = true;
|
|
pProcess.StartInfo.FileName = filePath;
|
|
pProcess.StartInfo.Arguments = "-a \"http://www.morblox.us/\" -j \"http://www.morblox.us/game/join.ashx?port=" + serverport.Text + "&ip=" + serverip.Text + "\" -t \"1\"";
|
|
pProcess.StartInfo.UseShellExecute = false;
|
|
pProcess.StartInfo.RedirectStandardOutput = true;
|
|
pProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
|
|
pProcess.StartInfo.CreateNoWindow = false;
|
|
pProcess.Start();
|
|
pProcess.EnableRaisingEvents = true;
|
|
pProcess.Exited += new EventHandler(ProcessExitHandler);
|
|
client.SetPresence(new DiscordRPC.RichPresence()
|
|
{
|
|
Details = "Playing a Game",
|
|
State = "on " + serverip.Text + ":" + serverport.Text,
|
|
Timestamps = Timestamps.Now,
|
|
Assets = new Assets()
|
|
{
|
|
LargeImageKey = "ingame",
|
|
SmallImageKey = "archblox",
|
|
}
|
|
}); ;
|
|
MessageBox.Show("Joining " + serverip.Text + ":" + serverport.Text, "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
}
|
|
|
|
private void button3_Click(object sender, EventArgs e)
|
|
{
|
|
OpenFileDialog dialog = new OpenFileDialog();
|
|
dialog.Title = "Choose a RBXL...";
|
|
dialog.AddExtension = true;
|
|
dialog.Filter = "Place File (*.rbxl)| *.rbxl";
|
|
if (DialogResult.OK == dialog.ShowDialog())
|
|
{
|
|
string destFile = Path.Combine(clientPath, @"Content\", Path.GetFileName(dialog.FileName));
|
|
System.IO.File.Copy(dialog.FileName, destFile, true);
|
|
textBox2.Text = Path.GetFileName(dialog.FileName);
|
|
}
|
|
}
|
|
|
|
private void label1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void label4_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
private void Form1_HelpButtonClicked(Object sender, CancelEventArgs e)
|
|
{
|
|
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
|
form2.Show();
|
|
}
|
|
|
|
private void Form1_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void JoinBTN_Click(object sender, EventArgs e)
|
|
{
|
|
if (lockanims == false)
|
|
{
|
|
AnimationHandler_SlideOutButtons.Start();
|
|
AnimationHandler_SlideInJoinBox.Start();
|
|
AnimationHandler_SlideInBackBTNJoin.Start();
|
|
}
|
|
}
|
|
|
|
private void UpdateBTN_Click(object sender, EventArgs e)
|
|
{
|
|
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
|
form2.Show();
|
|
}
|
|
|
|
private void BackBTN_Join_Click(object sender, EventArgs e)
|
|
{
|
|
if (lockanims == false) {
|
|
AnimationHandler_SlideInButtons.Start();
|
|
AnimationHandler_SlideOutJoinBox.Start();
|
|
AnimationHandler_SlideOutBackBTNJoin.Start();
|
|
}
|
|
}
|
|
|
|
private void BackBTN_Host_Click(object sender, EventArgs e)
|
|
{
|
|
if (lockanims == false)
|
|
{
|
|
AnimationHandler_SlideInButtons.Start();
|
|
AnimationHandler_SlideOutHostBox.Start();
|
|
AnimationHandler_SlideOutBackBTNHost.Start();
|
|
}
|
|
}
|
|
|
|
private void HostBTN_Click(object sender, EventArgs e)
|
|
{
|
|
if (lockanims == false)
|
|
{
|
|
AnimationHandler_SlideOutButtons.Start();
|
|
AnimationHandler_SlideInHostBox.Start();
|
|
AnimationHandler_SlideInBackBTNHost.Start();
|
|
}
|
|
}
|
|
}
|
|
} |