2017-11-25 20:29:58 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-08-03 22:11:58 -04:00
|
|
|
|
using System.ComponentModel;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Objects
|
2017-11-29 19:35:50 -05:00
|
|
|
|
{
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public class Player : Database.Models.EFClient
|
|
|
|
|
{
|
2018-06-30 21:55:16 -04:00
|
|
|
|
public enum ClientState
|
|
|
|
|
{
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client has been detected as joining
|
|
|
|
|
/// by the log file, but has not be authenticated by RCon
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Connecting,
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client has been parsed by RCon,
|
|
|
|
|
/// but has not been validated against the database
|
|
|
|
|
/// </summary>
|
|
|
|
|
Authenticated,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client has been authenticated by RCon
|
|
|
|
|
/// and validated by the database
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Connected,
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client is leaving (either through RCon or log file)
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Disconnecting,
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public enum Permission
|
|
|
|
|
{
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client has been banned
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Banned = -1,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// default client state upon first connect
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
User = 0,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client has been flagged
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Flagged = 1,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is trusted
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Trusted = 2,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a moderator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Moderator = 3,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is an administrator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Administrator = 4,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a senior administrator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
SeniorAdmin = 5,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a owner
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Owner = 6,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// not used
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Creator = 7,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// reserved for default account
|
|
|
|
|
/// </summary>
|
2018-08-03 22:11:58 -04:00
|
|
|
|
Console = 8
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Player()
|
|
|
|
|
{
|
|
|
|
|
ConnectionTime = DateTime.UtcNow;
|
2017-11-29 19:35:50 -05:00
|
|
|
|
ClientNumber = -1;
|
2018-07-04 22:09:42 -04:00
|
|
|
|
DelayedEvents = new Queue<GameEvent>();
|
2018-09-02 17:59:27 -04:00
|
|
|
|
_additionalProperties = new Dictionary<string, object>();
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
2017-11-29 19:35:50 -05:00
|
|
|
|
|
2018-09-02 17:59:27 -04:00
|
|
|
|
public override string ToString() => $"{Name}::{NetworkId}";
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
|
|
|
|
public String GetLastConnection()
|
|
|
|
|
{
|
|
|
|
|
return Utilities.GetTimePassed(LastConnection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Tell(String Message)
|
|
|
|
|
{
|
2018-05-10 01:34:29 -04:00
|
|
|
|
// this is console or remote so send immediately
|
|
|
|
|
if (ClientNumber < 0)
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.Tell(Message, this);
|
|
|
|
|
}
|
2018-05-08 00:58:46 -04:00
|
|
|
|
|
2018-05-10 01:34:29 -04:00
|
|
|
|
else
|
2018-05-04 00:22:10 -04:00
|
|
|
|
{
|
2018-05-10 01:34:29 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Message = Message,
|
|
|
|
|
Target = this,
|
|
|
|
|
Owner = CurrentServer,
|
|
|
|
|
Type = GameEvent.EventType.Tell,
|
|
|
|
|
Data = Message
|
|
|
|
|
};
|
2018-05-04 00:22:10 -04:00
|
|
|
|
|
2018-05-10 01:34:29 -04:00
|
|
|
|
CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
|
|
|
|
}
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Kick(String Message, Player Sender)
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.Kick(Message, this, Sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task TempBan(String Message, TimeSpan Length, Player Sender)
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.TempBan(Message, Length, this, Sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Warn(String Message, Player Sender)
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.Warn(Message, this, Sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task Ban(String Message, Player Sender)
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.Ban(Message, this, Sender);
|
|
|
|
|
}
|
2018-09-02 17:59:27 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
Dictionary<string, object> _additionalProperties;
|
|
|
|
|
public T GetAdditionalProperty<T>(string name) => (T)_additionalProperties[name];
|
|
|
|
|
public void SetAdditionalProperty(string name, object value) => _additionalProperties.Add(name, value);
|
2017-11-25 20:29:58 -05:00
|
|
|
|
[NotMapped]
|
2017-11-29 19:35:50 -05:00
|
|
|
|
public int ClientNumber { get; set; }
|
2017-11-25 20:29:58 -05:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Ping { get; set; }
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Warnings { get; set; }
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public DateTime ConnectionTime { get; set; }
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public Server CurrentServer { get; set; }
|
2018-02-09 02:21:25 -05:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Score { get; set; }
|
2018-02-14 14:01:26 -05:00
|
|
|
|
[NotMapped]
|
2018-04-15 21:27:43 -04:00
|
|
|
|
public bool IsBot { get; set; }
|
2018-02-10 23:33:42 -05:00
|
|
|
|
private int _ipaddress;
|
|
|
|
|
public override int IPAddress
|
2017-11-29 19:35:50 -05:00
|
|
|
|
{
|
|
|
|
|
get { return _ipaddress; }
|
|
|
|
|
set { _ipaddress = value; }
|
|
|
|
|
}
|
|
|
|
|
private string _name;
|
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return _name; }
|
2018-08-03 22:11:58 -04:00
|
|
|
|
set { _name = value; }
|
2017-11-29 19:35:50 -05:00
|
|
|
|
}
|
2018-06-30 21:55:16 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public ClientState State { get; set; }
|
2018-07-04 22:09:42 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public Queue<GameEvent> DelayedEvents { get; set; }
|
2018-08-03 22:11:58 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
// this is kinda dirty, but I need localizable level names
|
|
|
|
|
public ClientPermission ClientPermission => new ClientPermission()
|
|
|
|
|
{
|
|
|
|
|
Level = Level,
|
|
|
|
|
Name = Utilities.CurrentLocalization
|
|
|
|
|
.LocalizationIndex[$"GLOBAL_PERMISSION_{Level.ToString().ToUpper()}"]
|
|
|
|
|
};
|
2018-02-10 23:33:42 -05:00
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
|
{
|
|
|
|
|
return ((Player)obj).NetworkId == NetworkId;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-02 17:59:27 -04:00
|
|
|
|
public override int GetHashCode() => (int)NetworkId;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|