mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-09 09:53:47 +02:00
* refactor: merge two overlay offScreenBrowser into one * Electron support for shared overlay * Separate overlay into its own process * fix: invalid overlay texture size * Handle duplicate processes * Remove logging --------- Co-authored-by: pa <maplenagisa@gmail.com> Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
72 lines
3.5 KiB
C#
72 lines
3.5 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using NLog;
|
|
|
|
namespace VRCX
|
|
{
|
|
public abstract partial class AppApi
|
|
{
|
|
// AppApi
|
|
public abstract void ShowDevTools();
|
|
public abstract void SetVR(bool active, bool hmdOverlay, bool wristOverlay, bool menuButton, int overlayHand);
|
|
public abstract void SetZoom(double zoomLevel);
|
|
public abstract Task<double> GetZoom();
|
|
public abstract void DesktopNotification(string BoldText, string Text = "", string Image = "");
|
|
public abstract void SetTrayIconNotification(bool notify);
|
|
|
|
public abstract void RestartApplication(bool isUpgrade);
|
|
public abstract bool CheckForUpdateExe();
|
|
public abstract void ExecuteVrOverlayFunction(string function, string json);
|
|
public abstract void FocusWindow();
|
|
public abstract void ChangeTheme(int value);
|
|
public abstract void DoFunny();
|
|
public abstract string GetClipboard();
|
|
public abstract void SetStartup(bool enabled);
|
|
public abstract void CopyImageToClipboard(string path);
|
|
public abstract void FlashWindow();
|
|
public abstract void SetUserAgent();
|
|
public abstract void OpenCalendarFile(string icsContent);
|
|
|
|
// Folders
|
|
public abstract string GetVRChatAppDataLocation();
|
|
public abstract string GetVRChatPhotosLocation();
|
|
public abstract string GetUGCPhotoLocation(string path = "");
|
|
public abstract string GetVRChatScreenshotsLocation();
|
|
public abstract string GetVRChatCacheLocation();
|
|
public abstract bool OpenVrcxAppDataFolder();
|
|
public abstract bool OpenVrcAppDataFolder();
|
|
public abstract bool OpenVrcPhotosFolder();
|
|
public abstract bool OpenUGCPhotosFolder(string ugcPath = "");
|
|
public abstract bool OpenVrcScreenshotsFolder();
|
|
public abstract bool OpenCrashVrcCrashDumps();
|
|
public abstract void OpenShortcutFolder();
|
|
public abstract void OpenFolderAndSelectItem(string path, bool isFolder = false);
|
|
public abstract Task<string> OpenFolderSelectorDialog(string defaultPath = "");
|
|
|
|
public abstract Task<string> OpenFileSelectorDialog(string defaultPath = "", string defaultExt = "",
|
|
string defaultFilter = "All files (*.*)|*.*");
|
|
|
|
// GameHandler
|
|
public abstract void OnProcessStateChanged(MonitoredProcess monitoredProcess);
|
|
public abstract void CheckGameRunning();
|
|
public abstract bool IsGameRunning();
|
|
public abstract bool IsSteamVRRunning();
|
|
public abstract int QuitGame();
|
|
public abstract bool StartGame(string arguments);
|
|
public abstract bool StartGameFromPath(string path, string arguments);
|
|
|
|
// RegistryPlayerPrefs
|
|
public abstract object GetVRChatRegistryKey(string key);
|
|
public abstract string GetVRChatRegistryKeyString(string key);
|
|
public abstract bool SetVRChatRegistryKey(string key, object value, int typeInt);
|
|
public abstract void SetVRChatRegistryKey(string key, byte[] value);
|
|
public abstract Dictionary<string, Dictionary<string, object>> GetVRChatRegistry();
|
|
public abstract void SetVRChatRegistry(string json);
|
|
public abstract bool HasVRChatRegistryFolder();
|
|
public abstract void DeleteVRChatRegistryFolder();
|
|
public abstract string ReadVrcRegJsonFile(string filepath);
|
|
|
|
// Screenshot
|
|
public abstract string AddScreenshotMetadata(string path, string metadataString, string worldId, bool changeFilename = false);
|
|
}
|
|
} |