You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SCJMapper-V2/SC/SCPath.cs

187 lines
4.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using Microsoft.Win32;
namespace SCJMapper_V2
{
/// <summary>
/// Find the SC pathes and folders
/// </summary>
class SCPath
{
private static readonly log4net.ILog log = log4net.LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod( ).DeclaringType );
/// <summary>
/// Try to locate the launcher under "App Paths"
/// </summary>
static private String SCLauncherPath1
{
get
{
String scpath = ( String )Registry.GetValue( @"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths\StarCitizen Launcher.exe", "", null );
if ( scpath != null ) {
log.Info( "SCLauncherPath1 - Found HKLM - AppPath - Launcher.exe" );
return scpath;
}
log.Warn( "SCLauncherPath1 - did not found HKLM - AppPath - Launcher.exe" );
return "";
}
}
/// <summary>
/// Try to locate the launcher under "Uninstall"
/// </summary>
static private String SCLauncherPath2
{
get
{
String scpath = ( String )Registry.GetValue( @"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\StarCitizen", "DisplayIcon", null );
if ( scpath != null ) {
log.Info( "SCLauncherPath2 - Found HKLM - Uninstall - StarCitizen" );
return scpath;
}
log.Warn( "SCLauncherPath2 - did not found HKLM - Uninstall - StarCitizen" );
return "";
}
}
/// <summary>
/// Returns the base SC install path from something like "E:\G\StarCitizen\Launcher\StarCitizenLauncher.exe"
/// </summary>
static private String SCBasePath
{
get
{
log.Debug( "SCBasePath - Entry" );
String scp = SCLauncherPath1;
if ( String.IsNullOrEmpty( scp ) ) {
scp = SCLauncherPath2;
if ( String.IsNullOrEmpty( scp ) ) {
return ""; // sorry did not found a thing..
}
}
// found the launcher
scp = Path.GetDirectoryName( scp ); // "E:\G\StarCitizen\Launcher"
scp = Path.GetDirectoryName( scp ); // "E:\G\StarCitizen"
return scp;
}
}
/// <summary>
/// Returns the SC installation path
/// </summary>
static public String SCInstallPath
{
get
{
log.Debug( "SCInstallPath - Entry" );
return SCBasePath;
}
}
/// <summary>
/// Returns the SC ClientData path e.g. "E:\G\StarCitizen\CitizenClient\Data"
/// </summary>
static public String SCClientDataPath
{
get
{
log.Debug( "SCClientDataPath - Entry" );
String scp = SCBasePath;
if ( String.IsNullOrEmpty( scp ) ) return "";
//
scp = Path.Combine( scp, "CitizenClient" );
scp = Path.Combine( scp, "Data" );
return scp;
}
}
/// <summary>
/// Returns the SC ClientData path e.g. "E:\G\StarCitizen\CitizenClient\USER"
/// </summary>
static public String SCClientUSERPath
{
get
{
log.Debug( "SCClientUSERPath - Entry" );
String scp = SCBasePath;
if ( String.IsNullOrEmpty( scp ) ) return "";
//
scp = Path.Combine( scp, "CitizenClient" );
scp = Path.Combine( scp, "USER" );
return scp;
}
}
/// <summary>
/// Returns the SC ClientData path e.g. "E:\G\StarCitizen\CitizenClient\Data\Controls\Mappings"
/// </summary>
static public String SCClientMappingPath
{
get
{
log.Debug( "SCClientMappingPath - Entry" );
String scp = SCClientDataPath;
if ( String.IsNullOrEmpty( scp ) ) return "";
//
scp = Path.Combine( scp, "Controls" );
scp = Path.Combine( scp, "Mappings" );
return scp;
}
}
/// <summary>
/// Returns the SC GameData.pak file path e.g. "E:\G\StarCitizen\CitizenClient\Data\GameData.pak"
/// </summary>
static public String SCGameData_pak
{
get
{
log.Debug( "SCGameData_pak - Entry" );
String scp = SCClientDataPath;
if ( String.IsNullOrEmpty( scp ) ) return "";
//
scp = Path.Combine( scp, "GameData.pak" );
return scp;
}
}
/// <summary>
/// Returns the relative path of DefaultProfile.xml
/// </summary>
static public String DefaultProfilePath_rel
{
get
{
log.Debug( "DefaultProfilePath_rel - Entry" );
return @"Libs\Config";
}
}
/// <summary>
/// Returns the name part of the DefaultProfile w/o extension...
/// </summary>
static public String DefaultProfileName
{
get
{
log.Debug( "DefaultProfileName - Entry" );
return @"defaultProfile";
}
}
}
}