c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
using System;
|
|
using Data.Abstractions;
|
|
using Data.Models.Server;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using SharedLibraryCore;
|
|
using SharedLibraryCore.Configuration;
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
namespace IW4MAdmin.Application.Factories
|
|
{
|
|
/// <summary>
|
|
/// implementation of IGameServerInstanceFactory
|
|
/// </summary>
|
|
internal class GameServerInstanceFactory : IGameServerInstanceFactory
|
|
{
|
|
private readonly ITranslationLookup _translationLookup;
|
|
private readonly IMetaService _metaService;
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
/// <summary>
|
|
/// base constructor
|
|
/// </summary>
|
|
/// <param name="translationLookup"></param>
|
|
/// <param name="rconConnectionFactory"></param>
|
|
public GameServerInstanceFactory(ITranslationLookup translationLookup,
|
|
IMetaService metaService,
|
|
IServiceProvider serviceProvider)
|
|
{
|
|
_translationLookup = translationLookup;
|
|
_metaService = metaService;
|
|
_serviceProvider = serviceProvider;
|
|
}
|
|
|
|
/// <summary>
|
|
/// creates an IW4MServer instance
|
|
/// </summary>
|
|
/// <param name="config">server configuration</param>
|
|
/// <param name="manager">application manager</param>
|
|
/// <returns></returns>
|
|
public Server CreateServer(ServerConfiguration config, IManager manager)
|
|
{
|
|
return new IW4MServer(config, _translationLookup, _metaService, _serviceProvider, _serviceProvider.GetRequiredService<IClientNoticeMessageFormatter>(), _serviceProvider.GetRequiredService<ILookupCache<EFServer>>());
|
|
}
|
|
}
|
|
}
|