using System;
using System.IO;
using UnityEngine;
using Version = SemVer.Version;
namespace IPA.Utilities
{
///
/// Provides some basic utility methods and properties of Beat Saber
///
public static class BeatSaber
{
private static Version _gameVersion;
///
/// Provides the current game version
///
public static Version GameVersion => _gameVersion ?? (_gameVersion = new Version(Application.version, true));
///
/// The different types of releases of the game.
///
public enum Release
{
///
/// Indicates a Steam release.
///
Steam,
///
/// Indicates an Oculus release.
///
Oculus
}
private static Release? _releaseCache;
///
/// Gets the type of this installation of Beat Saber
///
public static Release ReleaseType => (_releaseCache ?? (_releaseCache = FindSteamVRAsset() ? Release.Steam : Release.Oculus)).Value;
///
/// The path to the Beat Saber install dir
///
public static string InstallPath => Environment.CurrentDirectory;
///
/// The path to the `Libs` folder. Use only if necessary.
///
public static string LibraryPath => Path.Combine(InstallPath, "Libs");
///
/// The path to the `Libs\Native` folder. Use only if necessary.
///
public static string NativeLibraryPath => Path.Combine(LibraryPath, "Native");
///
/// The directory to load plugins from.
///
public static string PluginsPath => Path.Combine(InstallPath, "Plugins");
///
/// The path to the `UserData` folder.
///
public static string UserDataPath => Path.Combine(InstallPath, "UserData");
private static bool FindSteamVRAsset()
{
// these require assembly qualified names....
var steamVRCamera = Type.GetType("SteamVR_Camera, Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", false);
var steamVRExternalCamera = Type.GetType("SteamVR_ExternalCamera, Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", false);
var steamVRFade = Type.GetType("SteamVR_Fade, Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", false);
return steamVRCamera != null && steamVRExternalCamera != null && steamVRFade != null;
}
}
}