mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-30 01:25:51 +00:00
Qt: Add texture replacement options to advanced settings
This commit is contained in:
parent
41b803ed2b
commit
a385573672
|
@ -17,6 +17,7 @@
|
||||||
#include "pgxp.h"
|
#include "pgxp.h"
|
||||||
#include "save_state_version.h"
|
#include "save_state_version.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
#include "texture_replacements.h"
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <cwchar>
|
#include <cwchar>
|
||||||
|
@ -738,6 +739,13 @@ void HostInterface::CheckForSettingsChanges(const Settings& old_settings)
|
||||||
System::UpdateMemoryCards();
|
System::UpdateMemoryCards();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (g_settings.texture_replacements.enable_vram_write_replacements !=
|
||||||
|
old_settings.texture_replacements.enable_vram_write_replacements ||
|
||||||
|
g_settings.texture_replacements.preload_textures != old_settings.texture_replacements.preload_textures)
|
||||||
|
{
|
||||||
|
g_texture_replacements.Reload();
|
||||||
|
}
|
||||||
|
|
||||||
g_dma.SetMaxSliceTicks(g_settings.dma_max_slice_ticks);
|
g_dma.SetMaxSliceTicks(g_settings.dma_max_slice_ticks);
|
||||||
g_dma.SetHaltTicks(g_settings.dma_halt_ticks);
|
g_dma.SetHaltTicks(g_settings.dma_halt_ticks);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include "advancedsettingswidget.h"
|
#include "advancedsettingswidget.h"
|
||||||
|
#include "core/gpu_types.h"
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "qtutils.h"
|
#include "qtutils.h"
|
||||||
#include "settingsdialog.h"
|
#include "settingsdialog.h"
|
||||||
|
@ -166,6 +167,21 @@ AdvancedSettingsWidget::AdvancedSettingsWidget(QtHostInterface* host_interface,
|
||||||
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Enable Recompiler ICache"), "CPU",
|
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Enable Recompiler ICache"), "CPU",
|
||||||
"RecompilerICache", false);
|
"RecompilerICache", false);
|
||||||
|
|
||||||
|
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Enable VRAM Write Texture Replacement"),
|
||||||
|
"TextureReplacements", "EnableVRAMWriteReplacements", false);
|
||||||
|
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Preload Texture Replacements"),
|
||||||
|
"TextureReplacements", "PreloadTextures", false);
|
||||||
|
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Dump Replacable VRAM Writes"),
|
||||||
|
"TextureReplacements", "DumpVRAMWrites", false);
|
||||||
|
addBooleanTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Set Dumped VRAM Write Alpha Channel"),
|
||||||
|
"TextureReplacements", "DumpVRAMWriteForceAlphaChannel", true);
|
||||||
|
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Minimum Dumped VRAM Write Width"),
|
||||||
|
"TextureReplacements", "DumpVRAMWriteWidthThreshold", 1, VRAM_WIDTH,
|
||||||
|
Settings::DEFAULT_VRAM_WRITE_DUMP_WIDTH_THRESHOLD);
|
||||||
|
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("Minimum Dumped VRAM Write Width"),
|
||||||
|
"TextureReplacements", "DumpVRAMWriteHeightThreshold", 1, VRAM_HEIGHT,
|
||||||
|
Settings::DEFAULT_VRAM_WRITE_DUMP_HEIGHT_THRESHOLD);
|
||||||
|
|
||||||
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("DMA Max Slice Ticks"), "Hacks",
|
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("DMA Max Slice Ticks"), "Hacks",
|
||||||
"DMAMaxSliceTicks", 100, 10000, Settings::DEFAULT_DMA_MAX_SLICE_TICKS);
|
"DMAMaxSliceTicks", 100, 10000, Settings::DEFAULT_DMA_MAX_SLICE_TICKS);
|
||||||
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("DMA Halt Ticks"), "Hacks", "DMAHaltTicks", 100,
|
addIntRangeTweakOption(m_host_interface, m_ui.tweakOptionTable, tr("DMA Halt Ticks"), "Hacks", "DMAHaltTicks", 100,
|
||||||
|
@ -194,10 +210,16 @@ void AdvancedSettingsWidget::onResetToDefaultClicked()
|
||||||
setBooleanTweakOption(m_ui.tweakOptionTable, 6, false);
|
setBooleanTweakOption(m_ui.tweakOptionTable, 6, false);
|
||||||
setChoiceTweakOption(m_ui.tweakOptionTable, 7, Settings::DEFAULT_CPU_FASTMEM_MODE);
|
setChoiceTweakOption(m_ui.tweakOptionTable, 7, Settings::DEFAULT_CPU_FASTMEM_MODE);
|
||||||
setBooleanTweakOption(m_ui.tweakOptionTable, 8, false);
|
setBooleanTweakOption(m_ui.tweakOptionTable, 8, false);
|
||||||
setIntRangeTweakOption(m_ui.tweakOptionTable, 9, static_cast<int>(Settings::DEFAULT_DMA_MAX_SLICE_TICKS));
|
setBooleanTweakOption(m_ui.tweakOptionTable, 9, false);
|
||||||
setIntRangeTweakOption(m_ui.tweakOptionTable, 10, static_cast<int>(Settings::DEFAULT_DMA_HALT_TICKS));
|
setBooleanTweakOption(m_ui.tweakOptionTable, 10, false);
|
||||||
setIntRangeTweakOption(m_ui.tweakOptionTable, 11, static_cast<int>(Settings::DEFAULT_GPU_FIFO_SIZE));
|
setBooleanTweakOption(m_ui.tweakOptionTable, 11, false);
|
||||||
setIntRangeTweakOption(m_ui.tweakOptionTable, 12, static_cast<int>(Settings::DEFAULT_GPU_MAX_RUN_AHEAD));
|
setBooleanTweakOption(m_ui.tweakOptionTable, 12, false);
|
||||||
setBooleanTweakOption(m_ui.tweakOptionTable, 13, false);
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 13, Settings::DEFAULT_VRAM_WRITE_DUMP_WIDTH_THRESHOLD);
|
||||||
setBooleanTweakOption(m_ui.tweakOptionTable, 14, true);
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 14, Settings::DEFAULT_VRAM_WRITE_DUMP_HEIGHT_THRESHOLD);
|
||||||
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 15, static_cast<int>(Settings::DEFAULT_DMA_MAX_SLICE_TICKS));
|
||||||
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 16, static_cast<int>(Settings::DEFAULT_DMA_HALT_TICKS));
|
||||||
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 17, static_cast<int>(Settings::DEFAULT_GPU_FIFO_SIZE));
|
||||||
|
setIntRangeTweakOption(m_ui.tweakOptionTable, 18, static_cast<int>(Settings::DEFAULT_GPU_MAX_RUN_AHEAD));
|
||||||
|
setBooleanTweakOption(m_ui.tweakOptionTable, 19, false);
|
||||||
|
setBooleanTweakOption(m_ui.tweakOptionTable, 20, true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue