mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 05:17:42 +01:00
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using Dalamud.Bindings.ImGui;
|
|
using Dalamud.Game.Gui.PartyFinder;
|
|
using Dalamud.Game.Gui.PartyFinder.Types;
|
|
|
|
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
|
|
|
/// <summary>
|
|
/// Test setup for Party Finder events.
|
|
/// </summary>
|
|
internal class PartyFinderSelfTestStep : ISelfTestStep
|
|
{
|
|
private bool subscribed = false;
|
|
private bool hasPassed = false;
|
|
|
|
/// <inheritdoc/>
|
|
public string Name => "Test Party Finder";
|
|
|
|
/// <inheritdoc/>
|
|
public SelfTestStepResult RunStep()
|
|
{
|
|
var partyFinderGui = Service<PartyFinderGui>.Get();
|
|
|
|
if (!this.subscribed)
|
|
{
|
|
partyFinderGui.ReceiveListing += this.PartyFinderOnReceiveListing;
|
|
this.subscribed = true;
|
|
}
|
|
|
|
if (this.hasPassed)
|
|
{
|
|
partyFinderGui.ReceiveListing -= this.PartyFinderOnReceiveListing;
|
|
this.subscribed = false;
|
|
return SelfTestStepResult.Pass;
|
|
}
|
|
|
|
ImGui.Text("Open Party Finder");
|
|
|
|
return SelfTestStepResult.Waiting;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void CleanUp()
|
|
{
|
|
var partyFinderGui = Service<PartyFinderGui>.Get();
|
|
|
|
if (this.subscribed)
|
|
{
|
|
partyFinderGui.ReceiveListing -= this.PartyFinderOnReceiveListing;
|
|
this.subscribed = false;
|
|
}
|
|
}
|
|
|
|
private void PartyFinderOnReceiveListing(IPartyFinderListing listing, IPartyFinderListingEventArgs args)
|
|
{
|
|
this.hasPassed = true;
|
|
}
|
|
}
|