using System; using System.CommandLine; using System.IO; using System.Threading.Tasks; using AM2RPortHelperLib; namespace AM2RPortHelper; internal static class Program { // TODO: implement launcher flag -u launcher private static void OutputHandlerDelegate(string output) => Console.WriteLine(output); private static int Main(string[] args) { //LauncherMods.PortLauncherMod("/home/narr/Downloads/UnofficialMultitroidAPKTest1_6b.zip", Core.ModOS.Linux, true, "./foo.zip"); //TODO: add options to icon file paths var interactiveOption = new Option(new[] { "-i", "--interactive" }, "Use an interactive mode. This will ignore all other options."); var fileOption = new Option(new[] { "-f", "--file" }, "The file path to the raw mod that should be ported. *REQUIRED IN NON-INTERACTIVE*"); var linuxOption = new Option(new[] { "-l", "--linux" }, "The output file path for the Linux mod. None given equals to no Linux port."); var androidOption = new Option(new[] { "-a", "--android" }, "The output file path for the Android mod. None given equals to no Android port."); var macOption = new Option(new[] { "-m", "--mac" }, "The output file path for the Mac mod. None given equals to no Mac port."); var nameOption = new Option(new[] { "-s", "--customsave" }, "Whether the Android Port should use a custom save location. Has no effect on anything else."); var internetOption = new Option(new[] { "-w", "--internet" }, "Add internet usage permissions to the Android mod. Has no effect to other OS."); var verboseOption = new Option(new[] { "-v", "--verbose" }, "Whether to show verbose output."); RootCommand rootCommand = new RootCommand("A utility to port Windows AM2R Mods to other operating systems.") { interactiveOption, fileOption, linuxOption, androidOption, macOption, nameOption, internetOption }; rootCommand.SetHandler(RootMethod, interactiveOption, fileOption, linuxOption, androidOption, macOption, nameOption, internetOption, verboseOption); return rootCommand.Invoke(args); } #pragma warning disable CS1998 private static async Task RootMethod(bool interactive, FileInfo inputModPath, FileInfo linuxPath, FileInfo androidPath, FileInfo macPath, bool useCustomSave, bool usesInternet, bool beVerbose) #pragma warning restore CS1998 { if (interactive || beVerbose) Console.WriteLine("AM2RPortHelperCLI v" + Core.Version); if (interactive) { RunInteractive(); return 0; } if (!IsValidInputZip(inputModPath)) { Console.Error.WriteLine("Input path does not exist, or does not point to a zip file!"); return 1; } if (linuxPath is not null) { RawMods.PortToLinux(inputModPath.FullName, linuxPath.FullName, beVerbose ? OutputHandlerDelegate : null); } if (androidPath is not null) { RawMods.PortToAndroid(inputModPath.FullName, androidPath.FullName, useCustomSave, usesInternet, beVerbose ? OutputHandlerDelegate : null); } if (macPath is not null) { RawMods.PortToMac(inputModPath.FullName, macPath.FullName, beVerbose ? OutputHandlerDelegate : null); } if (beVerbose) Console.WriteLine("Done."); return 0; } private static void RunInteractive() { Console.WriteLine("**Before you proceed, make sure to replace the icon.png and splash.png with custom ones if you don't want to have placeholders**"); Console.WriteLine("THIS TOOL ONLY WORKS FOR MODS BASED ON THE COMMUNITY UPDATES! MODS BASED ON 1.1 WILL NOT WORK!"); // Path to zip bool invalidZip = true; string modZipPath; do { Console.WriteLine("Please provide the full path to the raw mod zip!"); modZipPath = Console.ReadLine(); if (!IsValidInputZip(modZipPath)) Console.WriteLine("Path does not exist, or does not point to a zip file!"); else invalidZip = false; } while (invalidZip); // OS choice bool linuxSelected = false; bool androidSelected = false; bool macSelected = false; bool invalidOS = true; do { Console.WriteLine("Select the platforms you want to port to:"); Console.WriteLine($"1 - Linux (currently {(linuxSelected ? "on" : "off")})"); Console.WriteLine($"2 - Android (currently {(androidSelected ? "on" : "off")})"); Console.WriteLine($"3 - Mac (currently {(macSelected ? "on" : "off")})"); Console.WriteLine("4 - Port!"); var input = Console.ReadKey().Key.ToString(); Console.WriteLine(); switch (input) { case "D1": linuxSelected = !linuxSelected; break; case "D2": androidSelected = !androidSelected; break; case "D3": macSelected = !macSelected; break; case "D4": if (linuxSelected || androidSelected || macSelected) invalidOS = false; else Console.WriteLine("You have to select at least one OS!"); break; } } while (invalidOS); // Port everything string currentDir = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory); string linuxPath = $"{currentDir}/{Path.GetFileNameWithoutExtension(modZipPath)}_LINUX.zip"; string androidPath = $"{currentDir}/{Path.GetFileNameWithoutExtension(modZipPath)}_ANDROID.apk"; string macPath = $"{currentDir}/{Path.GetFileNameWithoutExtension(modZipPath)}_MACOS.zip"; if (linuxSelected) { if (File.Exists(linuxPath)) File.Delete(linuxPath); RawMods.PortToLinux(modZipPath, linuxPath, OutputHandlerDelegate); } if (androidSelected) { if (File.Exists(androidPath)) File.Delete(androidPath); // TODO: ask for modname - temp until the other todo is fixed where it gets taht automatically bool? internetSelected = null; do { Console.WriteLine("Does your mod require internet access (y/n)?"); var input = Console.ReadKey().Key; switch (input) { case ConsoleKey.Y: internetSelected = true; break; case ConsoleKey.N: internetSelected = false; break; default: Console.WriteLine("Invalid input!"); break; } Console.WriteLine(); } while (internetSelected == null); bool? customSaveSelected = null; do { Console.WriteLine("Do you want to use a custom save location for Android (y/n)?"); var input = Console.ReadKey().Key; switch (input) { case ConsoleKey.Y: customSaveSelected = true; break; case ConsoleKey.N: customSaveSelected = false; break; default: Console.WriteLine("Invalid input!"); break; } Console.WriteLine(); } while (customSaveSelected == null); RawMods.PortToAndroid(modZipPath, androidPath, customSaveSelected.Value, customSaveSelected.Value, OutputHandlerDelegate); } if (macSelected) { if (File.Exists(macPath)) File.Delete(macPath); RawMods.PortToMac(modZipPath, macPath, OutputHandlerDelegate); } Console.WriteLine("Successfully finished!"); } // We want people to also provide zips that don't end in .zip. If it turns out to not be a zip, it'll still throw later. private static bool IsValidInputZip(string path) { return path != null && File.Exists(path); } private static bool IsValidInputZip(FileSystemInfo path) { return IsValidInputZip(path?.FullName); } }