mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
245 lines
7.5 KiB
C#
245 lines
7.5 KiB
C#
using System.Linq;
|
|
|
|
using Dalamud.Game.Network.Internal;
|
|
using Dalamud.Game.Network.Structures;
|
|
using Dalamud.IoC;
|
|
using Dalamud.IoC.Internal;
|
|
using Dalamud.Logging.Internal;
|
|
using Dalamud.Plugin.Internal.Types;
|
|
using Dalamud.Plugin.Services;
|
|
|
|
using static Dalamud.Plugin.Services.IMarketBoard;
|
|
|
|
namespace Dalamud.Game.MarketBoard;
|
|
|
|
/// <summary>
|
|
/// This class provides access to market board events.
|
|
/// </summary>
|
|
[ServiceManager.EarlyLoadedService]
|
|
internal class MarketBoard : IInternalDisposableService, IMarketBoard
|
|
{
|
|
[ServiceManager.ServiceDependency]
|
|
private readonly NetworkHandlers networkHandlers = Service<NetworkHandlers>.Get();
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MarketBoard"/> class.
|
|
/// </summary>
|
|
[ServiceManager.ServiceConstructor]
|
|
public MarketBoard()
|
|
{
|
|
this.networkHandlers.MbHistoryObservable.Subscribe(this.OnMbHistory);
|
|
this.networkHandlers.MbPurchaseObservable.Subscribe(this.OnPurchase);
|
|
this.networkHandlers.MbOfferingsObservable.Subscribe(this.OnOfferings);
|
|
this.networkHandlers.MbPurchaseSentObservable.Subscribe(this.OnPurchaseSent);
|
|
this.networkHandlers.MbTaxesObservable.Subscribe(this.OnTaxRates);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public event HistoryReceivedDelegate? HistoryReceived;
|
|
|
|
/// <inheritdoc/>
|
|
public event ItemPurchasedDelegate? ItemPurchased;
|
|
|
|
/// <inheritdoc/>
|
|
public event OfferingsReceivedDelegate? OfferingsReceived;
|
|
|
|
/// <inheritdoc/>
|
|
public event PurchaseRequestedDelegate? PurchaseRequested;
|
|
|
|
/// <inheritdoc/>
|
|
public event TaxRatesReceivedDelegate? TaxRatesReceived;
|
|
|
|
/// <inheritdoc/>
|
|
public void DisposeService()
|
|
{
|
|
this.HistoryReceived = null;
|
|
this.ItemPurchased = null;
|
|
this.OfferingsReceived = null;
|
|
this.PurchaseRequested = null;
|
|
this.TaxRatesReceived = null;
|
|
}
|
|
|
|
private void OnMbHistory(MarketBoardHistory marketBoardHistory)
|
|
{
|
|
this.HistoryReceived?.Invoke(marketBoardHistory);
|
|
}
|
|
|
|
private void OnPurchase(MarketBoardPurchase marketBoardHistory)
|
|
{
|
|
this.ItemPurchased?.Invoke(marketBoardHistory);
|
|
}
|
|
|
|
private void OnOfferings(MarketBoardCurrentOfferings currentOfferings)
|
|
{
|
|
this.OfferingsReceived?.Invoke(currentOfferings);
|
|
}
|
|
|
|
private void OnPurchaseSent(MarketBoardPurchaseHandler purchaseHandler)
|
|
{
|
|
this.PurchaseRequested?.Invoke(purchaseHandler);
|
|
}
|
|
|
|
private void OnTaxRates(MarketTaxRates taxRates)
|
|
{
|
|
this.TaxRatesReceived?.Invoke(taxRates);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Plugin scoped version of MarketBoard.
|
|
/// </summary>
|
|
[PluginInterface]
|
|
[ServiceManager.ScopedService]
|
|
#pragma warning disable SA1015
|
|
[ResolveVia<IMarketBoard>]
|
|
#pragma warning restore SA1015
|
|
internal class MarketBoardPluginScoped : IInternalDisposableService, IMarketBoard
|
|
{
|
|
private static readonly ModuleLog Log = new(nameof(MarketBoardPluginScoped));
|
|
|
|
[ServiceManager.ServiceDependency]
|
|
private readonly MarketBoard marketBoardService = Service<MarketBoard>.Get();
|
|
|
|
private readonly string owningPluginName;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MarketBoardPluginScoped"/> class.
|
|
/// </summary>
|
|
/// <param name="plugin">The plugin owning this service.</param>
|
|
internal MarketBoardPluginScoped(LocalPlugin? plugin)
|
|
{
|
|
this.marketBoardService.HistoryReceived += this.OnHistoryReceived;
|
|
this.marketBoardService.ItemPurchased += this.OnItemPurchased;
|
|
this.marketBoardService.OfferingsReceived += this.OnOfferingsReceived;
|
|
this.marketBoardService.PurchaseRequested += this.OnPurchaseRequested;
|
|
this.marketBoardService.TaxRatesReceived += this.OnTaxRatesReceived;
|
|
|
|
this.owningPluginName = plugin?.InternalName ?? "DalamudInternal";
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public event HistoryReceivedDelegate? HistoryReceived;
|
|
|
|
/// <inheritdoc/>
|
|
public event ItemPurchasedDelegate? ItemPurchased;
|
|
|
|
/// <inheritdoc/>
|
|
public event OfferingsReceivedDelegate? OfferingsReceived;
|
|
|
|
/// <inheritdoc/>
|
|
public event PurchaseRequestedDelegate? PurchaseRequested;
|
|
|
|
/// <inheritdoc/>
|
|
public event TaxRatesReceivedDelegate? TaxRatesReceived;
|
|
|
|
/// <inheritdoc/>
|
|
void IInternalDisposableService.DisposeService()
|
|
{
|
|
this.marketBoardService.HistoryReceived -= this.OnHistoryReceived;
|
|
this.marketBoardService.ItemPurchased -= this.OnItemPurchased;
|
|
this.marketBoardService.OfferingsReceived -= this.OnOfferingsReceived;
|
|
this.marketBoardService.PurchaseRequested -= this.OnPurchaseRequested;
|
|
this.marketBoardService.TaxRatesReceived -= this.OnTaxRatesReceived;
|
|
|
|
this.HistoryReceived = null;
|
|
this.ItemPurchased = null;
|
|
this.OfferingsReceived = null;
|
|
this.PurchaseRequested = null;
|
|
this.TaxRatesReceived = null;
|
|
}
|
|
|
|
private void OnHistoryReceived(IMarketBoardHistory history)
|
|
{
|
|
if (this.HistoryReceived == null) return;
|
|
|
|
foreach (var action in this.HistoryReceived.GetInvocationList().Cast<HistoryReceivedDelegate>())
|
|
{
|
|
try
|
|
{
|
|
action.Invoke(history);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.LogInvocationError(ex, nameof(this.HistoryReceived));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnItemPurchased(IMarketBoardPurchase purchase)
|
|
{
|
|
if (this.ItemPurchased == null) return;
|
|
|
|
foreach (var action in this.ItemPurchased.GetInvocationList().Cast<ItemPurchasedDelegate>())
|
|
{
|
|
try
|
|
{
|
|
action.Invoke(purchase);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.LogInvocationError(ex, nameof(this.ItemPurchased));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnOfferingsReceived(IMarketBoardCurrentOfferings currentOfferings)
|
|
{
|
|
if (this.OfferingsReceived == null) return;
|
|
|
|
foreach (var action in this.OfferingsReceived.GetInvocationList()
|
|
.Cast<OfferingsReceivedDelegate>())
|
|
{
|
|
try
|
|
{
|
|
action.Invoke(currentOfferings);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.LogInvocationError(ex, nameof(this.OfferingsReceived));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnPurchaseRequested(IMarketBoardPurchaseHandler purchaseHandler)
|
|
{
|
|
if (this.PurchaseRequested == null) return;
|
|
|
|
foreach (var action in this.PurchaseRequested.GetInvocationList().Cast<PurchaseRequestedDelegate>())
|
|
{
|
|
try
|
|
{
|
|
action.Invoke(purchaseHandler);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.LogInvocationError(ex, nameof(this.PurchaseRequested));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnTaxRatesReceived(IMarketTaxRates taxRates)
|
|
{
|
|
if (this.TaxRatesReceived == null) return;
|
|
|
|
foreach (var action in this.TaxRatesReceived.GetInvocationList().Cast<TaxRatesReceivedDelegate>())
|
|
{
|
|
try
|
|
{
|
|
action.Invoke(taxRates);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
this.LogInvocationError(ex, nameof(this.TaxRatesReceived));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void LogInvocationError(Exception ex, string delegateName)
|
|
{
|
|
Log.Error(
|
|
ex,
|
|
"An error occured while invoking event `{evName}` for {plugin}",
|
|
delegateName,
|
|
this.owningPluginName);
|
|
}
|
|
}
|