Пример #1
0
        public void LoadBase(string path)
        {
            NusContent.Format format = NusContent.GetFormat(path);

            if (format == NusContent.Format.Decrypted)
            {
                ValidateBase(path);

                if (Directory.Exists(BasePath))
                {
                    Directory.Delete(BasePath, true);
                    Base = null;
                }

                if (Useful.DirectoryCopy(path, BasePath, true))
                {
                    Base = GetLoadedBase();
                }
                else
                {
                    throw new Exception("Could not load base \"" + path + "\".");
                }
            }
            else if (format == NusContent.Format.Encrypted)
            {
                ValidateEncryptedBase(path);

                if (Directory.Exists(BasePath))
                {
                    Directory.Delete(BasePath, true);
                    Base = null;
                }

                Directory.CreateDirectory(BasePath);
                NusContent.Decrypt(path, BasePath);
                Base = GetLoadedBase();
            }
            else
            {
                StringBuilder strBuilder = new StringBuilder();
                strBuilder.AppendLine("The folder not contains a valid NUS content.");
                strBuilder.AppendLine("If it is an unpackaged (decrypted) NUS content, then:");
                strBuilder.AppendLine("The \"" + path + "\\code\" folder not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\content\" folder not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\meta\" folder not exist.");
                strBuilder.AppendLine("If it is an packaged (encrypted) NUS content, then:");
                strBuilder.AppendLine("The \"" + path + "\\title.tmd\" file not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\title.tik\" file not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\title.cert\" file not exist.");
                throw new Exception(strBuilder.ToString());
            }
        }
Пример #2
0
        private void DeterminateBase(string path)
        {
            NusContent.Format format = NusContent.GetFormat(path);

            if (format == NusContent.Format.Decrypted)
            {
                NESInjector  nesI  = new NESInjector();
                SNESInjector snesI = new SNESInjector();
                N64Injector  n64I  = new N64Injector();
                GBAInjector  gbaI  = new GBAInjector();
                NDSInjector  ndsI  = new NDSInjector();

                VCNES vcnes = nesI.GetBase(path);
                if (vcnes != null)
                {
                    Cll.Log.WriteLine("Base format: NES");
                }

                VCSNES vcsnes = snesI.GetBase(path);
                if (vcsnes != null)
                {
                    Cll.Log.WriteLine("Base format: SNES");
                }

                VCN64 vcn64 = n64I.GetBase(path);
                if (vcn64 != null)
                {
                    Cll.Log.WriteLine("Base format: N64");
                }

                VCGBA vcgba = gbaI.GetBase(path);
                if (vcgba != null)
                {
                    Cll.Log.WriteLine("Base format: GBA");
                }

                VCNDS vcnds = ndsI.GetBase(path);
                if (vcnds != null)
                {
                    Cll.Log.WriteLine("Base format: NDS");
                }

                /*ValidateBase(path);
                 *
                 * if (Directory.Exists(BasePath))
                 * {
                 *  Directory.Delete(BasePath, true);
                 *  Base = null;
                 * }
                 *
                 * if (Useful.DirectoryCopy(path, BasePath, true))
                 *  Base = GetLoadedBase();
                 * else
                 *  throw new Exception("Could not load base \"" + path + "\".");*/
            }
            else if (format == NusContent.Format.Encrypted)
            {
                /*ValidateEncryptedBase(path);
                 *
                 * if (Directory.Exists(BasePath))
                 * {
                 *  Directory.Delete(BasePath, true);
                 *  Base = null;
                 * }
                 *
                 * Directory.CreateDirectory(BasePath);
                 * NusContent.Decrypt(path, BasePath);
                 * Base = GetLoadedBase();*/
            }
            else
            {
                StringBuilder strBuilder = new StringBuilder();
                strBuilder.AppendLine("The folder not contains a valid NUS content.");
                strBuilder.AppendLine("If it is an unpackaged (decrypted) NUS content, then:");
                strBuilder.AppendLine("The \"" + path + "\\code\" folder not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\content\" folder not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\meta\" folder not exist.");
                strBuilder.AppendLine("If it is an packaged (encrypted) NUS content, then:");
                strBuilder.AppendLine("The \"" + path + "\\title.tmd\" file not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\title.tik\" file not exist.");
                strBuilder.AppendLine("Or \"" + path + "\\title.cert\" file not exist.");
                throw new Exception(strBuilder.ToString());
            }
        }