mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-15 12:53:51 +02:00
* init * SQLite changes * Move html folder, edit build scripts * AppApi interface * Build flags * AppApi inheritance * Finishing touches * Merge upstream changes * Test CI * Fix class inits * Rename AppApi * Merge upstream changes * Fix SQLiteLegacy on Linux, Add Linux interop, build tools * Linux specific localisation strings * Make it run * Bring back most of Linux functionality * Clean up * Fix TTS voices * Fix UI var * Changes * Electron minimise to tray * Remove separate toggle for WlxOverlay * Fixes * Touchups * Move csproj * Window zoom, Desktop Notifications, VR check on Linux * Fix desktop notifications, VR check spam * Fix building on Linux * Clean up * Fix WebApi headers * Rewrite VRCX updater * Clean up * Linux updater * Add Linux to build action * init * SQLite changes * Move html folder, edit build scripts * AppApi interface * Build flags * AppApi inheritance * Finishing touches * Merge upstream changes * Test CI * Fix class inits * Rename AppApi * Merge upstream changes * Fix SQLiteLegacy on Linux, Add Linux interop, build tools * Linux specific localisation strings * Make it run * Bring back most of Linux functionality * Clean up * Fix TTS voices * Changes * Electron minimise to tray * Remove separate toggle for WlxOverlay * Fixes * Touchups * Move csproj * Window zoom, Desktop Notifications, VR check on Linux * Fix desktop notifications, VR check spam * Fix building on Linux * Clean up * Fix WebApi headers * Rewrite VRCX updater * Clean up * Linux updater * Add Linux to build action * Test updater * Rebase and handle merge conflicts * Fix Linux updater * Fix Linux app restart * Fix friend order * Handle AppImageInstaller, show an install message on Linux * Updates to the AppImage installer * Fix Linux updater, fix set version, check for .NET, copy wine prefix * Handle random errors * Rotate tall prints * try fix Linux restart bug * Final --------- Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
77 lines
3.8 KiB
C#
77 lines
3.8 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 DeleteAllCookies();
|
|
public abstract void SetVR(bool active, bool hmdOverlay, bool wristOverlay, bool menuButton, int overlayHand);
|
|
public abstract void RefreshVR();
|
|
public abstract void RestartVR();
|
|
public abstract void SetZoom(double zoomLevel);
|
|
public abstract Task<double> GetZoom();
|
|
public abstract void DesktopNotification(string BoldText, string Text = "", string Image = "");
|
|
|
|
public abstract void RestartApplication(bool isUpgrade);
|
|
public abstract bool CheckForUpdateExe();
|
|
public abstract void ExecuteAppFunction(string function, string json);
|
|
public abstract void ExecuteVrFeedFunction(string function, string json);
|
|
public abstract void ExecuteVrOverlayFunction(string function, string json);
|
|
public abstract string GetLaunchCommand();
|
|
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 bool IsRunningUnderWine();
|
|
|
|
// 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);
|
|
}
|
|
} |