wabbajack/Wabbajack.Common/Consts.cs

86 lines
3.8 KiB
C#
Raw Normal View History

2019-07-21 04:40:54 +00:00
using System;
using System.Collections.Generic;
2019-07-23 04:27:26 +00:00
using System.Reflection;
using System.Runtime.InteropServices;
2019-07-21 04:40:54 +00:00
namespace Wabbajack.Common
{
public static class Consts
{
public static bool TestMode { get; set; } = false;
2019-07-21 04:40:54 +00:00
public static string GameFolderFilesDir = "Game Folder Files";
2019-08-24 23:59:22 +00:00
public static string LOOTFolderFilesDir = "LOOT Config Files";
2019-07-26 20:59:14 +00:00
public static string BSACreationDir = "TEMP_BSA_FILES";
2019-10-20 11:26:42 +00:00
public static string ModListDownloadFolder = "downloaded_mod_lists";
2019-09-26 04:14:15 +00:00
public static string MegaPrefix = "https://mega.nz/#!";
2019-07-23 04:27:26 +00:00
2019-09-24 15:51:47 +00:00
public static HashSet<string> SupportedArchives = new HashSet<string> {".zip", ".rar", ".7z", ".7zip", ".fomod", ".omod"};
public static HashSet<string> SupportedBSAs = new HashSet<string> {".bsa", ".ba2"};
2019-09-02 22:36:57 +00:00
public static HashSet<string> ConfigFileExtensions = new HashSet<string> {".json", ".ini", ".yml"};
public static HashSet<string> ESPFileExtensions = new HashSet<string>() { ".esp", ".esm", ".esl"};
public static HashSet<string> AssetFileExtensions = new HashSet<string>() {".dds", ".tga", ".nif", ".psc", ".pex"};
2019-09-02 22:36:57 +00:00
public static string NexusCacheDirectory = "nexus_link_cache";
public static string WABBAJACK_INCLUDE = "WABBAJACK_INCLUDE";
2019-09-04 20:49:13 +00:00
public static string WABBAJACK_ALWAYS_ENABLE = "WABBAJACK_ALWAYS_ENABLE";
public static string WABBAJACK_NOMATCH_INCLUDE = "WABBAJACK_NOMATCH_INCLUDE";
2019-08-24 23:20:54 +00:00
public static string GAME_PATH_MAGIC_BACK = "{--||GAME_PATH_MAGIC_BACK||--}";
public static string GAME_PATH_MAGIC_DOUBLE_BACK = "{--||GAME_PATH_MAGIC_DOUBLE_BACK||--}";
public static string GAME_PATH_MAGIC_FORWARD = "{--||GAME_PATH_MAGIC_FORWARD||--}";
public static string MO2_PATH_MAGIC_BACK = "{--||MO2_PATH_MAGIC_BACK||--}";
public static string MO2_PATH_MAGIC_DOUBLE_BACK = "{--||MO2_PATH_MAGIC_DOUBLE_BACK||--}";
public static string MO2_PATH_MAGIC_FORWARD = "{--||MO2_PATH_MAGIC_FORWARD||--}";
public static string DOWNLOAD_PATH_MAGIC_BACK = "{--||DOWNLOAD_PATH_MAGIC_BACK||--}";
public static string DOWNLOAD_PATH_MAGIC_DOUBLE_BACK = "{--||DOWNLOAD_PATH_MAGIC_DOUBLE_BACK||--}";
public static string DOWNLOAD_PATH_MAGIC_FORWARD = "{--||DOWNLOAD_PATH_MAGIC_FORWARD||--}";
2019-08-24 23:20:54 +00:00
2019-09-14 04:35:42 +00:00
public static string AppName = "Wabbajack";
2019-08-25 03:46:32 +00:00
2019-09-14 04:35:42 +00:00
public static HashSet<string> GameESMs = new HashSet<string>
2019-10-19 10:59:43 +00:00
{
// Skyrim LE/SE
"Skyrim.esm",
"Update.esm",
"Dawnguard.esm",
"HearthFires.esm",
"Dragonborn.esm",
// Fallout 4
"DLCRobot.esm",
"DLCworkshop01.esm",
"DLCCoast.esm",
"DLCWorkshop02.esm",
"DLCWorkshop03.esm",
"DLCNukaWorld.esm",
"DLCUltraHighResolution.esm"
};
2019-09-14 04:35:42 +00:00
public static string ModPermissionsURL = "https://raw.githubusercontent.com/wabbajack-tools/opt-out-lists/master/NexusModPermissions.yml";
public static string ServerWhitelistURL = "https://raw.githubusercontent.com/wabbajack-tools/opt-out-lists/master/ServerWhitelist.yml";
2019-10-20 19:30:39 +00:00
public static string ModlistMetadataURL = "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/modlists.json";
2019-09-14 04:35:42 +00:00
public static string UserAgent
{
get
{
var platformType = Environment.Is64BitOperatingSystem ? "x64" : "x86";
var headerString =
$"{AppName}/{Assembly.GetEntryAssembly()?.GetName()?.Version ?? new Version(0, 1)} ({Environment.OSVersion.VersionString}; {platformType}) {RuntimeInformation.FrameworkDescription}";
2019-09-14 04:35:42 +00:00
return headerString;
}
}
2019-10-14 21:04:12 +00:00
public static TimeSpan NexusCacheExpiry = new TimeSpan(1, 0, 0, 0);
2019-07-21 04:40:54 +00:00
}
2019-09-14 04:35:42 +00:00
}