35e7f57156
changed login alias to li (duplicate) fixed crashing bug in generic repo fixed anonymous name in access to web console
92 lines
2.2 KiB
C#
92 lines
2.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using SharedLibraryCore.Objects;
|
|
|
|
namespace SharedLibraryCore
|
|
{
|
|
public class GameEvent
|
|
{
|
|
public enum EventType
|
|
{
|
|
//FROM SERVER
|
|
Start,
|
|
Stop,
|
|
Connect,
|
|
// this is for IW5 compatibility
|
|
Join,
|
|
Disconnect,
|
|
Say,
|
|
MapChange,
|
|
MapEnd,
|
|
|
|
//FROM ADMIN
|
|
Broadcast,
|
|
Tell,
|
|
Kick,
|
|
Ban,
|
|
Remote,
|
|
Unknown,
|
|
|
|
//FROM PLAYER
|
|
Report,
|
|
Flag,
|
|
Command,
|
|
|
|
// FROM GAME
|
|
Script,
|
|
Kill,
|
|
Damage,
|
|
Death,
|
|
}
|
|
|
|
public GameEvent(EventType t, string d, Player O, Player T, Server S)
|
|
{
|
|
Type = t;
|
|
Data = d?.Trim();
|
|
Origin = O;
|
|
Target = T;
|
|
Owner = S;
|
|
OnProcessed = new ManualResetEventSlim();
|
|
}
|
|
|
|
public GameEvent()
|
|
{
|
|
OnProcessed = new ManualResetEventSlim();
|
|
}
|
|
|
|
public static GameEvent TranferWaiter(EventType newType, GameEvent e)
|
|
{
|
|
var newEvent = new GameEvent()
|
|
{
|
|
Data = e.Data,
|
|
Extra = e.Extra,
|
|
Message = e.Message,
|
|
OnProcessed = e.OnProcessed,
|
|
Origin = e.Origin,
|
|
Owner = e.Owner,
|
|
Remote = e.Remote,
|
|
Target = e.Target,
|
|
Type = newType
|
|
};
|
|
|
|
// hack: prevent the previous event from completing until this one is done
|
|
e.OnProcessed = new ManualResetEventSlim();
|
|
|
|
return newEvent;
|
|
}
|
|
|
|
public EventType Type;
|
|
public string Data; // Data is usually the message sent by player
|
|
public string Message;
|
|
public Player Origin;
|
|
public Player Target;
|
|
public Server Owner;
|
|
public Boolean Remote = false;
|
|
public object Extra { get; set; }
|
|
public ManualResetEventSlim OnProcessed { get; set; }
|
|
}
|
|
}
|