public static void Main(string[] args) { Console.Title = "PD_Tool"; if (args.Length == 0) { while (function != "Q") MainMenu(); Exit(); } string header; Stream reader; KKdFARC Farc; foreach (string arg in args) { Farc = new KKdFARC(); if (Directory.Exists(arg)) Farc.Pack(arg); else if (File.Exists(arg) && Path.GetExtension(arg) == ".farc") Farc.UnPack(arg, true); else if (File.Exists(arg)) { reader = File.OpenReader(arg); header = reader.ReadString(8); reader.Close(); if (header.ToUpper() == "DIVAFILE") DIVAFILE.Decrypt(arg); } } Exit(); }
public static void Processor(bool extract) { Console.Clear(); if (extract) { Console.Title = "FARC Extractor"; Program.Choose(1, "farc", out string[] fileNamesExtract); foreach (string fileExtract in fileNamesExtract) { if (fileExtract != "" && File.Exists(fileExtract)) { Console.Title = "FARC Extractor: " + Path.GetFileNameWithoutExtension(fileExtract); using (KKdFARC farc = new KKdFARC(fileExtract)) farc.Unpack(); } } return; } string file = Program.Choose(2, "", out string[] fileNames); Console.Clear(); if (file == null || file == "") { return; } Console.Title = "FARC Creator"; using (KKdFARC farc = new KKdFARC(file, true)) { Console.Title = "FARC Creator: " + Path.GetDirectoryName(file); Program.ConsoleDesign(true); Program.ConsoleDesign(" Choose type of created FARC:"); Program.ConsoleDesign(false); Program.ConsoleDesign("1. FArc (Uncompressed)"); Program.ConsoleDesign("2. FArC (Compressed)"); Program.ConsoleDesign("3. FARC [F/F2/X]"); Program.ConsoleDesign(false); Program.ConsoleDesign("R. Return to Main Menu"); Program.ConsoleDesign(false); Program.ConsoleDesign(true); Console.WriteLine(); Console.WriteLine("Choosed folder: {0}", file); Console.WriteLine(); string choose = Console.ReadLine().ToUpper(); if (choose == "1") { farc.Signature = KKdFARC.Farc.FArc; } else if (choose == "3" || choose == "4") { farc.Signature = KKdFARC.Farc.FARC; Console.Clear(); Program.ConsoleDesign(true); Program.ConsoleDesign(" Choose type of FARC:"); Program.ConsoleDesign(false); Program.ConsoleDesign("1. FARC"); Program.ConsoleDesign("2. FARC (Compressed)"); Program.ConsoleDesign("3. FARC (Encrypted)"); Program.ConsoleDesign("4. FARC (Compressed & Encrypted)"); Program.ConsoleDesign(false); Program.ConsoleDesign(true); Console.WriteLine(); choose = Console.ReadLine().ToUpper(); if (choose == "2" || choose == "4") { farc.FARCType |= KKdFARC.Type.GZip; } if (choose == "3" || choose == "4") { farc.FARCType |= KKdFARC.Type.Enc; } } else if (choose == "R") { return; } else { farc.Signature = KKdFARC.Farc.FArC; } farc.Pack(farc.Signature); } }