37 lines
998 B
C#
37 lines
998 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Reactive.Linq;
|
|
using DynamicData;
|
|
using DynamicData.Binding;
|
|
using Splat;
|
|
using StarsAssistant.Model;
|
|
using StarsAssistant.ViewModels;
|
|
|
|
namespace StarsAssistant.Services;
|
|
|
|
public class PlanetManager
|
|
{
|
|
protected Services.Game Game = Locator.Current.GetService<Services.Game>()!;
|
|
|
|
private SourceCache<Planet, string> _planets = new(p => p.Name);
|
|
|
|
public IObservable<IChangeSet<PlayerPlanetViewModel, string>> PlayerPlanetsSource
|
|
=> _planets
|
|
.Connect()
|
|
.Filter(planet => planet.OwnerId == Game.Player.Name)
|
|
.Transform(planet => new PlayerPlanetViewModel(planet));
|
|
|
|
public PlanetManager()
|
|
{
|
|
}
|
|
|
|
public void __test__Init()
|
|
{
|
|
using var db = Locator.Current.GetService<StarsDatabase>()!;
|
|
{
|
|
var playerPlanets = db.Planet.ToList();
|
|
_planets.AddOrUpdate(playerPlanets);
|
|
}
|
|
}
|
|
}
|