HonorLee 1 年之前
父节点
当前提交
75a72c1397
共有 5 个文件被更改,包括 46 次插入22 次删除
  1. 8 7
      CGTool/Anime.cs
  2. 4 3
      CGTool/Graphic.cs
  3. 4 3
      CGTool/GraphicInfo.cs
  4. 7 4
      CGTool/Map.cs
  5. 23 5
      README.md

+ 8 - 7
CGTool/Anime.cs

@@ -11,6 +11,7 @@
 using System;
 using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.IO;
 using System.IO;
+using System.Text.RegularExpressions;
 using UnityEngine;
 using UnityEngine;
 
 
 namespace CGTool
 namespace CGTool
@@ -129,9 +130,9 @@ namespace CGTool
         private static Dictionary<int,string> _animeInfoVersionPrefex = new Dictionary<int, string>()
         private static Dictionary<int,string> _animeInfoVersionPrefex = new Dictionary<int, string>()
         {
         {
             //龙之沙漏 之前版本前Info数据
             //龙之沙漏 之前版本前Info数据
-            {0,"AnimeInfo_"},
+            {0,@"AnimeInfo_\d+"},
             //龙之沙漏 版本Info数据
             //龙之沙漏 版本Info数据
-            {1,"AnimeInfoEx_"}
+            {1,@"AnimeInfoEx_\d+"}
         };
         };
         private static List<string> _animeInfoFilePaths = new List<string>();
         private static List<string> _animeInfoFilePaths = new List<string>();
 
 
@@ -139,9 +140,9 @@ namespace CGTool
         private static Dictionary<int,string> _animeDataVersionPrefex = new Dictionary<int, string>()
         private static Dictionary<int,string> _animeDataVersionPrefex = new Dictionary<int, string>()
         {
         {
             //龙之沙漏 之前版本前Data数据
             //龙之沙漏 之前版本前Data数据
-            {0,"Anime_"},
+            {0,@"Anime_\d+"},
             //龙之沙漏 版本Data数据
             //龙之沙漏 版本Data数据
-            {1,"AnimeEx_"}
+            {1,@"AnimeEx_\d+"}
         };
         };
         private static List<string> _animeDataFilePaths = new List<string>();
         private static List<string> _animeDataFilePaths = new List<string>();
 
 
@@ -155,11 +156,11 @@ namespace CGTool
             {
             {
                 foreach (FileInfo fileInfo in files)
                 foreach (FileInfo fileInfo in files)
                 {
                 {
-                    if (fileInfo.Name.StartsWith(_animeInfoVersionPrefex[i]))
+                    if (Regex.IsMatch(fileInfo.Name, _animeInfoVersionPrefex[i]))
                     {
                     {
                         _animeInfoFilePaths.Add(fileInfo.Name);
                         _animeInfoFilePaths.Add(fileInfo.Name);
                     }
                     }
-                    if(fileInfo.Name.StartsWith(_animeDataVersionPrefex[i]))
+                    if(Regex.IsMatch(fileInfo.Name,_animeDataVersionPrefex[i]))
                     {
                     {
                         _animeDataFilePaths.Add(fileInfo.Name);
                         _animeDataFilePaths.Add(fileInfo.Name);
                     }
                     }
@@ -336,7 +337,7 @@ namespace CGTool
                         //标识位
                         //标识位
                         int flag = BitConverter.ToInt16(dataFileReader.ReadBytes(2),0);
                         int flag = BitConverter.ToInt16(dataFileReader.ReadBytes(2),0);
 
 
-                        if (animeData.Index == 110053) Debug.Log("FLAG---" + " " + k + "  " + flag);
+                        // if (animeData.Index == 110053) Debug.Log("FLAG---" + " " + k + "  " + flag);
 
 
                         if (flag>20000)
                         if (flag>20000)
                         {
                         {

+ 4 - 3
CGTool/Graphic.cs

@@ -12,6 +12,7 @@ using System.Collections;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.IO;
 using System.IO;
 using System.Linq;
 using System.Linq;
+using System.Text.RegularExpressions;
 using Unity.Burst;
 using Unity.Burst;
 using Unity.Collections;
 using Unity.Collections;
 using Unity.Jobs;
 using Unity.Jobs;
@@ -59,9 +60,9 @@ namespace CGTool
         private static Dictionary<int,string> _graphicVersionPrefix = new Dictionary<int, string>()
         private static Dictionary<int,string> _graphicVersionPrefix = new Dictionary<int, string>()
         {
         {
             //龙之沙漏 之前版本前图档数据
             //龙之沙漏 之前版本前图档数据
-            {0,"Graphic_"},
+            {0,@"Graphic_\d+"},
             //龙之沙漏 版本图档数据
             //龙之沙漏 版本图档数据
-            {1,"GraphicEx_"}
+            {1,@"GraphicEx_\d+"}
         };
         };
         
         
         private static List<string> _graphicPaths = new List<string>();
         private static List<string> _graphicPaths = new List<string>();
@@ -89,7 +90,7 @@ namespace CGTool
             {
             {
                 foreach (FileInfo file in files)
                 foreach (FileInfo file in files)
                 {
                 {
-                    if (file.Name.StartsWith(_graphicVersionPrefix[i]))
+                    if (Regex.IsMatch(file.Name, _graphicVersionPrefix[i]))
                     {
                     {
                         _graphicPaths.Add(file.Name);
                         _graphicPaths.Add(file.Name);
                         BinaryReader fileReader;
                         BinaryReader fileReader;

+ 4 - 3
CGTool/GraphicInfo.cs

@@ -11,6 +11,7 @@
 using System;
 using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.IO;
 using System.IO;
+using System.Text.RegularExpressions;
 using UnityEngine;
 using UnityEngine;
 
 
 namespace CGTool
 namespace CGTool
@@ -67,9 +68,9 @@ namespace CGTool
         private static Dictionary<int,string> _graphicInfoVersionPrefix = new Dictionary<int, string>()
         private static Dictionary<int,string> _graphicInfoVersionPrefix = new Dictionary<int, string>()
         {
         {
             //龙之沙漏 之前版本前Info数据
             //龙之沙漏 之前版本前Info数据
-            {0,"GraphicInfo_"},
+            {0,@"GraphicInfo_\d+"},
             //龙之沙漏 版本Info数据
             //龙之沙漏 版本Info数据
-            {1,"GraphicInfoEx_"}
+            {1,@"GraphicInfoEx_\d+"}
         };
         };
         
         
         private static List<string> _graphicInfoPaths = new List<string>();
         private static List<string> _graphicInfoPaths = new List<string>();
@@ -83,7 +84,7 @@ namespace CGTool
             {
             {
                 foreach (FileInfo fileInfo in files)
                 foreach (FileInfo fileInfo in files)
                 {
                 {
-                    if (fileInfo.Name.StartsWith(_graphicInfoVersionPrefix[i]))
+                    if (Regex.IsMatch(fileInfo.Name, _graphicInfoVersionPrefix[i]))
                     {
                     {
                         _graphicInfoPaths.Add(fileInfo.Name);
                         _graphicInfoPaths.Add(fileInfo.Name);
                         List<GraphicInfoData> list = GetGraphicInfo(i);
                         List<GraphicInfoData> list = GetGraphicInfo(i);

+ 7 - 4
CGTool/Map.cs

@@ -12,6 +12,7 @@ using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.IO;
 using System.IO;
 using System.Linq;
 using System.Linq;
+using System.Text.RegularExpressions;
 
 
 namespace CGTool
 namespace CGTool
 {
 {
@@ -71,14 +72,16 @@ namespace CGTool
         {
         {
             DirectoryInfo mapDirectory = new DirectoryInfo(CGTool.MapFolder);
             DirectoryInfo mapDirectory = new DirectoryInfo(CGTool.MapFolder);
             FileInfo[] mapFiles = mapDirectory.GetFiles();
             FileInfo[] mapFiles = mapDirectory.GetFiles();
+            string match = @"^(\d+)_?(.+)?$";
             foreach (var fileInfo in mapFiles)
             foreach (var fileInfo in mapFiles)
             {
             {
                 string filename = fileInfo.Name;
                 string filename = fileInfo.Name;
-                if(filename.Equals(".DS_Store")) continue;
+                Match matchRet = Regex.Match(filename, match);
+                if(!matchRet.Success) continue;
+                
                 MapFileInfo _file = new MapFileInfo();
                 MapFileInfo _file = new MapFileInfo();
-                string[] indexName = filename.Split(("_").ToCharArray());
-                _file.Serial = uint.Parse(indexName[0]);
-                _file.Name = indexName[1];
+                _file.Serial = uint.Parse(matchRet.Groups[1].Value);
+                if(matchRet.Groups.Count > 1) _file.Name = matchRet.Groups[1].Value;
                 _file.FileName = filename;
                 _file.FileName = filename;
                 _mapIndexFiles.Add(_file.Serial, _file);
                 _mapIndexFiles.Add(_file.Serial, _file);
             }
             }

+ 23 - 5
README.md

@@ -80,7 +80,27 @@ AnimePlayer player.play(...params).nextPlay(...params);
 请根据情况自行探索修改代码适应应用场景
 请根据情况自行探索修改代码适应应用场景
 
 
 ## 3、版本及功能概述
 ## 3、版本及功能概述
-### 1.1
+> 当前版本目前仅支持 魔力宝贝3.7-龙之沙漏 及以下版本的图档解析
+> 
+> 目前版本支持以下功能:
+> 
+> * `GraphicInfo` 图档索引解析
+> * `Graphic` 图档数据解析
+> * `Palet` 调色板数据解析
+> * `AnimeInfo` 动画索引解析
+> * `Anime` 动画数据解析
+> * `AudioTool` 音频索引及加载
+> * `AnimePlayer` 动画播放器挂载组件
+> * `Map` 服务端地图数据解析
+
+
+
+## 4、更新日志
+### v 1.2
+
+> `FIX` 修正文件加载时判断为正则,避免因使用不同版本bin导致加载报错问题
+
+### v 1.1
 > `ADD` 音频索引及加载AudioTool
 > `ADD` 音频索引及加载AudioTool
 > 
 > 
 > `ADD` 动画播放器添加对Image渲染支持,用以支持GUI动画播放
 > `ADD` 动画播放器添加对Image渲染支持,用以支持GUI动画播放
@@ -99,9 +119,7 @@ AnimePlayer player.play(...params).nextPlay(...params);
 > 
 > 
 > `FIX` 修复动画序列中攻击判定、音频序列解析方式错误的问题
 > `FIX` 修复动画序列中攻击判定、音频序列解析方式错误的问题
 
 
-### 1.0
-
-当前版本目前仅支持 魔力宝贝3.7-龙之沙漏 及以下版本的图档解析
+### v 1.0
 
 
 > `ADD` 脚本初始化
 > `ADD` 脚本初始化
 > 
 > 
@@ -119,7 +137,7 @@ AnimePlayer player.play(...params).nextPlay(...params);
 
 
 
 
 
 
-## 4、待处理
+## 5、待处理
 
 
 - 支援 4.0 以上版本图档解析
 - 支援 4.0 以上版本图档解析
 - 其他未知
 - 其他未知