IW4M-Admin/SharedLibary/Event.cs

127 lines
3.4 KiB
C#
Raw Normal View History

2015-03-08 17:20:10 -04:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace SharedLibrary
2015-03-08 17:20:10 -04:00
{
public class Chat
{
public Chat(Player O, String M, DateTime D)
{
Origin = O;
Message = M;
Time = D;
}
public String timeString()
{
return Time.ToShortTimeString();
}
public Player Origin { get; private set; }
public String Message { get; private set; }
public DateTime Time { get; private set; }
}
public class Event
2015-03-08 17:20:10 -04:00
{
public enum GType
{
//FROM SERVER
Connect,
Disconnect,
Say,
Kill,
Death,
MapChange,
MapEnd,
2015-03-08 17:20:10 -04:00
//FROM ADMIN
Broadcast,
Tell,
Kick,
Ban,
2015-03-08 17:20:10 -04:00
Unknown,
}
public Event(GType t, string d, Player O, Player T, Server S)
{
Type = t;
Data = d;
Origin = O;
Target = T;
Owner = S;
}
public Command isValidCMD(List<Command> list)
{
if (this.Data.Substring(0, 1) == "!")
{
string[] cmd = this.Data.Substring(1, this.Data.Length - 1).Split(' ');
foreach (Command C in list)
{
if (C.Name == cmd[0].ToLower() || C.Alias == cmd[0].ToLower())
2015-03-08 17:20:10 -04:00
return C;
}
return null;
}
else
return null;
}
public static Event requestEvent(String[] line, Server SV)
{
#if DEBUG == false
2015-03-08 17:20:10 -04:00
try
#endif
2015-03-08 17:20:10 -04:00
{
String eventType = line[0].Substring(line[0].Length - 1);
eventType = eventType.Trim();
if (eventType == "J")
return new Event(GType.Connect, null, SV.clientFromEventLine(line, 2), null, SV);
2015-03-08 17:20:10 -04:00
if (eventType == "Q")
return new Event(GType.Disconnect, null, SV.clientFromEventLine(line, 2), null, SV);
2015-03-08 17:20:10 -04:00
if (eventType == "K")
return new Event(GType.Kill, line[9], SV.clientFromEventLine(line, 6), SV.clientFromEventLine(line, 2), SV);
2015-03-08 17:20:10 -04:00
if (line[0].Substring(line[0].Length - 3).Trim() == "say")
{
Regex rgx = new Regex("[^a-zA-Z0-9 -! -_]");
string message = rgx.Replace(line[4], "");
return new Event(GType.Say, Utilities.removeNastyChars(message), SV.clientFromEventLine(line, 2), null, SV);
2015-03-08 17:20:10 -04:00
}
if (eventType == ":")
return new Event(GType.MapEnd, line[0], new Player("WORLD", "WORLD", 0, 0), null, null);
2015-03-08 17:20:10 -04:00
if (line[0].Split('\\').Length > 5) // blaze it
return new Event(GType.MapChange, line[0], new Player("WORLD", "WORLD", 0, 0), null, null);
2015-03-08 17:20:10 -04:00
return null;
}
#if DEBUG == false
2015-03-08 17:20:10 -04:00
catch (Exception E)
{
SV.Log.Write("Error requesting event " + E.Message, Log.Level.Debug);
return null;
}
#endif
2015-03-08 17:20:10 -04:00
}
public GType Type;
public string Data; // Data is usually the message sent by player
public Player Origin;
public Player Target;
public Server Owner;
}
}