Fix D2K installation on case sensitive filesystems.
This commit is contained in:
@@ -15,11 +15,14 @@ namespace OpenRA
|
|||||||
// Referenced from ModMetadata, so needs to be in OpenRA.Game :(
|
// Referenced from ModMetadata, so needs to be in OpenRA.Game :(
|
||||||
public class ContentInstaller : IGlobalModData
|
public class ContentInstaller : IGlobalModData
|
||||||
{
|
{
|
||||||
|
public enum FilenameCase { Input, ForceLower, ForceUpper }
|
||||||
|
|
||||||
public readonly string[] TestFiles = { };
|
public readonly string[] TestFiles = { };
|
||||||
public readonly string[] DiskTestFiles = { };
|
public readonly string[] DiskTestFiles = { };
|
||||||
public readonly string PackageToExtractFromCD = null;
|
public readonly string PackageToExtractFromCD = null;
|
||||||
public readonly bool OverwriteFiles = true;
|
public readonly bool OverwriteFiles = true;
|
||||||
|
|
||||||
|
public readonly FilenameCase OutputFilenameCase = FilenameCase.ForceLower;
|
||||||
public readonly Dictionary<string, string[]> CopyFilesFromCD = new Dictionary<string, string[]>();
|
public readonly Dictionary<string, string[]> CopyFilesFromCD = new Dictionary<string, string[]>();
|
||||||
public readonly Dictionary<string, string[]> ExtractFilesFromCD = new Dictionary<string, string[]>();
|
public readonly Dictionary<string, string[]> ExtractFilesFromCD = new Dictionary<string, string[]>();
|
||||||
|
|
||||||
|
|||||||
@@ -37,9 +37,26 @@ namespace OpenRA.Mods.Common
|
|||||||
return volumes.FirstOrDefault(isValidDisk);
|
return volumes.FirstOrDefault(isValidDisk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static string GetFileName(string path, ContentInstaller.FilenameCase caseModifier)
|
||||||
|
{
|
||||||
|
// Gets the file path, splitting on both / and \
|
||||||
|
var index = path.LastIndexOfAny(new[] { '\\', '/' });
|
||||||
|
var output = path.Substring(index + 1);
|
||||||
|
|
||||||
|
switch (caseModifier)
|
||||||
|
{
|
||||||
|
case ContentInstaller.FilenameCase.ForceLower:
|
||||||
|
return output.ToLowerInvariant();
|
||||||
|
case ContentInstaller.FilenameCase.ForceUpper:
|
||||||
|
return output.ToUpperInvariant();
|
||||||
|
default:
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: The package should be mounted into its own context to avoid name collisions with installed files
|
// TODO: The package should be mounted into its own context to avoid name collisions with installed files
|
||||||
public static bool ExtractFromPackage(string srcPath, string package, string annotation, Dictionary<string, string[]> filesByDirectory,
|
public static bool ExtractFromPackage(string srcPath, string package, string annotation, Dictionary<string, string[]> filesByDirectory,
|
||||||
string destPath, bool overwrite, Action<string> onProgress, Action<string> onError)
|
string destPath, bool overwrite, ContentInstaller.FilenameCase caseModifier, Action<string> onProgress, Action<string> onError)
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(destPath);
|
Directory.CreateDirectory(destPath);
|
||||||
|
|
||||||
@@ -55,7 +72,7 @@ namespace OpenRA.Mods.Common
|
|||||||
foreach (var file in directory.Value)
|
foreach (var file in directory.Value)
|
||||||
{
|
{
|
||||||
var containingDir = Path.Combine(destPath, targetDir);
|
var containingDir = Path.Combine(destPath, targetDir);
|
||||||
var dest = Path.Combine(containingDir, file.ToLowerInvariant());
|
var dest = Path.Combine(containingDir, GetFileName(file, caseModifier));
|
||||||
if (File.Exists(dest))
|
if (File.Exists(dest))
|
||||||
{
|
{
|
||||||
if (overwrite)
|
if (overwrite)
|
||||||
@@ -83,7 +100,7 @@ namespace OpenRA.Mods.Common
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static bool CopyFiles(string srcPath, Dictionary<string, string[]> files, string destPath,
|
public static bool CopyFiles(string srcPath, Dictionary<string, string[]> files, string destPath,
|
||||||
bool overwrite, Action<string> onProgress, Action<string> onError)
|
bool overwrite, ContentInstaller.FilenameCase caseModifier, Action<string> onProgress, Action<string> onError)
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(destPath);
|
Directory.CreateDirectory(destPath);
|
||||||
|
|
||||||
@@ -100,9 +117,9 @@ namespace OpenRA.Mods.Common
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var destFile = Path.GetFileName(file);
|
var destFile = GetFileName(file, caseModifier);
|
||||||
var containingDir = Path.Combine(destPath, targetDir);
|
var containingDir = Path.Combine(destPath, targetDir);
|
||||||
var dest = Path.Combine(containingDir, destFile.ToLowerInvariant());
|
var dest = Path.Combine(containingDir, destFile);
|
||||||
if (File.Exists(dest) && !overwrite)
|
if (File.Exists(dest) && !overwrite)
|
||||||
{
|
{
|
||||||
Log.Write("debug", "Skipping {0}".F(dest));
|
Log.Write("debug", "Skipping {0}".F(dest));
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
var destFile = Platform.ResolvePath("^", "Content", modId, filename.ToLowerInvariant());
|
var destFile = Platform.ResolvePath("^", "Content", modId, filename.ToLowerInvariant());
|
||||||
cabExtractor.ExtractFile(uint.Parse(archive[0]), destFile);
|
cabExtractor.ExtractFile(uint.Parse(archive[0]), destFile);
|
||||||
var annotation = archive.Length > 1 ? archive[1] : null;
|
var annotation = archive.Length > 1 ? archive[1] : null;
|
||||||
InstallUtils.ExtractFromPackage(source, destFile, annotation, extractFiles, destDir, overwrite, onProgress, onError);
|
InstallUtils.ExtractFromPackage(source, destFile, annotation, extractFiles, destDir, overwrite, installData.OutputFilenameCase, onProgress, onError);
|
||||||
progressBar.Percentage += installPercent;
|
progressBar.Percentage += installPercent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -183,7 +183,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!InstallUtils.CopyFiles(source, copyFiles, dest, overwrite, onProgress, onError))
|
if (!InstallUtils.CopyFiles(source, copyFiles, dest, overwrite, installData.OutputFilenameCase, onProgress, onError))
|
||||||
{
|
{
|
||||||
onError("Copying files from CD failed.");
|
onError("Copying files from CD failed.");
|
||||||
return;
|
return;
|
||||||
@@ -191,7 +191,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(extractPackage))
|
if (!string.IsNullOrEmpty(extractPackage))
|
||||||
{
|
{
|
||||||
if (!InstallUtils.ExtractFromPackage(source, extractPackage, annotation, extractFiles, dest, overwrite, onProgress, onError))
|
if (!InstallUtils.ExtractFromPackage(source, extractPackage, annotation, extractFiles, dest,
|
||||||
|
overwrite, installData.OutputFilenameCase, onProgress, onError))
|
||||||
{
|
{
|
||||||
onError("Extracting files from CD failed.");
|
onError("Extracting files from CD failed.");
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -130,6 +130,7 @@ LoadScreen: LogoStripeLoadScreen
|
|||||||
Text: Filling Crates..., Breeding Sandworms..., Fuelling carryalls..., Deploying harvesters..., Preparing 'thopters..., Summoning mentats...
|
Text: Filling Crates..., Breeding Sandworms..., Fuelling carryalls..., Deploying harvesters..., Preparing 'thopters..., Summoning mentats...
|
||||||
|
|
||||||
ContentInstaller:
|
ContentInstaller:
|
||||||
|
OutputFilenameCase: ForceUpper
|
||||||
# TODO: check if DATA.R8 is at 1.03 patch level with 4840 frames
|
# TODO: check if DATA.R8 is at 1.03 patch level with 4840 frames
|
||||||
TestFiles: ^Content/d2k/BLOXBASE.R8, ^Content/d2k/BLOXBAT.R8, ^Content/d2k/BLOXBGBS.R8, ^Content/d2k/BLOXICE.R8, ^Content/d2k/BLOXTREE.R8, ^Content/d2k/BLOXWAST.R8, ^Content/d2k/DATA.R8, ^Content/d2k/SOUND.RS, ^Content/d2k/PALETTE.BIN
|
TestFiles: ^Content/d2k/BLOXBASE.R8, ^Content/d2k/BLOXBAT.R8, ^Content/d2k/BLOXBGBS.R8, ^Content/d2k/BLOXICE.R8, ^Content/d2k/BLOXTREE.R8, ^Content/d2k/BLOXWAST.R8, ^Content/d2k/DATA.R8, ^Content/d2k/SOUND.RS, ^Content/d2k/PALETTE.BIN
|
||||||
PackageMirrorList: http://www.openra.net/packages/d2k-103-mirrors.txt
|
PackageMirrorList: http://www.openra.net/packages/d2k-103-mirrors.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user