Compare commits
132 Commits
2.3
...
2.3-Prerel
Author | SHA1 | Date | |
---|---|---|---|
639db5d7eb | |||
e64e02342e | |||
51f91ede2c | |||
009da92285 | |||
780b3459af | |||
6acf1c67c1 | |||
27ad4fca43 | |||
dd0d7192eb | |||
8a42239f36 | |||
23c78997ac | |||
7cdfe618a2 | |||
7bfadca84d | |||
a7620ffd50 | |||
902cd9953e | |||
344c3613b8 | |||
32e1af0ffb | |||
1e1a03c9d8 | |||
4d3f7da48e | |||
2b26b9a707 | |||
82381457df | |||
d4b5120953 | |||
82152755c9 | |||
b251ef00c4 | |||
042fde971e | |||
c9e6ce0bca | |||
c4df53c195 | |||
3a06b3862d | |||
9fa5de1418 | |||
a9e7d2d314 | |||
b3f4712dd2 | |||
e5d009d87d | |||
70ca202889 | |||
b8aa8a0b4d | |||
1f755f535c | |||
f37e954e2f | |||
31bcd52c79 | |||
72f3a51657 | |||
3b4af20810 | |||
890c419133 | |||
f9680971af | |||
5df9332d4c | |||
4379d04b00 | |||
9d639097d3 | |||
e7395f02ce | |||
c9e2a11745 | |||
9db38a130c | |||
25a69a2018 | |||
98c4a700a2 | |||
3defd3f486 | |||
b086190ab0 | |||
56008e80c7 | |||
0ac1a4f861 | |||
a9f6106c6e | |||
d1886fdd20 | |||
161b27e2f2 | |||
cb9119ac58 | |||
f31ce6b001 | |||
96e434213f | |||
b992f4d910 | |||
6b27beb355 | |||
4872e2e8c4 | |||
a37524c726 | |||
6cd3879bac | |||
4635d85ff8 | |||
068e943fd3 | |||
c4e0b0272c | |||
ede5c9de51 | |||
524589717b | |||
260a8800a4 | |||
37261c9a54 | |||
5073ec39bf | |||
f7cbf73c44 | |||
082776aca5 | |||
483b7917ac | |||
adc73eb7ff | |||
c18be20899 | |||
148d28eaca | |||
2d9b6b8394 | |||
aa9dd7ac6d | |||
db3a20c60b | |||
7c0e37cc8e | |||
dcd1c97d37 | |||
c1a825f8f2 | |||
d35001049f | |||
f877ba73a9 | |||
a57c982270 | |||
ed5d8faf5c | |||
320b01d15c | |||
4bdd240122 | |||
8fc85ef4c1 | |||
85d88815f1 | |||
a0266c5e69 | |||
3051d44b0d | |||
b8a310bb07 | |||
d11a5f862b | |||
08d250156c | |||
75378400e7 | |||
bb42861a92 | |||
dfecb99d07 | |||
55fb36863c | |||
9f3f344daa | |||
ebe85a9ded | |||
92e71ae2f4 | |||
3b9b99a07e | |||
ab4ce41015 | |||
2b8d8fc4b7 | |||
9665d2d457 | |||
d73d68d9f4 | |||
50ba71c6fb | |||
38f1169061 | |||
5c90228320 | |||
03db194046 | |||
68382d3f61 | |||
4e99046874 | |||
64b320614b | |||
7b5f3e8e83 | |||
748841776f | |||
edfbb92a3f | |||
1a9a0e48b7 | |||
d27f1ded36 | |||
e5cd824c99 | |||
f42a66e756 | |||
d301915273 | |||
fc43e47874 | |||
b0365a5a43 | |||
2a63a55359 | |||
0e9fd144f1 | |||
d81646087e | |||
7f1da4d1fc | |||
0b282b2664 | |||
665218f641 | |||
b64bce2936 |
4
.gitignore
vendored
@ -221,10 +221,12 @@ DEPLOY
|
|||||||
global.min.css
|
global.min.css
|
||||||
global.min.js
|
global.min.js
|
||||||
bootstrap-custom.min.css
|
bootstrap-custom.min.css
|
||||||
|
bootstrap-custom.css
|
||||||
**/Master/static
|
**/Master/static
|
||||||
**/Master/dev_env
|
**/Master/dev_env
|
||||||
/WebfrontCore/Views/Plugins/*
|
/WebfrontCore/Views/Plugins/*
|
||||||
/WebfrontCore/wwwroot/**/dds
|
/WebfrontCore/wwwroot/**/dds
|
||||||
|
/WebfrontCore/wwwroot/images/radar/*
|
||||||
|
|
||||||
/DiscordWebhook/env
|
/DiscordWebhook/env
|
||||||
/DiscordWebhook/config.dev.json
|
/DiscordWebhook/config.dev.json
|
||||||
@ -234,3 +236,5 @@ launchSettings.json
|
|||||||
/Plugins/ScriptPlugins/VpnDetectionPrivate.js
|
/Plugins/ScriptPlugins/VpnDetectionPrivate.js
|
||||||
**/Master/env_master
|
**/Master/env_master
|
||||||
/GameLogServer/log_env
|
/GameLogServer/log_env
|
||||||
|
**/*.css
|
||||||
|
/Master/master/persistence
|
||||||
|
@ -1,19 +1,36 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using RestEase;
|
using SharedLibraryCore.Helpers;
|
||||||
|
|
||||||
namespace IW4MAdmin.Application.API.Master
|
namespace IW4MAdmin.Application.API.Master
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the structure of the IW4MAdmin instance for the master API
|
||||||
|
/// </summary>
|
||||||
public class ApiInstance
|
public class ApiInstance
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of the instance
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("id")]
|
[JsonProperty("id")]
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates how long the instance has been running
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("uptime")]
|
[JsonProperty("uptime")]
|
||||||
public int Uptime { get; set; }
|
public int Uptime { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Specifices the version of the instance
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("version")]
|
[JsonProperty("version")]
|
||||||
public float Version { get; set; }
|
[JsonConverter(typeof(BuildNumberJsonConverter))]
|
||||||
|
public BuildNumber Version { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// List of servers the instance is monitoring
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("servers")]
|
[JsonProperty("servers")]
|
||||||
public List<ApiServer> Servers { get; set; }
|
public List<ApiServer> Servers { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using RestEase;
|
using RestEase;
|
||||||
using SharedLibraryCore;
|
|
||||||
|
|
||||||
namespace IW4MAdmin.Application.API.Master
|
namespace IW4MAdmin.Application.API.Master
|
||||||
{
|
{
|
||||||
public class HeartbeatState
|
/// <summary>
|
||||||
{
|
/// Defines the heartbeat functionality for IW4MAdmin
|
||||||
public bool Connected { get; set; }
|
/// </summary>
|
||||||
public CancellationToken Token { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class Heartbeat
|
public class Heartbeat
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Sends heartbeat to master server
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="mgr"></param>
|
||||||
|
/// <param name="firstHeartbeat"></param>
|
||||||
|
/// <returns></returns>
|
||||||
public static async Task Send(ApplicationManager mgr, bool firstHeartbeat = false)
|
public static async Task Send(ApplicationManager mgr, bool firstHeartbeat = false)
|
||||||
{
|
{
|
||||||
var api = Endpoint.Get();
|
var api = Endpoint.Get();
|
||||||
@ -35,7 +34,7 @@ namespace IW4MAdmin.Application.API.Master
|
|||||||
{
|
{
|
||||||
Id = mgr.GetApplicationSettings().Configuration().Id,
|
Id = mgr.GetApplicationSettings().Configuration().Id,
|
||||||
Uptime = (int)(DateTime.UtcNow - mgr.StartTime).TotalSeconds,
|
Uptime = (int)(DateTime.UtcNow - mgr.StartTime).TotalSeconds,
|
||||||
Version = (float)Program.Version,
|
Version = Program.Version,
|
||||||
Servers = mgr.Servers.Select(s =>
|
Servers = mgr.Servers.Select(s =>
|
||||||
new ApiServer()
|
new ApiServer()
|
||||||
{
|
{
|
||||||
@ -52,14 +51,21 @@ namespace IW4MAdmin.Application.API.Master
|
|||||||
}).ToList()
|
}).ToList()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Response<ResultMessage> response = null;
|
||||||
|
|
||||||
if (firstHeartbeat)
|
if (firstHeartbeat)
|
||||||
{
|
{
|
||||||
var message = await api.AddInstance(instance);
|
response = await api.AddInstance(instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var message = await api.UpdateInstance(instance.Id, instance);
|
response = await api.UpdateInstance(instance.Id, instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.ResponseMessage.StatusCode != System.Net.HttpStatusCode.OK)
|
||||||
|
{
|
||||||
|
mgr.Logger.WriteWarning($"Response code from master is {response.ResponseMessage.StatusCode}, message is {response.StringContent}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using RestEase;
|
using RestEase;
|
||||||
|
using SharedLibraryCore.Helpers;
|
||||||
|
|
||||||
namespace IW4MAdmin.Application.API.Master
|
namespace IW4MAdmin.Application.API.Master
|
||||||
{
|
{
|
||||||
@ -22,9 +23,12 @@ namespace IW4MAdmin.Application.API.Master
|
|||||||
public class VersionInfo
|
public class VersionInfo
|
||||||
{
|
{
|
||||||
[JsonProperty("current-version-stable")]
|
[JsonProperty("current-version-stable")]
|
||||||
public float CurrentVersionStable { get; set; }
|
[JsonConverter(typeof(BuildNumberJsonConverter))]
|
||||||
|
public BuildNumber CurrentVersionStable { get; set; }
|
||||||
|
|
||||||
[JsonProperty("current-version-prerelease")]
|
[JsonProperty("current-version-prerelease")]
|
||||||
public float CurrentVersionPrerelease { get; set; }
|
[JsonConverter(typeof(BuildNumberJsonConverter))]
|
||||||
|
public BuildNumber CurrentVersionPrerelease { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ResultMessage
|
public class ResultMessage
|
||||||
@ -38,11 +42,14 @@ namespace IW4MAdmin.Application.API.Master
|
|||||||
#if !DEBUG
|
#if !DEBUG
|
||||||
private static readonly IMasterApi api = RestClient.For<IMasterApi>("http://api.raidmax.org:5000");
|
private static readonly IMasterApi api = RestClient.For<IMasterApi>("http://api.raidmax.org:5000");
|
||||||
#else
|
#else
|
||||||
private static IMasterApi api = RestClient.For<IMasterApi>("http://127.0.0.1");
|
private static readonly IMasterApi api = RestClient.For<IMasterApi>("http://127.0.0.1");
|
||||||
#endif
|
#endif
|
||||||
public static IMasterApi Get() => api;
|
public static IMasterApi Get() => api;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Defines the capabilities of the master API
|
||||||
|
/// </summary>
|
||||||
[Header("User-Agent", "IW4MAdmin-RestEase")]
|
[Header("User-Agent", "IW4MAdmin-RestEase")]
|
||||||
public interface IMasterApi
|
public interface IMasterApi
|
||||||
{
|
{
|
||||||
@ -53,13 +60,15 @@ namespace IW4MAdmin.Application.API.Master
|
|||||||
Task<TokenId> Authenticate([Body] AuthenticationId Id);
|
Task<TokenId> Authenticate([Body] AuthenticationId Id);
|
||||||
|
|
||||||
[Post("instance/")]
|
[Post("instance/")]
|
||||||
Task<ResultMessage> AddInstance([Body] ApiInstance instance);
|
[AllowAnyStatusCode]
|
||||||
|
Task<Response<ResultMessage>> AddInstance([Body] ApiInstance instance);
|
||||||
|
|
||||||
[Put("instance/{id}")]
|
[Put("instance/{id}")]
|
||||||
Task<ResultMessage> UpdateInstance([Path] string id, [Body] ApiInstance instance);
|
[AllowAnyStatusCode]
|
||||||
|
Task<Response<ResultMessage>> UpdateInstance([Path] string id, [Body] ApiInstance instance);
|
||||||
|
|
||||||
[Get("version")]
|
[Get("version/{apiVersion}")]
|
||||||
Task<VersionInfo> GetVersion();
|
Task<VersionInfo> GetVersion([Path] int apiVersion);
|
||||||
|
|
||||||
[Get("localization")]
|
[Get("localization")]
|
||||||
Task<List<SharedLibraryCore.Localization.Layout>> GetLocalization();
|
Task<List<SharedLibraryCore.Localization.Layout>> GetLocalization();
|
||||||
|
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
|
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
|
||||||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
||||||
<PackageId>RaidMax.IW4MAdmin.Application</PackageId>
|
<PackageId>RaidMax.IW4MAdmin.Application</PackageId>
|
||||||
<Version>2.2.8.4</Version>
|
<Version>2.3.1.0</Version>
|
||||||
<Authors>RaidMax</Authors>
|
<Authors>RaidMax</Authors>
|
||||||
<Company>Forever None</Company>
|
<Company>Forever None</Company>
|
||||||
<Product>IW4MAdmin</Product>
|
<Product>IW4MAdmin</Product>
|
||||||
@ -25,27 +24,36 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="RestEase" Version="1.4.9" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.0">
|
||||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.1" />
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.0" />
|
||||||
|
<PackageReference Include="RestEase" Version="1.4.10" />
|
||||||
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ServerGarbageCollection>false</ServerGarbageCollection>
|
<ServerGarbageCollection>false</ServerGarbageCollection>
|
||||||
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
||||||
<TieredCompilation>true</TieredCompilation>
|
<TieredCompilation>true</TieredCompilation>
|
||||||
<AssemblyVersion>2.2.8.4</AssemblyVersion>
|
<AssemblyVersion>2.3.1.0</AssemblyVersion>
|
||||||
<FileVersion>2.2.8.4</FileVersion>
|
<FileVersion>2.3.1.0</FileVersion>
|
||||||
<LangVersion>7.1</LangVersion>
|
<LangVersion>7.1</LangVersion>
|
||||||
|
<StartupObject></StartupObject>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Prerelease|AnyCPU'">
|
||||||
|
<ErrorReport>none</ErrorReport>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
<ProjectReference Include="..\SharedLibraryCore\SharedLibraryCore.csproj">
|
||||||
<Private>true</Private>
|
<Private>true</Private>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\WebfrontCore\WebfrontCore.csproj">
|
<ProjectReference Include="..\WebfrontCore\WebfrontCore.csproj" />
|
||||||
<Private>true</Private>
|
|
||||||
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -55,17 +63,17 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||||
<Exec Command="call $(ProjectDir)BuildScripts\PreBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir)" />
|
<Exec Command="if $(ConfigurationName) == Debug call $(ProjectDir)BuildScripts\PreBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
<GetAssemblyIdentity AssemblyFiles="$(TargetPath)">
|
<GetAssemblyIdentity AssemblyFiles="$(TargetPath)">
|
||||||
<Output TaskParameter="Assemblies" ItemName="CurrentAssembly" />
|
<Output TaskParameter="Assemblies" ItemName="CurrentAssembly" />
|
||||||
</GetAssemblyIdentity>
|
</GetAssemblyIdentity>
|
||||||
<Exec Command="call $(ProjectDir)BuildScripts\PostBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir) %(CurrentAssembly.Version)" />
|
<Exec Command="if $(ConfigurationName) == Debug call $(ProjectDir)BuildScripts\PostBuild.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(OutDir) %25(CurrentAssembly.Version)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="PostPublish" AfterTargets="Publish">
|
<Target Name="PostPublish" AfterTargets="Publish">
|
||||||
<Exec Command="call $(ProjectDir)BuildScripts\PostPublish.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(ConfigurationName)" />
|
<Exec Command="if $(ConfigurationName) == Debug call $(ProjectDir)BuildScripts\PostPublish.bat $(ProjectDir)..\ $(ProjectDir) $(TargetDir) $(ConfigurationName)" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -14,6 +14,7 @@ using SharedLibraryCore.Helpers;
|
|||||||
using SharedLibraryCore.Interfaces;
|
using SharedLibraryCore.Interfaces;
|
||||||
using SharedLibraryCore.Services;
|
using SharedLibraryCore.Services;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@ -27,13 +28,11 @@ namespace IW4MAdmin.Application
|
|||||||
{
|
{
|
||||||
public class ApplicationManager : IManager
|
public class ApplicationManager : IManager
|
||||||
{
|
{
|
||||||
private ConcurrentBag<Server> _servers;
|
private readonly ConcurrentBag<Server> _servers;
|
||||||
public List<Server> Servers => _servers.OrderByDescending(s => s.ClientNum).ToList();
|
public List<Server> Servers => _servers.OrderByDescending(s => s.ClientNum).ToList();
|
||||||
public ILogger Logger => GetLogger(0);
|
public ILogger Logger => GetLogger(0);
|
||||||
public bool Running { get; private set; }
|
public bool Running { get; private set; }
|
||||||
public bool IsInitialized { get; private set; }
|
public bool IsInitialized { get; private set; }
|
||||||
// expose the event handler so we can execute the events
|
|
||||||
public OnServerEventEventHandler OnServerEvent { get; set; }
|
|
||||||
public DateTime StartTime { get; private set; }
|
public DateTime StartTime { get; private set; }
|
||||||
public string Version => Assembly.GetEntryAssembly().GetName().Version.ToString();
|
public string Version => Assembly.GetEntryAssembly().GetName().Version.ToString();
|
||||||
|
|
||||||
@ -43,10 +42,11 @@ namespace IW4MAdmin.Application
|
|||||||
public CancellationToken CancellationToken => _tokenSource.Token;
|
public CancellationToken CancellationToken => _tokenSource.Token;
|
||||||
public string ExternalIPAddress { get; private set; }
|
public string ExternalIPAddress { get; private set; }
|
||||||
public bool IsRestartRequested { get; private set; }
|
public bool IsRestartRequested { get; private set; }
|
||||||
|
public IMiddlewareActionHandler MiddlewareActionHandler { get; private set; } = new MiddlewareActionHandler();
|
||||||
static ApplicationManager Instance;
|
static ApplicationManager Instance;
|
||||||
List<Command> Commands;
|
private readonly List<Command> Commands;
|
||||||
readonly List<MessageToken> MessageTokens;
|
private readonly List<MessageToken> MessageTokens;
|
||||||
ClientService ClientSvc;
|
private readonly ClientService ClientSvc;
|
||||||
readonly AliasService AliasSvc;
|
readonly AliasService AliasSvc;
|
||||||
readonly PenaltyService PenaltySvc;
|
readonly PenaltyService PenaltySvc;
|
||||||
public BaseConfigurationHandler<ApplicationConfiguration> ConfigHandler;
|
public BaseConfigurationHandler<ApplicationConfiguration> ConfigHandler;
|
||||||
@ -56,6 +56,7 @@ namespace IW4MAdmin.Application
|
|||||||
private readonly MetaService _metaService;
|
private readonly MetaService _metaService;
|
||||||
private readonly TimeSpan _throttleTimeout = new TimeSpan(0, 1, 0);
|
private readonly TimeSpan _throttleTimeout = new TimeSpan(0, 1, 0);
|
||||||
private readonly CancellationTokenSource _tokenSource;
|
private readonly CancellationTokenSource _tokenSource;
|
||||||
|
private readonly Dictionary<string, Task<IList>> _operationLookup = new Dictionary<string, Task<IList>>();
|
||||||
|
|
||||||
private ApplicationManager()
|
private ApplicationManager()
|
||||||
{
|
{
|
||||||
@ -70,21 +71,17 @@ namespace IW4MAdmin.Application
|
|||||||
PageList = new PageList();
|
PageList = new PageList();
|
||||||
AdditionalEventParsers = new List<IEventParser>();
|
AdditionalEventParsers = new List<IEventParser>();
|
||||||
AdditionalRConParsers = new List<IRConParser>();
|
AdditionalRConParsers = new List<IRConParser>();
|
||||||
OnServerEvent += OnGameEvent;
|
|
||||||
OnServerEvent += EventApi.OnGameEvent;
|
|
||||||
TokenAuthenticator = new TokenAuthentication();
|
TokenAuthenticator = new TokenAuthentication();
|
||||||
_metaService = new MetaService();
|
_metaService = new MetaService();
|
||||||
_tokenSource = new CancellationTokenSource();
|
_tokenSource = new CancellationTokenSource();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void OnGameEvent(object sender, GameEventArgs args)
|
public async Task ExecuteEvent(GameEvent newEvent)
|
||||||
{
|
{
|
||||||
#if DEBUG == true
|
#if DEBUG == true
|
||||||
Logger.WriteDebug($"Entering event process for {args.Event.Id}");
|
Logger.WriteDebug($"Entering event process for {newEvent.Id}");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
var newEvent = args.Event;
|
|
||||||
|
|
||||||
// the event has failed already
|
// the event has failed already
|
||||||
if (newEvent.Failed)
|
if (newEvent.Failed)
|
||||||
{
|
{
|
||||||
@ -97,44 +94,56 @@ namespace IW4MAdmin.Application
|
|||||||
|
|
||||||
// save the event info to the database
|
// save the event info to the database
|
||||||
var changeHistorySvc = new ChangeHistoryService();
|
var changeHistorySvc = new ChangeHistoryService();
|
||||||
await changeHistorySvc.Add(args.Event);
|
await changeHistorySvc.Add(newEvent);
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Logger.WriteDebug($"Processed event with id {newEvent.Id}");
|
Logger.WriteDebug($"Processed event with id {newEvent.Id}");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
catch (TaskCanceledException)
|
||||||
|
{
|
||||||
|
Logger.WriteInfo($"Received quit signal for event id {newEvent.Id}, so we are aborting early");
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
Logger.WriteInfo($"Received quit signal for event id {newEvent.Id}, so we are aborting early");
|
||||||
|
}
|
||||||
|
|
||||||
// this happens if a plugin requires login
|
// this happens if a plugin requires login
|
||||||
catch (AuthorizationException ex)
|
catch (AuthorizationException ex)
|
||||||
{
|
{
|
||||||
newEvent.FailReason = GameEvent.EventFailReason.Permission;
|
newEvent.FailReason = EventFailReason.Permission;
|
||||||
newEvent.Origin.Tell($"{Utilities.CurrentLocalization.LocalizationIndex["COMMAND_NOTAUTHORIZED"]} - {ex.Message}");
|
newEvent.Origin.Tell($"{Utilities.CurrentLocalization.LocalizationIndex["COMMAND_NOTAUTHORIZED"]} - {ex.Message}");
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (NetworkException ex)
|
catch (NetworkException ex)
|
||||||
{
|
{
|
||||||
newEvent.FailReason = GameEvent.EventFailReason.Exception;
|
newEvent.FailReason = EventFailReason.Exception;
|
||||||
Logger.WriteError(ex.Message);
|
Logger.WriteError(ex.Message);
|
||||||
Logger.WriteDebug(ex.GetExceptionInfo());
|
Logger.WriteDebug(ex.GetExceptionInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (ServerException ex)
|
catch (ServerException ex)
|
||||||
{
|
{
|
||||||
newEvent.FailReason = GameEvent.EventFailReason.Exception;
|
newEvent.FailReason = EventFailReason.Exception;
|
||||||
Logger.WriteWarning(ex.Message);
|
Logger.WriteWarning(ex.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
newEvent.FailReason = GameEvent.EventFailReason.Exception;
|
newEvent.FailReason = EventFailReason.Exception;
|
||||||
Logger.WriteError(Utilities.CurrentLocalization.LocalizationIndex["SERVER_ERROR_EXCEPTION"].FormatExt(newEvent.Owner));
|
Logger.WriteError(Utilities.CurrentLocalization.LocalizationIndex["SERVER_ERROR_EXCEPTION"].FormatExt(newEvent.Owner));
|
||||||
Logger.WriteDebug(ex.GetExceptionInfo());
|
Logger.WriteDebug(ex.GetExceptionInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
skip:
|
skip:
|
||||||
|
|
||||||
// tell anyone waiting for the output that we're done
|
// tell anyone waiting for the output that we're done
|
||||||
newEvent.OnProcessed.Set();
|
newEvent.Complete();
|
||||||
|
#if DEBUG == true
|
||||||
|
Logger.WriteDebug($"Exiting event process for {newEvent.Id}");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public IList<Server> GetServers()
|
public IList<Server> GetServers()
|
||||||
@ -394,6 +403,7 @@ namespace IW4MAdmin.Application
|
|||||||
Commands.Add(new CSetGravatar());
|
Commands.Add(new CSetGravatar());
|
||||||
Commands.Add(new CNextMap());
|
Commands.Add(new CNextMap());
|
||||||
Commands.Add(new RequestTokenCommand());
|
Commands.Add(new RequestTokenCommand());
|
||||||
|
Commands.Add(new UnlinkClientCommand());
|
||||||
|
|
||||||
foreach (Command C in SharedLibraryCore.Plugins.PluginImporter.ActiveCommands)
|
foreach (Command C in SharedLibraryCore.Plugins.PluginImporter.ActiveCommands)
|
||||||
{
|
{
|
||||||
@ -712,7 +722,8 @@ namespace IW4MAdmin.Application
|
|||||||
|
|
||||||
public IList<EFClient> GetActiveClients()
|
public IList<EFClient> GetActiveClients()
|
||||||
{
|
{
|
||||||
return _servers.SelectMany(s => s.Clients).Where(p => p != null).ToList();
|
// we're adding another to list here so we don't get a collection modified exception..
|
||||||
|
return _servers.SelectMany(s => s.Clients).ToList().Where(p => p != null).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public ClientService GetClientService()
|
public ClientService GetClientService()
|
||||||
@ -759,5 +770,16 @@ namespace IW4MAdmin.Application
|
|||||||
{
|
{
|
||||||
return new DynamicEventParser();
|
return new DynamicEventParser();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<IList<T>> ExecuteSharedDatabaseOperation<T>(string operationName)
|
||||||
|
{
|
||||||
|
var result = await _operationLookup[operationName];
|
||||||
|
return (IList<T>)result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RegisterSharedDatabaseOperation(Task<IList> operation, string operationName)
|
||||||
|
{
|
||||||
|
_operationLookup.Add(operationName, operation);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,11 +24,4 @@ xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\WindowsPrerelease\Pl
|
|||||||
|
|
||||||
echo Copying script plugins for publish
|
echo Copying script plugins for publish
|
||||||
xcopy /Y "%SolutionDir%Plugins\ScriptPlugins" "%SolutionDir%Publish\Windows\Plugins\"
|
xcopy /Y "%SolutionDir%Plugins\ScriptPlugins" "%SolutionDir%Publish\Windows\Plugins\"
|
||||||
xcopy /Y "%SolutionDir%Plugins\ScriptPlugins" "%SolutionDir%Publish\WindowsPrerelease\Plugins\"
|
xcopy /Y "%SolutionDir%Plugins\ScriptPlugins" "%SolutionDir%Publish\WindowsPrerelease\Plugins\"
|
||||||
|
|
||||||
echo Copying GSC files for publish
|
|
||||||
xcopy /Y "%SolutionDir%_customcallbacks.gsc" "%SolutionDir%Publish\Windows\userraw\scripts\"
|
|
||||||
xcopy /Y "%SolutionDir%_customcallbacks.gsc" "%SolutionDir%Publish\WindowsPrerelease\userraw\scripts\"
|
|
||||||
|
|
||||||
xcopy /Y "%SolutionDir%_commands.gsc" "%SolutionDir%Publish\Windows\userraw\scripts\"
|
|
||||||
xcopy /Y "%SolutionDir%_commands.gsc" "%SolutionDir%Publish\WindowsPrerelease\userraw\scripts\"
|
|
@ -1,121 +1,41 @@
|
|||||||
set SolutionDir=%1
|
set PublishDir=%1
|
||||||
set ProjectDir=%2
|
set SourceDir=%2
|
||||||
set TargetDir=%3
|
|
||||||
set CurrentConfiguration=%4
|
|
||||||
SET COPYCMD=/Y
|
SET COPYCMD=/Y
|
||||||
|
|
||||||
echo Deleting extra language files
|
echo deleting extra runtime files
|
||||||
|
if exist "%PublishDir%\runtimes\linux-arm" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\linux-arm'
|
||||||
|
if exist "%PublishDir%\runtimes\linux-arm64" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\linux-arm64'
|
||||||
|
if exist "%PublishDir%\runtimes\linux-armel" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\linux-armel'
|
||||||
|
if exist "%PublishDir%\runtimes\osx" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\osx'
|
||||||
|
if exist "%PublishDir%\runtimes\osx-x64" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\osx-x64'
|
||||||
|
if exist "%PublishDir%\runtimes\win-arm" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\win-arm'
|
||||||
|
if exist "%PublishDir%\runtimes\win-arm64" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\win-arm64'
|
||||||
|
if exist "%PublishDir%\runtimes\alpine-x64" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\alpine-x64'
|
||||||
|
if exist "%PublishDir%\runtimes\linux-musl-x64" powershell Remove-Item -Force -Recurse '%PublishDir%\runtimes\linux-musl-x64'
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\Windows\en-US\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\en-US'
|
echo deleting misc files
|
||||||
if exist "%SolutionDir%Publish\Windows\de\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\de'
|
if exist "%PublishDir%\web.config" del "%PublishDir%\web.config"
|
||||||
if exist "%SolutionDir%Publish\Windows\es\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\es'
|
if exist "%PublishDir%\libman.json" del "%PublishDir%\libman.json"
|
||||||
if exist "%SolutionDir%Publish\Windows\fr\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\fr'
|
del "%PublishDir%\*.exe"
|
||||||
if exist "%SolutionDir%Publish\Windows\it\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\it'
|
del "%PublishDir%\*.pdb"
|
||||||
if exist "%SolutionDir%Publish\Windows\ja\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\ja'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\ko\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\ko'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\ru\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\ru'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\zh-Hans\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\zh-Hans'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\zh-Hant\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\zh-Hant'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\en-US\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\en-US'
|
echo setting up default folders
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\de\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\de'
|
if not exist "%PublishDir%\Configuration" md "%PublishDir%\Configuration"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\es\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\es'
|
move "%PublishDir%\DefaultSettings.json" "%PublishDir%\Configuration\"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\fr\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\fr'
|
if not exist "%PublishDir%\Lib\" md "%PublishDir%\Lib\"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\it\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\it'
|
move "%PublishDir%\*.dll" "%PublishDir%\Lib\"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\ja\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\ja'
|
move "%PublishDir%\*.json" "%PublishDir%\Lib\"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\ko\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\ko'
|
move "%PublishDir%\runtimes" "%PublishDir%\Lib\runtimes"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\ru\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\ru'
|
if exist "%PublishDir%\refs" move "%PublishDir%\refs" "%PublishDir%\Lib\refs"
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\zh-Hans\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\zh-Hans'
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\zh-Hant\" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\zh-Hant'
|
|
||||||
|
|
||||||
echo Deleting extra runtime files
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\linux-arm" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\linux-arm'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\linux-arm64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\linux-arm64'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\linux-armel" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\linux-armel'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\osx" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\osx'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\osx-x64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\osx-x64'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\win-arm" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\win-arm'
|
|
||||||
if exist "%SolutionDir%Publish\Windows\runtimes\win-arm64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\Windows\runtimes\win-arm64'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-arm" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-arm'
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-arm64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-arm64'
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-armel" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\linux-armel'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\osx" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\osx'
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\osx-x64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\osx-x64'
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\win-arm" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\win-arm'
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\runtimes\win-arm64" powershell Remove-Item -Force -Recurse '%SolutionDir%Publish\WindowsPrerelease\runtimes\win-arm64'
|
|
||||||
|
|
||||||
echo Deleting misc files
|
|
||||||
if exist "%SolutionDir%Publish\Windows\web.config" del "%SolutionDir%Publish\Windows\web.config"
|
|
||||||
del "%SolutionDir%Publish\Windows\*pdb"
|
|
||||||
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\web.config" del "%SolutionDir%Publish\WindowsPrerelease\web.config"
|
|
||||||
del "%SolutionDir%Publish\WindowsPrerelease\*pdb"
|
|
||||||
|
|
||||||
echo setting up library folders
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Prerelease" (
|
|
||||||
echo PR-Config
|
|
||||||
if not exist "%SolutionDir%Publish\WindowsPrerelease\Configuration" md "%SolutionDir%Publish\WindowsPrerelease\Configuration"
|
|
||||||
move "%SolutionDir%Publish\WindowsPrerelease\DefaultSettings.json" "%SolutionDir%Publish\WindowsPrerelease\Configuration\"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Release" (
|
|
||||||
echo R-Config
|
|
||||||
if not exist "%SolutionDir%Publish\Windows\Configuration" md "%SolutionDir%Publish\Windows\Configuration"
|
|
||||||
if exist "%SolutionDir%Publish\Windows\DefaultSettings.json" move "%SolutionDir%Publish\Windows\DefaultSettings.json" "%SolutionDir%Publish\Windows\Configuration\DefaultSettings.json"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Prerelease" (
|
|
||||||
echo PR-LIB
|
|
||||||
if not exist "%SolutionDir%Publish\WindowsPrerelease\Lib\" md "%SolutionDir%Publish\WindowsPrerelease\Lib\"
|
|
||||||
move "%SolutionDir%Publish\WindowsPrerelease\*.dll" "%SolutionDir%Publish\WindowsPrerelease\Lib\"
|
|
||||||
move "%SolutionDir%Publish\WindowsPrerelease\*.json" "%SolutionDir%Publish\WindowsPrerelease\Lib\"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Release" (
|
|
||||||
echo R-LIB
|
|
||||||
if not exist "%SolutionDir%Publish\Windows\Lib\" md "%SolutionDir%Publish\Windows\Lib\"
|
|
||||||
move "%SolutionDir%Publish\Windows\*.dll" "%SolutionDir%Publish\Windows\Lib\"
|
|
||||||
move "%SolutionDir%Publish\Windows\*.json" "%SolutionDir%Publish\Windows\Lib\"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Prerelease" (
|
|
||||||
echo PR-RT
|
|
||||||
move "%SolutionDir%Publish\WindowsPrerelease\runtimes" "%SolutionDir%Publish\WindowsPrerelease\Lib\runtimes"
|
|
||||||
if exist "%SolutionDir%Publish\WindowsPrerelease\refs" move "%SolutionDir%Publish\WindowsPrerelease\refs" "%SolutionDir%Publish\WindowsPrerelease\Lib\refs"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Release" (
|
|
||||||
echo R-RT
|
|
||||||
move "%SolutionDir%Publish\Windows\runtimes" "%SolutionDir%Publish\Windows\Lib\runtimes"
|
|
||||||
if exist "%SolutionDir%Publish\Windows\refs" move "%SolutionDir%Publish\Windows\refs" "%SolutionDir%Publish\Windows\Lib\refs"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Prerelease" (
|
|
||||||
echo PR-LOC
|
|
||||||
if not exist "%SolutionDir%Publish\WindowsPrerelease\Localization" md "%SolutionDir%Publish\WindowsPrerelease\Localization"
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%CurrentConfiguration%" == "Release" (
|
|
||||||
echo R-LOC
|
|
||||||
if not exist "%SolutionDir%Publish\Windows\Localization" md "%SolutionDir%Publish\Windows\Localization"
|
|
||||||
)
|
|
||||||
|
|
||||||
echo making start scripts
|
echo making start scripts
|
||||||
@(echo @echo off && echo @title IW4MAdmin && echo set DOTNET_CLI_TELEMETRY_OPTOUT=1 && echo dotnet Lib\IW4MAdmin.dll && echo pause) > "%SolutionDir%Publish\WindowsPrerelease\StartIW4MAdmin.cmd"
|
@(echo @echo off && echo @title IW4MAdmin && echo set DOTNET_CLI_TELEMETRY_OPTOUT=1 && echo dotnet Lib\IW4MAdmin.dll && echo pause) > "%PublishDir%\StartIW4MAdmin.cmd"
|
||||||
@(echo @echo off && echo @title IW4MAdmin && echo set DOTNET_CLI_TELEMETRY_OPTOUT=1 && echo dotnet Lib\IW4MAdmin.dll && echo pause) > "%SolutionDir%Publish\Windows\StartIW4MAdmin.cmd"
|
@(echo #!/bin/bash&& echo export DOTNET_CLI_TELEMETRY_OPTOUT=1&& echo dotnet Lib/IW4MAdmin.dll) > "%PublishDir%\StartIW4MAdmin.sh"
|
||||||
|
|
||||||
@(echo #!/bin/bash&& echo export DOTNET_CLI_TELEMETRY_OPTOUT=1&& echo dotnet Lib/IW4MAdmin.dll) > "%SolutionDir%Publish\WindowsPrerelease\StartIW4MAdmin.sh"
|
echo moving front-end library dependencies
|
||||||
dos2unix "%SolutionDir%Publish\WindowsPrerelease\StartIW4MAdmin.sh"
|
if not exist "%PublishDir%\wwwroot\font" mkdir "%PublishDir%\wwwroot\font"
|
||||||
@(echo #!/bin/bash&& echo export DOTNET_CLI_TELEMETRY_OPTOUT=1&& echo dotnet Lib/IW4MAdmin.dll) > "%SolutionDir%Publish\Windows\StartIW4MAdmin.sh"
|
move "WebfrontCore\wwwroot\lib\open-iconic\font\fonts\*.*" "%PublishDir%\wwwroot\font\"
|
||||||
dos2unix "%SolutionDir%Publish\Windows\StartIW4MAdmin.sh"
|
if exist "%PublishDir%\wwwroot\lib" rd /s /q "%PublishDir%\wwwroot\lib"
|
||||||
|
|
||||||
echo setting permissions...
|
echo setting permissions...
|
||||||
cacls "%SolutionDir%Publish\WindowsPrerelease" /t /e /p Everyone:F
|
cacls "%PublishDir%" /t /e /p Everyone:F
|
||||||
cacls "%SolutionDir%Publish\Windows" /t /e /p Everyone:F
|
|
@ -105,6 +105,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
Data = message,
|
Data = message,
|
||||||
Origin = new EFClient() { NetworkId = originId },
|
Origin = new EFClient() { NetworkId = originId },
|
||||||
Message = message,
|
Message = message,
|
||||||
|
Extra = logLine,
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.Origin
|
RequiredEntity = GameEvent.EventRequiredEntity.Origin
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -115,6 +116,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
Data = message,
|
Data = message,
|
||||||
Origin = new EFClient() { NetworkId = originId },
|
Origin = new EFClient() { NetworkId = originId },
|
||||||
Message = message,
|
Message = message,
|
||||||
|
Extra = logLine,
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.Origin
|
RequiredEntity = GameEvent.EventRequiredEntity.Origin
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -175,13 +177,14 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
{
|
{
|
||||||
CurrentAlias = new EFAlias()
|
CurrentAlias = new EFAlias()
|
||||||
{
|
{
|
||||||
Name = regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginName]].ToString().StripColors(),
|
Name = regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginName]].ToString(),
|
||||||
},
|
},
|
||||||
NetworkId = regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginNetworkId]].ToString().ConvertGuidToLong(),
|
NetworkId = regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginNetworkId]].ToString().ConvertGuidToLong(),
|
||||||
ClientNumber = Convert.ToInt32(regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginClientNumber]].ToString()),
|
ClientNumber = Convert.ToInt32(regexMatch.Groups[Configuration.Join.GroupMapping[ParserRegex.GroupType.OriginClientNumber]].ToString()),
|
||||||
State = EFClient.ClientState.Connecting,
|
State = EFClient.ClientState.Connecting,
|
||||||
},
|
},
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.None
|
RequiredEntity = GameEvent.EventRequiredEntity.None,
|
||||||
|
IsBlocking = true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -199,13 +202,14 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
{
|
{
|
||||||
CurrentAlias = new EFAlias()
|
CurrentAlias = new EFAlias()
|
||||||
{
|
{
|
||||||
Name = regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginName]].ToString().StripColors()
|
Name = regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginName]].ToString()
|
||||||
},
|
},
|
||||||
NetworkId = regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginNetworkId]].ToString().ConvertGuidToLong(),
|
NetworkId = regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginNetworkId]].ToString().ConvertGuidToLong(),
|
||||||
ClientNumber = Convert.ToInt32(regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginClientNumber]].ToString()),
|
ClientNumber = Convert.ToInt32(regexMatch.Groups[Configuration.Quit.GroupMapping[ParserRegex.GroupType.OriginClientNumber]].ToString()),
|
||||||
State = EFClient.ClientState.Disconnecting
|
State = EFClient.ClientState.Disconnecting
|
||||||
},
|
},
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.Origin
|
RequiredEntity = GameEvent.EventRequiredEntity.None,
|
||||||
|
IsBlocking = true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -215,7 +219,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
return new GameEvent()
|
return new GameEvent()
|
||||||
{
|
{
|
||||||
Type = GameEvent.EventType.MapEnd,
|
Type = GameEvent.EventType.MapEnd,
|
||||||
Data = lineSplit[0],
|
Data = logLine,
|
||||||
Origin = Utilities.IW4MAdminClient(),
|
Origin = Utilities.IW4MAdminClient(),
|
||||||
Target = Utilities.IW4MAdminClient(),
|
Target = Utilities.IW4MAdminClient(),
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.None
|
RequiredEntity = GameEvent.EventRequiredEntity.None
|
||||||
@ -229,7 +233,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
return new GameEvent()
|
return new GameEvent()
|
||||||
{
|
{
|
||||||
Type = GameEvent.EventType.MapChange,
|
Type = GameEvent.EventType.MapChange,
|
||||||
Data = lineSplit[0],
|
Data = logLine,
|
||||||
Origin = Utilities.IW4MAdminClient(),
|
Origin = Utilities.IW4MAdminClient(),
|
||||||
Target = Utilities.IW4MAdminClient(),
|
Target = Utilities.IW4MAdminClient(),
|
||||||
Extra = dump.DictionaryFromKeyValue(),
|
Extra = dump.DictionaryFromKeyValue(),
|
||||||
@ -252,6 +256,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
// this is a custom event printed out by _customcallbacks.gsc (used for anticheat)
|
// this is a custom event printed out by _customcallbacks.gsc (used for anticheat)
|
||||||
if (eventType == "ScriptKill")
|
if (eventType == "ScriptKill")
|
||||||
{
|
{
|
||||||
|
|
||||||
long originId = lineSplit[1].ConvertGuidToLong(1);
|
long originId = lineSplit[1].ConvertGuidToLong(1);
|
||||||
long targetId = lineSplit[2].ConvertGuidToLong(1);
|
long targetId = lineSplit[2].ConvertGuidToLong(1);
|
||||||
|
|
||||||
@ -284,6 +289,7 @@ namespace IW4MAdmin.Application.EventParsers
|
|||||||
return new GameEvent()
|
return new GameEvent()
|
||||||
{
|
{
|
||||||
Type = GameEvent.EventType.Unknown,
|
Type = GameEvent.EventType.Unknown,
|
||||||
|
Data = logLine,
|
||||||
Origin = Utilities.IW4MAdminClient(),
|
Origin = Utilities.IW4MAdminClient(),
|
||||||
Target = Utilities.IW4MAdminClient(),
|
Target = Utilities.IW4MAdminClient(),
|
||||||
RequiredEntity = GameEvent.EventRequiredEntity.None
|
RequiredEntity = GameEvent.EventRequiredEntity.None
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
using SharedLibraryCore;
|
using IW4MAdmin.Application.Misc;
|
||||||
|
using SharedLibraryCore;
|
||||||
using SharedLibraryCore.Events;
|
using SharedLibraryCore.Events;
|
||||||
using SharedLibraryCore.Interfaces;
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
namespace IW4MAdmin.Application
|
namespace IW4MAdmin.Application
|
||||||
@ -8,9 +11,33 @@ namespace IW4MAdmin.Application
|
|||||||
class GameEventHandler : IEventHandler
|
class GameEventHandler : IEventHandler
|
||||||
{
|
{
|
||||||
readonly ApplicationManager Manager;
|
readonly ApplicationManager Manager;
|
||||||
|
private readonly EventProfiler _profiler;
|
||||||
|
private delegate void GameEventAddedEventHandler(object sender, GameEventArgs args);
|
||||||
|
private event GameEventAddedEventHandler GameEventAdded;
|
||||||
|
|
||||||
|
private static readonly GameEvent.EventType[] overrideEvents = new[]
|
||||||
|
{
|
||||||
|
GameEvent.EventType.Connect,
|
||||||
|
GameEvent.EventType.Disconnect,
|
||||||
|
GameEvent.EventType.Quit,
|
||||||
|
GameEvent.EventType.Stop
|
||||||
|
};
|
||||||
|
|
||||||
public GameEventHandler(IManager mgr)
|
public GameEventHandler(IManager mgr)
|
||||||
{
|
{
|
||||||
Manager = (ApplicationManager)mgr;
|
Manager = (ApplicationManager)mgr;
|
||||||
|
_profiler = new EventProfiler(mgr.GetLogger(0));
|
||||||
|
GameEventAdded += GameEventHandler_GameEventAdded;
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void GameEventHandler_GameEventAdded(object sender, GameEventArgs args)
|
||||||
|
{
|
||||||
|
var start = DateTime.Now;
|
||||||
|
await Manager.ExecuteEvent(args.Event);
|
||||||
|
EventApi.OnGameEvent(sender, args);
|
||||||
|
#if DEBUG
|
||||||
|
_profiler.Profile(start, DateTime.Now, args.Event);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddEvent(GameEvent gameEvent)
|
public void AddEvent(GameEvent gameEvent)
|
||||||
@ -19,8 +46,21 @@ namespace IW4MAdmin.Application
|
|||||||
ThreadPool.GetMaxThreads(out int workerThreads, out int n);
|
ThreadPool.GetMaxThreads(out int workerThreads, out int n);
|
||||||
ThreadPool.GetAvailableThreads(out int availableThreads, out int m);
|
ThreadPool.GetAvailableThreads(out int availableThreads, out int m);
|
||||||
gameEvent.Owner.Logger.WriteDebug($"There are {workerThreads - availableThreads} active threading tasks");
|
gameEvent.Owner.Logger.WriteDebug($"There are {workerThreads - availableThreads} active threading tasks");
|
||||||
|
|
||||||
|
#endif
|
||||||
|
if (Manager.Running || overrideEvents.Contains(gameEvent.Type))
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
gameEvent.Owner.Logger.WriteDebug($"Adding event with id {gameEvent.Id}");
|
||||||
|
#endif
|
||||||
|
GameEventAdded?.Invoke(this, new GameEventArgs(null, false, gameEvent));
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
else
|
||||||
|
{
|
||||||
|
gameEvent.Owner.Logger.WriteDebug($"Skipping event as we're shutting down {gameEvent.Id}");
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
Manager.OnServerEvent?.Invoke(gameEvent.Owner, new GameEventArgs(null, false, gameEvent));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using SharedLibraryCore;
|
using SharedLibraryCore;
|
||||||
using SharedLibraryCore.Interfaces;
|
using SharedLibraryCore.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace IW4MAdmin.Application.IO
|
namespace IW4MAdmin.Application.IO
|
||||||
@ -12,6 +12,7 @@ namespace IW4MAdmin.Application.IO
|
|||||||
private readonly Server _server;
|
private readonly Server _server;
|
||||||
private readonly IGameLogReader _reader;
|
private readonly IGameLogReader _reader;
|
||||||
private readonly string _gameLogFile;
|
private readonly string _gameLogFile;
|
||||||
|
private readonly bool _ignoreBots;
|
||||||
|
|
||||||
class EventState
|
class EventState
|
||||||
{
|
{
|
||||||
@ -22,17 +23,16 @@ namespace IW4MAdmin.Application.IO
|
|||||||
public GameLogEventDetection(Server server, string gameLogPath, Uri gameLogServerUri)
|
public GameLogEventDetection(Server server, string gameLogPath, Uri gameLogServerUri)
|
||||||
{
|
{
|
||||||
_gameLogFile = gameLogPath;
|
_gameLogFile = gameLogPath;
|
||||||
_reader = gameLogServerUri != null ? new GameLogReaderHttp(gameLogServerUri, gameLogPath, server.EventParser) : _reader = new GameLogReader(gameLogPath, server.EventParser);
|
_reader = gameLogServerUri != null ? new GameLogReaderHttp(gameLogServerUri, gameLogPath, server.EventParser) : _reader = new GameLogReader(gameLogPath, server.EventParser);
|
||||||
_server = server;
|
_server = server;
|
||||||
|
_ignoreBots = server.Manager.GetApplicationSettings().Configuration().IgnoreBots;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task PollForChanges()
|
public async Task PollForChanges()
|
||||||
{
|
{
|
||||||
while (!_server.Manager.CancellationToken.IsCancellationRequested)
|
while (!_server.Manager.CancellationToken.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
#if !DEBUG
|
|
||||||
if (_server.IsInitialized)
|
if (_server.IsInitialized)
|
||||||
#endif
|
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -45,7 +45,7 @@ namespace IW4MAdmin.Application.IO
|
|||||||
_server.Logger.WriteDebug(e.GetExceptionInfo());
|
_server.Logger.WriteDebug(e.GetExceptionInfo());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await Task.Delay(_reader.UpdateInterval, _server.Manager.CancellationToken);
|
await Task.Delay(_reader.UpdateInterval, _server.Manager.CancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,9 +69,50 @@ namespace IW4MAdmin.Application.IO
|
|||||||
|
|
||||||
var events = await _reader.ReadEventsFromLog(_server, fileDiff, previousFileSize);
|
var events = await _reader.ReadEventsFromLog(_server, fileDiff, previousFileSize);
|
||||||
|
|
||||||
foreach (var ev in events)
|
foreach (var gameEvent in events)
|
||||||
{
|
{
|
||||||
_server.Manager.GetEventHandler().AddEvent(ev);
|
try
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
_server.Logger.WriteVerbose(gameEvent.Data);
|
||||||
|
#endif
|
||||||
|
gameEvent.Owner = _server;
|
||||||
|
|
||||||
|
// we don't want to add the event if ignoreBots is on and the event comes from a bot
|
||||||
|
if (!_ignoreBots || (_ignoreBots && !((gameEvent.Origin?.IsBot ?? false) || (gameEvent.Target?.IsBot ?? false))))
|
||||||
|
{
|
||||||
|
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Origin) == GameEvent.EventRequiredEntity.Origin && gameEvent.Origin.NetworkId != 1)
|
||||||
|
{
|
||||||
|
gameEvent.Origin = _server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Origin?.NetworkId);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Target) == GameEvent.EventRequiredEntity.Target)
|
||||||
|
{
|
||||||
|
gameEvent.Target = _server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Target?.NetworkId);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gameEvent.Origin != null)
|
||||||
|
{
|
||||||
|
gameEvent.Origin.CurrentServer = _server;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gameEvent.Target != null)
|
||||||
|
{
|
||||||
|
gameEvent.Target.CurrentServer = _server;
|
||||||
|
}
|
||||||
|
|
||||||
|
_server.Manager.GetEventHandler().AddEvent(gameEvent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (InvalidOperationException)
|
||||||
|
{
|
||||||
|
if (!_ignoreBots)
|
||||||
|
{
|
||||||
|
_server.Logger.WriteWarning("Could not find client in client list when parsing event line");
|
||||||
|
_server.Logger.WriteDebug(gameEvent.Data);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
previousFileSize = fileSize;
|
previousFileSize = fileSize;
|
||||||
|
@ -11,32 +11,26 @@ namespace IW4MAdmin.Application.IO
|
|||||||
{
|
{
|
||||||
class GameLogReader : IGameLogReader
|
class GameLogReader : IGameLogReader
|
||||||
{
|
{
|
||||||
IEventParser Parser;
|
private readonly IEventParser _parser;
|
||||||
readonly string LogFile;
|
private readonly string _logFile;
|
||||||
private bool? ignoreBots;
|
|
||||||
|
|
||||||
public long Length => new FileInfo(LogFile).Length;
|
public long Length => new FileInfo(_logFile).Length;
|
||||||
|
|
||||||
public int UpdateInterval => 300;
|
public int UpdateInterval => 300;
|
||||||
|
|
||||||
public GameLogReader(string logFile, IEventParser parser)
|
public GameLogReader(string logFile, IEventParser parser)
|
||||||
{
|
{
|
||||||
LogFile = logFile;
|
_logFile = logFile;
|
||||||
Parser = parser;
|
_parser = parser;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<ICollection<GameEvent>> ReadEventsFromLog(Server server, long fileSizeDiff, long startPosition)
|
public async Task<ICollection<GameEvent>> ReadEventsFromLog(Server server, long fileSizeDiff, long startPosition)
|
||||||
{
|
{
|
||||||
if (!ignoreBots.HasValue)
|
|
||||||
{
|
|
||||||
ignoreBots = server.Manager.GetApplicationSettings().Configuration().IgnoreBots;
|
|
||||||
}
|
|
||||||
|
|
||||||
// allocate the bytes for the new log lines
|
// allocate the bytes for the new log lines
|
||||||
List<string> logLines = new List<string>();
|
List<string> logLines = new List<string>();
|
||||||
|
|
||||||
// open the file as a stream
|
// open the file as a stream
|
||||||
using (FileStream fs = new FileStream(LogFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
|
using (FileStream fs = new FileStream(_logFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
|
||||||
{
|
{
|
||||||
byte[] buff = new byte[fileSizeDiff];
|
byte[] buff = new byte[fileSizeDiff];
|
||||||
fs.Seek(startPosition, SeekOrigin.Begin);
|
fs.Seek(startPosition, SeekOrigin.Begin);
|
||||||
@ -67,57 +61,19 @@ namespace IW4MAdmin.Application.IO
|
|||||||
List<GameEvent> events = new List<GameEvent>();
|
List<GameEvent> events = new List<GameEvent>();
|
||||||
|
|
||||||
// parse each line
|
// parse each line
|
||||||
foreach (string eventLine in logLines)
|
foreach (string eventLine in logLines.Where(_line => _line.Length > 0))
|
||||||
{
|
{
|
||||||
if (eventLine.Length > 0)
|
try
|
||||||
{
|
{
|
||||||
try
|
var gameEvent = _parser.GenerateGameEvent(eventLine);
|
||||||
{
|
events.Add(gameEvent);
|
||||||
var gameEvent = Parser.GenerateGameEvent(eventLine);
|
}
|
||||||
// we don't want to add the event if ignoreBots is on and the event comes from a bot
|
|
||||||
if (!ignoreBots.Value || (ignoreBots.Value && !((gameEvent.Origin?.IsBot ?? false) || (gameEvent.Target?.IsBot ?? false))))
|
|
||||||
{
|
|
||||||
gameEvent.Owner = server;
|
|
||||||
|
|
||||||
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Origin) == GameEvent.EventRequiredEntity.Origin && gameEvent.Origin.NetworkId != 1)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
gameEvent.Origin = server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Origin?.NetworkId);
|
server.Logger.WriteWarning("Could not properly parse event line");
|
||||||
}
|
server.Logger.WriteDebug(e.Message);
|
||||||
|
server.Logger.WriteDebug(eventLine);
|
||||||
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Target) == GameEvent.EventRequiredEntity.Target)
|
|
||||||
{
|
|
||||||
gameEvent.Target = server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Target?.NetworkId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gameEvent.Origin != null)
|
|
||||||
{
|
|
||||||
gameEvent.Origin.CurrentServer = server;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gameEvent.Target != null)
|
|
||||||
{
|
|
||||||
gameEvent.Target.CurrentServer = server;
|
|
||||||
}
|
|
||||||
|
|
||||||
events.Add(gameEvent);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (InvalidOperationException)
|
|
||||||
{
|
|
||||||
if (!ignoreBots.Value)
|
|
||||||
{
|
|
||||||
server.Logger.WriteWarning("Could not find client in client list when parsing event line");
|
|
||||||
server.Logger.WriteDebug(eventLine);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
server.Logger.WriteWarning("Could not properly parse event line");
|
|
||||||
server.Logger.WriteDebug(e.Message);
|
|
||||||
server.Logger.WriteDebug(eventLine);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@ namespace IW4MAdmin.Application.IO
|
|||||||
readonly IEventParser Parser;
|
readonly IEventParser Parser;
|
||||||
readonly IGameLogServer Api;
|
readonly IGameLogServer Api;
|
||||||
readonly string logPath;
|
readonly string logPath;
|
||||||
private bool? ignoreBots;
|
|
||||||
private string lastKey = "next";
|
private string lastKey = "next";
|
||||||
|
|
||||||
public GameLogReaderHttp(Uri gameLogServerUri, string logPath, IEventParser parser)
|
public GameLogReaderHttp(Uri gameLogServerUri, string logPath, IEventParser parser)
|
||||||
@ -35,11 +34,6 @@ namespace IW4MAdmin.Application.IO
|
|||||||
|
|
||||||
public async Task<ICollection<GameEvent>> ReadEventsFromLog(Server server, long fileSizeDiff, long startPosition)
|
public async Task<ICollection<GameEvent>> ReadEventsFromLog(Server server, long fileSizeDiff, long startPosition)
|
||||||
{
|
{
|
||||||
if (!ignoreBots.HasValue)
|
|
||||||
{
|
|
||||||
ignoreBots = server.Manager.GetApplicationSettings().Configuration().IgnoreBots;
|
|
||||||
}
|
|
||||||
|
|
||||||
var events = new List<GameEvent>();
|
var events = new List<GameEvent>();
|
||||||
string b64Path = logPath;
|
string b64Path = logPath;
|
||||||
var response = await Api.Log(b64Path, lastKey);
|
var response = await Api.Log(b64Path, lastKey);
|
||||||
@ -53,64 +47,25 @@ namespace IW4MAdmin.Application.IO
|
|||||||
|
|
||||||
else if (!string.IsNullOrWhiteSpace(response.Data))
|
else if (!string.IsNullOrWhiteSpace(response.Data))
|
||||||
{
|
{
|
||||||
#if DEBUG
|
|
||||||
server.Manager.GetLogger(0).WriteInfo(response.Data);
|
|
||||||
#endif
|
|
||||||
// parse each line
|
// parse each line
|
||||||
foreach (string eventLine in response.Data.Split(Environment.NewLine))
|
foreach (string eventLine in response.Data
|
||||||
|
.Split(Environment.NewLine)
|
||||||
|
.Where(_line => _line.Length > 0))
|
||||||
{
|
{
|
||||||
if (eventLine.Length > 0)
|
try
|
||||||
{
|
{
|
||||||
try
|
var gameEvent = Parser.GenerateGameEvent(eventLine);
|
||||||
{
|
events.Add(gameEvent);
|
||||||
var gameEvent = Parser.GenerateGameEvent(eventLine);
|
|
||||||
// we don't want to add the event if ignoreBots is on and the event comes from a bot
|
|
||||||
if (!ignoreBots.Value || (ignoreBots.Value && !((gameEvent.Origin?.IsBot ?? false) || (gameEvent.Target?.IsBot ?? false))))
|
|
||||||
{
|
|
||||||
gameEvent.Owner = server;
|
|
||||||
|
|
||||||
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Origin) == GameEvent.EventRequiredEntity.Origin && gameEvent.Origin.NetworkId != 1)
|
|
||||||
{
|
|
||||||
gameEvent.Origin = server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Origin?.NetworkId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((gameEvent.RequiredEntity & GameEvent.EventRequiredEntity.Target) == GameEvent.EventRequiredEntity.Target)
|
|
||||||
{
|
|
||||||
gameEvent.Target = server.GetClientsAsList().First(_client => _client.NetworkId == gameEvent.Target?.NetworkId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gameEvent.Origin != null)
|
|
||||||
{
|
|
||||||
gameEvent.Origin.CurrentServer = server;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gameEvent.Target != null)
|
|
||||||
{
|
|
||||||
gameEvent.Target.CurrentServer = server;
|
|
||||||
}
|
|
||||||
|
|
||||||
events.Add(gameEvent);
|
|
||||||
}
|
|
||||||
#if DEBUG == true
|
#if DEBUG == true
|
||||||
server.Logger.WriteDebug($"Parsed event with id {gameEvent.Id} from http");
|
server.Logger.WriteDebug($"Parsed event with id {gameEvent.Id} from http");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (InvalidOperationException)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
if (!ignoreBots.Value)
|
server.Logger.WriteError("Could not properly parse event line from http");
|
||||||
{
|
server.Logger.WriteDebug(e.Message);
|
||||||
server.Logger.WriteWarning("Could not find client in client list when parsing event line");
|
server.Logger.WriteDebug(eventLine);
|
||||||
server.Logger.WriteDebug(eventLine);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
server.Logger.WriteWarning("Could not properly parse remote event line");
|
|
||||||
server.Logger.WriteDebug(e.Message);
|
|
||||||
server.Logger.WriteDebug(eventLine);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,6 @@ using SharedLibraryCore.Dtos;
|
|||||||
using SharedLibraryCore.Exceptions;
|
using SharedLibraryCore.Exceptions;
|
||||||
using SharedLibraryCore.Helpers;
|
using SharedLibraryCore.Helpers;
|
||||||
using SharedLibraryCore.Interfaces;
|
using SharedLibraryCore.Interfaces;
|
||||||
using SharedLibraryCore.Localization;
|
|
||||||
using SharedLibraryCore.Services;
|
using SharedLibraryCore.Services;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -24,8 +23,9 @@ namespace IW4MAdmin
|
|||||||
{
|
{
|
||||||
public class IW4MServer : Server
|
public class IW4MServer : Server
|
||||||
{
|
{
|
||||||
private static readonly Index loc = Utilities.CurrentLocalization.LocalizationIndex;
|
private static readonly SharedLibraryCore.Localization.Index loc = Utilities.CurrentLocalization.LocalizationIndex;
|
||||||
private GameLogEventDetection LogEvent;
|
private GameLogEventDetection LogEvent;
|
||||||
|
private const int REPORT_FLAG_COUNT = 4;
|
||||||
|
|
||||||
public int Id { get; private set; }
|
public int Id { get; private set; }
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ namespace IW4MAdmin
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
override public async Task OnClientConnected(EFClient clientFromLog)
|
override public async Task<EFClient> OnClientConnected(EFClient clientFromLog)
|
||||||
{
|
{
|
||||||
Logger.WriteDebug($"Client slot #{clientFromLog.ClientNumber} now reserved");
|
Logger.WriteDebug($"Client slot #{clientFromLog.ClientNumber} now reserved");
|
||||||
|
|
||||||
@ -73,13 +73,18 @@ namespace IW4MAdmin
|
|||||||
Type = GameEvent.EventType.Connect
|
Type = GameEvent.EventType.Connect
|
||||||
};
|
};
|
||||||
|
|
||||||
await client.OnJoin(client.IPAddress);
|
|
||||||
client.State = ClientState.Connected;
|
|
||||||
Manager.GetEventHandler().AddEvent(e);
|
Manager.GetEventHandler().AddEvent(e);
|
||||||
|
return client;
|
||||||
}
|
}
|
||||||
|
|
||||||
override public async Task OnClientDisconnected(EFClient client)
|
override public async Task OnClientDisconnected(EFClient client)
|
||||||
{
|
{
|
||||||
|
if (!GetClientsAsList().Any(_client => _client.NetworkId == client.NetworkId))
|
||||||
|
{
|
||||||
|
Logger.WriteInfo($"{client} disconnecting, but they are not connected");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
#if DEBUG == true
|
#if DEBUG == true
|
||||||
if (client.ClientNumber >= 0)
|
if (client.ClientNumber >= 0)
|
||||||
{
|
{
|
||||||
@ -103,57 +108,89 @@ namespace IW4MAdmin
|
|||||||
|
|
||||||
public override async Task ExecuteEvent(GameEvent E)
|
public override async Task ExecuteEvent(GameEvent E)
|
||||||
{
|
{
|
||||||
bool canExecuteCommand = true;
|
if (E == null)
|
||||||
|
|
||||||
if (!await ProcessEvent(E))
|
|
||||||
{
|
{
|
||||||
|
Logger.WriteError("Received NULL event");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Command C = null;
|
if (E.IsBlocking)
|
||||||
if (E.Type == GameEvent.EventType.Command)
|
|
||||||
{
|
{
|
||||||
try
|
await E.Origin?.Lock();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool canExecuteCommand = true;
|
||||||
|
Exception lastException = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!await ProcessEvent(E))
|
||||||
{
|
{
|
||||||
C = await SharedLibraryCore.Commands.CommandProcessing.ValidateCommand(E);
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (CommandException e)
|
Command C = null;
|
||||||
|
if (E.Type == GameEvent.EventType.Command)
|
||||||
{
|
{
|
||||||
Logger.WriteInfo(e.Message);
|
try
|
||||||
|
{
|
||||||
|
C = await SharedLibraryCore.Commands.CommandProcessing.ValidateCommand(E);
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (CommandException e)
|
||||||
|
{
|
||||||
|
Logger.WriteInfo(e.Message);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (C != null)
|
||||||
|
{
|
||||||
|
E.Extra = C;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (C != null)
|
foreach (var plugin in SharedLibraryCore.Plugins.PluginImporter.ActivePlugins)
|
||||||
{
|
{
|
||||||
E.Extra = C;
|
try
|
||||||
|
{
|
||||||
|
await plugin.OnEventAsync(E, this);
|
||||||
|
}
|
||||||
|
catch (AuthorizationException e)
|
||||||
|
{
|
||||||
|
E.Origin.Tell($"{loc["COMMAND_NOTAUTHORIZED"]} - {e.Message}");
|
||||||
|
canExecuteCommand = false;
|
||||||
|
}
|
||||||
|
catch (Exception Except)
|
||||||
|
{
|
||||||
|
Logger.WriteError($"{loc["SERVER_PLUGIN_ERROR"]} [{plugin.Name}]");
|
||||||
|
Logger.WriteDebug(Except.GetExceptionInfo());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// hack: this prevents commands from getting executing that 'shouldn't' be
|
||||||
|
if (E.Type == GameEvent.EventType.Command && E.Extra is Command command &&
|
||||||
|
(canExecuteCommand || E.Origin?.Level == Permission.Console))
|
||||||
|
{
|
||||||
|
await command.ExecuteAsync(E);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var plugin in SharedLibraryCore.Plugins.PluginImporter.ActivePlugins)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
try
|
lastException = e;
|
||||||
{
|
|
||||||
await plugin.OnEventAsync(E, this);
|
|
||||||
}
|
|
||||||
catch (AuthorizationException e)
|
|
||||||
{
|
|
||||||
E.Origin.Tell($"{loc["COMMAND_NOTAUTHORIZED"]} - {e.Message}");
|
|
||||||
canExecuteCommand = false;
|
|
||||||
}
|
|
||||||
catch (Exception Except)
|
|
||||||
{
|
|
||||||
Logger.WriteError($"{loc["SERVER_PLUGIN_ERROR"]} [{plugin.Name}]");
|
|
||||||
Logger.WriteDebug(Except.GetExceptionInfo());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// hack: this prevents commands from getting executing that 'shouldn't' be
|
finally
|
||||||
if (E.Type == GameEvent.EventType.Command &&
|
|
||||||
E.Extra != null &&
|
|
||||||
(canExecuteCommand ||
|
|
||||||
E.Origin?.Level == EFClient.Permission.Console))
|
|
||||||
{
|
{
|
||||||
await (((Command)E.Extra).ExecuteAsync(E));
|
if (E.IsBlocking)
|
||||||
|
{
|
||||||
|
E.Origin?.Unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastException != null)
|
||||||
|
{
|
||||||
|
Logger.WriteDebug("Last Exception is not null");
|
||||||
|
throw lastException;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,6 +234,25 @@ namespace IW4MAdmin
|
|||||||
await Manager.GetClientService().UpdateLevel(newPermission, E.Target, E.Origin);
|
await Manager.GetClientService().UpdateLevel(newPermission, E.Target, E.Origin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (E.Type == GameEvent.EventType.Connect)
|
||||||
|
{
|
||||||
|
if (E.Origin.State != ClientState.Connected)
|
||||||
|
{
|
||||||
|
E.Origin.State = ClientState.Connected;
|
||||||
|
E.Origin.LastConnection = DateTime.UtcNow;
|
||||||
|
E.Origin.Connections += 1;
|
||||||
|
|
||||||
|
ChatHistory.Add(new ChatInfo()
|
||||||
|
{
|
||||||
|
Name = E.Origin.Name,
|
||||||
|
Message = "CONNECTED",
|
||||||
|
Time = DateTime.UtcNow
|
||||||
|
});
|
||||||
|
|
||||||
|
await E.Origin.OnJoin(E.Origin.IPAddress);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
else if (E.Type == GameEvent.EventType.PreConnect)
|
else if (E.Type == GameEvent.EventType.PreConnect)
|
||||||
{
|
{
|
||||||
// we don't want to track bots in the database at all if ignore bots is requested
|
// we don't want to track bots in the database at all if ignore bots is requested
|
||||||
@ -232,7 +288,8 @@ namespace IW4MAdmin
|
|||||||
Clients[E.Origin.ClientNumber] = E.Origin;
|
Clients[E.Origin.ClientNumber] = E.Origin;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await OnClientConnected(E.Origin);
|
E.Origin = await OnClientConnected(E.Origin);
|
||||||
|
E.Target = E.Origin;
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@ -244,13 +301,6 @@ namespace IW4MAdmin
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ChatHistory.Add(new ChatInfo()
|
|
||||||
{
|
|
||||||
Name = E.Origin.Name,
|
|
||||||
Message = "CONNECTED",
|
|
||||||
Time = DateTime.UtcNow
|
|
||||||
});
|
|
||||||
|
|
||||||
if (E.Origin.Level > EFClient.Permission.Moderator)
|
if (E.Origin.Level > EFClient.Permission.Moderator)
|
||||||
{
|
{
|
||||||
E.Origin.Tell(string.Format(loc["SERVER_REPORT_COUNT"], E.Owner.Reports.Count));
|
E.Origin.Tell(string.Format(loc["SERVER_REPORT_COUNT"], E.Owner.Reports.Count));
|
||||||
@ -329,6 +379,14 @@ namespace IW4MAdmin
|
|||||||
};
|
};
|
||||||
|
|
||||||
await Manager.GetPenaltyService().Create(newReport);
|
await Manager.GetPenaltyService().Create(newReport);
|
||||||
|
|
||||||
|
int reportNum = await Manager.GetClientService().GetClientReportCount(E.Target.ClientId);
|
||||||
|
bool isAutoFlagged = await Manager.GetClientService().IsAutoFlagged(E.Target.ClientId);
|
||||||
|
|
||||||
|
if (!E.Target.IsPrivileged() && reportNum >= REPORT_FLAG_COUNT && !isAutoFlagged)
|
||||||
|
{
|
||||||
|
E.Target.Flag(Utilities.CurrentLocalization.LocalizationIndex["SERVER_AUTO_FLAG_REPORT"].FormatExt(reportNum), Utilities.IW4MAdminClient(E.Owner));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (E.Type == GameEvent.EventType.TempBan)
|
else if (E.Type == GameEvent.EventType.TempBan)
|
||||||
@ -376,7 +434,13 @@ namespace IW4MAdmin
|
|||||||
// so we need to disconnect the "full" version of the client
|
// so we need to disconnect the "full" version of the client
|
||||||
var client = GetClientsAsList().FirstOrDefault(_client => _client.Equals(E.Origin));
|
var client = GetClientsAsList().FirstOrDefault(_client => _client.Equals(E.Origin));
|
||||||
|
|
||||||
if (client != null)
|
if (client == null)
|
||||||
|
{
|
||||||
|
Logger.WriteWarning($"Client {E.Origin} detected as disconnecting, but could not find them in the player list");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (client.State == ClientState.Connected)
|
||||||
{
|
{
|
||||||
#if DEBUG == true
|
#if DEBUG == true
|
||||||
Logger.WriteDebug($"Begin PreDisconnect for {client}");
|
Logger.WriteDebug($"Begin PreDisconnect for {client}");
|
||||||
@ -385,12 +449,12 @@ namespace IW4MAdmin
|
|||||||
#if DEBUG == true
|
#if DEBUG == true
|
||||||
Logger.WriteDebug($"End PreDisconnect for {client}");
|
Logger.WriteDebug($"End PreDisconnect for {client}");
|
||||||
#endif
|
#endif
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (client?.State != ClientState.Disconnecting)
|
else
|
||||||
{
|
{
|
||||||
Logger.WriteWarning($"Client {E.Origin} detected as disconnecting, but could not find them in the player list");
|
Logger.WriteWarning($"Expected disconnecting client {client} to be in state {ClientState.Connected.ToString()}, but is in state {client.State}");
|
||||||
Logger.WriteDebug($"Expected {E.Origin} but found {GetClientsAsList().FirstOrDefault(_client => _client.ClientNumber == E.Origin.ClientNumber)}");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -405,8 +469,6 @@ namespace IW4MAdmin
|
|||||||
|
|
||||||
if (E.Type == GameEvent.EventType.Say)
|
if (E.Type == GameEvent.EventType.Say)
|
||||||
{
|
{
|
||||||
E.Data = E.Data.StripColors();
|
|
||||||
|
|
||||||
if (E.Data?.Length > 0)
|
if (E.Data?.Length > 0)
|
||||||
{
|
{
|
||||||
string message = E.Data;
|
string message = E.Data;
|
||||||
@ -438,7 +500,7 @@ namespace IW4MAdmin
|
|||||||
// iw4 doesn't log the game info
|
// iw4 doesn't log the game info
|
||||||
if (E.Extra == null)
|
if (E.Extra == null)
|
||||||
{
|
{
|
||||||
var dict = await this.GetInfoAsync();
|
var dict = await this.GetInfoAsync(new TimeSpan(0, 0, 20));
|
||||||
|
|
||||||
if (dict == null)
|
if (dict == null)
|
||||||
{
|
{
|
||||||
@ -447,27 +509,23 @@ namespace IW4MAdmin
|
|||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Gametype = dict["gametype"].StripColors();
|
Gametype = dict["gametype"];
|
||||||
Hostname = dict["hostname"]?.StripColors();
|
Hostname = dict["hostname"];
|
||||||
|
|
||||||
string mapname = dict["mapname"]?.StripColors() ?? CurrentMap.Name;
|
string mapname = dict["mapname"] ?? CurrentMap.Name;
|
||||||
CurrentMap = Maps.Find(m => m.Name == mapname) ?? new Map() { Alias = mapname, Name = mapname };
|
UpdateMap(mapname);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var dict = (Dictionary<string, string>)E.Extra;
|
var dict = (Dictionary<string, string>)E.Extra;
|
||||||
Gametype = dict["g_gametype"].StripColors();
|
Gametype = dict["g_gametype"];
|
||||||
Hostname = dict["sv_hostname"].StripColors();
|
Hostname = dict["sv_hostname"];
|
||||||
MaxClients = int.Parse(dict["sv_maxclients"]);
|
MaxClients = int.Parse(dict["sv_maxclients"]);
|
||||||
|
|
||||||
string mapname = dict["mapname"].StripColors();
|
string mapname = dict["mapname"];
|
||||||
CurrentMap = Maps.Find(m => m.Name == mapname) ?? new Map()
|
UpdateMap(mapname);
|
||||||
{
|
|
||||||
Alias = mapname,
|
|
||||||
Name = mapname
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -514,26 +572,29 @@ namespace IW4MAdmin
|
|||||||
{
|
{
|
||||||
var client = GetClientsAsList().FirstOrDefault(_client => _client.Equals(origin));
|
var client = GetClientsAsList().FirstOrDefault(_client => _client.Equals(origin));
|
||||||
|
|
||||||
if (client != null)
|
if (client == null)
|
||||||
{
|
{
|
||||||
client.Ping = origin.Ping;
|
Logger.WriteWarning($"{origin} expected to exist in client list for update, but they do not");
|
||||||
client.Score = origin.Score;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// update their IP if it hasn't been set yet
|
client.Ping = origin.Ping;
|
||||||
if (client.IPAddress == null &&
|
client.Score = origin.Score;
|
||||||
!client.IsBot &&
|
|
||||||
client.State == ClientState.Connected)
|
// update their IP if it hasn't been set yet
|
||||||
|
if (client.IPAddress == null &&
|
||||||
|
!client.IsBot &&
|
||||||
|
client.State == ClientState.Connected)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
try
|
await client.OnJoin(origin.IPAddress);
|
||||||
{
|
}
|
||||||
await client.OnJoin(origin.IPAddress);
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
origin.CurrentServer.Logger.WriteWarning($"Could not execute on join for {origin}");
|
Logger.WriteWarning($"Could not execute on join for {origin}");
|
||||||
origin.CurrentServer.Logger.WriteDebug(e.GetExceptionInfo());
|
Logger.WriteDebug(e.GetExceptionInfo());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -551,7 +612,8 @@ namespace IW4MAdmin
|
|||||||
var now = DateTime.Now;
|
var now = DateTime.Now;
|
||||||
#endif
|
#endif
|
||||||
var currentClients = GetClientsAsList();
|
var currentClients = GetClientsAsList();
|
||||||
var polledClients = (await this.GetStatusAsync()).AsEnumerable();
|
var statusResponse = (await this.GetStatusAsync());
|
||||||
|
var polledClients = statusResponse.Item1.AsEnumerable();
|
||||||
|
|
||||||
if (Manager.GetApplicationSettings().Configuration().IgnoreBots)
|
if (Manager.GetApplicationSettings().Configuration().IgnoreBots)
|
||||||
{
|
{
|
||||||
@ -564,6 +626,8 @@ namespace IW4MAdmin
|
|||||||
var connectingClients = polledClients.Except(currentClients);
|
var connectingClients = polledClients.Except(currentClients);
|
||||||
var updatedClients = polledClients.Except(connectingClients).Except(disconnectingClients);
|
var updatedClients = polledClients.Except(connectingClients).Except(disconnectingClients);
|
||||||
|
|
||||||
|
UpdateMap(statusResponse.Item2);
|
||||||
|
|
||||||
return new List<EFClient>[]
|
return new List<EFClient>[]
|
||||||
{
|
{
|
||||||
connectingClients.ToList(),
|
connectingClients.ToList(),
|
||||||
@ -572,6 +636,18 @@ namespace IW4MAdmin
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void UpdateMap(string mapname)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(mapname))
|
||||||
|
{
|
||||||
|
CurrentMap = Maps.Find(m => m.Name == mapname) ?? new Map()
|
||||||
|
{
|
||||||
|
Alias = mapname,
|
||||||
|
Name = mapname
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private async Task ShutdownInternal()
|
private async Task ShutdownInternal()
|
||||||
{
|
{
|
||||||
foreach (var client in GetClientsAsList())
|
foreach (var client in GetClientsAsList())
|
||||||
@ -603,7 +679,7 @@ namespace IW4MAdmin
|
|||||||
override public async Task<bool> ProcessUpdatesAsync(CancellationToken cts)
|
override public async Task<bool> ProcessUpdatesAsync(CancellationToken cts)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (cts.IsCancellationRequested)
|
if (cts.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
await ShutdownInternal();
|
await ShutdownInternal();
|
||||||
@ -620,7 +696,6 @@ namespace IW4MAdmin
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
var polledClients = await PollPlayersAsync();
|
var polledClients = await PollPlayersAsync();
|
||||||
var waiterList = new List<GameEvent>();
|
|
||||||
|
|
||||||
foreach (var disconnectingClient in polledClients[1])
|
foreach (var disconnectingClient in polledClients[1])
|
||||||
{
|
{
|
||||||
@ -637,18 +712,9 @@ namespace IW4MAdmin
|
|||||||
};
|
};
|
||||||
|
|
||||||
Manager.GetEventHandler().AddEvent(e);
|
Manager.GetEventHandler().AddEvent(e);
|
||||||
// wait until the disconnect event is complete
|
await e.WaitAsync(Utilities.DefaultCommandTimeout, Manager.CancellationToken);
|
||||||
// because we don't want to try to fill up a slot that's not empty yet
|
|
||||||
waiterList.Add(e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// wait for all the disconnect tasks to finish
|
|
||||||
foreach (var waiter in waiterList)
|
|
||||||
{
|
|
||||||
waiter.Wait();
|
|
||||||
}
|
|
||||||
|
|
||||||
waiterList.Clear();
|
|
||||||
// this are our new connecting clients
|
// this are our new connecting clients
|
||||||
foreach (var client in polledClients[0])
|
foreach (var client in polledClients[0])
|
||||||
{
|
{
|
||||||
@ -662,20 +728,14 @@ namespace IW4MAdmin
|
|||||||
{
|
{
|
||||||
Type = GameEvent.EventType.PreConnect,
|
Type = GameEvent.EventType.PreConnect,
|
||||||
Origin = client,
|
Origin = client,
|
||||||
Owner = this
|
Owner = this,
|
||||||
|
IsBlocking = true
|
||||||
};
|
};
|
||||||
|
|
||||||
Manager.GetEventHandler().AddEvent(e);
|
Manager.GetEventHandler().AddEvent(e);
|
||||||
waiterList.Add(e);
|
await e.WaitAsync(Utilities.DefaultCommandTimeout, Manager.CancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
// wait for all the connect tasks to finish
|
|
||||||
foreach (var waiter in waiterList)
|
|
||||||
{
|
|
||||||
waiter.Wait();
|
|
||||||
}
|
|
||||||
|
|
||||||
waiterList.Clear();
|
|
||||||
// these are the clients that have updated
|
// these are the clients that have updated
|
||||||
foreach (var client in polledClients[2])
|
foreach (var client in polledClients[2])
|
||||||
{
|
{
|
||||||
@ -687,12 +747,6 @@ namespace IW4MAdmin
|
|||||||
};
|
};
|
||||||
|
|
||||||
Manager.GetEventHandler().AddEvent(e);
|
Manager.GetEventHandler().AddEvent(e);
|
||||||
waiterList.Add(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (var waiter in waiterList)
|
|
||||||
{
|
|
||||||
waiter.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ConnectionErrors > 0)
|
if (ConnectionErrors > 0)
|
||||||
@ -861,12 +915,12 @@ namespace IW4MAdmin
|
|||||||
|
|
||||||
InitializeMaps();
|
InitializeMaps();
|
||||||
|
|
||||||
this.Hostname = hostname.StripColors();
|
this.Hostname = hostname;
|
||||||
this.CurrentMap = Maps.Find(m => m.Name == mapname) ?? new Map() { Alias = mapname, Name = mapname };
|
|
||||||
this.MaxClients = maxplayers;
|
this.MaxClients = maxplayers;
|
||||||
this.FSGame = game;
|
this.FSGame = game;
|
||||||
this.Gametype = gametype;
|
this.Gametype = gametype;
|
||||||
this.IP = ip.Value == "localhost" ? ServerConfig.IPAddress : ip.Value ?? ServerConfig.IPAddress;
|
this.IP = ip.Value == "localhost" ? ServerConfig.IPAddress : ip.Value ?? ServerConfig.IPAddress;
|
||||||
|
UpdateMap(mapname);
|
||||||
|
|
||||||
if (RconParser.CanGenerateLogPath)
|
if (RconParser.CanGenerateLogPath)
|
||||||
{
|
{
|
||||||
@ -996,7 +1050,15 @@ namespace IW4MAdmin
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
await Target.CurrentServer.OnClientDisconnected(Target);
|
// await Target.CurrentServer.OnClientDisconnected(Target);
|
||||||
|
var e = new GameEvent()
|
||||||
|
{
|
||||||
|
Type = GameEvent.EventType.PreDisconnect,
|
||||||
|
Origin = Target,
|
||||||
|
Owner = this
|
||||||
|
};
|
||||||
|
|
||||||
|
Manager.GetEventHandler().AddEvent(e);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
var newPenalty = new EFPenalty()
|
var newPenalty = new EFPenalty()
|
||||||
@ -1086,7 +1148,6 @@ namespace IW4MAdmin
|
|||||||
Offense = reason,
|
Offense = reason,
|
||||||
Punisher = originClient,
|
Punisher = originClient,
|
||||||
Link = targetClient.AliasLink,
|
Link = targetClient.AliasLink,
|
||||||
AutomatedOffense = originClient.AdministeredPenalties?.FirstOrDefault()?.AutomatedOffense,
|
|
||||||
IsEvadedOffense = isEvade
|
IsEvadedOffense = isEvade
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
using IW4MAdmin.Application.Migration;
|
using IW4MAdmin.Application.Migration;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using SharedLibraryCore;
|
using SharedLibraryCore;
|
||||||
|
using SharedLibraryCore.Helpers;
|
||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
@ -9,9 +12,10 @@ namespace IW4MAdmin.Application
|
|||||||
{
|
{
|
||||||
public class Program
|
public class Program
|
||||||
{
|
{
|
||||||
public static double Version { get; private set; } = Utilities.GetVersionAsDouble();
|
public static BuildNumber Version { get; private set; } = BuildNumber.Parse(Utilities.GetVersionAsString());
|
||||||
public static ApplicationManager ServerManager;
|
public static ApplicationManager ServerManager;
|
||||||
private static Task ApplicationTask;
|
private static Task ApplicationTask;
|
||||||
|
private static readonly BuildNumber _fallbackVersion = BuildNumber.Parse("99.99.99.99");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// entrypoint of the application
|
/// entrypoint of the application
|
||||||
@ -66,6 +70,7 @@ namespace IW4MAdmin.Application
|
|||||||
|
|
||||||
ServerManager.Logger.WriteInfo(Utilities.CurrentLocalization.LocalizationIndex["MANAGER_VERSION"].FormatExt(Version));
|
ServerManager.Logger.WriteInfo(Utilities.CurrentLocalization.LocalizationIndex["MANAGER_VERSION"].FormatExt(Version));
|
||||||
|
|
||||||
|
ConfigureServices();
|
||||||
await CheckVersion();
|
await CheckVersion();
|
||||||
await ServerManager.Init();
|
await ServerManager.Init();
|
||||||
}
|
}
|
||||||
@ -142,12 +147,12 @@ namespace IW4MAdmin.Application
|
|||||||
|
|
||||||
var version = new API.Master.VersionInfo()
|
var version = new API.Master.VersionInfo()
|
||||||
{
|
{
|
||||||
CurrentVersionStable = 99.99f
|
CurrentVersionStable = _fallbackVersion
|
||||||
};
|
};
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
version = await api.GetVersion();
|
version = await api.GetVersion(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
@ -161,7 +166,7 @@ namespace IW4MAdmin.Application
|
|||||||
ServerManager.Logger.WriteDebug(e.Message);
|
ServerManager.Logger.WriteDebug(e.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (version.CurrentVersionStable == 99.99f)
|
if (version.CurrentVersionStable == _fallbackVersion)
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.Red;
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
Console.WriteLine(loc["MANAGER_VERSION_FAIL"]);
|
Console.WriteLine(loc["MANAGER_VERSION_FAIL"]);
|
||||||
@ -172,16 +177,16 @@ namespace IW4MAdmin.Application
|
|||||||
else if (version.CurrentVersionStable > Version)
|
else if (version.CurrentVersionStable > Version)
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
||||||
Console.WriteLine($"IW4MAdmin {loc["MANAGER_VERSION_UPDATE"]} [v{version.CurrentVersionStable.ToString("0.0")}]");
|
Console.WriteLine($"IW4MAdmin {loc["MANAGER_VERSION_UPDATE"]} [v{version.CurrentVersionStable.ToString()}]");
|
||||||
Console.WriteLine(loc["MANAGER_VERSION_CURRENT"].FormatExt($"[v{Version.ToString("0.0")}]"));
|
Console.WriteLine(loc["MANAGER_VERSION_CURRENT"].FormatExt($"[v{Version.ToString()}]"));
|
||||||
Console.ForegroundColor = ConsoleColor.Gray;
|
Console.ForegroundColor = ConsoleColor.Gray;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
else if (version.CurrentVersionPrerelease > Version)
|
else if (version.CurrentVersionPrerelease > Version)
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
||||||
Console.WriteLine($"IW4MAdmin-Prerelease {loc["MANAGER_VERSION_UPDATE"]} [v{version.CurrentVersionPrerelease.ToString("0.0")}-pr]");
|
Console.WriteLine($"IW4MAdmin-Prerelease {loc["MANAGER_VERSION_UPDATE"]} [v{version.CurrentVersionPrerelease.ToString()}-pr]");
|
||||||
Console.WriteLine(loc["MANAGER_VERSION_CURRENT"].FormatExt($"[v{Version.ToString("0.0")}-pr]"));
|
Console.WriteLine(loc["MANAGER_VERSION_CURRENT"].FormatExt($"[v{Version.ToString()}-pr]"));
|
||||||
Console.ForegroundColor = ConsoleColor.Gray;
|
Console.ForegroundColor = ConsoleColor.Gray;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -230,5 +235,13 @@ namespace IW4MAdmin.Application
|
|||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
{ }
|
{ }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void ConfigureServices()
|
||||||
|
{
|
||||||
|
var serviceProvider = new ServiceCollection();
|
||||||
|
serviceProvider.AddSingleton<IManager>(ServerManager);
|
||||||
|
var builder = serviceProvider.BuildServiceProvider();
|
||||||
|
builder.Dispose();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
63
Application/Misc/EventProfiler.cs
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
using SharedLibraryCore;
|
||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace IW4MAdmin.Application.Misc
|
||||||
|
{
|
||||||
|
internal class EventPerformance
|
||||||
|
{
|
||||||
|
public long ExecutionTime { get; set; }
|
||||||
|
public GameEvent Event { get; set; }
|
||||||
|
public string EventInfo => $"{Event.Type}, {Event.FailReason}, {Event.IsBlocking}, {Event.Data}, {Event.Message}, {Event.Extra}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DuplicateKeyComparer<TKey> : IComparer<TKey> where TKey : IComparable
|
||||||
|
{
|
||||||
|
public int Compare(TKey x, TKey y)
|
||||||
|
{
|
||||||
|
int result = x.CompareTo(y);
|
||||||
|
|
||||||
|
if (result == 0)
|
||||||
|
return 1;
|
||||||
|
else
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal class EventProfiler
|
||||||
|
{
|
||||||
|
public double AverageEventTime { get; private set; }
|
||||||
|
public double MaxEventTime => Events.Values.Last().ExecutionTime;
|
||||||
|
public double MinEventTime => Events.Values[0].ExecutionTime;
|
||||||
|
public int TotalEventCount => Events.Count;
|
||||||
|
public SortedList<long, EventPerformance> Events { get; private set; } = new SortedList<long, EventPerformance>(new DuplicateKeyComparer<long>());
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
|
public EventProfiler(ILogger logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Profile(DateTime start, DateTime end, GameEvent gameEvent)
|
||||||
|
{
|
||||||
|
_logger.WriteDebug($"Starting profile of event {gameEvent.Id}");
|
||||||
|
long executionTime = (long)Math.Round((end - start).TotalMilliseconds);
|
||||||
|
|
||||||
|
var perf = new EventPerformance()
|
||||||
|
{
|
||||||
|
Event = gameEvent,
|
||||||
|
ExecutionTime = executionTime
|
||||||
|
};
|
||||||
|
|
||||||
|
lock (Events)
|
||||||
|
{
|
||||||
|
Events.Add(executionTime, perf);
|
||||||
|
}
|
||||||
|
|
||||||
|
AverageEventTime = (AverageEventTime * (TotalEventCount - 1) + executionTime) / TotalEventCount;
|
||||||
|
_logger.WriteDebug($"Finished profile of event {gameEvent.Id}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -3,7 +3,6 @@ using SharedLibraryCore.Interfaces;
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace IW4MAdmin.Application
|
namespace IW4MAdmin.Application
|
||||||
{
|
{
|
||||||
@ -20,16 +19,21 @@ namespace IW4MAdmin.Application
|
|||||||
}
|
}
|
||||||
|
|
||||||
readonly string FileName;
|
readonly string FileName;
|
||||||
readonly SemaphoreSlim OnLogWriting;
|
readonly ReaderWriterLockSlim WritingLock;
|
||||||
static readonly short MAX_LOG_FILES = 10;
|
static readonly short MAX_LOG_FILES = 10;
|
||||||
|
|
||||||
public Logger(string fn)
|
public Logger(string fn)
|
||||||
{
|
{
|
||||||
FileName = Path.Join(Utilities.OperatingDirectory, "Log", $"{fn}.log");
|
FileName = Path.Join(Utilities.OperatingDirectory, "Log", $"{fn}.log");
|
||||||
OnLogWriting = new SemaphoreSlim(1, 1);
|
WritingLock = new ReaderWriterLockSlim();
|
||||||
RotateLogs();
|
RotateLogs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
~Logger()
|
||||||
|
{
|
||||||
|
WritingLock.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// rotates logs when log is initialized
|
/// rotates logs when log is initialized
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -56,9 +60,10 @@ namespace IW4MAdmin.Application
|
|||||||
|
|
||||||
void Write(string msg, LogType type)
|
void Write(string msg, LogType type)
|
||||||
{
|
{
|
||||||
OnLogWriting.Wait();
|
WritingLock.EnterWriteLock();
|
||||||
|
|
||||||
string stringType = type.ToString();
|
string stringType = type.ToString();
|
||||||
|
msg = msg.StripColors();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -73,7 +78,7 @@ namespace IW4MAdmin.Application
|
|||||||
#if DEBUG
|
#if DEBUG
|
||||||
// lets keep it simple and dispose of everything quickly as logging wont be that much (relatively)
|
// lets keep it simple and dispose of everything quickly as logging wont be that much (relatively)
|
||||||
Console.WriteLine(LogLine);
|
Console.WriteLine(LogLine);
|
||||||
File.AppendAllText(FileName, $"{LogLine}{Environment.NewLine}");
|
//File.AppendAllText(FileName, $"{LogLine}{Environment.NewLine}");
|
||||||
//Debug.WriteLine(msg);
|
//Debug.WriteLine(msg);
|
||||||
#else
|
#else
|
||||||
if (type == LogType.Error || type == LogType.Verbose)
|
if (type == LogType.Error || type == LogType.Verbose)
|
||||||
@ -90,7 +95,7 @@ namespace IW4MAdmin.Application
|
|||||||
Console.WriteLine(ex.GetExceptionInfo());
|
Console.WriteLine(ex.GetExceptionInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
OnLogWriting.Release(1);
|
WritingLock.ExitWriteLock();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void WriteVerbose(string msg)
|
public void WriteVerbose(string msg)
|
||||||
|
50
Application/Misc/MiddlewareActionHandler.cs
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace IW4MAdmin.Application.Misc
|
||||||
|
{
|
||||||
|
class MiddlewareActionHandler : IMiddlewareActionHandler
|
||||||
|
{
|
||||||
|
private static readonly IDictionary<string, IList<object>> _actions = new Dictionary<string, IList<object>>();
|
||||||
|
|
||||||
|
public async Task<T> Execute<T>(T value, string name = null)
|
||||||
|
{
|
||||||
|
string key = string.IsNullOrEmpty(name) ? typeof(T).ToString() : name;
|
||||||
|
|
||||||
|
if (_actions.ContainsKey(key))
|
||||||
|
{
|
||||||
|
foreach (var action in _actions[key])
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
value = await ((IMiddlewareAction<T>)action).Invoke(value);
|
||||||
|
}
|
||||||
|
// todo: probably log this somewhere
|
||||||
|
catch { }
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Register<T>(T actionType, IMiddlewareAction<T> action, string name = null)
|
||||||
|
{
|
||||||
|
string key = string.IsNullOrEmpty(name) ? typeof(T).ToString() : name;
|
||||||
|
|
||||||
|
if (_actions.ContainsKey(key))
|
||||||
|
{
|
||||||
|
_actions[key].Add(action);
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_actions.Add(key, new[] { action });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -38,7 +38,7 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
Configuration.Status.Pattern = @"^ *([0-9]+) +-?([0-9]+) +((?:[A-Z]+|[0-9]+)) +((?:[a-z]|[0-9]){8,32}|(?:[a-z]|[0-9]){8,32}|bot[0-9]+|(?:[0-9]+)) *(.{0,32}) +([0-9]+) +(\d+\.\d+\.\d+.\d+\:-*\d{1,5}|0+.0+:-*\d{1,5}|loopback) +(-*[0-9]+) +([0-9]+) *$";
|
Configuration.Status.Pattern = @"^ *([0-9]+) +-?([0-9]+) +((?:[A-Z]+|[0-9]+)) +((?:[a-z]|[0-9]){8,32}|(?:[a-z]|[0-9]){8,32}|bot[0-9]+|(?:[0-9]+)) *(.{0,32}) +([0-9]+) +(\d+\.\d+\.\d+.\d+\:-*\d{1,5}|0+.0+:-*\d{1,5}|loopback|unknown) +(-*[0-9]+) +([0-9]+) *$";
|
||||||
Configuration.Status.AddMapping(ParserRegex.GroupType.RConClientNumber, 1);
|
Configuration.Status.AddMapping(ParserRegex.GroupType.RConClientNumber, 1);
|
||||||
Configuration.Status.AddMapping(ParserRegex.GroupType.RConScore, 2);
|
Configuration.Status.AddMapping(ParserRegex.GroupType.RConScore, 2);
|
||||||
Configuration.Status.AddMapping(ParserRegex.GroupType.RConPing, 3);
|
Configuration.Status.AddMapping(ParserRegex.GroupType.RConPing, 3);
|
||||||
@ -52,6 +52,9 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarDefaultValue, 3);
|
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarDefaultValue, 3);
|
||||||
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarLatchedValue, 4);
|
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarLatchedValue, 4);
|
||||||
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarDomain, 5);
|
Configuration.Dvar.AddMapping(ParserRegex.GroupType.RConDvarDomain, 5);
|
||||||
|
|
||||||
|
Configuration.MapStatus.Pattern = @"map: (([a-z]|_|\d)+)";
|
||||||
|
Configuration.MapStatus.AddMapping(ParserRegex.GroupType.RConStatusMap, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IRConParserConfiguration Configuration { get; set; }
|
public IRConParserConfiguration Configuration { get; set; }
|
||||||
@ -79,24 +82,52 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
throw new DvarException(Utilities.CurrentLocalization.LocalizationIndex["SERVER_ERROR_DVAR"].FormatExt(dvarName));
|
throw new DvarException(Utilities.CurrentLocalization.LocalizationIndex["SERVER_ERROR_DVAR"].FormatExt(dvarName));
|
||||||
}
|
}
|
||||||
|
|
||||||
string value = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarValue]].Value.StripColors();
|
string value = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarValue]].Value;
|
||||||
string defaultValue = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarDefaultValue]].Value.StripColors();
|
string defaultValue = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarDefaultValue]].Value;
|
||||||
string latchedValue = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarLatchedValue]].Value.StripColors();
|
string latchedValue = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarLatchedValue]].Value;
|
||||||
|
|
||||||
|
string removeTrailingColorCode(string input) => Regex.Replace(input, @"\^7$", "");
|
||||||
|
|
||||||
|
|
||||||
|
value = removeTrailingColorCode(value);
|
||||||
|
defaultValue = removeTrailingColorCode(defaultValue);
|
||||||
|
latchedValue = removeTrailingColorCode(latchedValue);
|
||||||
|
|
||||||
return new Dvar<T>()
|
return new Dvar<T>()
|
||||||
{
|
{
|
||||||
Name = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarName]].Value.StripColors(),
|
Name = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarName]].Value,
|
||||||
Value = string.IsNullOrEmpty(value) ? default : (T)Convert.ChangeType(value, typeof(T)),
|
Value = string.IsNullOrEmpty(value) ? default : (T)Convert.ChangeType(value, typeof(T)),
|
||||||
DefaultValue = string.IsNullOrEmpty(defaultValue) ? default : (T)Convert.ChangeType(defaultValue, typeof(T)),
|
DefaultValue = string.IsNullOrEmpty(defaultValue) ? default : (T)Convert.ChangeType(defaultValue, typeof(T)),
|
||||||
LatchedValue = string.IsNullOrEmpty(latchedValue) ? default : (T)Convert.ChangeType(latchedValue, typeof(T)),
|
LatchedValue = string.IsNullOrEmpty(latchedValue) ? default : (T)Convert.ChangeType(latchedValue, typeof(T)),
|
||||||
Domain = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarDomain]].Value.StripColors()
|
Domain = match.Groups[Configuration.Dvar.GroupMapping[ParserRegex.GroupType.RConDvarDomain]].Value
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual async Task<List<EFClient>> GetStatusAsync(Connection connection)
|
public virtual async Task<(List<EFClient>, string)> GetStatusAsync(Connection connection)
|
||||||
{
|
{
|
||||||
string[] response = await connection.SendQueryAsync(StaticHelpers.QueryType.COMMAND_STATUS);
|
string[] response = await connection.SendQueryAsync(StaticHelpers.QueryType.COMMAND_STATUS);
|
||||||
return ClientsFromStatus(response);
|
#if DEBUG
|
||||||
|
foreach (var line in response)
|
||||||
|
{
|
||||||
|
Console.WriteLine(line);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return (ClientsFromStatus(response), MapFromStatus(response));
|
||||||
|
}
|
||||||
|
|
||||||
|
private string MapFromStatus(string[] response)
|
||||||
|
{
|
||||||
|
string map = null;
|
||||||
|
foreach (var line in response)
|
||||||
|
{
|
||||||
|
var regex = Regex.Match(line, Configuration.MapStatus.Pattern);
|
||||||
|
if (regex.Success)
|
||||||
|
{
|
||||||
|
map = regex.Groups[Configuration.MapStatus.GroupMapping[ParserRegex.GroupType.RConStatusMap]].ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> SetDvarAsync(Connection connection, string dvarName, object dvarValue)
|
public async Task<bool> SetDvarAsync(Connection connection, string dvarName, object dvarValue)
|
||||||
@ -145,7 +176,7 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
string name = regex.Groups[Configuration.Status.GroupMapping[ParserRegex.GroupType.RConName]].Value.StripColors().Trim();
|
string name = regex.Groups[Configuration.Status.GroupMapping[ParserRegex.GroupType.RConName]].Value.Trim();
|
||||||
int? ip = regex.Groups[Configuration.Status.GroupMapping[ParserRegex.GroupType.RConIpAddress]].Value.Split(':')[0].ConvertToIP();
|
int? ip = regex.Groups[Configuration.Status.GroupMapping[ParserRegex.GroupType.RConIpAddress]].Value.Split(':')[0].ConvertToIP();
|
||||||
|
|
||||||
var client = new EFClient()
|
var client = new EFClient()
|
||||||
@ -182,4 +213,5 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
|
|
||||||
return StatusPlayers;
|
return StatusPlayers;
|
||||||
}
|
}
|
||||||
}}
|
}
|
||||||
|
}
|
||||||
|
@ -12,6 +12,7 @@ namespace IW4MAdmin.Application.RconParsers
|
|||||||
{
|
{
|
||||||
public CommandPrefix CommandPrefixes { get; set; }
|
public CommandPrefix CommandPrefixes { get; set; }
|
||||||
public ParserRegex Status { get; set; } = new ParserRegex();
|
public ParserRegex Status { get; set; } = new ParserRegex();
|
||||||
|
public ParserRegex MapStatus { get; set; } = new ParserRegex();
|
||||||
public ParserRegex Dvar { get; set; } = new ParserRegex();
|
public ParserRegex Dvar { get; set; } = new ParserRegex();
|
||||||
public bool WaitForResponse { get; set; } = true;
|
public bool WaitForResponse { get; set; } = true;
|
||||||
}
|
}
|
||||||
|
@ -5,13 +5,15 @@
|
|||||||
|
|
||||||
init()
|
init()
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
SetDvarIfUninitialized("sv_team_balance_assignments", "");
|
SetDvarIfUninitialized("sv_team_balance_assignments", "");
|
||||||
SetDvarIfUninitialized("sv_iw4madmin_serverid", 0);
|
SetDvarIfUninitialized("sv_iw4madmin_serverid", 0);
|
||||||
SetDvarIfUninitialized("sv_iw4madmin_apiurl", "http://127.0.0.1:1624/api/gsc/");
|
SetDvarIfUninitialized("sv_iw4madmin_apiurl", "http://127.0.0.1:1624/api/gsc/");
|
||||||
level.apiUrl = GetDvar("sv_iw4madmin_apiurl");
|
level.apiUrl = GetDvar("sv_iw4madmin_apiurl");
|
||||||
//level thread WaitForCommand();
|
level thread WaitForCommand();
|
||||||
level thread onPlayerConnect();
|
level thread onPlayerConnect();
|
||||||
level thread onPlayerDisconnect();
|
level thread onPlayerDisconnect();
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
onPlayerConnect()
|
onPlayerConnect()
|
256
GameFiles/IW4x/userraw/_customcallbacks.gsc
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
#include maps\mp\_utility;
|
||||||
|
#include maps\mp\gametypes\_hud_util;
|
||||||
|
#include common_scripts\utility;
|
||||||
|
|
||||||
|
init()
|
||||||
|
{
|
||||||
|
SetDvarIfUninitialized( "sv_customcallbacks", true );
|
||||||
|
SetDvarIfUninitialized( "sv_framewaittime", 0.05 );
|
||||||
|
SetDvarIfUninitialized( "sv_additionalwaittime", 0.1 );
|
||||||
|
SetDvarIfUninitialized( "sv_maxstoredframes", 12 );
|
||||||
|
SetDvarIfUninitialized( "sv_printradarupdates", 0 );
|
||||||
|
SetDvarIfUninitialized( "sv_printradar_updateinterval", 500 );
|
||||||
|
SetDvarIfUninitialized( "sv_iw4madmin_url", "http://127.0.0.1:1624" );
|
||||||
|
|
||||||
|
level thread onPlayerConnect();
|
||||||
|
if (getDvarInt("sv_printradarupdates") == 1)
|
||||||
|
{
|
||||||
|
level thread runRadarUpdates();
|
||||||
|
}
|
||||||
|
|
||||||
|
level waittill( "prematch_over" );
|
||||||
|
level.callbackPlayerKilled = ::Callback_PlayerKilled;
|
||||||
|
level.callbackPlayerDamage = ::Callback_PlayerDamage;
|
||||||
|
level.callbackPlayerDisconnect = ::Callback_PlayerDisconnect;
|
||||||
|
}
|
||||||
|
|
||||||
|
onPlayerConnect( player )
|
||||||
|
{
|
||||||
|
for( ;; )
|
||||||
|
{
|
||||||
|
level waittill( "connected", player );
|
||||||
|
player setClientDvar("cl_autorecord", 1);
|
||||||
|
player setClientDvar("cl_demosKeep", 200);
|
||||||
|
player thread waitForFrameThread();
|
||||||
|
player thread waitForAttack();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForAttack()
|
||||||
|
{
|
||||||
|
self endon( "disconnect" );
|
||||||
|
|
||||||
|
self.lastAttackTime = 0;
|
||||||
|
|
||||||
|
for( ;; )
|
||||||
|
{
|
||||||
|
self notifyOnPlayerCommand( "player_shot", "+attack" );
|
||||||
|
self waittill( "player_shot" );
|
||||||
|
|
||||||
|
self.lastAttackTime = getTime();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getHttpString( url )
|
||||||
|
{
|
||||||
|
request = httpGet( url );
|
||||||
|
request waittill( "done", success, data );
|
||||||
|
request destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
runRadarUpdates()
|
||||||
|
{
|
||||||
|
interval = int(getDvar("sv_printradar_updateinterval"));
|
||||||
|
|
||||||
|
for ( ;; )
|
||||||
|
{
|
||||||
|
for ( i = 0; i <= 17; i++ )
|
||||||
|
{
|
||||||
|
player = level.players[i];
|
||||||
|
|
||||||
|
if ( isDefined( player ) )
|
||||||
|
{
|
||||||
|
payload = player.guid + ";" + player.origin + ";" + player getPlayerAngles() + ";" + player.team + ";" + player.kills + ";" + player.deaths + ";" + player.score + ";" + player GetCurrentWeapon() + ";" + player.health + ";" + isAlive(player) + ";" + player.timePlayed["total"];
|
||||||
|
logPrint( "LiveRadar;" + payload + "\n" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
wait( interval / 1000 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hitLocationToBone( hitloc )
|
||||||
|
{
|
||||||
|
switch( hitloc )
|
||||||
|
{
|
||||||
|
case "helmet":
|
||||||
|
return "j_helmet";
|
||||||
|
case "head":
|
||||||
|
return "j_head";
|
||||||
|
case "neck":
|
||||||
|
return "j_neck";
|
||||||
|
case "torso_upper":
|
||||||
|
return "j_spineupper";
|
||||||
|
case "torso_lower":
|
||||||
|
return "j_spinelower";
|
||||||
|
case "right_arm_upper":
|
||||||
|
return "j_shoulder_ri";
|
||||||
|
case "left_arm_upper":
|
||||||
|
return "j_shoulder_le";
|
||||||
|
case "right_arm_lower":
|
||||||
|
return "j_elbow_ri";
|
||||||
|
case "left_arm_lower":
|
||||||
|
return "j_elbow_le";
|
||||||
|
case "right_hand":
|
||||||
|
return "j_wrist_ri";
|
||||||
|
case "left_hand":
|
||||||
|
return "j_wrist_le";
|
||||||
|
case "right_leg_upper":
|
||||||
|
return "j_hip_ri";
|
||||||
|
case "left_leg_upper":
|
||||||
|
return "j_hip_le";
|
||||||
|
case "right_leg_lower":
|
||||||
|
return "j_knee_ri";
|
||||||
|
case "left_leg_lower":
|
||||||
|
return "j_knee_le";
|
||||||
|
case "right_foot":
|
||||||
|
return "j_ankle_ri";
|
||||||
|
case "left_foot":
|
||||||
|
return "j_ankle_le";
|
||||||
|
default:
|
||||||
|
return "tag_origin";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForFrameThread()
|
||||||
|
{
|
||||||
|
self endon( "disconnect" );
|
||||||
|
|
||||||
|
self.currentAnglePosition = 0;
|
||||||
|
self.anglePositions = [];
|
||||||
|
|
||||||
|
for (i = 0; i < getDvarInt( "sv_maxstoredframes" ); i++)
|
||||||
|
{
|
||||||
|
self.anglePositions[i] = self getPlayerAngles();
|
||||||
|
}
|
||||||
|
|
||||||
|
for( ;; )
|
||||||
|
{
|
||||||
|
self.anglePositions[self.currentAnglePosition] = self getPlayerAngles();
|
||||||
|
wait( getDvarFloat( "sv_framewaittime" ) );
|
||||||
|
self.currentAnglePosition = (self.currentAnglePosition + 1) % getDvarInt( "sv_maxstoredframes" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForAdditionalAngles( logString, beforeFrameCount, afterFrameCount )
|
||||||
|
{
|
||||||
|
currentIndex = self.currentAnglePosition;
|
||||||
|
wait( 0.05 * afterFrameCount );
|
||||||
|
|
||||||
|
self.angleSnapshot = [];
|
||||||
|
|
||||||
|
for( j = 0; j < self.anglePositions.size; j++ )
|
||||||
|
{
|
||||||
|
self.angleSnapshot[j] = self.anglePositions[j];
|
||||||
|
}
|
||||||
|
|
||||||
|
anglesStr = "";
|
||||||
|
collectedFrames = 0;
|
||||||
|
i = currentIndex - beforeFrameCount;
|
||||||
|
|
||||||
|
while (collectedFrames < beforeFrameCount)
|
||||||
|
{
|
||||||
|
fixedIndex = i;
|
||||||
|
if (i < 0)
|
||||||
|
{
|
||||||
|
fixedIndex = self.angleSnapshot.size - abs(i);
|
||||||
|
}
|
||||||
|
anglesStr += self.angleSnapshot[int(fixedIndex)] + ":";
|
||||||
|
collectedFrames++;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i == currentIndex)
|
||||||
|
{
|
||||||
|
anglesStr += self.angleSnapshot[i] + ":";
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
collectedFrames = 0;
|
||||||
|
|
||||||
|
while (collectedFrames < afterFrameCount)
|
||||||
|
{
|
||||||
|
fixedIndex = i;
|
||||||
|
if (i > self.angleSnapshot.size - 1)
|
||||||
|
{
|
||||||
|
fixedIndex = i % self.angleSnapshot.size;
|
||||||
|
}
|
||||||
|
anglesStr += self.angleSnapshot[int(fixedIndex)] + ":";
|
||||||
|
collectedFrames++;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
lastAttack = int(getTime()) - int(self.lastAttackTime);
|
||||||
|
isAlive = isAlive(self);
|
||||||
|
|
||||||
|
logPrint(logString + ";" + anglesStr + ";" + isAlive + ";" + lastAttack + "\n" );
|
||||||
|
}
|
||||||
|
|
||||||
|
vectorScale( vector, scale )
|
||||||
|
{
|
||||||
|
return ( vector[0] * scale, vector[1] * scale, vector[2] * scale );
|
||||||
|
}
|
||||||
|
|
||||||
|
Process_Hit( type, attacker, sHitLoc, sMeansOfDeath, iDamage, sWeapon )
|
||||||
|
{
|
||||||
|
if (sMeansOfDeath == "MOD_FALLING" || !isPlayer(attacker))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
victim = self;
|
||||||
|
_attacker = attacker;
|
||||||
|
|
||||||
|
if ( !isPlayer( attacker ) && isDefined( attacker.owner ) )
|
||||||
|
{
|
||||||
|
_attacker = attacker.owner;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if( !isPlayer( attacker ) && sMeansOfDeath == "MOD_FALLING" )
|
||||||
|
{
|
||||||
|
_attacker = victim;
|
||||||
|
}
|
||||||
|
|
||||||
|
location = victim GetTagOrigin( hitLocationToBone( sHitLoc ) );
|
||||||
|
isKillstreakKill = !isPlayer( attacker ) || isKillstreakWeapon( sWeapon );
|
||||||
|
|
||||||
|
logLine = "Script" + type + ";" + _attacker.guid + ";" + victim.guid + ";" + _attacker GetTagOrigin("tag_eye") + ";" + location + ";" + iDamage + ";" + sWeapon + ";" + sHitLoc + ";" + sMeansOfDeath + ";" + _attacker getPlayerAngles() + ";" + int(gettime()) + ";" + isKillstreakKill + ";" + _attacker playerADS() + ";0;0";
|
||||||
|
attacker thread waitForAdditionalAngles( logLine, 2, 2 );
|
||||||
|
}
|
||||||
|
|
||||||
|
Callback_PlayerDamage( eInflictor, attacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, psOffsetTime )
|
||||||
|
{
|
||||||
|
if ( level.teamBased && isDefined( attacker ) && ( self != attacker ) && isDefined( attacker.team ) && ( self.pers[ "team" ] == attacker.team ) )
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( self.health - iDamage > 0 )
|
||||||
|
{
|
||||||
|
self Process_Hit( "Damage", attacker, sHitLoc, sMeansOfDeath, iDamage, sWeapon );
|
||||||
|
}
|
||||||
|
|
||||||
|
self maps\mp\gametypes\_damage::Callback_PlayerDamage( eInflictor, attacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, psOffsetTime );
|
||||||
|
}
|
||||||
|
|
||||||
|
Callback_PlayerKilled( eInflictor, attacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, psOffsetTime, deathAnimDuration )
|
||||||
|
{
|
||||||
|
Process_Hit( "Kill", attacker, sHitLoc, sMeansOfDeath, iDamage, sWeapon );
|
||||||
|
self maps\mp\gametypes\_damage::Callback_PlayerKilled( eInflictor, attacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, psOffsetTime, deathAnimDuration );
|
||||||
|
}
|
||||||
|
|
||||||
|
Callback_PlayerDisconnect()
|
||||||
|
{
|
||||||
|
level notify( "disconnected", self );
|
||||||
|
self maps\mp\gametypes\_playerlogic::Callback_PlayerDisconnect();
|
||||||
|
}
|
@ -9,4 +9,4 @@ pip==10.0.1
|
|||||||
pytz==2018.9
|
pytz==2018.9
|
||||||
setuptools==39.0.1
|
setuptools==39.0.1
|
||||||
six==1.12.0
|
six==1.12.0
|
||||||
Werkzeug==0.15.2
|
Werkzeug==0.16.0
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.28803.352
|
VisualStudioVersion = 16.0.29009.5
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{26E8B310-269E-46D4-A612-24601F16065F}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{26E8B310-269E-46D4-A612-24601F16065F}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8C8F3945-0AEF-4949-A1F7-B18E952E50BC}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8C8F3945-0AEF-4949-A1F7-B18E952E50BC}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
_commands.gsc = _commands.gsc
|
GameFiles\IW4x\userraw\_commands.gsc = GameFiles\IW4x\userraw\_commands.gsc
|
||||||
_customcallbacks.gsc = _customcallbacks.gsc
|
GameFiles\IW4x\userraw\_customcallbacks.gsc = GameFiles\IW4x\userraw\_customcallbacks.gsc
|
||||||
|
azure-pipelines.yml = azure-pipelines.yml
|
||||||
|
PostPublish.ps1 = PostPublish.ps1
|
||||||
README.md = README.md
|
README.md = README.md
|
||||||
RunPublishPre.cmd = RunPublishPre.cmd
|
RunPublishPre.cmd = RunPublishPre.cmd
|
||||||
RunPublishRelease.cmd = RunPublishRelease.cmd
|
RunPublishRelease.cmd = RunPublishRelease.cmd
|
||||||
@ -53,6 +55,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StatsWeb", "Plugins\Web\Sta
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomessageFeed", "Plugins\AutomessageFeed\AutomessageFeed.csproj", "{F5815359-CFC7-44B4-9A3B-C04BACAD5836}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomessageFeed", "Plugins\AutomessageFeed\AutomessageFeed.csproj", "{F5815359-CFC7-44B4-9A3B-C04BACAD5836}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiveRadar", "Plugins\LiveRadar\LiveRadar.csproj", "{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@ -284,7 +288,6 @@ Global
|
|||||||
{B72DEBFB-9D48-4076-8FF5-1FD72A830845}.Release|x86.ActiveCfg = Release|Any CPU
|
{B72DEBFB-9D48-4076-8FF5-1FD72A830845}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{B72DEBFB-9D48-4076-8FF5-1FD72A830845}.Release|x86.Build.0 = Release|Any CPU
|
{B72DEBFB-9D48-4076-8FF5-1FD72A830845}.Release|x86.Build.0 = Release|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x64.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
@ -292,7 +295,6 @@ Global
|
|||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x86.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x86.Build.0 = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Any CPU.ActiveCfg = Prerelease|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Any CPU.ActiveCfg = Prerelease|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Any CPU.Build.0 = Prerelease|Any CPU
|
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Mixed Platforms.Build.0 = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x64.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x64.ActiveCfg = Debug|Any CPU
|
||||||
@ -300,7 +302,6 @@ Global
|
|||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x86.ActiveCfg = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x86.ActiveCfg = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x86.Build.0 = Debug|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Prerelease|x86.Build.0 = Debug|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||||
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|x64.ActiveCfg = Release|Any CPU
|
{6C706CE5-A206-4E46-8712-F8C48D526091}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
@ -361,8 +362,8 @@ Global
|
|||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x64.Build.0 = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x86.ActiveCfg = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x86.Build.0 = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Any CPU.ActiveCfg = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Any CPU.ActiveCfg = Prerelease|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Any CPU.Build.0 = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Any CPU.Build.0 = Prerelease|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Mixed Platforms.Build.0 = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|x64.ActiveCfg = Debug|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Prerelease|x64.ActiveCfg = Debug|Any CPU
|
||||||
@ -377,6 +378,30 @@ Global
|
|||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x64.Build.0 = Release|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x86.ActiveCfg = Release|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x86.Build.0 = Release|Any CPU
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|Any CPU.ActiveCfg = Prerelease|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|Any CPU.Build.0 = Prerelease|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|x64.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Prerelease|x86.Build.0 = Debug|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
@ -392,6 +417,7 @@ Global
|
|||||||
{A848FCF1-8527-4AA8-A1AA-50D29695C678} = {26E8B310-269E-46D4-A612-24601F16065F}
|
{A848FCF1-8527-4AA8-A1AA-50D29695C678} = {26E8B310-269E-46D4-A612-24601F16065F}
|
||||||
{776B348B-F818-4A0F-A625-D0AF8BAD3E9B} = {A848FCF1-8527-4AA8-A1AA-50D29695C678}
|
{776B348B-F818-4A0F-A625-D0AF8BAD3E9B} = {A848FCF1-8527-4AA8-A1AA-50D29695C678}
|
||||||
{F5815359-CFC7-44B4-9A3B-C04BACAD5836} = {26E8B310-269E-46D4-A612-24601F16065F}
|
{F5815359-CFC7-44B4-9A3B-C04BACAD5836} = {26E8B310-269E-46D4-A612-24601F16065F}
|
||||||
|
{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD} = {26E8B310-269E-46D4-A612-24601F16065F}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
SolutionGuid = {84F8F8E0-1F73-41E0-BD8D-BB6676E2EE87}
|
SolutionGuid = {84F8F8E0-1F73-41E0-BD8D-BB6676E2EE87}
|
||||||
|
@ -8,7 +8,7 @@ class History():
|
|||||||
self.server_history = list()
|
self.server_history = list()
|
||||||
|
|
||||||
def add_client_history(self, client_num):
|
def add_client_history(self, client_num):
|
||||||
if len(self.client_history) > 2880:
|
if len(self.client_history) > 20160:
|
||||||
self.client_history = self.client_history[1:]
|
self.client_history = self.client_history[1:]
|
||||||
self.client_history.append({
|
self.client_history.append({
|
||||||
'count' : client_num,
|
'count' : client_num,
|
||||||
@ -16,7 +16,7 @@ class History():
|
|||||||
})
|
})
|
||||||
|
|
||||||
def add_server_history(self, server_num):
|
def add_server_history(self, server_num):
|
||||||
if len(self.server_history) > 2880:
|
if len(self.server_history) > 20160:
|
||||||
self.server_history = self.server_history[1:]
|
self.server_history = self.server_history[1:]
|
||||||
self.server_history.append({
|
self.server_history.append({
|
||||||
'count' : server_num,
|
'count' : server_num,
|
||||||
@ -24,7 +24,7 @@ class History():
|
|||||||
})
|
})
|
||||||
|
|
||||||
def add_instance_history(self, instance_num):
|
def add_instance_history(self, instance_num):
|
||||||
if len(self.instance_history) > 2880:
|
if len(self.instance_history) > 20160:
|
||||||
self.instance_history = self.instance_history[1:]
|
self.instance_history = self.instance_history[1:]
|
||||||
self.instance_history.append({
|
self.instance_history.append({
|
||||||
'count' : instance_num,
|
'count' : instance_num,
|
||||||
|
@ -23,7 +23,7 @@ class ServerSchema(Schema):
|
|||||||
)
|
)
|
||||||
hostname = fields.String(
|
hostname = fields.String(
|
||||||
required=True,
|
required=True,
|
||||||
validate=validate.Length(1, 64, 'invalid hostname')
|
validate=validate.Length(1, 128, 'invalid hostname')
|
||||||
)
|
)
|
||||||
clientnum = fields.Int(
|
clientnum = fields.Int(
|
||||||
required=True,
|
required=True,
|
||||||
|
@ -23,4 +23,4 @@ six==1.11.0
|
|||||||
timeago==1.0.8
|
timeago==1.0.8
|
||||||
tzlocal==1.5.1
|
tzlocal==1.5.1
|
||||||
urllib3==1.24
|
urllib3==1.24
|
||||||
Werkzeug==0.14.1
|
Werkzeug==0.15.3
|
||||||
|
@ -1,25 +1,20 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
||||||
<TargetLatestRuntimePatch >true</TargetLatestRuntimePatch>
|
|
||||||
<LangVersion>7.1</LangVersion>
|
<LangVersion>7.1</LangVersion>
|
||||||
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
||||||
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
||||||
</ItemGroup>
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.4" PrivateAssets="All" />
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj">
|
|
||||||
<Private>false</Private>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
||||||
<Exec Command="copy "$(TargetDir)Microsoft.SyndicationFeed.ReaderWriter.dll" "$(SolutionDir)BUILD\Plugins"" />
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
using SharedLibraryCore;
|
/*
|
||||||
|
using SharedLibraryCore;
|
||||||
using SharedLibraryCore.Database.Models;
|
using SharedLibraryCore.Database.Models;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -197,3 +198,4 @@ namespace IW4ScriptCommands.Commands
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
@ -1,4 +1,4 @@
|
|||||||
using IW4ScriptCommands.Commands;
|
/*using IW4ScriptCommands.Commands;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using SharedLibraryCore;
|
using SharedLibraryCore;
|
||||||
using System;
|
using System;
|
||||||
@ -51,3 +51,4 @@ namespace WebfrontCore.Controllers.API
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
@ -2,18 +2,13 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
||||||
<ApplicationIcon />
|
<ApplicationIcon />
|
||||||
<StartupObject />
|
<StartupObject />
|
||||||
<Configurations>Debug;Release;Prerelease</Configurations>
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
||||||
<LangVersion>7.1</LangVersion>
|
<LangVersion>7.1</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
||||||
<Exec Command="copy "$(TargetPath)" "$(SolutionDir)BUILD\Plugins"" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj">
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj">
|
||||||
<Private>false</Private>
|
<Private>false</Private>
|
||||||
@ -22,4 +17,5 @@
|
|||||||
<Private>false</Private>
|
<Private>false</Private>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using SharedLibraryCore;
|
/*using SharedLibraryCore;
|
||||||
using SharedLibraryCore.Interfaces;
|
using SharedLibraryCore.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -47,3 +47,4 @@ namespace IW4ScriptCommands
|
|||||||
public Task OnUnloadAsync() => Task.CompletedTask;
|
public Task OnUnloadAsync() => Task.CompletedTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
391
Plugins/LiveRadar/Configuration/LiveRadarConfiguration.cs
Normal file
@ -0,0 +1,391 @@
|
|||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace LiveRadar.Configuration
|
||||||
|
{
|
||||||
|
class LiveRadarConfiguration : IBaseConfiguration
|
||||||
|
{
|
||||||
|
public List<MapInfo> Maps { get; set; }
|
||||||
|
|
||||||
|
public IBaseConfiguration Generate()
|
||||||
|
{
|
||||||
|
Maps = new List<MapInfo>()
|
||||||
|
{
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_afghan",
|
||||||
|
MaxLeft = 4600, // ymax
|
||||||
|
MaxRight = -1100, // ymin
|
||||||
|
MaxBottom = -1400, // xmin
|
||||||
|
MaxTop = 4600, // xmax
|
||||||
|
Left = 52, // pxmin
|
||||||
|
Right = 898, // pxmax
|
||||||
|
Bottom = 930, // pymax
|
||||||
|
Top = 44 // pymin
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_rust",
|
||||||
|
Top = 212,
|
||||||
|
Bottom = 812,
|
||||||
|
Left = 314,
|
||||||
|
Right = 856,
|
||||||
|
MaxRight = -225,
|
||||||
|
MaxLeft = 1809,
|
||||||
|
MaxTop = 1773,
|
||||||
|
MaxBottom = -469
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_terminal",
|
||||||
|
Top = 174,
|
||||||
|
Bottom = 846,
|
||||||
|
Left = 18,
|
||||||
|
Right = 1011,
|
||||||
|
MaxTop = 2929,
|
||||||
|
MaxBottom = -513,
|
||||||
|
MaxLeft = 7521,
|
||||||
|
MaxRight = 2447
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_subbase",
|
||||||
|
MaxLeft = 1841,
|
||||||
|
MaxRight = -3817,
|
||||||
|
MaxBottom = -1585,
|
||||||
|
MaxTop = 2593,
|
||||||
|
Left = 18,
|
||||||
|
Right = 968,
|
||||||
|
Bottom = 864,
|
||||||
|
Top = 160,
|
||||||
|
ViewPositionRotation = 180,
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_estate",
|
||||||
|
Top = 52,
|
||||||
|
Bottom = 999,
|
||||||
|
Left = 173,
|
||||||
|
Right = 942,
|
||||||
|
MaxTop = 2103,
|
||||||
|
MaxBottom = -5077,
|
||||||
|
MaxLeft = 4437,
|
||||||
|
MaxRight = -1240,
|
||||||
|
Rotation = 143,
|
||||||
|
CenterX = -1440,
|
||||||
|
CenterY = 1920,
|
||||||
|
Scaler = 0.85f,
|
||||||
|
ViewPositionRotation = 180
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_highrise",
|
||||||
|
MaxBottom = -3909,
|
||||||
|
MaxTop = 1649,
|
||||||
|
MaxRight = 5111,
|
||||||
|
MaxLeft = 8906,
|
||||||
|
Left = 108,
|
||||||
|
Right = 722,
|
||||||
|
Top = 66,
|
||||||
|
Bottom = 974,
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_quarry",
|
||||||
|
MaxBottom = -5905,
|
||||||
|
MaxTop = -1423,
|
||||||
|
MaxRight = -2095,
|
||||||
|
MaxLeft = 3217,
|
||||||
|
Left = 126,
|
||||||
|
Right = 968,
|
||||||
|
Top = 114,
|
||||||
|
Bottom = 824
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_boneyard",
|
||||||
|
MaxBottom = -1756,
|
||||||
|
MaxTop = 2345,
|
||||||
|
MaxRight = -715,
|
||||||
|
MaxLeft = 1664,
|
||||||
|
Left = 248,
|
||||||
|
Right = 728,
|
||||||
|
Top = 68,
|
||||||
|
Bottom = 897
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_brecourt",
|
||||||
|
MaxBottom = -3797,
|
||||||
|
MaxTop = 4240,
|
||||||
|
MaxRight = -3876,
|
||||||
|
MaxLeft = 2575,
|
||||||
|
Left = 240,
|
||||||
|
Right = 846,
|
||||||
|
Top = 180,
|
||||||
|
Bottom = 934
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_checkpoint",
|
||||||
|
MaxBottom = -2273,
|
||||||
|
MaxTop = 2153,
|
||||||
|
MaxRight = -3457,
|
||||||
|
MaxLeft = 2329,
|
||||||
|
Left = 30,
|
||||||
|
Right = 1010,
|
||||||
|
Top = 136,
|
||||||
|
Bottom = 890
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_derail",
|
||||||
|
MaxBottom = -2775,
|
||||||
|
MaxTop = 3886,
|
||||||
|
MaxRight = -3807,
|
||||||
|
MaxLeft = 4490,
|
||||||
|
Left = 130,
|
||||||
|
Right = 892,
|
||||||
|
Top = 210,
|
||||||
|
Bottom = 829
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_favela",
|
||||||
|
MaxBottom = -2017,
|
||||||
|
MaxTop = 1769,
|
||||||
|
MaxRight = -1239,
|
||||||
|
MaxLeft = 2998,
|
||||||
|
Left = 120,
|
||||||
|
Right = 912,
|
||||||
|
Top = 174,
|
||||||
|
Bottom = 878
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_invasion",
|
||||||
|
MaxBottom = -3673,
|
||||||
|
MaxTop = 2540,
|
||||||
|
MaxRight = -3835,
|
||||||
|
MaxLeft = 980,
|
||||||
|
Left = 20,
|
||||||
|
Right = 808,
|
||||||
|
Top = 0,
|
||||||
|
Bottom = 1006
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_nightshift",
|
||||||
|
MaxBottom = -2497,
|
||||||
|
MaxTop = 1977,
|
||||||
|
MaxRight = -2265,
|
||||||
|
MaxLeft = 945,
|
||||||
|
Left = 246,
|
||||||
|
Right = 826,
|
||||||
|
Top = 104,
|
||||||
|
Bottom = 916
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_rundown",
|
||||||
|
MaxBottom = -2304,
|
||||||
|
MaxTop = 3194,
|
||||||
|
MaxRight = -3558,
|
||||||
|
MaxLeft = 3361,
|
||||||
|
Left = 32,
|
||||||
|
Right = 1030,
|
||||||
|
Top = 96,
|
||||||
|
Bottom = 892
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_underpass",
|
||||||
|
MaxBottom = -601,
|
||||||
|
MaxTop = 3761,
|
||||||
|
MaxRight = -1569,
|
||||||
|
MaxLeft = 3615,
|
||||||
|
Left = 42,
|
||||||
|
Right = 978,
|
||||||
|
Top = 157,
|
||||||
|
Bottom = 944
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_abandon",
|
||||||
|
MaxBottom = -1290,
|
||||||
|
MaxTop = 3855,
|
||||||
|
MaxRight = -2907,
|
||||||
|
MaxLeft = 2723,
|
||||||
|
Left = 6,
|
||||||
|
Right = 1016,
|
||||||
|
Top = 32,
|
||||||
|
Bottom = 945
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_compact",
|
||||||
|
MaxBottom = 0,
|
||||||
|
MaxTop = 4264,
|
||||||
|
MaxRight = -1552,
|
||||||
|
MaxLeft = 3344,
|
||||||
|
Left = 35,
|
||||||
|
Right = 1003,
|
||||||
|
Top = 94,
|
||||||
|
Bottom = 935
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_complex",
|
||||||
|
MaxBottom = -2869,
|
||||||
|
MaxTop = 2867,
|
||||||
|
MaxRight = -4204,
|
||||||
|
MaxLeft = -1218,
|
||||||
|
Left = 282,
|
||||||
|
Right = 749,
|
||||||
|
Top = 48,
|
||||||
|
Bottom = 991
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_crash",
|
||||||
|
MaxBottom = -953,
|
||||||
|
MaxTop = 1811,
|
||||||
|
MaxRight = -2129,
|
||||||
|
MaxLeft = 2277,
|
||||||
|
Left = 52,
|
||||||
|
Right = 1017,
|
||||||
|
Top = 201,
|
||||||
|
Bottom = 807
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_fuel2",
|
||||||
|
MaxBottom = -2218,
|
||||||
|
MaxTop = 4324,
|
||||||
|
MaxRight = -3115,
|
||||||
|
MaxLeft = 3193,
|
||||||
|
Left = 39,
|
||||||
|
Right = 888,
|
||||||
|
Top = 24,
|
||||||
|
Bottom = 906
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_overgrown",
|
||||||
|
MaxBottom = -2052,
|
||||||
|
MaxTop = 3236,
|
||||||
|
MaxRight = -5393,
|
||||||
|
MaxLeft = 808,
|
||||||
|
Left = 17,
|
||||||
|
Right = 1024,
|
||||||
|
Top = 0,
|
||||||
|
Bottom = 847
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_storm",
|
||||||
|
MaxBottom = -2317,
|
||||||
|
MaxTop = 2537,
|
||||||
|
MaxRight = -2223,
|
||||||
|
MaxLeft = 2097,
|
||||||
|
Left = 79,
|
||||||
|
Right = 932,
|
||||||
|
Top = 20,
|
||||||
|
Bottom = 995
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_strike",
|
||||||
|
MaxBottom = -2504,
|
||||||
|
MaxTop = 3359,
|
||||||
|
MaxRight = -3105,
|
||||||
|
MaxLeft = 2822,
|
||||||
|
Left = 40,
|
||||||
|
Right = 969,
|
||||||
|
Top = 36,
|
||||||
|
Bottom = 955
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_trailerpark",
|
||||||
|
MaxBottom = -2709,
|
||||||
|
MaxTop = 2027,
|
||||||
|
MaxRight = -1719,
|
||||||
|
MaxLeft = 1666,
|
||||||
|
Left = 152,
|
||||||
|
Right = 785,
|
||||||
|
Top = 50,
|
||||||
|
Bottom = 931
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_vacant",
|
||||||
|
MaxBottom = -2089,
|
||||||
|
MaxTop = 1652,
|
||||||
|
MaxRight = -1393,
|
||||||
|
MaxLeft = 1789,
|
||||||
|
Left = 122,
|
||||||
|
Right = 909,
|
||||||
|
Top = 16,
|
||||||
|
Bottom = 951
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_nuked",
|
||||||
|
MaxLeft = 1211,
|
||||||
|
MaxRight = -557,
|
||||||
|
MaxBottom = -2110,
|
||||||
|
MaxTop = 2092,
|
||||||
|
Left = 340,
|
||||||
|
Right = 698,
|
||||||
|
Bottom = 930,
|
||||||
|
Top = 92
|
||||||
|
},
|
||||||
|
|
||||||
|
new MapInfo()
|
||||||
|
{
|
||||||
|
Name = "mp_killhouse",
|
||||||
|
MaxLeft = 4276,
|
||||||
|
MaxRight = 2973,
|
||||||
|
MaxBottom = -1164,
|
||||||
|
MaxTop = 1392,
|
||||||
|
Left = 319,
|
||||||
|
Right = 758,
|
||||||
|
Bottom = 937,
|
||||||
|
Top = 87
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Name() => "LiveRadar";
|
||||||
|
}
|
||||||
|
}
|
86
Plugins/LiveRadar/Controllers/RadarController.cs
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using SharedLibraryCore;
|
||||||
|
using SharedLibraryCore.Dtos;
|
||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace LiveRadar.Web.Controllers
|
||||||
|
{
|
||||||
|
public class RadarController : BaseController
|
||||||
|
{
|
||||||
|
private static readonly JsonSerializerSettings _serializerSettings = new JsonSerializerSettings()
|
||||||
|
{
|
||||||
|
ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
|
||||||
|
ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver()
|
||||||
|
};
|
||||||
|
|
||||||
|
private readonly IManager _manager;
|
||||||
|
|
||||||
|
public RadarController(IManager manager) : base(manager)
|
||||||
|
{
|
||||||
|
_manager = manager;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
[Route("Radar/{serverId}")]
|
||||||
|
public IActionResult Index(long? serverId = null)
|
||||||
|
{
|
||||||
|
ViewBag.IsFluid = true;
|
||||||
|
ViewBag.Title = Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_RADAR_TITLE"];
|
||||||
|
ViewBag.ActiveServerId = serverId ?? _manager.GetServers().FirstOrDefault()?.EndPoint;
|
||||||
|
ViewBag.Servers = _manager.GetServers()
|
||||||
|
.Where(_server => _server.GameName == Server.Game.IW4)
|
||||||
|
.Select(_server => new ServerInfo()
|
||||||
|
{
|
||||||
|
Name = _server.Hostname,
|
||||||
|
ID = _server.EndPoint
|
||||||
|
});
|
||||||
|
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
[Route("Radar/{serverId}/Map")]
|
||||||
|
public IActionResult Map(long? serverId = null)
|
||||||
|
{
|
||||||
|
var server = serverId == null ? _manager.GetServers().FirstOrDefault() : _manager.GetServers().FirstOrDefault(_server => _server.EndPoint == serverId);
|
||||||
|
var map = Plugin.Config.Configuration().Maps.FirstOrDefault(_map => _map.Name == server.CurrentMap.Name);
|
||||||
|
|
||||||
|
if (map != null)
|
||||||
|
{
|
||||||
|
map.Alias = server.CurrentMap.Alias;
|
||||||
|
return Json(map);
|
||||||
|
}
|
||||||
|
|
||||||
|
// occurs if we don't recognize the map
|
||||||
|
return StatusCode(500);
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
[Route("Radar/{serverId}/Data")]
|
||||||
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||||
|
public IActionResult Data(long? serverId = null)
|
||||||
|
{
|
||||||
|
var server = serverId == null ? _manager.GetServers()[0] : _manager.GetServers().First(_server => _server.EndPoint == serverId);
|
||||||
|
var radarInfo = server.GetClientsAsList().Select(_client => _client.GetAdditionalProperty<RadarEvent>("LiveRadar")).ToList();
|
||||||
|
return Json(radarInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
[Route("Radar/Update")]
|
||||||
|
public IActionResult Update(string payload)
|
||||||
|
{
|
||||||
|
var radarUpdate = RadarEvent.Parse(payload);
|
||||||
|
var client = _manager.GetActiveClients().FirstOrDefault(_client => _client.NetworkId == radarUpdate.Guid);
|
||||||
|
|
||||||
|
if (client != null)
|
||||||
|
{
|
||||||
|
radarUpdate.Name = client.Name.StripColors();
|
||||||
|
client.SetAdditionalProperty("LiveRadar", radarUpdate);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
32
Plugins/LiveRadar/LiveRadar.csproj
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
<RazorCompileOnBuild Condition="'$(CONFIG)'!='Debug'">true</RazorCompileOnBuild>
|
||||||
|
<RazorCompiledOnPublish Condition="'$(CONFIG)'!='Debug'">true</RazorCompiledOnPublish>
|
||||||
|
<PreserveCompilationContext Condition="'$(CONFIG)'!='Debug'">false</PreserveCompilationContext>
|
||||||
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
||||||
|
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
||||||
|
<Version>0.1.0.0</Version>
|
||||||
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
||||||
|
<LangVersion>7.1</LangVersion>
|
||||||
|
<ApplicationIcon />
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<StartupObject />
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="RaidMax.IW4MAdmin.SharedLibraryCore" Version="2.2.4" PrivateAssets="All" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Update="Views\_ViewImports.cshtml">
|
||||||
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
|
<Exec Command="dotnet publish $(ProjectPath) -c $(ConfigurationName) -o $(ProjectDir)..\..\Build\Plugins --no-build --no-restore --no-dependencies" />
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
</Project>
|
31
Plugins/LiveRadar/MapInfo.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace LiveRadar
|
||||||
|
{
|
||||||
|
public class MapInfo
|
||||||
|
{
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Alias { get; set; }
|
||||||
|
// distance from the edge of the minimap image
|
||||||
|
// to the "playable" area
|
||||||
|
public int Top { get; set; }
|
||||||
|
public int Bottom { get; set; }
|
||||||
|
public int Left { get; set; }
|
||||||
|
public int Right { get; set; }
|
||||||
|
// maximum coordinate values for the map
|
||||||
|
public int MaxTop { get; set; }
|
||||||
|
public int MaxBottom { get; set; }
|
||||||
|
public int MaxLeft { get; set; }
|
||||||
|
public int MaxRight { get; set; }
|
||||||
|
public float Rotation { get; set; }
|
||||||
|
public float ViewPositionRotation { get; set; }
|
||||||
|
public float CenterX { get; set; }
|
||||||
|
public float CenterY { get; set; }
|
||||||
|
public float Scaler { get; set; } = 1.0f;
|
||||||
|
|
||||||
|
public int Width => MaxLeft - MaxRight;
|
||||||
|
public int Height => MaxTop - MaxBottom;
|
||||||
|
}
|
||||||
|
}
|
73
Plugins/LiveRadar/Plugin.cs
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
using LiveRadar.Configuration;
|
||||||
|
using SharedLibraryCore;
|
||||||
|
using SharedLibraryCore.Configuration;
|
||||||
|
using SharedLibraryCore.Interfaces;
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LiveRadar
|
||||||
|
{
|
||||||
|
public class Plugin : IPlugin
|
||||||
|
{
|
||||||
|
public string Name => "Live Radar";
|
||||||
|
|
||||||
|
public float Version => (float)Utilities.GetVersionAsDouble();
|
||||||
|
|
||||||
|
public string Author => "RaidMax";
|
||||||
|
|
||||||
|
internal static BaseConfigurationHandler<LiveRadarConfiguration> Config;
|
||||||
|
|
||||||
|
public Task OnEventAsync(GameEvent E, Server S)
|
||||||
|
{
|
||||||
|
if (E.Type == GameEvent.EventType.Unknown)
|
||||||
|
{
|
||||||
|
if (E.Data?.StartsWith("LiveRadar") ?? false)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var radarUpdate = RadarEvent.Parse(E.Data);
|
||||||
|
var client = S.Manager.GetActiveClients().FirstOrDefault(_client => _client.NetworkId == radarUpdate.Guid);
|
||||||
|
|
||||||
|
if (client != null)
|
||||||
|
{
|
||||||
|
radarUpdate.Name = client.Name.StripColors();
|
||||||
|
client.SetAdditionalProperty("LiveRadar", radarUpdate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
S.Logger.WriteWarning($"Could not parse live radar output: {e.Data}");
|
||||||
|
S.Logger.WriteDebug(e.GetExceptionInfo());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task OnLoadAsync(IManager manager)
|
||||||
|
{
|
||||||
|
// load custom configuration
|
||||||
|
Config = new BaseConfigurationHandler<LiveRadarConfiguration>("LiveRadarConfiguration");
|
||||||
|
if (Config.Configuration() == null)
|
||||||
|
{
|
||||||
|
Config.Set((LiveRadarConfiguration)new LiveRadarConfiguration().Generate());
|
||||||
|
await Config.Save();
|
||||||
|
}
|
||||||
|
|
||||||
|
manager.GetPageList().Pages.Add(Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_RADAR_TITLE"], "/Radar/All");
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task OnTickAsync(Server S)
|
||||||
|
{
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task OnUnloadAsync()
|
||||||
|
{
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
64
Plugins/LiveRadar/RadarEvent.cs
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
using SharedLibraryCore;
|
||||||
|
using SharedLibraryCore.Helpers;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace LiveRadar
|
||||||
|
{
|
||||||
|
public class RadarEvent
|
||||||
|
{
|
||||||
|
public string Name { get; set; }
|
||||||
|
public long Guid { get; set; }
|
||||||
|
public Vector3 Location { get; set; }
|
||||||
|
public Vector3 ViewAngles { get; set; }
|
||||||
|
public string Team { get; set; }
|
||||||
|
public int Kills { get; set; }
|
||||||
|
public int Deaths { get; set; }
|
||||||
|
public int Score { get; set; }
|
||||||
|
public int PlayTime { get; set; }
|
||||||
|
public string Weapon { get; set; }
|
||||||
|
public int Health { get; set; }
|
||||||
|
public bool IsAlive { get; set; }
|
||||||
|
public Vector3 RadianAngles => new Vector3(ViewAngles.X.ToRadians(), ViewAngles.Y.ToRadians(), ViewAngles.Z.ToRadians());
|
||||||
|
public int Id => GetHashCode();
|
||||||
|
|
||||||
|
public override bool Equals(object obj)
|
||||||
|
{
|
||||||
|
if (obj is RadarEvent re)
|
||||||
|
{
|
||||||
|
return re.ViewAngles.X == ViewAngles.X &&
|
||||||
|
re.ViewAngles.Y == ViewAngles.Y &&
|
||||||
|
re.ViewAngles.Z == ViewAngles.Z &&
|
||||||
|
re.Location.X == Location.X &&
|
||||||
|
re.Location.Y == Location.Y &&
|
||||||
|
re.Location.Z == Location.Z;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static RadarEvent Parse(string input)
|
||||||
|
{
|
||||||
|
var items = input.Split(';').Skip(1).ToList();
|
||||||
|
|
||||||
|
var parsedEvent = new RadarEvent()
|
||||||
|
{
|
||||||
|
Guid = items[0].ConvertGuidToLong(),
|
||||||
|
Location = Vector3.Parse(items[1]),
|
||||||
|
ViewAngles = Vector3.Parse(items[2]).FixIW4Angles(),
|
||||||
|
Team = items[3],
|
||||||
|
Kills = int.Parse(items[4]),
|
||||||
|
Deaths = int.Parse(items[5]),
|
||||||
|
Score = int.Parse(items[6]),
|
||||||
|
Weapon = items[7],
|
||||||
|
Health = int.Parse(items[8]),
|
||||||
|
IsAlive = items[9] == "1",
|
||||||
|
PlayTime = Convert.ToInt32(items[10])
|
||||||
|
};
|
||||||
|
|
||||||
|
return parsedEvent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
470
Plugins/LiveRadar/Views/Radar/Index.cshtml
Normal file
@ -0,0 +1,470 @@
|
|||||||
|
@model IEnumerable<long>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.progress {
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.player-stat-icon {
|
||||||
|
height: 1.5rem;
|
||||||
|
width: 1.5rem;
|
||||||
|
background-size: 1.5rem 1.5rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="row p-0 ml-auto mr-auto mb-4">
|
||||||
|
<div class="col-12 col-xl-10 p-0 ml-auto mr-auto p-0 pl-lg-3 pr-lg-3 ">
|
||||||
|
<ul class="nav nav-tabs border-top border-bottom nav-fill" role="tablist">
|
||||||
|
@foreach (SharedLibraryCore.Dtos.ServerInfo server in ViewBag.Servers)
|
||||||
|
{
|
||||||
|
<li class="nav-item">
|
||||||
|
<a asp-controller="Radar" asp-action="Index" asp-route-serverId="@server.ID" class="nav-link @(server.ID == ViewBag.ActiveServerId ? "active": "")" aria-selected="@(server.ID == ViewBag.ActiveServerId ? "true": "false")"><color-code value="@server.Name" allow="@ViewBag.EnableColorCodes"></color-code></a>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row p-0 ml-auto mr-auto col-12 col-xl-10">
|
||||||
|
<div class="p-0 pl-lg-3 pr-lg-3 m-0 col-lg-3 col-12 text-lg-right text-center player-data-left" style="opacity: 0;">
|
||||||
|
</div>
|
||||||
|
<div class="pl-0 pr-0 pl-lg-3 pr-lg-3 col-lg-6 col-12 pb-4">
|
||||||
|
<div id="map_name" class="h4 text-center pb-2 pt-2 mb-0 bg-primary">—</div>
|
||||||
|
<div id="map_list" style="background-size:cover; padding-bottom: 100% !important;">
|
||||||
|
<canvas id="map_canvas" style="position:absolute;"></canvas>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="p-0 pl-lg-3 pr-lg-3 m-0 col-lg-3 col-12 text-lg-left text-center player-data-right" style="opacity: 0;">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- images used by canvas -->
|
||||||
|
<img class="hide" id="hud_death" src="~/images/radar/death.png" />
|
||||||
|
|
||||||
|
|
||||||
|
@section scripts {
|
||||||
|
|
||||||
|
<script defer="defer">
|
||||||
|
const textOffset = 15;
|
||||||
|
let previousRadarData = undefined;
|
||||||
|
let newRadarData = undefined;
|
||||||
|
|
||||||
|
/************************
|
||||||
|
* IW4 *
|
||||||
|
* **********************/
|
||||||
|
const weapons = {};
|
||||||
|
weapons["ak47"] = "ak47";
|
||||||
|
weapons["ak47classic"] = "icon_ak47_classic";
|
||||||
|
weapons["ak74u"] = "akd74u";
|
||||||
|
weapons["m16"] = "m16a4";
|
||||||
|
weapons["m4"] = "m4carbine";
|
||||||
|
weapons["fn2000"] = "fn2000";
|
||||||
|
weapons["masada"] = "masada";
|
||||||
|
weapons["famas"] = "famas";
|
||||||
|
weapons["fal"] = "fnfal";
|
||||||
|
weapons["scar"] = "scar_h";
|
||||||
|
weapons["tavor"] = "tavor";
|
||||||
|
|
||||||
|
weapons["mp5k"] = "mp5k";
|
||||||
|
weapons["uzi"] = "mini_uzi";
|
||||||
|
weapons["p90"] = "p90";
|
||||||
|
weapons["kriss"] = "kriss";
|
||||||
|
weapons["ump45"] = "ump45";
|
||||||
|
|
||||||
|
weapons["rpd"] = "rpd";
|
||||||
|
weapons["sa80"] = "sa80_lmg";
|
||||||
|
weapons["mg4"] = "mg4";
|
||||||
|
weapons["m240"] = "m240";
|
||||||
|
weapons["aug"] = "steyr";
|
||||||
|
|
||||||
|
weapons["barrett"] = "barrett50cal";
|
||||||
|
weapons["wa2000"] = "wa2000";
|
||||||
|
weapons["m21"] = "m14ebr";
|
||||||
|
weapons["cheytac"] = "cheytac";
|
||||||
|
weapons["dragunov"] = "hud_dragunovsvd";
|
||||||
|
|
||||||
|
weapons["beretta"] = "m9beretta";
|
||||||
|
weapons["usp"] = "usp_45";
|
||||||
|
weapons["deserteagle"] = "desert_eagle";
|
||||||
|
weapons["deserteaglegold"] = "desert_eagle_gold";
|
||||||
|
weapons["desert"]
|
||||||
|
weapons["coltanaconda"] = "colt_anaconda";
|
||||||
|
|
||||||
|
weapons["tmp"] = "mp9";
|
||||||
|
weapons["glock"] = "glock";
|
||||||
|
weapons["beretta393"] = "beretta393";
|
||||||
|
weapons["pp2000"] = "pp2000";
|
||||||
|
|
||||||
|
weapons["ranger"] = "sawed_off";
|
||||||
|
weapons["model1887"] = "model1887";
|
||||||
|
weapons["striker"] = "striker";
|
||||||
|
weapons["aa12"] = "aa12";
|
||||||
|
weapons["m1014"] = "benelli_m4";
|
||||||
|
weapons["spas12"] = "spas12";
|
||||||
|
|
||||||
|
weapons["m79"] = "m79";
|
||||||
|
weapons["rpg"] = "rpg";
|
||||||
|
weapons["at4"] = "at4";
|
||||||
|
weapons["stinger"] = "stinger";
|
||||||
|
weapons["javelin"] = "javelin";
|
||||||
|
|
||||||
|
weapons["m40a3"] = "m40a3";
|
||||||
|
weapons["none"] = "neutral";
|
||||||
|
weapons["riotshield"] = "riot_shield";
|
||||||
|
weapons["peacekeeper"] = "peacekeeper";
|
||||||
|
|
||||||
|
function drawCircle(context, x, y, color) {
|
||||||
|
context.beginPath();
|
||||||
|
context.arc(x, y, 6 * stateInfo.imageScaler, 0, 2 * Math.PI, false);
|
||||||
|
context.fillStyle = color;
|
||||||
|
context.fill();
|
||||||
|
context.lineWidth = 0.5;
|
||||||
|
context.strokeStyle = 'rgba(255, 255, 255, 0.5)';
|
||||||
|
context.closePath();
|
||||||
|
context.stroke();
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawLine(context, x1, y1, x2, y2, color) {
|
||||||
|
context.beginPath();
|
||||||
|
context.lineWidth = '3';
|
||||||
|
context.moveTo(x1, y1);
|
||||||
|
context.lineTo(x2, y2);
|
||||||
|
context.closePath();
|
||||||
|
context.stroke();
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawTriangle(context, v1, v2, v3, color) {
|
||||||
|
context.beginPath();
|
||||||
|
context.moveTo(v1.x, v1.y);
|
||||||
|
context.lineTo(v2.x, v2.y);
|
||||||
|
context.lineTo(v3.x, v3.y);
|
||||||
|
context.closePath();
|
||||||
|
context.fillStyle = color;
|
||||||
|
context.fill();
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawText(context, x, y, text, size, fillColor, strokeColor, alignment = 'left') {
|
||||||
|
context.beginPath();
|
||||||
|
context.save();
|
||||||
|
context.font = `bold ${Math.max(12, size * stateInfo.imageScaler)}px courier new`;
|
||||||
|
context.fillStyle = fillColor;
|
||||||
|
context.shadowColor = strokeColor;
|
||||||
|
context.shadowBlur = 4;
|
||||||
|
context.textAlign = alignment;
|
||||||
|
context.fillText(text, x, y);
|
||||||
|
context.restore();
|
||||||
|
context.closePath();
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawImage(context, imgSelector, x, y, alpha = 1) {
|
||||||
|
context.save();
|
||||||
|
context.globalAlpha = alpha;
|
||||||
|
context.drawImage(document.getElementById(imgSelector), x - (15 * stateInfo.imageScaler), y - (15 * stateInfo.imageScaler), 32 * stateInfo.imageScaler, 32 * stateInfo.imageScaler);
|
||||||
|
context.globalAlpha = 1;
|
||||||
|
context.restore();
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkCanvasSize(canvas, context, minimap, map) {
|
||||||
|
|
||||||
|
let width = Math.round(minimap.width());
|
||||||
|
if (Math.round(context.canvas.width) != width) {
|
||||||
|
|
||||||
|
canvas.width(width);
|
||||||
|
canvas.height(width);
|
||||||
|
|
||||||
|
context.canvas.height = width;
|
||||||
|
context.canvas.width = context.canvas.height;
|
||||||
|
}
|
||||||
|
|
||||||
|
stateInfo.imageScaler = (stateInfo.canvas.width() / 1024)
|
||||||
|
stateInfo.mapScalerX = (((stateInfo.mapInfo.right * stateInfo.imageScaler) - (stateInfo.mapInfo.left * stateInfo.imageScaler)) / stateInfo.mapInfo.width);
|
||||||
|
stateInfo.mapScalerY = (((stateInfo.mapInfo.bottom * stateInfo.imageScaler) - (stateInfo.mapInfo.top * stateInfo.imageScaler)) / stateInfo.mapInfo.height);
|
||||||
|
stateInfo.mapScaler = (stateInfo.mapScalerX + stateInfo.mapScalerY) / 2
|
||||||
|
|
||||||
|
stateInfo.forwardDistance = 500.0;
|
||||||
|
stateInfo.fovWidth = 40;
|
||||||
|
}
|
||||||
|
|
||||||
|
function calculateViewPosition(x, y, distance) {
|
||||||
|
let nx = Math.cos(x) * Math.cos(y);
|
||||||
|
let ny = Math.sin(x) * Math.cos(y);
|
||||||
|
let nz = Math.sin(360.0 - y);
|
||||||
|
|
||||||
|
return { x: (nx * distance) * stateInfo.mapScaler, y: (ny * distance) * stateInfo.mapScaler, z: (nz * distance) * stateInfo.mapScaler };
|
||||||
|
}
|
||||||
|
|
||||||
|
function lerp(start, end, complete) {
|
||||||
|
return (1 - complete) * start + complete * end;
|
||||||
|
}
|
||||||
|
|
||||||
|
function easeLerp(start, end, t) {
|
||||||
|
let t2 = (1 - Math.cos(t * Math.PI)) / 2;
|
||||||
|
|
||||||
|
return (start * (1-t2) + end * t2);
|
||||||
|
}
|
||||||
|
|
||||||
|
function fixRollAngles(oldAngles, newAngles) {
|
||||||
|
let newX = newAngles.x;
|
||||||
|
let newY = newAngles.y;
|
||||||
|
|
||||||
|
let angleDifferenceX = (oldAngles.x - newAngles.x);
|
||||||
|
|
||||||
|
if (angleDifferenceX > Math.PI) {
|
||||||
|
newX = oldAngles.x + (Math.PI * 2) - angleDifferenceX;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (Math.abs(newAngles.x - oldAngles.x) > Math.PI) {
|
||||||
|
newX = newAngles.x - (Math.PI * 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
let angleDifferenceY = (oldAngles.y - newAngles.y);
|
||||||
|
|
||||||
|
if (angleDifferenceY > Math.PI) {
|
||||||
|
newY = oldAngles.y + (Math.PI * 2) - angleDifferenceY;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (Math.abs(newAngles.y - oldAngles.y) > Math.PI) {
|
||||||
|
newY = newAngles.y - (Math.PI * 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
return { x: newX, y: newY };
|
||||||
|
}
|
||||||
|
|
||||||
|
function toRadians(deg) {
|
||||||
|
return deg * Math.PI / 180.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function rotate(cx, cy, x, y, angle) {
|
||||||
|
var radians = (Math.PI / 180) * angle,
|
||||||
|
cos = Math.cos(radians),
|
||||||
|
sin = Math.sin(radians),
|
||||||
|
nx = (cos * (x - cx)) + (sin * (y - cy)) + cx,
|
||||||
|
ny = (cos * (y - cy)) - (sin * (x - cx)) + cy;
|
||||||
|
return {
|
||||||
|
x: nx,
|
||||||
|
y: ny
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function weaponImageForWeapon(weapon) {
|
||||||
|
let name = weapon.split('_')[0];
|
||||||
|
if (weapons[name] == undefined) {
|
||||||
|
console.log(name);
|
||||||
|
name = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
return `../images/radar/hud_weapons/hud_${weapons[name]}.png`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePlayerData() {
|
||||||
|
$('.player-data-left').html('');
|
||||||
|
$('.player-data-right').html('');
|
||||||
|
|
||||||
|
$.each(newRadarData, function (index, player) {
|
||||||
|
if (player == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let column = index % 2 == 0 ? $('.player-data-left') : $('.player-data-right');
|
||||||
|
column.append(`<div class="progress" style="height: 1.5rem; background-color: transparent;">
|
||||||
|
<div style="position: absolute; font-size: 1rem; left: 1.5rem;">${player.name}</div>
|
||||||
|
<div class="progress-bar bg-success" role="progressbar" style="min-width: 0px; width: ${player.health}%" aria-valuenow="${player.health}" aria-valuemin="0" aria-valuemax="100"></div>
|
||||||
|
<div class="progress-bar bg-danger" role="progressbar" style="min-width: 0px; border-right: 0px; width: ${100 - player.health}%" aria-valuenow="${100 - player.health}" aria-valuemin="0" aria-valuemax="100"></div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row flex-wrap p-2 mb-4 bg-dark border-bottom">
|
||||||
|
<div style="width: 3rem; height: 1.5rem; background-image:url(${weaponImageForWeapon(player.weapon)}); background-size: 3rem 1.5rem;" class="mr-auto text-left">
|
||||||
|
</div>
|
||||||
|
<div class="player-stat-icon" style="background-image:url('/images/radar/kills.png')"></div>
|
||||||
|
<div class="pr-2">${player.kills}</div>
|
||||||
|
<div class="player-stat-icon" style="background-image:url('/images/radar/death.png')"></div>
|
||||||
|
<div class="pr-3">${player.deaths}</div>
|
||||||
|
<span class="align-self-center oi oi-target pr-1"></span>
|
||||||
|
<div class="pr-3 ">${player.deaths == 0 ? player.kills.toFixed(2) : (player.kills / player.deaths).toFixed(2)}</div>
|
||||||
|
<span class="align-self-center oi oi-graph pr-1"></span>
|
||||||
|
<div>${ player.playTime == 0 ? '—' : Math.round(player.score / (player.playTime / 60))}</div>
|
||||||
|
</div>`);
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.player-data-left').delay(1000).animate({opacity: 1}, 500);
|
||||||
|
$('.player-data-right').delay(1000).animate({opacity: 1}, 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
const stateInfo = {
|
||||||
|
canvas: $('#map_canvas'),
|
||||||
|
ctx: $('#map_canvas')[0].getContext('2d'),
|
||||||
|
updateFrequency: 750,
|
||||||
|
updateFrameTimeDeviation: 0,
|
||||||
|
forwardDistance: undefined,
|
||||||
|
fovWidth: undefined,
|
||||||
|
mapInfo: undefined,
|
||||||
|
mapScaler: undefined,
|
||||||
|
deathIcons: {},
|
||||||
|
deathIconTime: 4000
|
||||||
|
};
|
||||||
|
|
||||||
|
function updateRadarData() {
|
||||||
|
$.getJSON('@Url.Action("Data", "Radar", new { serverId = ViewBag.ActiveServerId })', function (_radarItem) {
|
||||||
|
newRadarData = _radarItem;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$.getJSON('@Url.Action("Map", "Radar", new { serverId = ViewBag.ActiveServerId })', function (_map) {
|
||||||
|
stateInfo.mapInfo = _map
|
||||||
|
});
|
||||||
|
|
||||||
|
$.each(newRadarData, function (index, value) {
|
||||||
|
if (previousRadarData != undefined && index < previousRadarData.length) {
|
||||||
|
|
||||||
|
let previous = previousRadarData[index];
|
||||||
|
|
||||||
|
// this happens when the player has first joined and we haven't gotten two snapshots yet
|
||||||
|
if (value == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (previous == null) {
|
||||||
|
previous = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// we don't want to treat a disconnected player snapshot as the previous
|
||||||
|
else if (previous.guid == value.guid) {
|
||||||
|
value.previous = previous;
|
||||||
|
}
|
||||||
|
|
||||||
|
// we haven't gotten a new item, it's just the old one again
|
||||||
|
if (previous.id === value.id) {
|
||||||
|
value.animationTime = previous.animationTime;
|
||||||
|
value.previous = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// they died between this snapshot and last so we wanna setup the death icon
|
||||||
|
if (!value.isAlive && previous.isAlive) {
|
||||||
|
stateInfo.deathIcons[value.guid] = {
|
||||||
|
animationTime: now,
|
||||||
|
location: value.location
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// they respawned between this snapshot and last so we don't want to show wherever the were specating from
|
||||||
|
else if (value.isAlive && !previous.isAlive) {
|
||||||
|
value.previous = value;
|
||||||
|
}
|
||||||
|
}});
|
||||||
|
|
||||||
|
// we switch out the items to
|
||||||
|
previousRadarData = newRadarData;
|
||||||
|
|
||||||
|
$('#map_name').html(stateInfo.mapInfo.alias);
|
||||||
|
$('#map_list').css('background-image', `url(../images/radar/minimaps/compass_map_${stateInfo.mapInfo.name}@('@')2x.jpg)`);
|
||||||
|
checkCanvasSize(stateInfo.canvas, stateInfo.ctx, $('#map_list'), stateInfo.mapInfo);
|
||||||
|
updatePlayerData();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateMap() {
|
||||||
|
let ctx = stateInfo.ctx;
|
||||||
|
|
||||||
|
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
|
||||||
|
now = performance.now();
|
||||||
|
|
||||||
|
$.each(previousRadarData, function (index, value) {
|
||||||
|
if (value == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (value.previous == null) {
|
||||||
|
value.previous = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// this indicates we got a new snapshot to work with so we set the time based off the previous
|
||||||
|
// frame deviation to have minimal interpolation skipping
|
||||||
|
if (value.animationTime === undefined) {
|
||||||
|
value.animationTime = now - stateInfo.updateFrameTimeDeviation;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!value.isAlive) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const elapsedFrameTime = now - value.animationTime;
|
||||||
|
const completionPercent = elapsedFrameTime / stateInfo.updateFrequency;
|
||||||
|
|
||||||
|
// certain maps like estate have an off center axis of origin, so we need to account for that
|
||||||
|
let rotatedPreviousLocation = rotate(stateInfo.mapInfo.centerX, stateInfo.mapInfo.centerY, value.previous.location.x, value.previous.location.y, stateInfo.mapInfo.rotation);
|
||||||
|
let rotatedCurrentLocation = rotate(stateInfo.mapInfo.centerX, stateInfo.mapInfo.centerY, value.location.x, value.location.y, stateInfo.mapInfo.rotation);
|
||||||
|
|
||||||
|
const startX = ((stateInfo.mapInfo.maxLeft - rotatedPreviousLocation.y) * stateInfo.mapScaler) + (stateInfo.mapInfo.left * stateInfo.imageScaler);
|
||||||
|
const startY = ((stateInfo.mapInfo.maxTop - rotatedPreviousLocation.x) * stateInfo.mapScalerY) + (stateInfo.mapInfo.top * stateInfo.imageScaler);
|
||||||
|
|
||||||
|
const endX = ((stateInfo.mapInfo.maxLeft - rotatedCurrentLocation.y) * stateInfo.mapScaler) + (stateInfo.mapInfo.left * stateInfo.imageScaler);
|
||||||
|
const endY = ((stateInfo.mapInfo.maxTop - rotatedCurrentLocation.x) * stateInfo.mapScalerY) + (stateInfo.mapInfo.top * stateInfo.imageScaler);
|
||||||
|
|
||||||
|
let teamColor = value.team == 'allies' ? 'rgb(0, 122, 204, 1)' : 'rgb(255, 69, 69)';
|
||||||
|
let fovColor = value.team == 'allies' ? 'rgba(0, 122, 204, 0.2)' : 'rgba(255, 69, 69, 0.2)';
|
||||||
|
|
||||||
|
// this takes care of moving past the roll-over point of yaw/pitch (ie 360->0)
|
||||||
|
const rollAngleFix = fixRollAngles(value.previous.radianAngles, value.radianAngles);
|
||||||
|
|
||||||
|
const radianLerpX = lerp(value.previous.radianAngles.x, rollAngleFix.x, completionPercent);
|
||||||
|
const radianLerpY = lerp(value.previous.radianAngles.y, rollAngleFix.y, completionPercent);
|
||||||
|
|
||||||
|
// this is some jankiness to get the fov to point the right direction
|
||||||
|
let firstVertex = calculateViewPosition(toRadians(stateInfo.mapInfo.rotation + stateInfo.mapInfo.viewPositionRotation - 90) - radianLerpX + toRadians(stateInfo.fovWidth), radianLerpY, stateInfo.forwardDistance);
|
||||||
|
let secondVertex = calculateViewPosition(toRadians(stateInfo.mapInfo.rotation + stateInfo.mapInfo.viewPositionRotation - 90) - radianLerpX - toRadians(stateInfo.fovWidth), radianLerpY, stateInfo.forwardDistance);
|
||||||
|
|
||||||
|
let currentX = lerp(startX, endX, completionPercent);
|
||||||
|
let currentY = lerp(startY, endY, completionPercent);
|
||||||
|
|
||||||
|
// we need to calculate the distance from the center of the map so we can scale if necessary
|
||||||
|
let centerX = ((stateInfo.mapInfo.maxLeft - stateInfo.mapInfo.centerY) * stateInfo.mapScaler) + (stateInfo.mapInfo.left * stateInfo.imageScaler);
|
||||||
|
let centerY = ((stateInfo.mapInfo.maxTop - stateInfo.mapInfo.centerX) * stateInfo.mapScaler) + (stateInfo.mapInfo.top * stateInfo.imageScaler);
|
||||||
|
|
||||||
|
// reuse lerp to scale the pixel to map ratio
|
||||||
|
currentX = lerp(centerX, currentX, stateInfo.mapInfo.scaler);
|
||||||
|
currentY = lerp(centerY, currentY, stateInfo.mapInfo.scaler);
|
||||||
|
|
||||||
|
drawCircle(ctx, currentX, currentY, teamColor);
|
||||||
|
drawTriangle(ctx,
|
||||||
|
{ x: currentX, y: currentY },
|
||||||
|
{ x: currentX + firstVertex.x, y: currentY + firstVertex.y },
|
||||||
|
{ x: currentX + secondVertex.x, y: currentY + secondVertex.y },
|
||||||
|
fovColor);
|
||||||
|
drawText(ctx, currentX, currentY - (textOffset * stateInfo.imageScaler), value.name, 16, 'white', teamColor, 'center')
|
||||||
|
});
|
||||||
|
|
||||||
|
const completedIcons = [];
|
||||||
|
|
||||||
|
for (let key in stateInfo.deathIcons) {
|
||||||
|
const icon = stateInfo.deathIcons[key];
|
||||||
|
|
||||||
|
const x = ((stateInfo.mapInfo.maxLeft - icon.location.y) * stateInfo.mapScaler) + (stateInfo.mapInfo.left * stateInfo.imageScaler);
|
||||||
|
const y = ((stateInfo.mapInfo.maxTop - icon.location.x) * stateInfo.mapScaler) + (stateInfo.mapInfo.top * stateInfo.imageScaler);
|
||||||
|
|
||||||
|
const elapsedFrameTime = now - icon.animationTime;
|
||||||
|
const completionPercent = elapsedFrameTime / stateInfo.deathIconTime;
|
||||||
|
const opacity = easeLerp(1, 0, completionPercent);
|
||||||
|
|
||||||
|
drawImage(stateInfo.ctx, 'hud_death', x, y, opacity);
|
||||||
|
|
||||||
|
if (completionPercent >= 1) {
|
||||||
|
completedIcons.push(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < completedIcons.length; i++) {
|
||||||
|
delete stateInfo.deathIcons[completedIcons[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
window.requestAnimationFrame(updateMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
$.getJSON('@Url.Action("Map", "Radar", new { serverId = ViewBag.ActiveServerId })', function (_map) {
|
||||||
|
stateInfo.mapInfo = _map;
|
||||||
|
updateRadarData();
|
||||||
|
setInterval(updateRadarData, stateInfo.updateFrequency);
|
||||||
|
window.requestAnimationFrame(updateMap);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
}
|
3
Plugins/LiveRadar/Views/_ViewImports.cshtml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@using SharedLibraryCore
|
||||||
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
|
@addTagHelper *, SharedLibraryCore
|
BIN
Plugins/LiveRadar/wwwroot/images/radar/death.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_aa12.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_ak47.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 4.1 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_at4.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.3 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_famas.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 3.9 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_fnfal.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_glock.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.8 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_kriss.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.2 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_m16a4.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_m240.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_m40a3.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 3.9 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_m79.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 4.9 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_mg4.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.2 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_mp5k.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_mp9.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.5 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_p90.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.1 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_rpd.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_rpg.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 3.7 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_steyr.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 4.6 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_tavor.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/hud_weapons/hud_ump45.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 4.4 KiB |
BIN
Plugins/LiveRadar/wwwroot/images/radar/kills.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 186 KiB |
After Width: | Height: | Size: 306 KiB |
After Width: | Height: | Size: 179 KiB |
After Width: | Height: | Size: 238 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 190 KiB |
After Width: | Height: | Size: 156 KiB |