split launcherfuncs part 2

This commit is contained in:
Bitl 2019-10-11 07:58:47 -07:00
parent c0d04a9db5
commit 76a3ba21e5
14 changed files with 1663 additions and 1837 deletions

View File

@ -7,6 +7,11 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Reflection;
using System.Linq;
public class ClientScript
{
private static string basedir = "rbxasset://../../../shareddata/charcustom/";
@ -31,86 +36,50 @@ public class ClientScript
public static ScriptGenerator.ScriptType GetTypeFromTag(string tag, string endtag)
{
if (tag.Contains("client") && endtag.Contains("client"))
{
if (tag.Contains("client") && endtag.Contains("client")) {
return ScriptGenerator.ScriptType.Client;
}
else if (tag.Contains("server") && endtag.Contains("server") || tag.Contains("no3d") && endtag.Contains("no3d"))
{
} else if (tag.Contains("server") && endtag.Contains("server") || tag.Contains("no3d") && endtag.Contains("no3d")) {
return ScriptGenerator.ScriptType.Server;
}
else if (tag.Contains("solo") && endtag.Contains("solo"))
{
} else if (tag.Contains("solo") && endtag.Contains("solo")) {
return ScriptGenerator.ScriptType.Solo;
}
else if (tag.Contains("studio") && endtag.Contains("studio"))
{
} else if (tag.Contains("studio") && endtag.Contains("studio")) {
return ScriptGenerator.ScriptType.Studio;
}
else
{
} else {
return ScriptGenerator.ScriptType.None;
}
}
public static string GetRawArgsForType(ScriptGenerator.ScriptType type, string md5s, string luafile)
{
if (type == ScriptGenerator.ScriptType.Client)
{
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
if (type == ScriptGenerator.ScriptType.Client) {
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) {
return "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) {
return "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) {
return "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) {
return "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player'," + GlobalVars.loadtext + "," + md5s + ")";
}
else
{
} else {
return "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
}
else if (type == ScriptGenerator.ScriptType.Server)
{
} else if (type == ScriptGenerator.ScriptType.Server) {
return "dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + "," + md5s + ")";
}
else if (type == ScriptGenerator.ScriptType.Solo)
{
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
} else if (type == ScriptGenerator.ScriptType.Solo) {
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) {
return "dofile('" + luafile + "'); _G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) {
return "dofile('" + luafile + "'); _G.CSSolo(" + GlobalVars.UserID + ",'Player'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) {
return "dofile('" + luafile + "'); _G.CSSolo(0,'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false )
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) {
return "dofile('" + luafile + "'); _G.CSSolo(0,'Player'," + GlobalVars.sololoadtext + ")";
}
else
{
} else {
return "dofile('" + luafile + "'); _G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
}
else if (type == ScriptGenerator.ScriptType.Studio)
{
} else if (type == ScriptGenerator.ScriptType.Studio) {
return "dofile('" + luafile + "');";
}
else
{
} else {
return "";
}
}
@ -122,20 +91,13 @@ public class ClientScript
public static int ConvertIconStringToInt()
{
if (GlobalVars.Custom_Icon_Offline == "BC")
{
if (GlobalVars.Custom_Icon_Offline == "BC") {
return 1;
}
else if (GlobalVars.Custom_Icon_Offline == "TBC")
{
} else if (GlobalVars.Custom_Icon_Offline == "TBC") {
return 2;
}
else if (GlobalVars.Custom_Icon_Offline == "OBC")
{
} else if (GlobalVars.Custom_Icon_Offline == "OBC") {
return 3;
}
else if (GlobalVars.Custom_Icon_Offline == "NBC")
{
} else if (GlobalVars.Custom_Icon_Offline == "NBC") {
return 0;
}
@ -144,29 +106,22 @@ public class ClientScript
public static string GetFolderAndMapName(string source, string seperator = " -")
{
try
{
try {
string result = source.Substring(0, source.IndexOf(seperator));
if (File.Exists(GlobalVars.MapsDir + @"\\" + result + @"\\" + source))
{
if (File.Exists(GlobalVars.MapsDir + @"\\" + result + @"\\" + source)) {
return result + @"\\" + source;
}
else
{
} else {
return "";
}
}
catch (Exception)
{
} catch (Exception) {
return "";
}
}
public static string CompileScript(string code, string tag, string endtag, string mapfile, string luafile, string rbxexe)
{
if (GlobalVars.FixScriptMapMode)
{
if (GlobalVars.FixScriptMapMode) {
ScriptGenerator.GenerateScriptForClient(GetTypeFromTag(tag, endtag), GlobalVars.SelectedClient);
}

View File

@ -7,6 +7,12 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
using System.Linq;
public static class RichTextBoxExtensions
{
public static void AppendText(this RichTextBox box, string text, Color color)
@ -24,9 +30,13 @@ public static class RichTextBoxExtensions
{
public static bool IsRunning(this Process process)
{
try {Process.GetProcessById(process.Id);}
catch (InvalidOperationException) { return false; }
catch (ArgumentException){return false;}
try {
Process.GetProcessById(process.Id);
} catch (InvalidOperationException) {
return false;
} catch (ArgumentException) {
return false;
}
return true;
}
}
@ -35,7 +45,8 @@ public static class RichTextBoxExtensions
{
public static bool Contains(this string source, string toCheck, StringComparison comp)
{
if (source == null) return false;
if (source == null)
return false;
return source.IndexOf(toCheck, comp) >= 0;
}
}

View File

@ -7,6 +7,10 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Security.Cryptography;
using System.Linq;
public class CryptoRandom : RandomNumberGenerator
{
private static RandomNumberGenerator r;

View File

@ -7,6 +7,10 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Runtime.InteropServices;
using System.Linq;
//Discord Rich Presence Integration :D
public class DiscordRpc
{
@ -41,20 +45,30 @@
[System.Serializable]
public struct RichPresence
{
public string state; /* max 128 bytes */
public string details; /* max 128 bytes */
public string state;
/* max 128 bytes */
public string details;
/* max 128 bytes */
public long startTimestamp;
public long endTimestamp;
public string largeImageKey; /* max 32 bytes */
public string largeImageText; /* max 128 bytes */
public string smallImageKey; /* max 32 bytes */
public string smallImageText; /* max 128 bytes */
public string partyId; /* max 128 bytes */
public string largeImageKey;
/* max 32 bytes */
public string largeImageText;
/* max 128 bytes */
public string smallImageKey;
/* max 32 bytes */
public string smallImageText;
/* max 128 bytes */
public string partyId;
/* max 128 bytes */
public int partySize;
public int partyMax;
public string matchSecret; /* max 128 bytes */
public string joinSecret; /* max 128 bytes */
public string spectateSecret; /* max 128 bytes */
public string matchSecret;
/* max 128 bytes */
public string joinSecret;
/* max 128 bytes */
public string spectateSecret;
/* max 128 bytes */
public bool instance;
}

View File

@ -7,6 +7,11 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Reflection;
using System.Linq;
public static class GlobalVars
{
public static string RootPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

View File

@ -7,6 +7,11 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Text;
using System.Runtime.InteropServices;
using System.Linq;
//credit to BLaZiNiX
public class IniFile
{

View File

@ -7,27 +7,9 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.IO;
using System.Diagnostics;
using System.Threading;
using System.Reflection;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.Win32;
using System.Runtime.InteropServices;
using System.Security.Principal;
using System.Linq;
using System.ComponentModel;
using System.Net.Sockets;
using System.Net;
using Mono.Nat;
namespace NovetusShared
{
/// <summary>
/// Description of LauncherFuncs.
/// </summary>
@ -47,71 +29,61 @@ namespace NovetusShared
Decryptline1 = ini.IniReadValue(section, "CloseOnLaunch");
if (string.IsNullOrWhiteSpace(Decryptline1))
{
if (string.IsNullOrWhiteSpace(Decryptline1)) {
ini.IniWriteValue(section, "CloseOnLaunch", GlobalVars.CloseOnLaunch.ToString());
}
Decryptline2 = ini.IniReadValue(section, "UserID");
if (string.IsNullOrWhiteSpace(Decryptline2))
{
if (string.IsNullOrWhiteSpace(Decryptline2)) {
ini.IniWriteValue(section, "UserID", GlobalVars.UserID.ToString());
}
Decryptline3 = ini.IniReadValue(section, "PlayerName");
if (string.IsNullOrWhiteSpace(Decryptline3))
{
if (string.IsNullOrWhiteSpace(Decryptline3)) {
ini.IniWriteValue(section, "PlayerName", GlobalVars.PlayerName.ToString());
}
Decryptline4 = ini.IniReadValue(section, "SelectedClient");
if (string.IsNullOrWhiteSpace(Decryptline4))
{
if (string.IsNullOrWhiteSpace(Decryptline4)) {
ini.IniWriteValue(section, "SelectedClient", GlobalVars.SelectedClient.ToString());
}
Decryptline5 = ini.IniReadValue(section, "Map");
if (string.IsNullOrWhiteSpace(Decryptline5))
{
if (string.IsNullOrWhiteSpace(Decryptline5)) {
ini.IniWriteValue(section, "Map", GlobalVars.Map.ToString());
}
Decryptline6 = ini.IniReadValue(section, "RobloxPort");
if (string.IsNullOrWhiteSpace(Decryptline6))
{
if (string.IsNullOrWhiteSpace(Decryptline6)) {
ini.IniWriteValue(section, "RobloxPort", GlobalVars.RobloxPort.ToString());
}
Decryptline7 = ini.IniReadValue(section, "PlayerLimit");
if (string.IsNullOrWhiteSpace(Decryptline7))
{
if (string.IsNullOrWhiteSpace(Decryptline7)) {
ini.IniWriteValue(section, "PlayerLimit", GlobalVars.PlayerLimit.ToString());
}
Decryptline9 = ini.IniReadValue(section, "ShowHatsOnExtra");
if (string.IsNullOrWhiteSpace(Decryptline9))
{
if (string.IsNullOrWhiteSpace(Decryptline9)) {
ini.IniWriteValue(section, "ShowHatsOnExtra", GlobalVars.Custom_Extra_ShowHats.ToString());
}
Decryptline10 = ini.IniReadValue(section, "UPnP");
if (string.IsNullOrWhiteSpace(Decryptline10))
{
if (string.IsNullOrWhiteSpace(Decryptline10)) {
ini.IniWriteValue(section, "UPnP", GlobalVars.UPnP.ToString());
}
Decryptline11 = ini.IniReadValue(section, "ItemMakerDisableHelpMessage");
if (string.IsNullOrWhiteSpace(Decryptline11))
{
if (string.IsNullOrWhiteSpace(Decryptline11)) {
ini.IniWriteValue(section, "ItemMakerDisableHelpMessage", GlobalVars.DisabledHelp.ToString());
}
@ -190,71 +162,61 @@ namespace NovetusShared
Decryptline1 = ini.IniReadValue(section, "Hat1");
if (string.IsNullOrWhiteSpace(Decryptline1))
{
if (string.IsNullOrWhiteSpace(Decryptline1)) {
ini.IniWriteValue(section, "Hat1", GlobalVars.Custom_Hat1ID_Offline.ToString());
}
Decryptline2 = ini.IniReadValue(section, "Hat2");
if (string.IsNullOrWhiteSpace(Decryptline2))
{
if (string.IsNullOrWhiteSpace(Decryptline2)) {
ini.IniWriteValue(section, "Hat2", GlobalVars.Custom_Hat2ID_Offline.ToString());
}
Decryptline3 = ini.IniReadValue(section, "Hat3");
if (string.IsNullOrWhiteSpace(Decryptline3))
{
if (string.IsNullOrWhiteSpace(Decryptline3)) {
ini.IniWriteValue(section, "Hat3", GlobalVars.Custom_Hat3ID_Offline.ToString());
}
Decryptline16 = ini.IniReadValue(section, "Face");
if (string.IsNullOrWhiteSpace(Decryptline16))
{
if (string.IsNullOrWhiteSpace(Decryptline16)) {
ini.IniWriteValue(section, "Face", GlobalVars.Custom_Face_Offline.ToString());
}
Decryptline17 = ini.IniReadValue(section, "Head");
if (string.IsNullOrWhiteSpace(Decryptline17))
{
if (string.IsNullOrWhiteSpace(Decryptline17)) {
ini.IniWriteValue(section, "Head", GlobalVars.Custom_Head_Offline.ToString());
}
Decryptline18 = ini.IniReadValue(section, "TShirt");
if (string.IsNullOrWhiteSpace(Decryptline18))
{
if (string.IsNullOrWhiteSpace(Decryptline18)) {
ini.IniWriteValue(section, "TShirt", GlobalVars.Custom_T_Shirt_Offline.ToString());
}
Decryptline19 = ini.IniReadValue(section, "Shirt");
if (string.IsNullOrWhiteSpace(Decryptline19))
{
if (string.IsNullOrWhiteSpace(Decryptline19)) {
ini.IniWriteValue(section, "Shirt", GlobalVars.Custom_Shirt_Offline.ToString());
}
Decryptline20 = ini.IniReadValue(section, "Pants");
if (string.IsNullOrWhiteSpace(Decryptline20))
{
if (string.IsNullOrWhiteSpace(Decryptline20)) {
ini.IniWriteValue(section, "Pants", GlobalVars.Custom_Pants_Offline.ToString());
}
Decryptline21 = ini.IniReadValue(section, "Icon");
if (string.IsNullOrWhiteSpace(Decryptline21))
{
if (string.IsNullOrWhiteSpace(Decryptline21)) {
ini.IniWriteValue(section, "Icon", GlobalVars.Custom_Icon_Offline.ToString());
}
Decryptline23 = ini.IniReadValue(section, "Extra");
if (string.IsNullOrWhiteSpace(Decryptline23))
{
if (string.IsNullOrWhiteSpace(Decryptline23)) {
ini.IniWriteValue(section, "Extra", GlobalVars.Custom_Extra.ToString());
}
@ -262,85 +224,73 @@ namespace NovetusShared
Decryptline4 = ini.IniReadValue(section2, "HeadColorID");
if (string.IsNullOrWhiteSpace(Decryptline4))
{
if (string.IsNullOrWhiteSpace(Decryptline4)) {
ini.IniWriteValue(section2, "HeadColorID", GlobalVars.HeadColorID.ToString());
}
Decryptline10 = ini.IniReadValue(section2, "HeadColorString");
if (string.IsNullOrWhiteSpace(Decryptline10))
{
if (string.IsNullOrWhiteSpace(Decryptline10)) {
ini.IniWriteValue(section2, "HeadColorString", GlobalVars.ColorMenu_HeadColor.ToString());
}
Decryptline5 = ini.IniReadValue(section2, "TorsoColorID");
if (string.IsNullOrWhiteSpace(Decryptline5))
{
if (string.IsNullOrWhiteSpace(Decryptline5)) {
ini.IniWriteValue(section2, "TorsoColorID", GlobalVars.TorsoColorID.ToString());
}
Decryptline11 = ini.IniReadValue(section2, "TorsoColorString");
if (string.IsNullOrWhiteSpace(Decryptline11))
{
if (string.IsNullOrWhiteSpace(Decryptline11)) {
ini.IniWriteValue(section2, "TorsoColorString", GlobalVars.ColorMenu_TorsoColor.ToString());
}
Decryptline6 = ini.IniReadValue(section2, "LeftArmColorID");
if (string.IsNullOrWhiteSpace(Decryptline6))
{
if (string.IsNullOrWhiteSpace(Decryptline6)) {
ini.IniWriteValue(section2, "LeftArmColorID", GlobalVars.LeftArmColorID.ToString());
}
Decryptline12 = ini.IniReadValue(section2, "LeftArmColorString");
if (string.IsNullOrWhiteSpace(Decryptline12))
{
if (string.IsNullOrWhiteSpace(Decryptline12)) {
ini.IniWriteValue(section2, "LeftArmColorString", GlobalVars.ColorMenu_LeftArmColor.ToString());
}
Decryptline7 = ini.IniReadValue(section2, "RightArmColorID");
if (string.IsNullOrWhiteSpace(Decryptline7))
{
if (string.IsNullOrWhiteSpace(Decryptline7)) {
ini.IniWriteValue(section2, "RightArmColorID", GlobalVars.RightArmColorID.ToString());
}
Decryptline13 = ini.IniReadValue(section2, "RightArmColorString");
if (string.IsNullOrWhiteSpace(Decryptline13))
{
if (string.IsNullOrWhiteSpace(Decryptline13)) {
ini.IniWriteValue(section2, "RightArmColorString", GlobalVars.ColorMenu_RightArmColor.ToString());
}
Decryptline8 = ini.IniReadValue(section2, "LeftLegColorID");
if (string.IsNullOrWhiteSpace(Decryptline8))
{
if (string.IsNullOrWhiteSpace(Decryptline8)) {
ini.IniWriteValue(section2, "LeftLegColorID", GlobalVars.LeftLegColorID.ToString());
}
Decryptline14 = ini.IniReadValue(section2, "LeftLegColorString");
if (string.IsNullOrWhiteSpace(Decryptline14))
{
if (string.IsNullOrWhiteSpace(Decryptline14)) {
ini.IniWriteValue(section2, "LeftLegColorString", GlobalVars.ColorMenu_LeftLegColor.ToString());
}
Decryptline9 = ini.IniReadValue(section2, "RightLegColorID");
if (string.IsNullOrWhiteSpace(Decryptline9))
{
if (string.IsNullOrWhiteSpace(Decryptline9)) {
ini.IniWriteValue(section2, "RightLegColorID", GlobalVars.RightLegColorID.ToString());
}
Decryptline15 = ini.IniReadValue(section2, "RightLegColorString");
if (string.IsNullOrWhiteSpace(Decryptline15))
{
if (string.IsNullOrWhiteSpace(Decryptline15)) {
ini.IniWriteValue(section2, "RightLegColorString", GlobalVars.ColorMenu_RightLegColor.ToString());
}
@ -348,15 +298,13 @@ namespace NovetusShared
Decryptline22 = ini.IniReadValue(section3, "CharacterID");
if (string.IsNullOrWhiteSpace(Decryptline22))
{
if (string.IsNullOrWhiteSpace(Decryptline22)) {
ini.IniWriteValue(section3, "CharacterID", GlobalVars.CharacterID.ToString());
}
Decryptline24 = ini.IniReadValue(section3, "ExtraSelectionIsHat");
if (string.IsNullOrWhiteSpace(Decryptline24))
{
if (string.IsNullOrWhiteSpace(Decryptline24)) {
ini.IniWriteValue(section3, "ExtraSelectionIsHat", GlobalVars.Custom_Extra_SelectionIsHat.ToString());
}
@ -568,8 +516,7 @@ namespace NovetusShared
string line1;
string Decryptline1, Decryptline2, Decryptline3, Decryptline4, Decryptline5, Decryptline6, Decryptline7, Decryptline9, Decryptline10, Decryptline11;
using(StreamReader reader = new StreamReader(clientpath))
{
using (StreamReader reader = new StreamReader(clientpath)) {
line1 = reader.ReadLine();
}
@ -617,40 +564,24 @@ namespace NovetusShared
CryptoRandom random = new CryptoRandom();
int randomID = 0;
int randIDmode = random.Next(0, 7);
if (randIDmode == 0)
{
if (randIDmode == 0) {
randomID = random.Next(0, 99);
}
else if (randIDmode == 1)
{
} else if (randIDmode == 1) {
randomID = random.Next(0, 999);
}
else if (randIDmode == 2)
{
} else if (randIDmode == 2) {
randomID = random.Next(0, 9999);
}
else if (randIDmode == 3)
{
} else if (randIDmode == 3) {
randomID = random.Next(0, 99999);
}
else if (randIDmode == 4)
{
} else if (randIDmode == 4) {
randomID = random.Next(0, 999999);
}
else if (randIDmode == 5)
{
} else if (randIDmode == 5) {
randomID = random.Next(0, 9999999);
}
else if (randIDmode == 6)
{
} else if (randIDmode == 6) {
randomID = random.Next(0, 99999999);
}
else if (randIDmode == 7)
{
} else if (randIDmode == 7) {
randomID = random.Next();
}
//2147483647 is max id.
GlobalVars.UserID = randomID;
}
}
}

View File

@ -7,6 +7,13 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Text.RegularExpressions;
using System.Linq;
/*
* so, in order for us to generate a good script, we have to:
* - specify the script header that gives us our setting adjustments
@ -36,12 +43,9 @@
public static string GetScriptFuncForType(ScriptType type, string client)
{
string rbxexe = "";
if (GlobalVars.LegacyMode == true)
{
if (GlobalVars.LegacyMode == true) {
rbxexe = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\clients\\" + client + @"\\RobloxApp.exe";
}
else
{
} else {
rbxexe = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\clients\\" + client + @"\\RobloxApp_client.exe";
}
@ -49,86 +53,50 @@
string md5script = SecurityFuncs.CalculateMD5(GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\content\\scripts\\" + GlobalVars.ScriptName + ".lua");
string md5exe = SecurityFuncs.CalculateMD5(rbxexe);
string md5s = "'" + md5exe + "','" + md5dir + "','" + md5script + "'";
if (type == ScriptType.Client)
{
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
if (type == ScriptType.Client) {
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) {
return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) {
return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) {
return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) {
return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player'," + GlobalVars.loadtext + "," + md5s + ")";
}
else
{
} else {
return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.loadtext + "," + md5s + ")";
}
}
else if (type == ScriptType.Server)
{
} else if (type == ScriptType.Server) {
return "_G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + "," + md5s + ")";
}
else if (type == ScriptType.Solo)
{
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
} else if (type == ScriptType.Solo) {
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) {
return "_G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) {
return "_G.CSSolo(" + GlobalVars.UserID + ",'Player'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
} else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) {
return "_G.CSSolo(0,'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false )
{
} else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) {
return "_G.CSSolo(0,'Player'," + GlobalVars.sololoadtext + ")";
}
else
{
} else {
return "_G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "'," + GlobalVars.sololoadtext + ")";
}
}
else if (type == ScriptType.Studio)
{
} else if (type == ScriptType.Studio) {
return "";
}
else
{
} else {
return "";
}
}
public static string GetNameForType(ScriptType type)
{
if (type == ScriptType.Client)
{
if (type == ScriptType.Client) {
return "Client";
}
else if (type == ScriptType.Server)
{
} else if (type == ScriptType.Server) {
return "Server";
}
else if (type == ScriptType.Solo)
{
} else if (type == ScriptType.Solo) {
return "Play Solo";
}
else if (type == ScriptType.Studio)
{
} else if (type == ScriptType.Studio) {
return "Studio";
}
else
{
} else {
return "";
}
}

View File

@ -7,6 +7,18 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Diagnostics;
using System.Threading;
using System.Security.Cryptography;
using System.Text.RegularExpressions;
using Microsoft.Win32;
using System.Runtime.InteropServices;
using System.Security.Principal;
using System.Linq;
using System.ComponentModel;
/// <summary>
/// Description of SecurityFuncs.
/// </summary>
@ -69,97 +81,68 @@
public static bool checkClientMD5(string client)
{
if (GlobalVars.AdminMode != true)
{
if (GlobalVars.AlreadyHasSecurity != true)
{
if (GlobalVars.AdminMode != true) {
if (GlobalVars.AlreadyHasSecurity != true) {
string rbxexe = "";
if (GlobalVars.LegacyMode == true)
{
if (GlobalVars.LegacyMode == true) {
rbxexe = GlobalVars.BasePath + "\\clients\\" + client + "\\RobloxApp.exe";
}
else
{
} else {
rbxexe = GlobalVars.BasePath + "\\clients\\" + client + "\\RobloxApp_client.exe";
}
using (var md5 = MD5.Create())
{
using (var stream = File.OpenRead(rbxexe))
{
using (var md5 = MD5.Create()) {
using (var stream = File.OpenRead(rbxexe)) {
byte[] hash = md5.ComputeHash(stream);
string clientMD5 = BitConverter.ToString(hash).Replace("-", "");
if (clientMD5.Equals(GlobalVars.SelectedClientMD5))
{
if (clientMD5.Equals(GlobalVars.SelectedClientMD5)) {
return true;
}
else
{
} else {
return false;
}
}
}
}
else
{
} else {
return true;
}
}
else
{
} else {
return true;
}
}
public static bool checkScriptMD5(string client)
{
if (GlobalVars.AdminMode != true)
{
if (GlobalVars.AlreadyHasSecurity != true)
{
if (GlobalVars.AdminMode != true) {
if (GlobalVars.AlreadyHasSecurity != true) {
string rbxscript = GlobalVars.BasePath + "\\clients\\" + client + "\\content\\scripts\\" + GlobalVars.ScriptName + ".lua";
using (var md5 = MD5.Create())
{
using (var stream = File.OpenRead(rbxscript))
{
using (var md5 = MD5.Create()) {
using (var stream = File.OpenRead(rbxscript)) {
byte[] hash = md5.ComputeHash(stream);
string clientMD5 = BitConverter.ToString(hash).Replace("-", "");
if (clientMD5.Equals(GlobalVars.SelectedClientScriptMD5))
{
if (clientMD5.Equals(GlobalVars.SelectedClientScriptMD5)) {
return true;
}
else
{
} else {
return false;
}
}
}
}
else
{
} else {
return true;
}
}
else
{
} else {
return true;
}
}
public static string CalculateMD5(string filename)
{
using (var md5 = MD5.Create())
{
using (var stream = File.OpenRead(filename))
{
using (var md5 = MD5.Create()) {
using (var stream = File.OpenRead(filename)) {
return BitConverter.ToString(md5.ComputeHash(stream)).Replace("-", "");
}
}
}
public static bool IsElevated
{
get
{
public static bool IsElevated {
get {
return WindowsIdentity.GetCurrent().Owner.IsWellKnown(WellKnownSidType.BuiltinAdministratorsSid);
}
}
@ -172,8 +155,7 @@
public static void RenameWindow(Process exe, ScriptGenerator.ScriptType type)
{
if (GlobalVars.AlreadyHasSecurity != true)
{
if (GlobalVars.AlreadyHasSecurity != true) {
int time = 500;
BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += (obj, e) => WorkerDoWork(exe, type, time, worker, GlobalVars.SelectedClient);
@ -183,31 +165,23 @@
private static void WorkerDoWork(Process exe, ScriptGenerator.ScriptType type, int time, BackgroundWorker worker, string clientname)
{
if (exe.IsRunning() == true)
{
while (exe.IsRunning() == true)
{
if (exe.IsRunning() != true)
{
if (exe.IsRunning() == true) {
while (exe.IsRunning() == true) {
if (exe.IsRunning() != true) {
worker.DoWork -= (obj, e) => WorkerDoWork(exe, type, time, worker, clientname);
worker.CancelAsync();
worker.Dispose();
break;
}
if (type == ScriptGenerator.ScriptType.Client)
{
if (type == ScriptGenerator.ScriptType.Client) {
SetWindowText(exe.MainWindowHandle, "Novetus " + GlobalVars.Version + " - " + clientname + " " + ScriptGenerator.GetNameForType(type) + " [" + GlobalVars.IP + ":" + GlobalVars.RobloxPort + "]" + RandomStringTitle());
}
else if (type == ScriptGenerator.ScriptType.Server || type == ScriptGenerator.ScriptType.Solo || type == ScriptGenerator.ScriptType.Studio)
{
} else if (type == ScriptGenerator.ScriptType.Server || type == ScriptGenerator.ScriptType.Solo || type == ScriptGenerator.ScriptType.Studio) {
SetWindowText(exe.MainWindowHandle, "Novetus " + GlobalVars.Version + " - " + clientname + " " + ScriptGenerator.GetNameForType(type) + " [" + GlobalVars.Map + "]" + RandomStringTitle());
}
Thread.Sleep(time);
}
}
else
{
} else {
Thread.Sleep(time);
RenameWindow(exe, type);
}

View File

@ -7,6 +7,10 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Linq;
public static class SplashReader
{
private static string RandomSplash()
@ -14,18 +18,12 @@ public static class SplashReader
string[] splashes = File.ReadAllLines(GlobalVars.ConfigDir + "\\splashes.txt");
string splash = "";
try
{
try {
splash = splashes[new CryptoRandom().Next(0, splashes.Length - 1)];
}
catch (Exception)
{
try
{
} catch (Exception) {
try {
splash = splashes[0];
}
catch (Exception)
{
} catch (Exception) {
splash = "missingno";
return splash;
}
@ -46,68 +44,37 @@ public static class SplashReader
DateTime today = DateTime.Now;
string splash = "";
if (IsTheSameDay(today, new DateTime(today.Year,12,24)) || IsTheSameDay(today, new DateTime(today.Year,12,25)))
{
if (IsTheSameDay(today, new DateTime(today.Year, 12, 24)) || IsTheSameDay(today, new DateTime(today.Year, 12, 25))) {
splash = "Merry Christmas!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,12,31)) || IsTheSameDay(today, new DateTime(today.Year,1,1)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 12, 31)) || IsTheSameDay(today, new DateTime(today.Year, 1, 1))) {
splash = "Happy New Year!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,10,31)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 31))) {
splash = "Happy Halloween!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,6,10)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 6, 10))) {
splash = "Happy Birthday, Bitl!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,8,27)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 8, 27))) {
splash = "Happy Birthday, ROBLOX!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,10,27)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 27))) {
splash = "Happy Birthday, Novetus!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,2,15)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 2, 15))) {
splash = "Happy Birthday, Carrot!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,6,14)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 6, 14))) {
splash = "Happy Birthday, MAO!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,9,15)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 9, 15))) {
splash = "Happy Birthday, Coke!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,5,17)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 5, 17))) {
splash = "Happy Birthday, TheLivingBee!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,10,9)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 9))) {
splash = "Happy Leif Erikson Day! HINGA DINGA DURGEN!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,10,10)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 10))) {
splash = "I used to wonder what friendship could be!";
}
else if (IsTheSameDay(today, new DateTime(today.Year,4,20)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 4, 20))) {
splash = "4/20 lol";
}
else if (IsTheSameDay(today, new DateTime(today.Year,4,27)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 4, 27))) {
splash = "fluttershy is best pone";
}
else if (IsTheSameDay(today, new DateTime(today.Year,2,11)))
{
} else if (IsTheSameDay(today, new DateTime(today.Year, 2, 11))) {
splash = "RIP Erik Cassel";
}
else
{
} else {
splash = RandomSplash();
}

View File

@ -7,6 +7,11 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
public static class TextLineRemover
{
public static void RemoveTextLines(IList<string> linesToRemove, string filename, string tempFilename)
@ -17,27 +22,24 @@ public static class TextLineRemover
DateTime startTime = DateTime.Now;
// Read file
using (var sr = new StreamReader(filename))
{
using (var sr = new StreamReader(filename)) {
// Write new file
using (var sw = new StreamWriter(tempFilename))
{
using (var sw = new StreamWriter(tempFilename)) {
// Read lines
string line;
while ((line = sr.ReadLine()) != null)
{
while ((line = sr.ReadLine()) != null) {
lineNumber++;
// Look for text to remove
if (!ContainsString(line, linesToRemove))
{
if (!ContainsString(line, linesToRemove)) {
// Keep lines that does not match
sw.WriteLine(line);
}
else
{
} else {
// Ignore lines that DO match
linesRemoved++;
InvokeOnRemovedLine(new RemovedLineArgs { RemovedLine = line, RemovedLineNumber = lineNumber});
InvokeOnRemovedLine(new RemovedLineArgs {
RemovedLine = line,
RemovedLineNumber = lineNumber
});
}
}
}
@ -50,13 +52,16 @@ public static class TextLineRemover
// Final calculations
DateTime endTime = DateTime.Now;
InvokeOnFinished(new FinishedArgs {LinesRemoved = linesRemoved, TotalLines = lineNumber, TotalTime = endTime.Subtract(startTime)});
InvokeOnFinished(new FinishedArgs {
LinesRemoved = linesRemoved,
TotalLines = lineNumber,
TotalTime = endTime.Subtract(startTime)
});
}
private static bool ContainsString(string line, IEnumerable<string> linesToRemove)
{
foreach (var lineToRemove in linesToRemove)
{
foreach (var lineToRemove in linesToRemove) {
if (line.Contains(lineToRemove))
return true;
}
@ -69,13 +74,15 @@ public static class TextLineRemover
public static void InvokeOnFinished(FinishedArgs args)
{
Finished handler = OnFinished;
if (handler != null) handler(null, args);
if (handler != null)
handler(null, args);
}
public static void InvokeOnRemovedLine(RemovedLineArgs args)
{
RemovedLine handler = OnRemovedLine;
if (handler != null) handler(null, args);
if (handler != null)
handler(null, args);
}
}

View File

@ -7,6 +7,12 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Linq;
public static class TreeNodeHelper
{
public static void ListDirectory(TreeView treeView, string path)
@ -28,15 +34,14 @@ public static class TreeNodeHelper
public static TreeNode SearchTreeView(string p_sSearchTerm, TreeNodeCollection p_Nodes)
{
foreach (TreeNode node in p_Nodes)
{
foreach (TreeNode node in p_Nodes) {
if (node.Text == p_sSearchTerm)
return node;
if (node.Nodes.Count > 0)
{
if (node.Nodes.Count > 0) {
TreeNode child = SearchTreeView(p_sSearchTerm, node.Nodes);
if (child != null) return child;
if (child != null)
return child;
}
}
@ -45,29 +50,22 @@ public static class TreeNodeHelper
public static string GetFolderNameFromPrefix(string source, string seperator = " -")
{
try
{
try {
string result = source.Substring(0, source.IndexOf(seperator));
if (Directory.Exists(GlobalVars.MapsDir + @"\\" + result))
{
if (Directory.Exists(GlobalVars.MapsDir + @"\\" + result)) {
return result + @"\\";
}
else
{
} else {
return "";
}
}
catch (Exception)
{
} catch (Exception) {
return "";
}
}
public static void CopyNodes(TreeNodeCollection oldcollection, TreeNodeCollection newcollection)
{
foreach(TreeNode node in oldcollection)
{
foreach (TreeNode node in oldcollection) {
newcollection.Add((TreeNode)node.Clone());
}
}
@ -75,8 +73,7 @@ public static class TreeNodeHelper
public static List<TreeNode> GetAllNodes(this TreeView _self)
{
List<TreeNode> result = new List<TreeNode>();
foreach (TreeNode child in _self.Nodes)
{
foreach (TreeNode child in _self.Nodes) {
result.AddRange(child.GetAllNodes());
}
return result;
@ -86,8 +83,7 @@ public static class TreeNodeHelper
{
List<TreeNode> result = new List<TreeNode>();
result.Add(_self);
foreach (TreeNode child in _self.Nodes)
{
foreach (TreeNode child in _self.Nodes) {
result.AddRange(child.GetAllNodes());
}
return result;

View File

@ -7,12 +7,15 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Linq;
using Mono.Nat;
public static class UPnP
{
public static void InitUPnP(EventHandler<DeviceEventArgs> DeviceFound, EventHandler<DeviceEventArgs> DeviceLost)
{
if (GlobalVars.UPnP == true)
{
if (GlobalVars.UPnP == true) {
NatUtility.DeviceFound += DeviceFound;
NatUtility.DeviceLost += DeviceLost;
NatUtility.StartDiscovery();
@ -21,12 +24,10 @@ public static class UPnP
public static void StartUPnP(INatDevice device, Protocol protocol, int port)
{
if (GlobalVars.UPnP == true)
{
if (GlobalVars.UPnP == true) {
int map = device.GetSpecificMapping(protocol, port).PublicPort;
if (map == -1)
{
if (map == -1) {
device.CreatePortMap(new Mapping(protocol, port, port));
}
}
@ -34,12 +35,10 @@ public static class UPnP
public static void StopUPnP(INatDevice device, Protocol protocol, int port)
{
if (GlobalVars.UPnP == true)
{
if (GlobalVars.UPnP == true) {
int map = device.GetSpecificMapping(protocol, port).PublicPort;
if (map != -1)
{
if (map != -1) {
device.DeletePortMap(new Mapping(protocol, port, port));
}
}

View File

@ -7,6 +7,16 @@
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
using System.Threading;
using System.Text;
using System.Linq;
using System.Net.Sockets;
using System.Net;
//made by aksakalli
public class SimpleHTTPServer
{
@ -92,8 +102,7 @@
private HttpListener _listener;
private int _port;
public int Port
{
public int Port {
get { return _port; }
private set { }
}
@ -137,15 +146,11 @@
_listener = new HttpListener();
_listener.Prefixes.Add("http://*:" + _port.ToString() + "/");
_listener.Start();
while (true)
{
try
{
while (true) {
try {
HttpListenerContext context = _listener.GetContext();
Process(context);
}
catch (Exception)
{
} catch (Exception) {
}
}
@ -172,12 +177,9 @@
string filename = context.Request.Url.AbsolutePath;
filename = filename.Substring(1);
if (string.IsNullOrEmpty(filename))
{
foreach (string indexFile in _indexFiles)
{
if (File.Exists(Path.Combine(_rootDirectory, indexFile)))
{
if (string.IsNullOrEmpty(filename)) {
foreach (string indexFile in _indexFiles) {
if (File.Exists(Path.Combine(_rootDirectory, indexFile))) {
filename = indexFile;
break;
}
@ -186,14 +188,11 @@
filename = Path.Combine(_rootDirectory, filename);
if (File.Exists(filename))
{
try
{
if (File.Exists(filename)) {
try {
var ext = new FileInfo(filename);
if (ext.Extension == ".php")
{
if (ext.Extension == ".php") {
string output = ProcessPhpPage(GlobalVars.ConfigDir + "\\php\\php.exe", filename);
byte[] input = ASCIIEncoding.UTF8.GetBytes(output);
//Adding permanent http response headers
@ -205,9 +204,7 @@
context.Response.OutputStream.Write(input, 0, input.Length);
context.Response.StatusCode = (int)HttpStatusCode.OK;
context.Response.OutputStream.Flush();
}
else
{
} else {
Stream input = new FileStream(filename, FileMode.Open);
//Adding permanent http response headers
string mime;
@ -225,17 +222,12 @@
context.Response.StatusCode = (int)HttpStatusCode.OK;
context.Response.OutputStream.Flush();
}
}
catch (Exception)
{
} catch (Exception) {
context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
}
}
else
{
if (context.Request.HttpMethod.Equals("GET") && filename.Contains("bodycolors.rbxm", StringComparison.OrdinalIgnoreCase))
{
} else {
if (context.Request.HttpMethod.Equals("GET") && filename.Contains("bodycolors.rbxm", StringComparison.OrdinalIgnoreCase)) {
string output = WebServerGenerator.GenerateBodyColorsXML();
byte[] input = ASCIIEncoding.UTF8.GetBytes(output);
context.Response.ContentType = "text/xml";
@ -243,9 +235,7 @@
context.Response.OutputStream.Write(input, 0, input.Length);
context.Response.StatusCode = (int)HttpStatusCode.OK;
context.Response.OutputStream.Flush();
}
else
{
} else {
context.Response.StatusCode = (int)HttpStatusCode.NotFound;
}
}