public void Run(string[] args) { Cll.Log.WriteLine("64Inject " + _64Injector.Release + " - by phacox.cll"); Cll.Log.WriteLine(""); if (NusContent.GetJavaVersion() == null) { Cll.Log.WriteLine("Warning! Apparently the system does not have Java installed!"); Cll.Log.WriteLine("Java is needed to NUSPacker (encrypt) and JNUSTool (decrypt)."); Cll.Log.WriteLine(""); } else { if (!File.Exists("resources\\nuspacker\\NUSPacker.jar")) { Cll.Log.WriteLine("Warning! \"resources\\nuspacker\\NUSPacker.jar\" not found!"); Cll.Log.WriteLine("NUSPacker allows you to encrypt the result for WUPInstaller."); Cll.Log.WriteLine(""); } if (!File.Exists("resources\\jnustool\\JNUSTool.jar")) { Cll.Log.WriteLine("Warning! \"resources\\jnustool\\JNUSTool.jar\" not found!"); Cll.Log.WriteLine("JNUSTool allows you to decrypt Wii U VC games to use as a base."); Cll.Log.WriteLine(""); } } if (NusContent.CheckCommonKeyFiles()) { Cll.Log.WriteLine("Common Key found successfully."); } else { Cll.Log.WriteLine("Common Key not found. Use load-key option."); } if (injector.BaseIsLoaded) { Cll.Log.WriteLine("Base loaded: " + injector.LoadedBase); } else { Cll.Log.WriteLine("Base not found. Use load-base option or specify one using the -base option."); } Cll.Log.WriteLine(""); if (args.Length == 0) { ConsoleHelp(); } else if (args.Length == 1 && args[0] == "help") { ConsoleHelp(); } else if (args.Length == 2 && args[0] == "load-key") { Cll.Log.WriteLine("load-key: " + args[1]); if (NusContent.LoadKey(args[1])) { Cll.Log.WriteLine("Common Key loaded successfully."); } else { Cll.Log.WriteLine("The load of the key failed. Is a valid Common Key?"); } } else if (args.Length == 2 && args[0] == "load-base") { Cll.Log.WriteLine("load-base: " + args[1]); Cll.Log.WriteLine("Loading base, please wait..."); if (injector.LoadBase(args[1])) { Cll.Log.WriteLine("Base loaded: " + injector.LoadedBase); } else { Cll.Log.WriteLine("The base was not loaded correctly."); } } else if (args.Length >= 1 && args[0] == "create-image") { if (CreateImage(args)) { Cll.Log.WriteLine("Image created."); } else { Cll.Log.WriteLine("Image not created."); } } else if (args.Length >= 1 && args[0] == "create-icon") { if (CreateIcon(args)) { Cll.Log.WriteLine("Icon created."); } else { Cll.Log.WriteLine("Icon not created."); } } else if ((args.Length == 3 || args.Length == 5) && (args[0] == "pack" || args[0] == "unpack")) { PackUnpack(args); } else { bool _continue = LoadArgs(args); if (_continue) { _continue = ValidArgs(); } if (_continue) { Inject(); } } Cll.Log.WriteLine("Close."); Cll.Log.WriteLine("----------------------------------------------------------------"); }
public _64InjectGUI() { Cll.Log.SaveIn("64Inject_log.txt"); Cll.Log.WriteLine(DateTime.UtcNow.ToString()); Cll.Log.WriteLine("64Inject open in GUI mode."); injector = new _64Injector(); InitializeComponent(); this.Text = "64Inject " + _64Injector.Release; XmlSettings = new XmlWriterSettings { Indent = true, IndentChars = " ", NewLineChars = "\r\n", NewLineHandling = NewLineHandling.Replace }; XmlConfig = new XmlDocument(); LoadXmlConfig(); if (NusContent.GetJavaVersion() == null) { MessageBox.Show("Warning! Apparently the system does not have Java installed!\n" + "Java is needed to NUSPacker (encrypt) and JNUSTool (decrypt).", "Warning!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { StringBuilder sb = new StringBuilder(); bool warning = false; if (!File.Exists("resources\\nuspacker\\NUSPacker.jar")) { sb.AppendLine("Warning! \"resources\\nuspacker\\NUSPacker.jar\" not found!"); sb.AppendLine("NUSPacker allows you to encrypt the result for WUPInstaller."); sb.AppendLine(""); warning = true; } if (!File.Exists("resources\\jnustool\\JNUSTool.jar")) { sb.AppendLine("Warning! \"resources\\jnustool\\JNUSTool.jar\" not found!"); sb.AppendLine("JNUSTool allows you to decrypt Wii U VC games to use as a base."); warning = true; } if (warning) { MessageBox.Show(sb.ToString(), "Warning!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } if (NusContent.CheckCommonKeyFiles()) { textBoxCommonKey.Enabled = false; panelValidKey.BackgroundImage = Properties.Resources.checkmark_16; } else { textBoxCommonKey.Enabled = true; panelValidKey.BackgroundImage = Properties.Resources.x_mark_16; } labelLoadedBase.Text = "Base loaded: " + injector.LoadedBase; if (injector.BaseIsLoaded) { panelLoadedBase.BackgroundImage = global::_64Inject.Properties.Resources.checkmark_16; } if (File.Exists("resources\\boot.png")) { injector.BootTvImg.Frame = new Bitmap("resources\\boot.png"); injector.BootDrcImg.Frame = new Bitmap("resources\\boot.png"); } if (File.Exists("resources\\icon.png")) { injector.IconImg.Frame = new Bitmap("resources\\icon.png"); } if (File.Exists("resources\\title_screen.png")) { injector.BootTvImg.TitleScreen = new Bitmap("resources\\title_screen.png"); injector.BootDrcImg.TitleScreen = new Bitmap("resources\\title_screen.png"); injector.IconImg.TitleScreen = new Bitmap("resources\\title_screen.png"); } UpdateBootTvPictureBox(); UpdateBootDrcPictureBox(); UpdateIconPictureBox(); }