2022-10-23 14:32:09 -04:00
|
|
|
|
using System;
|
2023-04-05 10:54:57 -04:00
|
|
|
|
using System.Collections.Generic;
|
2022-10-23 14:32:09 -04:00
|
|
|
|
using System.Threading.Tasks;
|
2021-03-22 12:09:25 -04:00
|
|
|
|
using Data.Models;
|
2020-11-17 19:24:54 -05:00
|
|
|
|
using SharedLibraryCore.Database.Models;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IGameServer
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// kicks target on behalf of origin for given reason
|
2020-11-17 19:24:54 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="reason">reason client is being kicked</param>
|
|
|
|
|
/// <param name="target">client to kick</param>
|
|
|
|
|
/// <param name="origin">source of kick action</param>
|
|
|
|
|
/// <param name="previousPenalty">previous penalty the kick is occuring for (if applicable)</param>
|
|
|
|
|
/// <returns></returns>
|
2022-10-23 14:32:09 -04:00
|
|
|
|
Task Kick(string reason, EFClient target, EFClient origin, EFPenalty previousPenalty = null);
|
2023-04-05 10:54:57 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Time the most recent match ended
|
|
|
|
|
/// </summary>
|
2022-10-23 14:32:09 -04:00
|
|
|
|
DateTime? MatchEndTime { get; }
|
2023-04-05 10:54:57 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Time the current match started
|
|
|
|
|
/// </summary>
|
2022-10-23 14:32:09 -04:00
|
|
|
|
DateTime? MatchStartTime { get; }
|
2023-04-05 10:54:57 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// List of connected clients
|
|
|
|
|
/// </summary>
|
|
|
|
|
IReadOnlyList<EFClient> ConnectedClients { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Game code corresponding to the development studio project
|
|
|
|
|
/// </summary>
|
|
|
|
|
Reference.Game GameCode { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Indicates if the anticheat/custom callbacks/live radar integration is enabled
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool IsLegacyGameIntegrationEnabled { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unique identifier for the server (typically ip:port)
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Id { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Network address the server is listening on
|
|
|
|
|
/// </summary>
|
|
|
|
|
string ListenAddress { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Network port the server is listening on
|
|
|
|
|
/// </summary>
|
|
|
|
|
int ListenPort { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Name of the server (hostname)
|
|
|
|
|
/// </summary>
|
|
|
|
|
string ServerName { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Current gametype
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Gametype { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Game password (required to join)
|
|
|
|
|
/// </summary>
|
|
|
|
|
string GamePassword { get; }
|
|
|
|
|
|
2023-04-06 00:10:40 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of private client slots
|
|
|
|
|
/// </summary>
|
|
|
|
|
int PrivateClientSlots { get; }
|
|
|
|
|
|
2023-04-05 10:54:57 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Current map the game server is running
|
|
|
|
|
/// </summary>
|
|
|
|
|
Map Map { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Database id for EFServer table and references
|
|
|
|
|
/// </summary>
|
|
|
|
|
long LegacyDatabaseId { get; }
|
2020-11-17 19:24:54 -05:00
|
|
|
|
}
|
2022-10-23 14:32:09 -04:00
|
|
|
|
}
|