mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
CloudApi testing in Debug tab
This commit is contained in:
parent
912020cc3f
commit
5503bb32e0
2 changed files with 68 additions and 0 deletions
29
Penumbra/Interop/CloudApi.cs
Normal file
29
Penumbra/Interop/CloudApi.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
namespace Penumbra.Interop;
|
||||||
|
|
||||||
|
public static unsafe partial class CloudApi
|
||||||
|
{
|
||||||
|
private const int CfSyncRootInfoBasic = 0;
|
||||||
|
|
||||||
|
public static bool IsCloudSynced(string path)
|
||||||
|
{
|
||||||
|
var buffer = stackalloc long[1];
|
||||||
|
var hr = CfGetSyncRootInfoByPath(path, CfSyncRootInfoBasic, buffer, sizeof(long), out var length);
|
||||||
|
Penumbra.Log.Information($"{nameof(CfGetSyncRootInfoByPath)} returned HRESULT {hr}");
|
||||||
|
if (hr < 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (length != sizeof(long))
|
||||||
|
{
|
||||||
|
Penumbra.Log.Warning($"Expected {nameof(CfGetSyncRootInfoByPath)} to return {sizeof(long)} bytes, got {length} bytes");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Penumbra.Log.Information($"{nameof(CfGetSyncRootInfoByPath)} returned {{ SyncRootFileId = 0x{*buffer:X16} }}");
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
[LibraryImport("cldapi.dll", StringMarshalling = StringMarshalling.Utf16)]
|
||||||
|
private static partial int CfGetSyncRootInfoByPath(string filePath, int infoClass, void* infoBuffer, uint infoBufferLength,
|
||||||
|
out uint returnedLength);
|
||||||
|
}
|
||||||
|
|
@ -9,6 +9,7 @@ using FFXIVClientStructs.FFXIV.Client.Game.Object;
|
||||||
using FFXIVClientStructs.FFXIV.Client.System.Resource;
|
using FFXIVClientStructs.FFXIV.Client.System.Resource;
|
||||||
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
||||||
using Dalamud.Bindings.ImGui;
|
using Dalamud.Bindings.ImGui;
|
||||||
|
using Dalamud.Interface.Colors;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using OtterGui;
|
using OtterGui;
|
||||||
using OtterGui.Classes;
|
using OtterGui.Classes;
|
||||||
|
|
@ -41,6 +42,7 @@ using Penumbra.GameData.Data;
|
||||||
using Penumbra.Interop.Hooks.PostProcessing;
|
using Penumbra.Interop.Hooks.PostProcessing;
|
||||||
using Penumbra.Interop.Hooks.ResourceLoading;
|
using Penumbra.Interop.Hooks.ResourceLoading;
|
||||||
using Penumbra.GameData.Files.StainMapStructs;
|
using Penumbra.GameData.Files.StainMapStructs;
|
||||||
|
using Penumbra.Interop;
|
||||||
using Penumbra.String.Classes;
|
using Penumbra.String.Classes;
|
||||||
using Penumbra.UI.AdvancedWindow.Materials;
|
using Penumbra.UI.AdvancedWindow.Materials;
|
||||||
|
|
||||||
|
|
@ -206,6 +208,7 @@ public class DebugTab : Window, ITab, IUiService
|
||||||
_hookOverrides.Draw();
|
_hookOverrides.Draw();
|
||||||
DrawPlayerModelInfo();
|
DrawPlayerModelInfo();
|
||||||
_globalVariablesDrawer.Draw();
|
_globalVariablesDrawer.Draw();
|
||||||
|
DrawCloudApi();
|
||||||
DrawDebugTabIpc();
|
DrawDebugTabIpc();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1199,6 +1202,42 @@ public class DebugTab : Window, ITab, IUiService
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private string _cloudTesterPath = string.Empty;
|
||||||
|
private bool? _cloudTesterReturn;
|
||||||
|
private Exception? _cloudTesterError;
|
||||||
|
|
||||||
|
private void DrawCloudApi()
|
||||||
|
{
|
||||||
|
if (!ImUtf8.CollapsingHeader("Cloud API"u8))
|
||||||
|
return;
|
||||||
|
|
||||||
|
using var id = ImRaii.PushId("CloudApiTester"u8);
|
||||||
|
|
||||||
|
if (ImUtf8.InputText("Path"u8, ref _cloudTesterPath, flags: ImGuiInputTextFlags.EnterReturnsTrue))
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_cloudTesterReturn = CloudApi.IsCloudSynced(_cloudTesterPath);
|
||||||
|
_cloudTesterError = null;
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
_cloudTesterReturn = null;
|
||||||
|
_cloudTesterError = e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_cloudTesterReturn.HasValue)
|
||||||
|
ImUtf8.Text($"Is Cloud Synced? {_cloudTesterReturn}");
|
||||||
|
|
||||||
|
if (_cloudTesterError is not null)
|
||||||
|
{
|
||||||
|
using var color = ImRaii.PushColor(ImGuiCol.Text, ImGuiColors.DalamudRed);
|
||||||
|
ImUtf8.Text($"{_cloudTesterError}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary> Draw information about IPC options and availability. </summary>
|
/// <summary> Draw information about IPC options and availability. </summary>
|
||||||
private void DrawDebugTabIpc()
|
private void DrawDebugTabIpc()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue