PalacePal/Pal.Client/Floors/Tasks/LoadTerritory.cs

80 lines
2.9 KiB
C#
Raw Normal View History

2023-02-18 20:12:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
2023-02-18 20:12:36 +00:00
using Pal.Client.Database;
namespace Pal.Client.Floors.Tasks
{
internal sealed class LoadTerritory : DbTask<LoadTerritory>
2023-02-18 20:12:36 +00:00
{
2023-02-22 19:29:58 +00:00
private readonly Cleanup _cleanup;
2023-02-18 20:12:36 +00:00
private readonly MemoryTerritory _territory;
2023-02-22 19:29:58 +00:00
public LoadTerritory(IServiceScopeFactory serviceScopeFactory,
Cleanup cleanup,
MemoryTerritory territory)
2023-02-18 20:12:36 +00:00
: base(serviceScopeFactory)
{
2023-02-22 19:29:58 +00:00
_cleanup = cleanup;
2023-02-18 20:12:36 +00:00
_territory = territory;
}
protected override void Run(PalClientContext dbContext, ILogger<LoadTerritory> logger)
2023-02-18 20:12:36 +00:00
{
lock (_territory.LockObj)
{
2023-02-22 19:29:58 +00:00
if (_territory.ReadyState != MemoryTerritory.EReadyState.Loading)
{
2023-02-22 19:29:58 +00:00
logger.LogInformation("Territory {Territory} is in state {State}", _territory.TerritoryType,
_territory.ReadyState);
2023-02-18 20:12:36 +00:00
return;
}
2023-02-18 20:12:36 +00:00
logger.LogInformation("Loading territory {Territory}", _territory.TerritoryType);
2023-02-22 19:29:58 +00:00
// purge outdated locations
_cleanup.Purge(dbContext, _territory.TerritoryType);
// load good locations
2023-02-18 20:12:36 +00:00
List<ClientLocation> locations = dbContext.Locations
.Where(o => o.TerritoryType == (ushort)_territory.TerritoryType)
.Include(o => o.ImportedBy)
.Include(o => o.RemoteEncounters)
.AsSplitQuery()
2023-02-18 20:12:36 +00:00
.ToList();
_territory.Initialize(locations.Select(ToMemoryLocation));
logger.LogInformation("Loaded {Count} locations for territory {Territory}", locations.Count,
_territory.TerritoryType);
2023-02-18 20:12:36 +00:00
}
}
public static PersistentLocation ToMemoryLocation(ClientLocation location)
{
return new PersistentLocation
{
LocalId = location.LocalId,
Type = ToMemoryLocationType(location.Type),
Position = new Vector3(location.X, location.Y, location.Z),
Seen = location.Seen,
2023-02-22 19:29:58 +00:00
Source = location.Source,
2023-02-18 20:12:36 +00:00
RemoteSeenOn = location.RemoteEncounters.Select(o => o.AccountId).ToList(),
};
}
private static MemoryLocation.EType ToMemoryLocationType(ClientLocation.EType type)
{
return type switch
{
ClientLocation.EType.Trap => MemoryLocation.EType.Trap,
ClientLocation.EType.Hoard => MemoryLocation.EType.Hoard,
_ => throw new ArgumentOutOfRangeException(nameof(type), type, null)
};
}
}
}