コード例 #1
0
ファイル: MapName.cs プロジェクト: steven1152/maplestory.io
        public static ILookup <int, MapName> GetMapNameLookup(WZProperty anyWz)
        {
            ILookup <int, MapName> lookup = null;

            if (anyWz.FileContainer.Collection.VersionCache.TryGetValue("mapNames", out object mapNamesCached))
            {
                lookup = (ILookup <int, MapName>)mapNamesCached;
            }
            else
            {
                lookup = anyWz.ResolveOutlink("String/Map").Children.SelectMany(c => c.Children).ToLookup(c => int.Parse(c.NameWithoutExtension), c => MapName.Parse(c));
                anyWz.FileContainer.Collection.VersionCache.AddOrUpdate("mapNameLookup", lookup, (a, b) => b);
            }

            return(lookup);
        }
コード例 #2
0
ファイル: MapName.cs プロジェクト: steven1152/maplestory.io
        public static IEnumerable <MapName> GetMapNames(WZProperty stringWz)
        {
            IEnumerable <MapName> names = null;

            if (stringWz.FileContainer.Collection.VersionCache.TryGetValue("mapNames", out object mapNamesCached))
            {
                names = (IEnumerable <MapName>)mapNamesCached;
            }
            else
            {
                names = stringWz.Resolve("Map").Children.SelectMany(c => c.Children).Select(c => MapName.Parse(c));
                stringWz.FileContainer.Collection.VersionCache.AddOrUpdate("mapNames", names, (a, b) => b);
            }

            return(names);
        }