Esempio n. 1
0
        public bool LoadFile(string resFile, string resName)
        {
            ImageResourceGroup rg = ResourceManagerUtil.LoadResFileIntoResourceGroup(resFile);

            if (rg == null)
            {
                Logging.Instance.Log("Resource group '{0}' loading failed. ", resFile);
                return(false);
            }
            m_resGroupsLut.Add(resName, rg);
            return(true);
        }
Esempio n. 2
0
        public bool LoadDefault(string resFile)
        {
            ImageResourceGroup rg = ResourceManagerUtil.LoadResFileIntoResourceGroup(resFile);

            if (rg == null)
            {
                Logging.Instance.Message("默认资源组 '{0}' 加载失败. ", resFile);
                return(false);
            }

            m_defaultResGroup = rg;
            return(true);
        }
Esempio n. 3
0
        public static ImageResourceGroup LoadResFileIntoResourceGroup(string resFile)
        {
            string indexFile = resFile + ResProtocol.ResIndexFilePostfix;
            string imageFile = resFile + ResProtocol.ResImageFilePostfix;

            if (!File.Exists(indexFile) || !File.Exists(imageFile))
            {
                Logging.Instance.Log("Resource '{0}' broken. ({1} or {2} not found)",
                                     resFile, ResProtocol.ResIndexFilePostfix, ResProtocol.ResImageFilePostfix);
                return(null);
            }

            JObject jobj = ucore.JsonUtil.ReadTextIntoJObject(indexFile);

            if (jobj == null || jobj.Property("frames").Value as JObject == null)
            {
                Logging.Instance.Log("Resource index file '{0}' loading failed.", indexFile);
                return(null);
            }

            JObject            jsub     = jobj.Property("frames").Value as JObject;
            ImageResourceGroup resGroup = new ImageResourceGroup(resFile);

            foreach (JProperty p in jsub.Properties())
            {
                string resName = p.Name;
                try
                {
                    JObject prop = p.Value as JObject;
                    int     x    = int.Parse((string)prop["frame"]["x"]);
                    int     y    = int.Parse((string)prop["frame"]["y"]);
                    int     w    = int.Parse((string)prop["frame"]["w"]);
                    int     h    = int.Parse((string)prop["frame"]["h"]);
                    resGroup.AddResouce(new ImageResource {
                        Name = resName, Position = new Point(x, y), Size = new Size(w, h)
                    });
                }
                catch (Exception e)
                {
                    // 这里不高兴处理各种琐碎的错误了,要是格式不符合就直接跳过吧
                    // 不过问题还是记在 log 里了,想看还是可以看的
                    Logging.Instance.LogExceptionDetail(e);
                }
            }
            return(resGroup);
        }