* The hash of textures is now computed the first time they are used. The hash is recomputed if the content might have changed.
* In some games, textures are used as rendering targets (e.g. a mirror or a portal in Portal). The hash calculation of these textures might slow down the game.
-> there is an option to disable the computation of hashes for rendering targets.
* Enable or Disable the support of tpf mods affect now the game immediately.
* Little rearrangements in the GUI.
* uMod can now extract the content of mods to disk and the game loads the textures from there. This solves the huge memory problem of uMod.
This commit is contained in:
code@koerner-de.net
2013-01-07 07:43:38 +00:00
parent 2593729634
commit 601c8c1504
34 changed files with 1523 additions and 1237 deletions
+13 -2
View File
@@ -203,9 +203,14 @@ int uMod_Language::LoadLanguage(const wxString &name)
CheckEntry( command, msg, MenuRemoveSelectedPackages)
CheckEntry( command, msg, MenuUpdate)
CheckEntry( command, msg, MenuReload)
CheckEntry( command, msg, MenuSupportTPF)
CheckEntry( command, msg, ButtonUpdate)
CheckEntry( command, msg, ButtonDirectory)
CheckEntry( command, msg, CollapseModSettings)
CheckEntry( command, msg, SupportTPF)
CheckEntry( command, msg, ComputeRenderTargets)
CheckEntry( command, msg, ExtractTexturesToDisk)
CheckEntry( command, msg, DeleteExtractedTexturesOnDisk)
CheckEntry( command, msg, ExtractPath)
CheckEntry( command, msg, ChooseFile)
CheckEntry( command, msg, ChooseDir)
CheckEntry( command, msg, MultipleSingleFiles)
@@ -310,10 +315,16 @@ int uMod_Language::LoadDefault(void)
MenuUpdate = "Update";
MenuReload = "Update (reload)";
MenuSupportTPF = "Support TPF-Mods";
ButtonUpdate = "Update";
ButtonDirectory = "Set save directory";
CollapseModSettings = "Settings";
SupportTPF = "Support TPF-Mods";
ComputeRenderTargets = "Compute hash also from rendering targets";
ExtractTexturesToDisk = "Extract texture to disk (recommended for huge mod packages)";
DeleteExtractedTexturesOnDisk = "Delete extracted textures if uMod is closed";
ExtractPath = "Extract directory";
ChooseFile = "Choose a file";
ChooseDir = "Choose a directory";