Remove modpacks tab and MINIMALIST config
This commit is contained in:
@@ -5,10 +5,6 @@
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Minimalist|x64">
|
||||
<Configuration>Minimalist</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
@@ -38,14 +34,6 @@
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<CLRSupport>false</CLRSupport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Minimalist|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<CLRSupport>false</CLRSupport>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
@@ -57,9 +45,6 @@
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Minimalist|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
@@ -69,10 +54,6 @@
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>dnsapi</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Minimalist|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<TargetName>dnsapi</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
@@ -126,37 +107,6 @@
|
||||
</EnableDpiAwareness>
|
||||
</Manifest>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Minimalist|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<PreprocessorDefinitions>MINIMALIST;_CRT_SECURE_NO_WARNINGS;NDEBUG;PDLOADER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||
<AdditionalIncludeDirectories>..\..\dependencies\freeglut\include;..\..\dependencies\PluginConfigApi;..\..\dependencies\detours\include;..\..\dependencies\MemoryModule;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<LanguageStandard>stdcpp17</LanguageStandard>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<AdditionalOptions>-d2FH4- /utf-8 %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<EnableUAC>false</EnableUAC>
|
||||
<ModuleDefinitionFile>x64.def</ModuleDefinitionFile>
|
||||
<AdditionalOptions>-d2:-FH4- %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalLibraryDirectories>..\..\dependencies\freeglut\lib;..\..\dependencies\detours\lib</AdditionalLibraryDirectories>
|
||||
</Link>
|
||||
<Manifest>
|
||||
<EnableDpiAwareness>
|
||||
</EnableDpiAwareness>
|
||||
</Manifest>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="exception.hpp" />
|
||||
<ClInclude Include="framework.h" />
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#pragma once
|
||||
#ifndef MINIMALIST
|
||||
void ApplyExPatches() {
|
||||
//// Graphics
|
||||
|
||||
@@ -304,7 +303,7 @@ void ApplyExPatches() {
|
||||
|
||||
|
||||
// modpack redirection
|
||||
/*{
|
||||
{
|
||||
wchar_t* mpstr = NULL;
|
||||
mpstr = (wchar_t*)malloc(256);
|
||||
memset(mpstr, 0, 256);
|
||||
@@ -332,10 +331,5 @@ void ApplyExPatches() {
|
||||
InjectCode((void*)0x000000014066CE9C, { (unsigned char)modpack_mdata.size() });
|
||||
InjectCode((void*)0x000000014066CEAE, { (unsigned char)modpack_mdata.size() });
|
||||
}
|
||||
}*/
|
||||
}
|
||||
#else
|
||||
void ApplyExPatches() {
|
||||
return;
|
||||
};
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -105,7 +105,7 @@ auto nNoTimer = GetPrivateProfileIntW(L"patches", L"no_timer", TRUE, CONFIG_FILE
|
||||
auto nHardwareSlider = GetPrivateProfileIntW(L"patches", L"hardware_slider", FALSE, CONFIG_FILE);
|
||||
auto nDwguiScaling = GetPrivateProfileIntW(L"patches", L"dwgui_scaling", FALSE, CONFIG_FILE);
|
||||
|
||||
#ifndef MINIMALIST
|
||||
// Non-essential
|
||||
auto nNoTimerSprite = GetPrivateProfileIntW(L"patches", L"no_timer_sprite", TRUE, CONFIG_FILE);
|
||||
auto nUnlockPseudo = GetPrivateProfileIntW(L"patches", L"unlock_pseudo", FALSE, CONFIG_FILE);
|
||||
auto nCard = GetPrivateProfileIntW(L"patches", L"card", TRUE, CONFIG_FILE);
|
||||
@@ -129,4 +129,3 @@ auto nRefractResHeight = GetPrivateProfileIntW(L"graphics", L"refract_res_height
|
||||
auto nNoMessageBar = GetPrivateProfileIntW(L"patches", L"no_message_bar", FALSE, CONFIG_FILE);
|
||||
auto nNoStageText = GetPrivateProfileIntW(L"patches", L"no_stage_text", FALSE, CONFIG_FILE);
|
||||
auto nNoOpd = GetPrivateProfileIntW(L"patches", L"no_opd", FALSE, CONFIG_FILE);
|
||||
#endif
|
||||
|
||||
@@ -781,11 +781,9 @@ void Init()
|
||||
WritePrivateProfileStringW(L"global", L"pc", this_pcname, CONFIG_FILE);
|
||||
WritePrivateProfileStringW(L"plugins", L"Launcher.dva", L"1", CONFIG_FILE);
|
||||
WritePrivateProfileStringW(L"plugins", L"TLAC.dva", L"1", CONFIG_FILE);
|
||||
#ifndef MINIMALIST
|
||||
WritePrivateProfileStringW(L"plugins", L"DivaSound.dva", L"1", CONFIG_FILE);
|
||||
WritePrivateProfileStringW(L"plugins", L"Novidia.dva", L"1", CONFIG_FILE);
|
||||
WritePrivateProfileStringW(L"plugins", L"ShaderPatch.dva", L"1", CONFIG_FILE);
|
||||
#endif
|
||||
}
|
||||
const auto COMPONENTS = L"plugins\\components.ini";
|
||||
if (!PathFileExistsW(COMPONENTS)) writeTemplate(components_template, COMPONENTS);
|
||||
|
||||
@@ -28,18 +28,14 @@ char config_template[] =
|
||||
"Skip=0\n"
|
||||
"# Disables unsupported GPU warning dialogs.\n"
|
||||
"No_GPU_Dialog=0\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Sets the dark colour scheme in the launcher.\n"
|
||||
"Dark_Launcher=0\n"
|
||||
#endif
|
||||
"# Command line arguments\n"
|
||||
"Command_Line=\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Launches divahook.bat intead of diva.exe.\n"
|
||||
"Use_divahook_bat=0\n"
|
||||
"# Language -- 0=auto, 1=en, 2=zh-Hans, 3=pt-BR, 4=it-IT\n"
|
||||
"Launcher_Language=0\n"
|
||||
#endif
|
||||
"\n"
|
||||
"[Patches]\n"
|
||||
"# Disable movies (enable this if the game hangs when loading certain PVs)\n"
|
||||
@@ -48,18 +44,14 @@ char config_template[] =
|
||||
"Cursor=1\n"
|
||||
"# Use 2 channels instead of 4 (when not using DivaSound)\n"
|
||||
"Stereo=1\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Skip one or more menus -- 0=disabled, 1=guest, 2=guest+normal\n"
|
||||
"Quick_Start=1\n"
|
||||
"# Disable the scrolling sound effect\n"
|
||||
"No_Scrolling_SFX=0\n"
|
||||
#endif
|
||||
"# Show \"FREE PLAY\" instead of \"CREDIT(S)\" and don't require credits\n"
|
||||
"Freeplay=1\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Sing missed notes\n"
|
||||
"Sing_Missed=0\n"
|
||||
#endif
|
||||
"# Hide the volume and SE control buttons\n"
|
||||
"Hide_Volume=0\n"
|
||||
"# Remove the photo controls during PV playback\n"
|
||||
@@ -78,7 +70,6 @@ char config_template[] =
|
||||
"PDLoaderText=1\n"
|
||||
"# Freeze the timer\n"
|
||||
"No_Timer=1\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Disable the timer sprite\n"
|
||||
"No_Timer_Sprite=1\n"
|
||||
"# Disable Message Bar\n"
|
||||
@@ -91,15 +82,12 @@ char config_template[] =
|
||||
"Card=0\n"
|
||||
"# Disable Extended Data (may break physics in some edits) AKA Skyth's no-opd patch\n"
|
||||
"No_Opd=0\n"
|
||||
#endif
|
||||
"# Scale Debug Windows above HD internal resolution AKA somewhatlurker's dwgui patch\n"
|
||||
"Dwgui_Scaling=0\n"
|
||||
"# Allow using a real arcade slider attached to COM11 (or PS4 official FT controller)\n"
|
||||
"Hardware_Slider=0\n"
|
||||
#ifndef MINIMALIST
|
||||
"# Prevent data deletion\n"
|
||||
"Prevent_Data_Deletion=0\n"
|
||||
#endif
|
||||
"\n"
|
||||
"[Graphics]\n"
|
||||
"# Lag Compensation\n"
|
||||
@@ -115,7 +103,6 @@ char config_template[] =
|
||||
"TAA=1\n"
|
||||
"# Morphological Anti-Aliasing\n"
|
||||
"MLAA=1\n"
|
||||
#ifndef MINIMALIST
|
||||
"# MAG Filter -- 0=default (bilinear), 1=nearest-neighbour, 2=sharpen, 3=cone (smooth)\n"
|
||||
"MAG=0\n"
|
||||
"# Depth of Field\n"
|
||||
@@ -140,7 +127,6 @@ char config_template[] =
|
||||
"NPR1=0\n"
|
||||
"# Disable all 3D passes. WARNING: The extended data will be deleted unless Prevent Data Deletion is enabled. Don't enable on Intel GPUs, enable no_opd instead.\n"
|
||||
"2D=0\n"
|
||||
#endif
|
||||
"# FrameRateManager motion rate (fps)\n"
|
||||
"FRM.Motion.Rate=400\n"
|
||||
"\n"
|
||||
|
||||
Reference in New Issue
Block a user