319 lines
11 KiB
C#
319 lines
11 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace IW4MAdmin
|
|
{
|
|
class Utilities
|
|
{
|
|
//Get string with specified number of spaces -- really only for visual output
|
|
public static String getSpaces(int Num)
|
|
{
|
|
String SpaceString = String.Empty;
|
|
while (Num > 0)
|
|
{
|
|
SpaceString += ' ';
|
|
Num--;
|
|
}
|
|
|
|
return SpaceString;
|
|
}
|
|
|
|
//Sleep for x amount of seconds
|
|
public static void Wait(double time)
|
|
{
|
|
Thread.Sleep((int)Math.Ceiling(time*1000));
|
|
}
|
|
|
|
//Remove words from a space delimited string
|
|
public static String removeWords(String str, int num)
|
|
{
|
|
String newStr = String.Empty;
|
|
String[] tmp = str.Split(' ');
|
|
|
|
for (int i = 0; i < tmp.Length; i++)
|
|
{
|
|
if (i >= num)
|
|
newStr += tmp[i] + ' ';
|
|
}
|
|
|
|
return newStr;
|
|
}
|
|
|
|
public static Player.Permission matchPermission(String str)
|
|
{
|
|
String lookingFor = str.ToLower();
|
|
|
|
for (Player.Permission Perm = Player.Permission.User; Perm < Player.Permission.Owner; Perm++)
|
|
{
|
|
if (lookingFor.Contains(Perm.ToString().ToLower()))
|
|
return Perm;
|
|
}
|
|
|
|
return Player.Permission.Banned;
|
|
}
|
|
|
|
public static String removeNastyChars(String str)
|
|
{
|
|
if (str != null)
|
|
return str.Replace("`", "").Replace("\\", "").Replace("\"", "").Replace("^", "").Replace(""", "''").Replace("&", "&").Replace("\"", "''");
|
|
else
|
|
return String.Empty;
|
|
}
|
|
|
|
public static int GetLineNumber(Exception ex)
|
|
{
|
|
var lineNumber = 0;
|
|
const string lineSearch = ":line ";
|
|
var index = ex.StackTrace.LastIndexOf(lineSearch);
|
|
if (index != -1)
|
|
{
|
|
var lineNumberText = ex.StackTrace.Substring(index + lineSearch.Length);
|
|
if (int.TryParse(lineNumberText, out lineNumber))
|
|
{
|
|
}
|
|
}
|
|
return lineNumber;
|
|
}
|
|
|
|
public static String stripColors(String str)
|
|
{
|
|
return Regex.Replace(str, @"\^[0-9]", "");
|
|
}
|
|
|
|
public static String levelToColor(Player.Permission level)
|
|
{
|
|
switch (level)
|
|
{
|
|
case Player.Permission.Banned:
|
|
return "^1" + Player.Permission.Banned;
|
|
case Player.Permission.Flagged:
|
|
return "^0" + Player.Permission.Flagged;
|
|
case Player.Permission.Owner:
|
|
return "^5" + Player.Permission.Owner;
|
|
case Player.Permission.User:
|
|
return "^2" + Player.Permission.User;
|
|
default:
|
|
return "^3" + level;
|
|
}
|
|
}
|
|
|
|
public static String processMacro(Dictionary<String, Object> Dict, String str)
|
|
{
|
|
MatchCollection Found = Regex.Matches(str, @"\{\{[A-Z]+\}\}", RegexOptions.IgnoreCase);
|
|
foreach (Match M in Found)
|
|
{
|
|
String Match = M.Value;
|
|
String Identifier = M.Value.Substring(2, M.Length - 4);
|
|
String Replacement = Dict[Identifier].ToString();
|
|
str = str.Replace(Match, Replacement);
|
|
}
|
|
|
|
return str;
|
|
}
|
|
|
|
public static Dictionary<String, String> IPFromStatus(String[] players)
|
|
{
|
|
Dictionary<String, String> Dict = new Dictionary<String, String>();
|
|
|
|
if (players == null)
|
|
return null;
|
|
|
|
foreach (String S in players)
|
|
{
|
|
String S2 = S.Trim();
|
|
if (S.Length < 50)
|
|
continue;
|
|
if (Regex.Matches(S2, @"\d+$", RegexOptions.IgnoreCase).Count > 0)
|
|
{
|
|
String[] eachPlayer = S2.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
|
for (int i = 3; i < eachPlayer.Length; i++ )
|
|
{
|
|
if (eachPlayer[i].Split(':').Length > 1)
|
|
{
|
|
Dict.Add(eachPlayer[3], eachPlayer[i].Split(':')[0]);
|
|
break;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
return Dict;
|
|
|
|
}
|
|
|
|
public static String nameHTMLFormatted(Player P)
|
|
{
|
|
switch (P.getLevel())
|
|
{
|
|
case Player.Permission.User:
|
|
return "<span style='color:rgb(121, 194, 97)'>" + P.getName() + "</span>";
|
|
case Player.Permission.Moderator:
|
|
return "<span style='color:#e7b402'>" + P.getName() + "</span>";
|
|
case Player.Permission.Administrator:
|
|
return "<span style='color:#ec82de'>" + P.getName() + "</span>";
|
|
case Player.Permission.SeniorAdmin:
|
|
return "<span style='color:#2eb6bf'>" + P.getName() + "</span>";
|
|
case Player.Permission.Owner | Player.Permission.Creator:
|
|
return "<span style='color:rgb(38,120,230)'>" + P.getName() + "</span>";
|
|
default:
|
|
return "<i>" + P.getName() + "</i>";
|
|
}
|
|
}
|
|
|
|
public static String gametypeLocalized(String input)
|
|
{
|
|
switch (input)
|
|
{
|
|
case "dm":
|
|
return "Deathmatch";
|
|
case "war":
|
|
return "Team Deathmatch";
|
|
case "koth":
|
|
return "Headquarters";
|
|
case "ctf":
|
|
return "Capture The Flag";
|
|
case "dd":
|
|
return "Demolition";
|
|
case "dom":
|
|
return "Domination";
|
|
case "sab":
|
|
return "Sabotage";
|
|
case "sd":
|
|
return "Search & Destroy";
|
|
case "vip":
|
|
return "Very Important Person";
|
|
case "gtnw":
|
|
return "Global Thermonuclear War";
|
|
case "oitc":
|
|
return "One In The Chamber";
|
|
case "arena":
|
|
return "Arena";
|
|
case "dzone":
|
|
return "Drop Zone";
|
|
case "gg":
|
|
return "Gun Game";
|
|
case "snipe":
|
|
return "Sniping";
|
|
case "ss":
|
|
return "Sharp Shooter";
|
|
case "m40a3":
|
|
return "M40A3";
|
|
case "fo":
|
|
return "Face Off";
|
|
case "dmc":
|
|
return "Deathmatch Classic";
|
|
case "killcon":
|
|
return "Kill Confirmed";
|
|
case "oneflag":
|
|
return "One Flag CTF";
|
|
default:
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
public static Dictionary<String, Player> playersFromStatus(String[] Status)
|
|
{
|
|
Dictionary<String, Player> playerDictionary = new Dictionary<String, Player>();
|
|
|
|
if (Status == null) // looks like we didn't get a proper response
|
|
return null;
|
|
|
|
foreach (String S in Status)
|
|
{
|
|
String responseLine = S.Trim();
|
|
|
|
if (Regex.Matches(responseLine, @"\d+$", RegexOptions.IgnoreCase).Count > 0 && responseLine.Length > 72) // its a client line!
|
|
{
|
|
String[] playerInfo = responseLine.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
int cID = -1;
|
|
String cName = stripColors(responseLine.Substring(46, 18)).Trim();
|
|
String npID = responseLine.Substring(29, 17).Trim(); // DONT TOUCH PLZ
|
|
int.TryParse(playerInfo[0], out cID);
|
|
String cIP = responseLine.Substring(72,20).Trim().Split(':')[0];
|
|
|
|
Player P = new Player(cName, npID, cID, cIP);
|
|
|
|
try
|
|
{
|
|
playerDictionary.Add(npID, P);
|
|
}
|
|
|
|
catch(Exception E)
|
|
{
|
|
/// need to handle eventually
|
|
Console.WriteLine("Error handling player add -- " + E.Message);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
return playerDictionary;
|
|
|
|
}
|
|
|
|
public static String DateTimeSQLite(DateTime datetime)
|
|
{
|
|
string dateTimeFormat = "{0}-{1}-{2} {3}:{4}:{5}.{6}";
|
|
return string.Format(dateTimeFormat, datetime.Year, datetime.Month, datetime.Day, datetime.Hour, datetime.Minute, datetime.Second, datetime.Millisecond);
|
|
}
|
|
|
|
public static String timePassed(DateTime start)
|
|
{
|
|
TimeSpan Elapsed = DateTime.Now - start;
|
|
|
|
if (Elapsed.Hours < 1 && Elapsed.Minutes < 60)
|
|
return Elapsed.Minutes + " minutes";
|
|
if (Elapsed.Days < 1 && Elapsed.Hours <= 24)
|
|
return Elapsed.Hours + " hours";
|
|
if (Elapsed.Days <= 365)
|
|
return Elapsed.Days + " days";
|
|
else
|
|
return "a very long time";
|
|
}
|
|
|
|
public static String timesConnected(int connection)
|
|
{
|
|
String Prefix = String.Empty;
|
|
if (connection % 10 > 3 || connection % 10 == 0 || (connection % 100 > 9 && connection % 100 < 19))
|
|
Prefix = "th";
|
|
else
|
|
{
|
|
switch (connection % 10)
|
|
{
|
|
case 1:
|
|
Prefix = "st";
|
|
break;
|
|
case 2:
|
|
Prefix = "nd";
|
|
break;
|
|
case 3:
|
|
Prefix = "rd";
|
|
break;
|
|
}
|
|
}
|
|
|
|
switch (connection)
|
|
{
|
|
case 0:
|
|
case 1:
|
|
return "first";
|
|
case 2:
|
|
return "second";
|
|
case 3:
|
|
return "third";
|
|
case 4:
|
|
return "fourth";
|
|
case 5:
|
|
return "fifth";
|
|
case 100:
|
|
return "One-Hundreth (amazing!)";
|
|
default:
|
|
return connection.ToString() + Prefix;
|
|
}
|
|
}
|
|
}
|
|
}
|