// Token: 0x06000029 RID: 41 RVA: 0x00002F28 File Offset: 0x00001128
        public static MenuInfo ParseMenu(string filePath)
        {
            MenuInfo menuInfo = new MenuInfo();
            MenuInfo result;

            using (MemoryStream memoryStream = new MemoryStream(MenuModParser.LoadMenuInternal(Path.GetFileName(filePath)), false))
            {
                using (BinaryReader binaryReader = new BinaryReader(memoryStream, Encoding.UTF8))
                {
                    if (binaryReader.ReadString() != "CM3D2_MENU")
                    {
                        result = null;
                    }
                    else
                    {
                        binaryReader.ReadInt32();
                        binaryReader.ReadString();
                        menuInfo.ItemName = binaryReader.ReadString();
                        binaryReader.ReadString();
                        binaryReader.ReadString().Replace("《改行》", "\n");
                        binaryReader.ReadInt32();
                        for (; ;)
                        {
                            int num = (int)binaryReader.ReadByte();
                            if (num == 0)
                            {
                                goto IL_15F;
                            }
                            string   a     = binaryReader.ReadString();
                            string[] array = new string[num - 1];
                            for (int i = 0; i < num - 1; i++)
                            {
                                array[i] = binaryReader.ReadString();
                            }
                            if (!(a == "category"))
                            {
                                if (!(a == "priority"))
                                {
                                    if (!(a == "icon") && !(a == "icons"))
                                    {
                                        if (a == "color_set")
                                        {
                                            if (!EnumUtil.TryParse <MPN>(array[0], true, out menuInfo.ColorSetMPN))
                                            {
                                                goto IL_167;
                                            }
                                            menuInfo.ColorSetMenuName = array[1];
                                        }
                                    }
                                    else
                                    {
                                        menuInfo.IconName = array[0];
                                    }
                                }
                                else
                                {
                                    menuInfo.Priority = float.Parse(array[0]);
                                }
                            }
                            else if (!EnumUtil.TryParse <MPN>(array[0], true, out menuInfo.MPN))
                            {
                                break;
                            }
                        }
                        return(null);

IL_15F:
                        return(menuInfo);

IL_167:
                        result = null;
                    }
                }
            }
            return(result);
        }
        // Token: 0x06000028 RID: 40 RVA: 0x00002CC4 File Offset: 0x00000EC4
        public static MenuInfo parseMod(string filePath)
        {
            MenuInfo menuInfo = new MenuInfo();

            menuInfo.Priority = 1000f;
            byte[] array = null;
            try
            {
                using (FileStream fileStream = new FileStream(filePath, FileMode.Open))
                {
                    if (fileStream == null)
                    {
                        return(null);
                    }
                    array = new byte[fileStream.Length];
                    fileStream.Read(array, 0, (int)fileStream.Length);
                }
            }
            catch (Exception)
            {
            }
            if (array == null)
            {
                return(null);
            }
            using (BinaryReader binaryReader = new BinaryReader(new MemoryStream(array), Encoding.UTF8))
            {
                if (binaryReader.ReadString() != "CM3D2_MOD")
                {
                    return(null);
                }
                binaryReader.ReadInt32();
                menuInfo.IconName = binaryReader.ReadString();
                binaryReader.ReadString();
                menuInfo.ItemName = binaryReader.ReadString();
                string value = binaryReader.ReadString();
                MPN    mpn   = MPN.null_mpn;
                if (!EnumUtil.TryParse <MPN>(value, true, out mpn))
                {
                    return(null);
                }
                menuInfo.MPN = mpn;
                binaryReader.ReadString();
                if (!EnumUtil.TryParse <MPN>(binaryReader.ReadString(), true, out mpn))
                {
                    return(null);
                }
                if (mpn != MPN.null_mpn)
                {
                    binaryReader.ReadString();
                }
                string text = binaryReader.ReadString();
                if (text.Contains("色セット"))
                {
                    string[] array2 = text.Replace("\r\n", "\n").Split(new char[]
                    {
                        '\n'
                    });
                    for (int i = 0; i < array2.Length; i++)
                    {
                        string[] array3 = array2[i].Split(new char[]
                        {
                            '\t'
                        }, StringSplitOptions.RemoveEmptyEntries);
                        if (array3.Length > 2 && array3[0] == "色セット" && EnumUtil.TryParse <MPN>(array3[1], true, out menuInfo.ColorSetMPN))
                        {
                            menuInfo.ColorSetMenuName = array3[2];
                            break;
                        }
                    }
                }
                int num = binaryReader.ReadInt32();
                for (int j = 0; j < num; j++)
                {
                    string strA  = binaryReader.ReadString();
                    int    count = binaryReader.ReadInt32();
                    byte[] data  = binaryReader.ReadBytes(count);
                    if (string.Compare(strA, menuInfo.IconName, true) == 0)
                    {
                        // 여기서 크래쉬남
                        menuInfo.Icon = new Texture2D(1, 1, TextureFormat.RGBA32, false);
                        menuInfo.Icon.LoadImage(data);
                    }
                }
            }
            return(menuInfo);
        }
 // Token: 0x06000015 RID: 21 RVA: 0x00002737 File Offset: 0x00000937
 public static bool TryParse <T>(string value, out T result)
 {
     return(EnumUtil.TryParse <T>(value, true, out result));
 }