mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-14 11:07:24 +08:00
2664 lines
99 KiB
C#
2664 lines
99 KiB
C#
using CodeWalker.Properties;
|
|
using SharpDX;
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Xml;
|
|
|
|
namespace CodeWalker.GameFiles
|
|
{
|
|
public class GameFileCache
|
|
{
|
|
public RpfManager RpfMan;
|
|
private Action<string> UpdateStatus;
|
|
private Action<string> ErrorLog;
|
|
public long CurrentMemoryUsage = 0;
|
|
public int MaxItemsPerLoop = 1; //to keep things flowing...
|
|
|
|
private ConcurrentStack<GameFile> requestQueue = new ConcurrentStack<GameFile>();
|
|
|
|
////dynamic cache
|
|
private Cache<GameFileCacheKey, GameFile> mainCache = new Cache<GameFileCacheKey, GameFile>(Settings.Default.CacheSize, Settings.Default.CacheTime);//2GB
|
|
public volatile bool IsInited = false;
|
|
|
|
private volatile bool archetypesLoaded = false;
|
|
private Dictionary<uint, Archetype> archetypeDict = new Dictionary<uint, Archetype>();
|
|
private Dictionary<uint, RpfFileEntry> textureLookup = new Dictionary<uint, RpfFileEntry>();
|
|
private Dictionary<uint, uint> textureParents;
|
|
|
|
private object updateSyncRoot = new object();
|
|
private object requestSyncRoot = new object();
|
|
private object textureSyncRoot = new object(); //for the texture lookup.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//static indexes
|
|
public Dictionary<uint, RpfFileEntry> YdrDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YddDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YtdDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YmapDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YftDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YbnDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YcdDict { get; private set; }
|
|
public Dictionary<uint, RpfFileEntry> YnvDict { get; private set; }
|
|
|
|
|
|
public Dictionary<uint, RpfFileEntry> AllYmapsDict { get; private set; }
|
|
|
|
|
|
//static cached data loaded at init
|
|
public Dictionary<uint, YtypFile> YtypDict { get; set; }
|
|
|
|
public List<CacheDatFile> AllCacheFiles { get; set; }
|
|
public Dictionary<uint, MapDataStoreNode> YmapHierarchyDict { get; set; }
|
|
|
|
public List<YmfFile> AllManifests { get; set; }
|
|
|
|
|
|
public bool EnableDlc { get; set; } = false;//true;//
|
|
public bool EnableMods { get; set; } = false;
|
|
|
|
public List<string> DlcPaths { get; set; } = new List<string>();
|
|
public List<RpfFile> DlcActiveRpfs { get; set; } = new List<RpfFile>();
|
|
public List<DlcSetupFile> DlcSetupFiles { get; set; } = new List<DlcSetupFile>();
|
|
public List<DlcExtraFolderMountFile> DlcExtraFolderMounts { get; set; } = new List<DlcExtraFolderMountFile>();
|
|
public Dictionary<string, string> DlcPatchedPaths { get; set; } = new Dictionary<string, string>();
|
|
public List<string> DlcCacheFileList { get; set; } = new List<string>();
|
|
public List<string> DlcNameList { get; set; } = new List<string>();
|
|
public string SelectedDlc { get; set; } = string.Empty;
|
|
|
|
public Dictionary<string, RpfFile> ActiveMapRpfFiles { get; set; } = new Dictionary<string, RpfFile>();
|
|
|
|
public Dictionary<uint, World.TimecycleMod> TimeCycleModsDict = new Dictionary<uint, World.TimecycleMod>();
|
|
|
|
public List<RpfFile> BaseRpfs { get; private set; }
|
|
public List<RpfFile> AllRpfs { get; private set; }
|
|
public List<RpfFile> DlcRpfs { get; private set; }
|
|
|
|
public bool DoFullStringIndex = false;
|
|
|
|
private bool PreloadedMode = false;
|
|
|
|
|
|
|
|
public void Clear()
|
|
{
|
|
IsInited = false;
|
|
|
|
mainCache.Clear();
|
|
|
|
textureLookup.Clear();
|
|
GameFile queueclear;
|
|
while (requestQueue.TryPop(out queueclear))
|
|
{ } //empty the old queue out...
|
|
}
|
|
|
|
public void Init(Action<string> updateStatus, Action<string> errorLog)
|
|
{
|
|
UpdateStatus = updateStatus;
|
|
ErrorLog = errorLog;
|
|
|
|
Clear();
|
|
|
|
|
|
if (RpfMan == null)
|
|
{
|
|
|
|
|
|
SelectedDlc = Settings.Default.DLC;
|
|
EnableDlc = !string.IsNullOrEmpty(SelectedDlc);
|
|
EnableMods = Settings.Default.EnableMods;
|
|
|
|
|
|
|
|
RpfMan = new RpfManager();
|
|
RpfMan.ExcludePaths = GetExcludePaths();
|
|
RpfMan.EnableMods = EnableMods;
|
|
RpfMan.Init(Settings.Default.GTAFolder, UpdateStatus, ErrorLog);//, true);
|
|
|
|
//RE test area!
|
|
//DecodeRelFiles();
|
|
|
|
|
|
InitGlobal();
|
|
|
|
InitDlc();
|
|
|
|
|
|
//TestYcds();
|
|
//TestYmaps();
|
|
//TestPlacements();
|
|
//TestDrawables();
|
|
//GetArchetypeTimesList();
|
|
//string typestr = PsoTypes.GetTypesString();
|
|
}
|
|
else
|
|
{
|
|
GC.Collect(); //try free up some of the previously used memory..
|
|
}
|
|
|
|
UpdateStatus("Scan complete");
|
|
|
|
|
|
IsInited = true;
|
|
}
|
|
public void Init(Action<string> updateStatus, Action<string> errorLog, List<RpfFile> allRpfs)
|
|
{
|
|
UpdateStatus = updateStatus;
|
|
ErrorLog = errorLog;
|
|
|
|
Clear();
|
|
|
|
PreloadedMode = true;
|
|
EnableDlc = false;
|
|
EnableMods = false;
|
|
RpfMan = new RpfManager(); //try not to use this in this mode...
|
|
RpfMan.Init(allRpfs);
|
|
|
|
AllRpfs = allRpfs;
|
|
BaseRpfs = allRpfs;
|
|
DlcRpfs = new List<RpfFile>();
|
|
|
|
InitGlobalDicts();
|
|
|
|
InitGtxds();
|
|
|
|
InitArchetypeDicts();
|
|
|
|
IsInited = true;
|
|
}
|
|
|
|
private void InitGlobal()
|
|
{
|
|
BaseRpfs = GetModdedRpfList(RpfMan.BaseRpfs);
|
|
AllRpfs = GetModdedRpfList(RpfMan.AllRpfs);
|
|
DlcRpfs = GetModdedRpfList(RpfMan.DlcRpfs);
|
|
|
|
UpdateStatus("Building global dictionaries...");
|
|
InitGlobalDicts();
|
|
}
|
|
|
|
private void InitDlc()
|
|
{
|
|
|
|
UpdateStatus("Building DLC List...");
|
|
InitDlcList();
|
|
|
|
UpdateStatus("Building active RPF dictionary...");
|
|
InitActiveMapRpfFiles();
|
|
|
|
UpdateStatus("Building map dictionaries...");
|
|
InitMapDicts();
|
|
|
|
UpdateStatus("Loading manifests...");
|
|
InitManifestDicts();
|
|
|
|
UpdateStatus("Loading global texture list...");
|
|
InitGtxds();
|
|
|
|
UpdateStatus("Loading cache...");
|
|
InitMapCaches();
|
|
|
|
UpdateStatus("Loading archetypes...");
|
|
InitArchetypeDicts();
|
|
|
|
UpdateStatus("Loading strings...");
|
|
InitStringDicts();
|
|
}
|
|
|
|
private void InitDlcList()
|
|
{
|
|
//if (!EnableDlc) return;
|
|
|
|
string dlclistpath = "update\\update.rpf\\common\\data\\dlclist.xml";
|
|
//if (!EnableDlc)
|
|
//{
|
|
// dlclistpath = "common.rpf\\data\\dlclist.xml";
|
|
//}
|
|
var dlclistxml = RpfMan.GetFileXml(dlclistpath);
|
|
|
|
DlcPaths.Clear();
|
|
if (dlclistxml == null)
|
|
{
|
|
ErrorLog("InitDlcList: Couldn't load " + dlclistpath + ".");
|
|
}
|
|
else
|
|
{
|
|
foreach (XmlNode pathsnode in dlclistxml.DocumentElement)
|
|
{
|
|
foreach (XmlNode itemnode in pathsnode.ChildNodes)
|
|
{
|
|
DlcPaths.Add(itemnode.InnerText.ToLowerInvariant().Replace('\\', '/').Replace("platform:", "x64"));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//get dlc path names in the appropriate format for reference by the dlclist paths
|
|
Dictionary<string, RpfFile> dlcDict = new Dictionary<string, RpfFile>();
|
|
Dictionary<string, RpfFile> dlcDict2 = new Dictionary<string, RpfFile>();
|
|
foreach (RpfFile dlcrpf in DlcRpfs)
|
|
{
|
|
if (dlcrpf == null) continue;
|
|
if (dlcrpf.NameLower == "dlc.rpf")
|
|
{
|
|
string path = GetDlcRpfVirtualPath(dlcrpf.Path);
|
|
string name = GetDlcNameFromPath(dlcrpf.Path);
|
|
dlcDict[path] = dlcrpf;
|
|
dlcDict2[name] = dlcrpf;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
//find all the paths for patched files in update.rpf and build the dict
|
|
DlcPatchedPaths.Clear();
|
|
string updrpfpath = "update\\update.rpf";
|
|
var updrpffile = RpfMan.FindRpfFile(updrpfpath);
|
|
|
|
if (updrpffile != null)
|
|
{
|
|
XmlDocument updsetupdoc = RpfMan.GetFileXml(updrpfpath + "\\setup2.xml");
|
|
DlcSetupFile updsetupfile = new DlcSetupFile();
|
|
updsetupfile.Load(updsetupdoc);
|
|
|
|
XmlDocument updcontentdoc = RpfMan.GetFileXml(updrpfpath + "\\" + updsetupfile.datFile);
|
|
DlcContentFile updcontentfile = new DlcContentFile();
|
|
updcontentfile.Load(updcontentdoc);
|
|
|
|
updsetupfile.DlcFile = updrpffile;
|
|
updsetupfile.ContentFile = updcontentfile;
|
|
updcontentfile.DlcFile = updrpffile;
|
|
|
|
updsetupfile.deviceName = "update";
|
|
updcontentfile.LoadDicts(updsetupfile, RpfMan, this);
|
|
|
|
if (updcontentfile.ExtraTitleUpdates != null)
|
|
{
|
|
foreach (var tumount in updcontentfile.ExtraTitleUpdates.Mounts)
|
|
{
|
|
var lpath = tumount.path.ToLowerInvariant();
|
|
var relpath = lpath.Replace('/', '\\').Replace("update:\\", "");
|
|
var dlcname = GetDlcNameFromPath(relpath);
|
|
RpfFile dlcfile;
|
|
dlcDict2.TryGetValue(dlcname, out dlcfile);
|
|
if (dlcfile == null)
|
|
{ continue; }
|
|
var dlcpath = dlcfile.Path + "\\";
|
|
var files = updrpffile.GetFiles(relpath, true);
|
|
foreach (var file in files)
|
|
{
|
|
if (file == null) continue;
|
|
var fpath = file.Path;
|
|
var frelpath = fpath.Replace(updrpfpath, "update:").Replace('\\', '/').Replace(lpath, dlcpath).Replace('/', '\\');
|
|
if (frelpath.StartsWith("mods\\"))
|
|
{
|
|
frelpath = frelpath.Substring(5);
|
|
}
|
|
DlcPatchedPaths[frelpath] = fpath;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorLog("InitDlcList: update.rpf not found!");
|
|
}
|
|
|
|
|
|
|
|
|
|
DlcSetupFiles.Clear();
|
|
DlcExtraFolderMounts.Clear();
|
|
|
|
foreach (string path in DlcPaths)
|
|
{
|
|
RpfFile dlcfile;
|
|
if (dlcDict.TryGetValue(path, out dlcfile))
|
|
{
|
|
try
|
|
{
|
|
string setuppath = GetDlcPatchedPath(dlcfile.Path + "\\setup2.xml");
|
|
XmlDocument setupdoc = RpfMan.GetFileXml(setuppath);
|
|
DlcSetupFile setupfile = new DlcSetupFile();
|
|
setupfile.Load(setupdoc);
|
|
|
|
string contentpath = GetDlcPatchedPath(dlcfile.Path + "\\" + setupfile.datFile);
|
|
XmlDocument contentdoc = RpfMan.GetFileXml(contentpath);
|
|
DlcContentFile contentfile = new DlcContentFile();
|
|
contentfile.Load(contentdoc);
|
|
|
|
setupfile.DlcFile = dlcfile;
|
|
setupfile.ContentFile = contentfile;
|
|
contentfile.DlcFile = dlcfile;
|
|
|
|
contentfile.LoadDicts(setupfile, RpfMan, this);
|
|
foreach (var extramount in contentfile.ExtraMounts.Values)
|
|
{
|
|
DlcExtraFolderMounts.Add(extramount);
|
|
}
|
|
|
|
DlcSetupFiles.Add(setupfile);
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ErrorLog("InitDlcList: Error processing DLC " + path + "\n" + ex.ToString());
|
|
}
|
|
}
|
|
}
|
|
|
|
//load the DLC in the correct order....
|
|
DlcSetupFiles = DlcSetupFiles.OrderBy(o => o.order).ToList();
|
|
|
|
|
|
DlcNameList.Clear();
|
|
foreach (var sfile in DlcSetupFiles)
|
|
{
|
|
if ((sfile == null) || (sfile.DlcFile == null)) continue;
|
|
DlcNameList.Add(GetDlcNameFromPath(sfile.DlcFile.Path));
|
|
}
|
|
}
|
|
|
|
private void InitImagesMetas()
|
|
{
|
|
//currently not used..
|
|
|
|
////parse images.meta
|
|
//string imagesmetapath = "common.rpf\\data\\levels\\gta5\\images.meta";
|
|
//if (EnableDlc)
|
|
//{
|
|
// imagesmetapath = "update\\update.rpf\\common\\data\\levels\\gta5\\images.meta";
|
|
//}
|
|
//var imagesmetaxml = RpfMan.GetFileXml(imagesmetapath);
|
|
//var imagesnodes = imagesmetaxml.DocumentElement.ChildNodes;
|
|
//List<DlcContentDataFile> imagedatafilelist = new List<DlcContentDataFile>();
|
|
//Dictionary<string, DlcContentDataFile> imagedatafiles = new Dictionary<string, DlcContentDataFile>();
|
|
//foreach (XmlNode node in imagesnodes)
|
|
//{
|
|
// DlcContentDataFile datafile = new DlcContentDataFile(node);
|
|
// string fname = datafile.filename.ToLower();
|
|
// fname = fname.Replace('\\', '/');
|
|
// imagedatafiles[fname] = datafile;
|
|
// imagedatafilelist.Add(datafile);
|
|
//}
|
|
|
|
|
|
//filter ActiveMapFiles based on images.meta?
|
|
|
|
//DlcContentDataFile imagesdata;
|
|
//if (imagedatafiles.TryGetValue(path, out imagesdata))
|
|
//{
|
|
// ActiveMapRpfFiles[path] = baserpf;
|
|
//}
|
|
}
|
|
|
|
private void InitActiveMapRpfFiles()
|
|
{
|
|
ActiveMapRpfFiles.Clear();
|
|
|
|
foreach (RpfFile baserpf in BaseRpfs) //start with all the base rpf's (eg x64a.rpf)
|
|
{
|
|
string path = baserpf.Path.Replace('\\', '/');
|
|
if (path == "common.rpf")
|
|
{
|
|
ActiveMapRpfFiles["common"] = baserpf;
|
|
}
|
|
else
|
|
{
|
|
int bsind = path.IndexOf('/');
|
|
if ((bsind > 0) && (bsind < path.Length))
|
|
{
|
|
path = "x64" + path.Substring(bsind);
|
|
|
|
//if (ActiveMapRpfFiles.ContainsKey(path))
|
|
//{ } //x64d.rpf\levels\gta5\generic\cutsobjects.rpf // x64g.rpf\levels\gta5\generic\cutsobjects.rpf - identical?
|
|
|
|
ActiveMapRpfFiles[path] = baserpf;
|
|
}
|
|
else
|
|
{
|
|
//do we need to include root rpf files? generally don't seem to contain map data?
|
|
//ActiveMapRpfFiles[path] = baserpf;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!EnableDlc) return; //don't continue for base title only
|
|
|
|
|
|
DlcActiveRpfs.Clear();
|
|
DlcCacheFileList.Clear();
|
|
|
|
//int maxdlcorder = 10000000;
|
|
|
|
Dictionary<string, List<string>> overlays = new Dictionary<string, List<string>>();
|
|
|
|
foreach(var setupfile in DlcSetupFiles)
|
|
{
|
|
if(setupfile.DlcFile!=null)
|
|
{
|
|
//if (setupfile.order > maxdlcorder)
|
|
// break;
|
|
|
|
var contentfile = setupfile.ContentFile;
|
|
var dlcfile = setupfile.DlcFile;
|
|
|
|
DlcActiveRpfs.Add(dlcfile);
|
|
|
|
string dlcname = GetDlcNameFromPath(dlcfile.Path);
|
|
|
|
|
|
|
|
foreach (var rpfkvp in contentfile.RpfDataFiles)
|
|
{
|
|
string umpath = GetDlcUnmountedPath(rpfkvp.Value.filename);
|
|
string phpath = GetDlcRpfPhysicalPath(umpath, setupfile);
|
|
|
|
//if (rpfkvp.Value.overlay)
|
|
AddDlcOverlayRpf(rpfkvp.Key, umpath, setupfile, overlays);
|
|
|
|
AddDlcActiveMapRpfFile(rpfkvp.Key, phpath);
|
|
}
|
|
|
|
|
|
|
|
|
|
DlcExtraFolderMountFile extramount;
|
|
DlcContentDataFile rpfdatafile;
|
|
|
|
|
|
foreach (var changeset in contentfile.contentChangeSets)
|
|
{
|
|
if (changeset.useCacheLoader)
|
|
{
|
|
uint cachehash = JenkHash.GenHash(changeset.changeSetName.ToLowerInvariant());
|
|
string cachefilename = dlcname + "_" + cachehash.ToString() + "_cache_y.dat";
|
|
string cachefilepath = dlcfile.Path + "\\x64\\data\\cacheloaderdata_dlc\\" + cachefilename;
|
|
string cachefilepathpatched = GetDlcPatchedPath(cachefilepath);
|
|
DlcCacheFileList.Add(cachefilepathpatched);
|
|
|
|
//if ((changeset.mapChangeSetData != null) && (changeset.mapChangeSetData.Count > 0))
|
|
//{ }
|
|
//else
|
|
//{ }
|
|
}
|
|
else
|
|
{
|
|
//if ((changeset.mapChangeSetData != null) && (changeset.mapChangeSetData.Count > 0))
|
|
//{ }
|
|
//if (changeset.executionConditions != null)
|
|
//{ }
|
|
}
|
|
//if (changeset.filesToInvalidate != null)
|
|
//{ }//not used
|
|
//if (changeset.filesToDisable != null)
|
|
//{ }//not used
|
|
if (changeset.filesToEnable != null)
|
|
{
|
|
foreach (string file in changeset.filesToEnable)
|
|
{
|
|
string dfn = GetDlcPlatformPath(file).ToLowerInvariant();
|
|
if (contentfile.ExtraMounts.TryGetValue(dfn, out extramount))
|
|
{
|
|
//foreach (var rpfkvp in contentfile.RpfDataFiles)
|
|
//{
|
|
// string umpath = GetDlcUnmountedPath(rpfkvp.Value.filename);
|
|
// string phpath = GetDlcRpfPhysicalPath(umpath, setupfile);
|
|
// //if (rpfkvp.Value.overlay)
|
|
// AddDlcOverlayRpf(rpfkvp.Key, umpath, setupfile, overlays);
|
|
// AddDlcActiveMapRpfFile(rpfkvp.Key, phpath);
|
|
//}
|
|
}
|
|
else if (contentfile.RpfDataFiles.TryGetValue(dfn, out rpfdatafile))
|
|
{
|
|
string phpath = GetDlcRpfPhysicalPath(rpfdatafile.filename, setupfile);
|
|
|
|
//if (rpfdatafile.overlay)
|
|
AddDlcOverlayRpf(dfn, rpfdatafile.filename, setupfile, overlays);
|
|
|
|
AddDlcActiveMapRpfFile(dfn, phpath);
|
|
}
|
|
else
|
|
{
|
|
if (dfn.EndsWith(".rpf"))
|
|
{ }
|
|
}
|
|
}
|
|
}
|
|
if (changeset.executionConditions != null)
|
|
{ }
|
|
|
|
if (changeset.mapChangeSetData != null)
|
|
{
|
|
foreach (var mapcs in changeset.mapChangeSetData)
|
|
{
|
|
//if (mapcs.mapChangeSetData != null)
|
|
//{ }//not used
|
|
if (mapcs.filesToInvalidate != null)
|
|
{
|
|
foreach (string file in mapcs.filesToInvalidate)
|
|
{
|
|
string upath = GetDlcMountedPath(file);
|
|
string fpath = GetDlcPlatformPath(upath);
|
|
if (fpath.EndsWith(".rpf"))
|
|
{
|
|
RemoveDlcActiveMapRpfFile(fpath, overlays);
|
|
}
|
|
else
|
|
{ } //how to deal with individual files? milo_.interior
|
|
}
|
|
}
|
|
if (mapcs.filesToDisable != null)
|
|
{ }
|
|
if (mapcs.filesToEnable != null)
|
|
{
|
|
foreach (string file in mapcs.filesToEnable)
|
|
{
|
|
string fpath = GetDlcPlatformPath(file);
|
|
string umpath = GetDlcUnmountedPath(fpath);
|
|
string phpath = GetDlcRpfPhysicalPath(umpath, setupfile);
|
|
|
|
if (fpath != umpath)
|
|
{ }
|
|
|
|
AddDlcOverlayRpf(fpath, umpath, setupfile, overlays);
|
|
|
|
AddDlcActiveMapRpfFile(fpath, phpath);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dlcname == SelectedDlc)
|
|
{
|
|
break; //everything's loaded up to the selected DLC.
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
private void AddDlcActiveMapRpfFile(string vpath, string phpath)
|
|
{
|
|
vpath = vpath.ToLowerInvariant();
|
|
phpath = phpath.ToLowerInvariant();
|
|
if (phpath.EndsWith(".rpf"))
|
|
{
|
|
RpfFile rpffile = RpfMan.FindRpfFile(phpath);
|
|
if (rpffile != null)
|
|
{
|
|
ActiveMapRpfFiles[vpath] = rpffile;
|
|
}
|
|
else
|
|
{ }
|
|
}
|
|
else
|
|
{ } //how to handle individual files? eg interiorProxies.meta
|
|
}
|
|
private void AddDlcOverlayRpf(string path, string umpath, DlcSetupFile setupfile, Dictionary<string,List<string>> overlays)
|
|
{
|
|
string opath = GetDlcOverlayPath(umpath, setupfile);
|
|
if (opath == path) return;
|
|
List<string> overlayList;
|
|
if (!overlays.TryGetValue(opath, out overlayList))
|
|
{
|
|
overlayList = new List<string>();
|
|
overlays[opath] = overlayList;
|
|
}
|
|
overlayList.Add(path);
|
|
}
|
|
private void RemoveDlcActiveMapRpfFile(string vpath, Dictionary<string, List<string>> overlays)
|
|
{
|
|
List<string> overlayList;
|
|
if (overlays.TryGetValue(vpath, out overlayList))
|
|
{
|
|
foreach (string overlayPath in overlayList)
|
|
{
|
|
if (ActiveMapRpfFiles.ContainsKey(overlayPath))
|
|
{
|
|
ActiveMapRpfFiles.Remove(overlayPath);
|
|
}
|
|
else
|
|
{ }
|
|
}
|
|
overlays.Remove(vpath);
|
|
}
|
|
|
|
if (ActiveMapRpfFiles.ContainsKey(vpath))
|
|
{
|
|
ActiveMapRpfFiles.Remove(vpath);
|
|
}
|
|
else
|
|
{ } //nothing to remove?
|
|
}
|
|
private string GetDlcRpfPhysicalPath(string path, DlcSetupFile setupfile)
|
|
{
|
|
string devname = setupfile.deviceName.ToLowerInvariant();
|
|
string fpath = GetDlcPlatformPath(path).ToLowerInvariant();
|
|
string kpath = fpath.Replace(devname + ":\\", "");
|
|
string dlcpath = setupfile.DlcFile.Path;
|
|
fpath = fpath.Replace(devname + ":", dlcpath);
|
|
fpath = fpath.Replace("x64:", dlcpath + "\\x64").Replace('/', '\\');
|
|
return GetDlcPatchedPath(fpath);
|
|
}
|
|
private string GetDlcOverlayPath(string path, DlcSetupFile setupfile)
|
|
{
|
|
string devname = setupfile.deviceName.ToLowerInvariant();
|
|
string fpath = path.Replace("%PLATFORM%", "x64").Replace('\\', '/').ToLowerInvariant();
|
|
string opath = fpath.Replace(devname + ":/", "");
|
|
return opath;
|
|
}
|
|
private string GetDlcRpfVirtualPath(string path)
|
|
{
|
|
path = path.Replace('\\', '/');
|
|
if (path.StartsWith("mods/"))
|
|
{
|
|
path = path.Substring(5);
|
|
}
|
|
if (path.Length > 7)
|
|
{
|
|
path = path.Substring(0, path.Length - 7);//trim off "dlc.rpf"
|
|
}
|
|
if (path.StartsWith("x64"))
|
|
{
|
|
int bsind = path.IndexOf('/'); //replace x64*.rpf
|
|
if ((bsind > 0) && (bsind < path.Length))
|
|
{
|
|
path = "x64" + path.Substring(bsind);
|
|
}
|
|
else
|
|
{ } //no hits here
|
|
}
|
|
else if (path.StartsWith("update/x64/dlcpacks"))
|
|
{
|
|
path = path.Replace("update/x64/dlcpacks", "dlcpacks:");
|
|
}
|
|
else
|
|
{ } //no hits here
|
|
|
|
return path;
|
|
}
|
|
private string GetDlcNameFromPath(string path)
|
|
{
|
|
string[] parts = path.ToLowerInvariant().Split('\\');
|
|
if (parts.Length > 1)
|
|
{
|
|
return parts[parts.Length - 2].ToLowerInvariant();
|
|
}
|
|
return path;
|
|
}
|
|
public static string GetDlcPlatformPath(string path)
|
|
{
|
|
return path.Replace("%PLATFORM%", "x64").Replace('\\', '/').Replace("platform:", "x64").ToLowerInvariant();
|
|
}
|
|
private string GetDlcMountedPath(string path)
|
|
{
|
|
foreach (var efm in DlcExtraFolderMounts)
|
|
{
|
|
foreach (var fm in efm.FolderMounts)
|
|
{
|
|
if ((fm.platform == null) || (fm.platform == "x64"))
|
|
{
|
|
if (path.StartsWith(fm.path))
|
|
{
|
|
path = path.Replace(fm.path, fm.mountAs);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return path;
|
|
}
|
|
private string GetDlcUnmountedPath(string path)
|
|
{
|
|
foreach (var efm in DlcExtraFolderMounts)
|
|
{
|
|
foreach (var fm in efm.FolderMounts)
|
|
{
|
|
if ((fm.platform == null) || (fm.platform == "x64"))
|
|
{
|
|
if (path.StartsWith(fm.mountAs))
|
|
{
|
|
path = path.Replace(fm.mountAs, fm.path);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return path;
|
|
}
|
|
public string GetDlcPatchedPath(string path)
|
|
{
|
|
string p;
|
|
if (DlcPatchedPaths.TryGetValue(path, out p))
|
|
{
|
|
return p;
|
|
}
|
|
return path;
|
|
}
|
|
|
|
private List<RpfFile> GetModdedRpfList(List<RpfFile> list)
|
|
{
|
|
//if (!EnableMods) return new List<RpfFile>(list);
|
|
List<RpfFile> rlist = new List<RpfFile>();
|
|
RpfFile f;
|
|
if (!EnableMods)
|
|
{
|
|
foreach (var file in list)
|
|
{
|
|
if (!file.Path.StartsWith("mods"))
|
|
{
|
|
rlist.Add(file);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var file in list)
|
|
{
|
|
if (RpfMan.ModRpfDict.TryGetValue(file.Path, out f))
|
|
{
|
|
rlist.Add(f);
|
|
}
|
|
else
|
|
{
|
|
if (file.Path.StartsWith("mods"))
|
|
{
|
|
var basepath = file.Path.Substring(5);
|
|
if (!RpfMan.RpfDict.ContainsKey(basepath)) //this file isn't overriding anything
|
|
{
|
|
rlist.Add(file);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
rlist.Add(file);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return rlist;
|
|
}
|
|
|
|
|
|
private void InitGlobalDicts()
|
|
{
|
|
YdrDict = new Dictionary<uint, RpfFileEntry>();
|
|
YddDict = new Dictionary<uint, RpfFileEntry>();
|
|
YtdDict = new Dictionary<uint, RpfFileEntry>();
|
|
YftDict = new Dictionary<uint, RpfFileEntry>();
|
|
YcdDict = new Dictionary<uint, RpfFileEntry>();
|
|
foreach (var rpffile in AllRpfs)
|
|
{
|
|
if (rpffile.AllEntries == null) continue;
|
|
foreach (var entry in rpffile.AllEntries)
|
|
{
|
|
if (entry is RpfFileEntry)
|
|
{
|
|
RpfFileEntry fentry = entry as RpfFileEntry;
|
|
if (entry.NameLower.EndsWith(".ydr"))
|
|
{
|
|
YdrDict[entry.NameHash] = fentry; //replaces any existing entries...
|
|
YdrDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".ydd"))
|
|
{
|
|
YddDict[entry.NameHash] = fentry; //replaces any existing entries...
|
|
YddDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".ytd"))
|
|
{
|
|
YtdDict[entry.NameHash] = fentry; //replaces any existing entries...
|
|
YtdDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".yft"))
|
|
{
|
|
YftDict[entry.NameHash] = fentry;
|
|
YftDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".ycd"))
|
|
{
|
|
YcdDict[entry.NameHash] = fentry;
|
|
YcdDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
private void InitMapDicts()
|
|
{
|
|
YmapDict = new Dictionary<uint, RpfFileEntry>();
|
|
YbnDict = new Dictionary<uint, RpfFileEntry>();
|
|
YnvDict = new Dictionary<uint, RpfFileEntry>();
|
|
foreach (var rpffile in ActiveMapRpfFiles.Values) //RpfMan.BaseRpfs)
|
|
{
|
|
if (rpffile.AllEntries == null) continue;
|
|
foreach (var entry in rpffile.AllEntries)
|
|
{
|
|
if (entry is RpfFileEntry)
|
|
{
|
|
RpfFileEntry fentry = entry as RpfFileEntry;
|
|
if (entry.NameLower.EndsWith(".ymap"))
|
|
{
|
|
//YmapDict[entry.NameHash] = fentry;
|
|
YmapDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".ybn"))
|
|
{
|
|
//YbnDict[entry.NameHash] = fentry;
|
|
YbnDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
else if (entry.NameLower.EndsWith(".ynv"))
|
|
{
|
|
YnvDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
AllYmapsDict = new Dictionary<uint, RpfFileEntry>();
|
|
foreach (var rpffile in AllRpfs)
|
|
{
|
|
if (rpffile.AllEntries == null) continue;
|
|
foreach (var entry in rpffile.AllEntries)
|
|
{
|
|
if (entry is RpfFileEntry)
|
|
{
|
|
RpfFileEntry fentry = entry as RpfFileEntry;
|
|
if (entry.NameLower.EndsWith(".ymap"))
|
|
{
|
|
AllYmapsDict[entry.ShortNameHash] = fentry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
private void InitManifestDicts()
|
|
{
|
|
AllManifests = new List<YmfFile>();
|
|
foreach (RpfFile file in ActiveMapRpfFiles.Values) //RpfMan.BaseRpfs)
|
|
{
|
|
if (file.AllEntries == null) continue;
|
|
//manifest and meta parsing..
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
//sp_manifest.ymt
|
|
//if (entry.NameLower.EndsWith("zonebind.ymt")/* || entry.Name.EndsWith("vinewood.ymt")*/)
|
|
//{
|
|
// YmtFile ymt = GetFile<YmtFile>(entry);
|
|
//}
|
|
if (entry.Name.EndsWith(".ymf"))// || entry.Name.EndsWith(".ymt"))
|
|
{
|
|
UpdateStatus(string.Format(entry.Path));
|
|
YmfFile ymffile = RpfMan.GetFile<YmfFile>(entry);
|
|
if (ymffile != null)
|
|
{
|
|
AllManifests.Add(ymffile);
|
|
|
|
if (ymffile.Pso != null)
|
|
{ }
|
|
else if (ymffile.Rbf != null)
|
|
{ }
|
|
else if (ymffile.Meta != null)
|
|
{ }
|
|
else
|
|
{ }
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
private void InitGtxds()
|
|
{
|
|
|
|
Dictionary<uint, uint> parentTxds = new Dictionary<uint, uint>();
|
|
|
|
IEnumerable<RpfFile> rpfs = PreloadedMode ? AllRpfs : (IEnumerable<RpfFile>)ActiveMapRpfFiles.Values;
|
|
|
|
foreach (RpfFile file in rpfs)
|
|
{
|
|
if (file.AllEntries == null) continue;
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if ((entry.NameLower == "gtxd.ymt") || (entry.NameLower == "gtxd.meta"))
|
|
{
|
|
GtxdFile ymt = RpfMan.GetFile<GtxdFile>(entry);
|
|
if (ymt.CMapParentTxds != null)
|
|
{
|
|
foreach (var kvp in ymt.CMapParentTxds)
|
|
{
|
|
uint chash = JenkHash.GenHash(kvp.Key.ToLowerInvariant());
|
|
uint phash = JenkHash.GenHash(kvp.Value.ToLowerInvariant());
|
|
if (!parentTxds.ContainsKey(chash))
|
|
{
|
|
parentTxds.Add(chash, phash);
|
|
}
|
|
else
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
string errstr = entry.Path + "\n" + ex.ToString();
|
|
ErrorLog(errstr);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (EnableDlc)
|
|
{
|
|
foreach (var dlcfile in DlcActiveRpfs)
|
|
{
|
|
foreach (RpfEntry entry in dlcfile.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if (entry.NameLower == "gtxd.meta")
|
|
{
|
|
GtxdFile ymt = RpfMan.GetFile<GtxdFile>(entry);
|
|
if (ymt.CMapParentTxds != null)
|
|
{
|
|
foreach (var kvp in ymt.CMapParentTxds)
|
|
{
|
|
uint chash = JenkHash.GenHash(kvp.Key.ToLowerInvariant());
|
|
uint phash = JenkHash.GenHash(kvp.Value.ToLowerInvariant());
|
|
if (!parentTxds.ContainsKey(chash))
|
|
{
|
|
parentTxds.Add(chash, phash);
|
|
}
|
|
else
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
string errstr = entry.Path + "\n" + ex.ToString();
|
|
ErrorLog(errstr);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
textureParents = parentTxds;
|
|
|
|
|
|
|
|
|
|
//ensure global texture dicts:
|
|
YtdFile ytd1 = new YtdFile(GetYtdEntry(JenkHash.GenHash("mapdetail")));
|
|
LoadFile(ytd1);
|
|
AddTextureLookups(ytd1);
|
|
|
|
YtdFile ytd2 = new YtdFile(GetYtdEntry(JenkHash.GenHash("vehshare")));
|
|
LoadFile(ytd2);
|
|
AddTextureLookups(ytd2);
|
|
|
|
YtdFile ytd3 = new YtdFile(GetYtdEntry(JenkHash.GenHash("vehshare_worn")));
|
|
LoadFile(ytd3);
|
|
AddTextureLookups(ytd3);
|
|
|
|
YtdFile ytd4 = new YtdFile(GetYtdEntry(JenkHash.GenHash("vehshare_army")));
|
|
LoadFile(ytd4);
|
|
AddTextureLookups(ytd4);
|
|
|
|
YtdFile ytd5 = new YtdFile(GetYtdEntry(JenkHash.GenHash("vehshare_truck")));
|
|
LoadFile(ytd5);
|
|
AddTextureLookups(ytd5);
|
|
|
|
|
|
}
|
|
|
|
private void InitMapCaches()
|
|
{
|
|
AllCacheFiles = new List<CacheDatFile>();
|
|
YmapHierarchyDict = new Dictionary<uint, MapDataStoreNode>();
|
|
|
|
string cachefilepath = "common.rpf\\data\\gta5_cache_y.dat";
|
|
if (EnableDlc)
|
|
{
|
|
cachefilepath = "update\\update.rpf\\common\\data\\gta5_cache_y.dat";
|
|
}
|
|
|
|
try
|
|
{
|
|
var maincache = RpfMan.GetFile<CacheDatFile>(cachefilepath);
|
|
if (maincache != null)
|
|
{
|
|
AllCacheFiles.Add(maincache);
|
|
foreach (var node in maincache.AllMapNodes)
|
|
{
|
|
if (YmapDict.ContainsKey(node.Name))
|
|
{
|
|
YmapHierarchyDict[node.Name] = node;
|
|
}
|
|
else
|
|
{ } //ymap not found...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorLog(cachefilepath + ": cache not loaded! Possibly an unsupported GTAV installation version.");
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ErrorLog(cachefilepath + ": " + ex.ToString());
|
|
}
|
|
|
|
|
|
if (EnableDlc)
|
|
{
|
|
foreach (string dlccachefile in DlcCacheFileList)
|
|
{
|
|
try
|
|
{
|
|
var dat = RpfMan.GetFile<CacheDatFile>(dlccachefile);
|
|
if (dat == null)
|
|
{ continue; } //update\\x64\\dlcpacks\\mpspecialraces\\dlc.rpf\\x64\\data\\cacheloaderdata_dlc\\mpspecialraces_3336915258_cache_y.dat
|
|
AllCacheFiles.Add(dat);
|
|
foreach (var node in dat.AllMapNodes)
|
|
{
|
|
if (YmapDict.ContainsKey(node.Name))
|
|
{
|
|
YmapHierarchyDict[node.Name] = node;
|
|
}
|
|
else
|
|
{ } //ymap not found...
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
string errstr = dlccachefile + "\n" + ex.ToString();
|
|
ErrorLog(errstr);
|
|
}
|
|
|
|
}
|
|
|
|
//foreach (var dlcfile in DlcActiveRpfs)
|
|
//{
|
|
// foreach (RpfEntry entry in dlcfile.AllEntries)
|
|
// {
|
|
// try
|
|
// {
|
|
// if (entry.NameLower.EndsWith("_cache_y.dat"))
|
|
// {
|
|
// var dat = RpfMan.GetFile<CacheDatFile>(entry);
|
|
// AllCacheFiles.Add(dat);
|
|
// foreach (var node in dat.AllMapNodes)
|
|
// {
|
|
// if (YmapDict.ContainsKey(node.Name))
|
|
// {
|
|
// YmapHierarchyDict[node.Name] = node;
|
|
// }
|
|
// else
|
|
// { } //ymap not found...
|
|
// }
|
|
// }
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// string errstr = entry.Path + "\n" + ex.ToString();
|
|
// ErrorLog(errstr);
|
|
// }
|
|
// }
|
|
//}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//foreach (RpfFile file in RpfMan.BaseRpfs)
|
|
//{
|
|
// if (file.AllEntries == null) continue;
|
|
// foreach (RpfEntry entry in file.AllEntries)
|
|
// {
|
|
// try
|
|
// {
|
|
// //if (entry.Name.EndsWith("_manifest.ymf"))
|
|
// //{
|
|
// // var ymf = GetFile<YmfFile>(entry);
|
|
// //}
|
|
// //else
|
|
// if (entry.NameLower.EndsWith("_cache_y.dat"))
|
|
// {
|
|
// //parse the cache dat files.
|
|
// var dat = RpfMan.GetFile<CacheDatFile>(entry);
|
|
// AllCacheFiles.Add(dat);
|
|
// foreach (var node in dat.AllMapNodes)
|
|
// {
|
|
// YmapHierarchyDict[node.Name] = node;
|
|
// }
|
|
// }
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// string errstr = entry.Path + "\n" + ex.ToString();
|
|
// ErrorLog(errstr);
|
|
// }
|
|
// }
|
|
//}
|
|
}
|
|
|
|
private void InitArchetypeDicts()
|
|
{
|
|
|
|
YtypDict = new Dictionary<uint, YtypFile>();
|
|
|
|
archetypesLoaded = false;
|
|
archetypeDict.Clear();
|
|
|
|
|
|
var rpfs = EnableDlc ? AllRpfs : BaseRpfs;
|
|
|
|
foreach (RpfFile file in rpfs) //RpfMan.BaseRpfs)RpfMan.AllRpfs)//ActiveMapRpfFiles.Values) //
|
|
{
|
|
if (file.AllEntries == null) continue;
|
|
if (!EnableDlc && file.Path.StartsWith("update")) continue;
|
|
|
|
//parse ytyps
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if (entry.NameLower.EndsWith(".ytyp"))
|
|
{
|
|
AddYtypToDictionary(entry);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ErrorLog(entry.Path + ": " + ex.Message);
|
|
}
|
|
}
|
|
}
|
|
|
|
archetypesLoaded = true;
|
|
|
|
}
|
|
|
|
private void AddYtypToDictionary(RpfEntry entry)
|
|
{
|
|
UpdateStatus(string.Format(entry.Path));
|
|
YtypFile ytypfile = RpfMan.GetFile<YtypFile>(entry);
|
|
if (ytypfile == null)
|
|
{
|
|
throw new Exception("Couldn't load ytyp file."); //couldn't load the file for some reason... shouldn't happen..
|
|
}
|
|
if (ytypfile.Meta == null)
|
|
{
|
|
throw new Exception("ytyp file was not in meta format.");
|
|
}
|
|
if (YtypDict.ContainsKey(ytypfile.NameHash))
|
|
{
|
|
//throw new Exception("ytyp " + JenkIndex.GetString(ytypfile.NameHash) + " already loaded.");
|
|
//errorAction(entry.Path + ": ytyp " + JenkIndex.GetString(ytypfile.NameHash) + " already loaded.");
|
|
YtypDict[ytypfile.NameHash] = ytypfile; //override ytyp and continue anyway, could be unique archetypes in here still...
|
|
}
|
|
else
|
|
{
|
|
YtypDict.Add(ytypfile.NameHash, ytypfile);
|
|
}
|
|
|
|
|
|
|
|
if ((ytypfile.AllArchetypes == null) || (ytypfile.AllArchetypes.Length == 0))
|
|
{
|
|
ErrorLog(entry.Path + ": no archetypes found");
|
|
}
|
|
else
|
|
{
|
|
foreach (var arch in ytypfile.AllArchetypes)
|
|
{
|
|
uint hash = arch.Hash;
|
|
if (hash == 0) continue;
|
|
if (archetypeDict.ContainsKey(hash))
|
|
{
|
|
var oldval = archetypeDict[hash]; //replace old archetype?
|
|
}
|
|
archetypeDict[hash] = arch;
|
|
}
|
|
}
|
|
|
|
|
|
////if (ytypfile.AudioEmitters != null)
|
|
////{
|
|
//// foreach (CExtensionDefAudioEmitter emitter in ytypfile.AudioEmitters)
|
|
//// {
|
|
//// //audioind++;
|
|
//// //uint hash = emitter.name;
|
|
//// //if (hash == 0) hash = archetype.name;
|
|
//// //if (hash == 0)
|
|
//// // continue;
|
|
//// //if (AudioArchetypes.ContainsKey(hash))
|
|
//// //{
|
|
//// // var oldval = AudioArchetypes[hash];
|
|
//// // //errorAction(entry.Path + ": " + emitter.ToString() + ": (CTimeArchetypeDef) Already in archetype dict. Was in: " + oldval.ToString());
|
|
//// // //overwrite with new definition? how to tell?
|
|
//// // AudioArchetypes[hash] = new Tuple<YtypFile, int>(ytypfile, audioind);
|
|
//// //}
|
|
//// //else
|
|
//// //{
|
|
//// // AudioArchetypes.Add(hash, new Tuple<YtypFile, int>(ytypfile, audioind));
|
|
//// //}
|
|
//// }
|
|
////}
|
|
|
|
}
|
|
|
|
public void InitStringDicts()
|
|
{
|
|
string langstr = "american_rel"; //todo: make this variable?
|
|
|
|
if (!DoFullStringIndex)
|
|
{
|
|
string globalgxt2path = "x64b.rpf\\data\\lang\\" + langstr + ".rpf\\global.gxt2";
|
|
var globalgxt2 = RpfMan.GetFile<Gxt2File>(globalgxt2path);
|
|
if (globalgxt2 != null)
|
|
{
|
|
for (int i = 0; i < globalgxt2.TextEntries.Length; i++)
|
|
{
|
|
var e = globalgxt2.TextEntries[i];
|
|
GlobalText.Ensure(e.Text, e.Hash);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
|
|
List<Gxt2File> gxt2files = new List<Gxt2File>();
|
|
foreach (var rpf in AllRpfs)
|
|
{
|
|
foreach (var entry in rpf.AllEntries)
|
|
{
|
|
if (entry.NameLower.EndsWith(".gxt2") && entry.Path.Contains(langstr))
|
|
{
|
|
var gxt2 = RpfMan.GetFile<Gxt2File>(entry);
|
|
if (gxt2 != null)
|
|
{
|
|
for (int i = 0; i < gxt2.TextEntries.Length; i++)
|
|
{
|
|
var e = gxt2.TextEntries[i];
|
|
GlobalText.Ensure(e.Text, e.Hash);
|
|
}
|
|
gxt2files.Add(gxt2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
GlobalText.FullIndexBuilt = true;
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var rpf in AllRpfs)
|
|
{
|
|
foreach (var entry in rpf.AllEntries)
|
|
{
|
|
if (entry.NameLower.EndsWith("statssetup.xml"))
|
|
{
|
|
var xml = RpfMan.GetFileXml(entry.Path);
|
|
if (xml == null)
|
|
{ continue; }
|
|
|
|
var statnodes = xml.SelectNodes("StatsSetup/stats/stat");
|
|
|
|
foreach (XmlNode statnode in statnodes)
|
|
{
|
|
if (statnode == null)
|
|
{ continue; }
|
|
var statname = Xml.GetStringAttribute(statnode, "Name");
|
|
if (string.IsNullOrEmpty(statname))
|
|
{ continue; }
|
|
|
|
var statnamel = statname.ToLowerInvariant();
|
|
StatsNames.Ensure(statname);
|
|
StatsNames.Ensure(statnamel);
|
|
|
|
StatsNames.Ensure("sp_" + statnamel);
|
|
StatsNames.Ensure("mp0_" + statnamel);
|
|
StatsNames.Ensure("mp1_" + statnamel);
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StatsNames.FullIndexBuilt = true;
|
|
}
|
|
|
|
|
|
|
|
public bool SetDlcLevel(string dlc, bool enable)
|
|
{
|
|
bool dlcchange = (dlc != SelectedDlc);
|
|
bool enablechange = (enable != EnableDlc);
|
|
bool change = (dlcchange && enable) || enablechange;
|
|
|
|
if (change)
|
|
{
|
|
lock (updateSyncRoot)
|
|
{
|
|
lock (textureSyncRoot)
|
|
{
|
|
SelectedDlc = dlc;
|
|
EnableDlc = enable;
|
|
|
|
//mainCache.Clear();
|
|
ClearCachedMaps();
|
|
|
|
InitDlc();
|
|
}
|
|
}
|
|
}
|
|
|
|
return change;
|
|
}
|
|
|
|
public bool SetModsEnabled(bool enable)
|
|
{
|
|
bool change = (enable != EnableMods);
|
|
|
|
if (change)
|
|
{
|
|
lock (updateSyncRoot)
|
|
{
|
|
lock (textureSyncRoot)
|
|
{
|
|
EnableMods = enable;
|
|
RpfMan.EnableMods = enable;
|
|
|
|
mainCache.Clear();
|
|
|
|
InitGlobal();
|
|
InitDlc();
|
|
}
|
|
}
|
|
}
|
|
|
|
return change;
|
|
}
|
|
|
|
|
|
private void ClearCachedMaps()
|
|
{
|
|
if (AllYmapsDict != null)
|
|
{
|
|
foreach (var ymap in AllYmapsDict.Values)
|
|
{
|
|
GameFileCacheKey k = new GameFileCacheKey(ymap.ShortNameHash, GameFileType.Ymap);
|
|
mainCache.Remove(k);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private void TryLoadEnqueue(GameFile gf)
|
|
{
|
|
if (((!gf.Loaded)) && (requestQueue.Count < 5))//(!gf.LoadQueued) &&
|
|
{
|
|
requestQueue.Push(gf);
|
|
gf.LoadQueued = true;
|
|
}
|
|
}
|
|
|
|
|
|
public Archetype GetArchetype(uint hash)
|
|
{
|
|
if (!archetypesLoaded) return null;
|
|
Archetype arch = null;
|
|
archetypeDict.TryGetValue(hash, out arch);
|
|
return arch;
|
|
}
|
|
public MapDataStoreNode GetMapNode(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
MapDataStoreNode node = null;
|
|
YmapHierarchyDict.TryGetValue(hash, out node);
|
|
return node;
|
|
}
|
|
|
|
public YdrFile GetYdr(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ydr);
|
|
YdrFile ydr = mainCache.TryGet(key) as YdrFile;
|
|
if (ydr == null)
|
|
{
|
|
var e = GetYdrEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ydr = new YdrFile(e);
|
|
if (mainCache.TryAdd(key, ydr))
|
|
{
|
|
TryLoadEnqueue(ydr);
|
|
}
|
|
else
|
|
{
|
|
ydr.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load drawable: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Drawable not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ydr.Loaded)
|
|
{
|
|
TryLoadEnqueue(ydr);
|
|
}
|
|
return ydr;
|
|
}
|
|
}
|
|
public YddFile GetYdd(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ydd);
|
|
YddFile ydd = mainCache.TryGet(key) as YddFile;
|
|
if (ydd == null)
|
|
{
|
|
var e = GetYddEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ydd = new YddFile(e);
|
|
if (mainCache.TryAdd(key, ydd))
|
|
{
|
|
TryLoadEnqueue(ydd);
|
|
}
|
|
else
|
|
{
|
|
ydd.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load drawable dictionary: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Drawable dictionary not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if(!ydd.Loaded)
|
|
{
|
|
TryLoadEnqueue(ydd);
|
|
}
|
|
return ydd;
|
|
}
|
|
}
|
|
public YtdFile GetYtd(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ytd);
|
|
YtdFile ytd = mainCache.TryGet(key) as YtdFile;
|
|
if (ytd == null)
|
|
{
|
|
var e = GetYtdEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ytd = new YtdFile(e);
|
|
if (mainCache.TryAdd(key, ytd))
|
|
{
|
|
TryLoadEnqueue(ytd);
|
|
}
|
|
else
|
|
{
|
|
ytd.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load texture dictionary: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Texture dictionary not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ytd.Loaded)
|
|
{
|
|
TryLoadEnqueue(ytd);
|
|
}
|
|
return ytd;
|
|
}
|
|
}
|
|
public YmapFile GetYmap(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ymap);
|
|
YmapFile ymap = mainCache.TryGet(key) as YmapFile;
|
|
if (ymap == null)
|
|
{
|
|
var e = GetYmapEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ymap = new YmapFile(e);
|
|
if (mainCache.TryAdd(key, ymap))
|
|
{
|
|
TryLoadEnqueue(ymap);
|
|
}
|
|
else
|
|
{
|
|
ymap.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load ymap: " + JenkIndex.GetString(hash));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Ymap not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ymap.Loaded)
|
|
{
|
|
TryLoadEnqueue(ymap);
|
|
}
|
|
return ymap;
|
|
}
|
|
}
|
|
public YftFile GetYft(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Yft);
|
|
YftFile yft = mainCache.TryGet(key) as YftFile;
|
|
if (yft == null)
|
|
{
|
|
var e = GetYftEntry(hash);
|
|
if (e != null)
|
|
{
|
|
yft = new YftFile(e);
|
|
if (mainCache.TryAdd(key, yft))
|
|
{
|
|
TryLoadEnqueue(yft);
|
|
}
|
|
else
|
|
{
|
|
yft.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load yft: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Yft not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!yft.Loaded)
|
|
{
|
|
TryLoadEnqueue(yft);
|
|
}
|
|
return yft;
|
|
}
|
|
}
|
|
public YbnFile GetYbn(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ybn);
|
|
YbnFile ybn = mainCache.TryGet(key) as YbnFile;
|
|
if (ybn == null)
|
|
{
|
|
var e = GetYbnEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ybn = new YbnFile(e);
|
|
if (mainCache.TryAdd(key, ybn))
|
|
{
|
|
TryLoadEnqueue(ybn);
|
|
}
|
|
else
|
|
{
|
|
ybn.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load ybn: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Ybn not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ybn.Loaded)
|
|
{
|
|
TryLoadEnqueue(ybn);
|
|
}
|
|
return ybn;
|
|
}
|
|
}
|
|
public YcdFile GetYcd(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ycd);
|
|
YcdFile ycd = mainCache.TryGet(key) as YcdFile;
|
|
if (ycd == null)
|
|
{
|
|
var e = GetYcdEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ycd = new YcdFile(e);
|
|
if (mainCache.TryAdd(key, ycd))
|
|
{
|
|
TryLoadEnqueue(ycd);
|
|
}
|
|
else
|
|
{
|
|
ycd.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load ycd: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Ycd not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ycd.Loaded)
|
|
{
|
|
TryLoadEnqueue(ycd);
|
|
}
|
|
return ycd;
|
|
}
|
|
}
|
|
public YnvFile GetYnv(uint hash)
|
|
{
|
|
if (!IsInited) return null;
|
|
lock (requestSyncRoot)
|
|
{
|
|
var key = new GameFileCacheKey(hash, GameFileType.Ynv);
|
|
YnvFile ynv = mainCache.TryGet(key) as YnvFile;
|
|
if (ynv == null)
|
|
{
|
|
var e = GetYnvEntry(hash);
|
|
if (e != null)
|
|
{
|
|
ynv = new YnvFile(e);
|
|
if (mainCache.TryAdd(key, ynv))
|
|
{
|
|
TryLoadEnqueue(ynv);
|
|
}
|
|
else
|
|
{
|
|
ynv.LoadQueued = false;
|
|
//ErrorLog("Out of cache space - couldn't load ycd: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//ErrorLog("Ycd not found: " + JenkIndex.GetString(hash)); //too spammy...
|
|
}
|
|
}
|
|
else if (!ynv.Loaded)
|
|
{
|
|
TryLoadEnqueue(ynv);
|
|
}
|
|
return ynv;
|
|
}
|
|
}
|
|
|
|
|
|
public RpfFileEntry GetYdrEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YdrDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYddEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YddDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYtdEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YtdDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYmapEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
if (!YmapDict.TryGetValue(hash, out entry))
|
|
{
|
|
AllYmapsDict.TryGetValue(hash, out entry);
|
|
}
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYftEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YftDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYbnEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YbnDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYcdEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YcdDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
public RpfFileEntry GetYnvEntry(uint hash)
|
|
{
|
|
RpfFileEntry entry;
|
|
YnvDict.TryGetValue(hash, out entry);
|
|
return entry;
|
|
}
|
|
|
|
|
|
|
|
public bool LoadFile<T>(T file) where T:GameFile,PackedFile
|
|
{
|
|
if (file == null) return false;
|
|
RpfFileEntry entry = file.RpfFileEntry;
|
|
if (entry != null)
|
|
{
|
|
return RpfMan.LoadFile(file, entry);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
public void InitYmapEntityArchetypes(YmapFile file)
|
|
{
|
|
if (file == null) return;
|
|
if (file.AllEntities != null)
|
|
{
|
|
for (int i = 0; i < file.AllEntities.Length; i++)
|
|
{
|
|
var ent = file.AllEntities[i];
|
|
var arch = GetArchetype(ent.CEntityDef.archetypeName);
|
|
ent.SetArchetype(arch);
|
|
|
|
if (ent.MloInstance != null)
|
|
{
|
|
var entities = ent.MloInstance.Entities;
|
|
if (entities != null)
|
|
{
|
|
for (int j = 0; j < entities.Length; j++)
|
|
{
|
|
var ient = entities[j];
|
|
var iarch = GetArchetype(ient.CEntityDef.archetypeName);
|
|
ient.SetArchetype(iarch);
|
|
if (iarch == null)
|
|
{ } //can't find archetype - des stuff eg {des_prologue_door}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
if (file.GrassInstanceBatches != null)
|
|
{
|
|
for (int i = 0; i < file.GrassInstanceBatches.Length; i++)
|
|
{
|
|
var batch = file.GrassInstanceBatches[i];
|
|
batch.Archetype = GetArchetype(batch.Batch.archetypeName);
|
|
}
|
|
}
|
|
|
|
if (file.TimeCycleModifiers != null)
|
|
{
|
|
for (int i = 0; i < file.TimeCycleModifiers.Length; i++)
|
|
{
|
|
var tcm = file.TimeCycleModifiers[i];
|
|
World.TimecycleMod wtcm;
|
|
if (TimeCycleModsDict.TryGetValue(tcm.CTimeCycleModifier.name.Hash, out wtcm))
|
|
{
|
|
tcm.TimeCycleModData = wtcm;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool ContentThreadProc()
|
|
{
|
|
Monitor.Enter(updateSyncRoot);
|
|
|
|
GameFile req;
|
|
//bool loadedsomething = false;
|
|
|
|
int itemcount = 0;
|
|
|
|
while (requestQueue.TryPop(out req) && (itemcount < MaxItemsPerLoop))
|
|
{
|
|
//process content requests.
|
|
if (req.Loaded)
|
|
continue; //it's already loaded... (somehow)
|
|
|
|
if ((req.LastUseTime - DateTime.Now).TotalSeconds > 0.5)
|
|
continue; //hasn't been requested lately..! ignore, will try again later if necessary
|
|
|
|
itemcount++;
|
|
//if (!loadedsomething)
|
|
//{
|
|
//UpdateStatus("Loading " + req.RpfFileEntry.Name + "...");
|
|
//}
|
|
|
|
switch (req.Type)
|
|
{
|
|
case GameFileType.Ydr:
|
|
req.Loaded = LoadFile(req as YdrFile);
|
|
break;
|
|
case GameFileType.Ydd:
|
|
req.Loaded = LoadFile(req as YddFile);
|
|
break;
|
|
case GameFileType.Ytd:
|
|
req.Loaded = LoadFile(req as YtdFile);
|
|
if (req.Loaded) AddTextureLookups(req as YtdFile);
|
|
break;
|
|
case GameFileType.Ymap:
|
|
req.Loaded = LoadFile(req as YmapFile);
|
|
if (req.Loaded) InitYmapEntityArchetypes(req as YmapFile);
|
|
break;
|
|
case GameFileType.Yft:
|
|
req.Loaded = LoadFile(req as YftFile);
|
|
break;
|
|
case GameFileType.Ybn:
|
|
req.Loaded = LoadFile(req as YbnFile);
|
|
break;
|
|
case GameFileType.Ycd:
|
|
req.Loaded = LoadFile(req as YcdFile);
|
|
break;
|
|
case GameFileType.Ynv:
|
|
req.Loaded = LoadFile(req as YnvFile);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
string str = (req.Loaded ? "Loaded " : "Error loading ") + req.ToString();
|
|
//string str = string.Format("{0}: {1}: {2}", requestQueue.Count, (req.Loaded ? "Loaded" : "Error loading"), req);
|
|
|
|
UpdateStatus(str);
|
|
//ErrorLog(str);
|
|
if (!req.Loaded)
|
|
{
|
|
ErrorLog("Error loading " + req.ToString());
|
|
}
|
|
|
|
|
|
//loadedsomething = true;
|
|
}
|
|
|
|
//whether or not we need another content thread loop
|
|
bool itemsStillPending = (itemcount >= MaxItemsPerLoop);
|
|
|
|
|
|
Monitor.Exit(updateSyncRoot);
|
|
|
|
|
|
return itemsStillPending;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void AddTextureLookups(YtdFile ytd)
|
|
{
|
|
if (ytd == null) return;
|
|
if (ytd.TextureDict == null) return;
|
|
if (ytd.TextureDict.TextureNameHashes == null) return;
|
|
|
|
lock (textureSyncRoot)
|
|
{
|
|
foreach (uint hash in ytd.TextureDict.TextureNameHashes)
|
|
{
|
|
textureLookup[hash] = ytd.RpfFileEntry;
|
|
}
|
|
|
|
}
|
|
}
|
|
public YtdFile TryGetTextureDictForTexture(uint hash)
|
|
{
|
|
lock (textureSyncRoot)
|
|
{
|
|
RpfFileEntry e;
|
|
if (textureLookup.TryGetValue(hash, out e))
|
|
{
|
|
return GetYtd(e.ShortNameHash);
|
|
}
|
|
|
|
}
|
|
return null;
|
|
}
|
|
public YtdFile TryGetParentYtd(uint hash)
|
|
{
|
|
uint phash;
|
|
if(textureParents.TryGetValue(hash, out phash))
|
|
{
|
|
return GetYtd(phash);
|
|
}
|
|
return null;
|
|
}
|
|
public uint TryGetParentYtdHash(uint hash)
|
|
{
|
|
uint phash = 0;
|
|
textureParents.TryGetValue(hash, out phash);
|
|
return phash;
|
|
}
|
|
|
|
public Texture TryFindTextureInParent(uint texhash, uint txdhash)
|
|
{
|
|
Texture tex = null;
|
|
|
|
var ytd = TryGetParentYtd(txdhash);
|
|
while ((ytd != null) && (ytd.Loaded) && (ytd.TextureDict != null) && (tex == null))
|
|
{
|
|
tex = ytd.TextureDict.Lookup(texhash);
|
|
if (tex == null)
|
|
{
|
|
ytd = TryGetParentYtd(ytd.Key.Hash);
|
|
}
|
|
}
|
|
|
|
return tex;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public DrawableBase TryGetDrawable(Archetype arche)
|
|
{
|
|
if (arche == null) return null;
|
|
uint drawhash = arche.Hash;
|
|
DrawableBase drawable = null;
|
|
if ((arche.DrawableDict != 0))// && (arche.DrawableDict != arche.Hash))
|
|
{
|
|
//try get drawable from ydd...
|
|
YddFile ydd = GetYdd(arche.DrawableDict);
|
|
if (ydd != null)
|
|
{
|
|
if (ydd.Loaded && (ydd.Dict != null))
|
|
{
|
|
Drawable d;
|
|
ydd.Dict.TryGetValue(drawhash, out d); //can't out to base class?
|
|
drawable = d;
|
|
if (drawable == null)
|
|
{
|
|
return null; //drawable wasn't in dict!!
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return null; //ydd not loaded yet, or has no dict
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//return null; //couldn't find drawable dict... quit now?
|
|
}
|
|
}
|
|
if (drawable == null)
|
|
{
|
|
//try get drawable from ydr.
|
|
YdrFile ydr = GetYdr(drawhash);
|
|
if (ydr != null)
|
|
{
|
|
if (ydr.Loaded)
|
|
{
|
|
drawable = ydr.Drawable;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
YftFile yft = GetYft(drawhash);
|
|
if (yft != null)
|
|
{
|
|
if (yft.Loaded)
|
|
{
|
|
if (yft.Fragment != null)
|
|
{
|
|
drawable = yft.Fragment.Drawable;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return drawable;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private string[] GetExcludePaths()
|
|
{
|
|
string[] exclpaths = Settings.Default.ExcludeFolders.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
|
|
if (exclpaths.Length > 0)
|
|
{
|
|
for (int i = 0; i < exclpaths.Length; i++)
|
|
{
|
|
exclpaths[i] = exclpaths[i].ToLowerInvariant();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
exclpaths = null;
|
|
}
|
|
return exclpaths;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void TestYcds()
|
|
{
|
|
foreach (RpfFile file in AllRpfs)
|
|
{
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if (entry.NameLower.EndsWith(".ycd"))
|
|
{
|
|
UpdateStatus(string.Format(entry.Path));
|
|
YcdFile ycdfile = RpfMan.GetFile<YcdFile>(entry);
|
|
if ((ycdfile != null))// && (ycdfile.Meta != null))
|
|
{ }
|
|
}
|
|
//if (entry.NameLower.EndsWith(".awc")) //awcs can also contain clip dicts..
|
|
//{
|
|
// UpdateStatus(string.Format(entry.Path));
|
|
// AwcFile awcfile = RpfMan.GetFile<AwcFile>(entry);
|
|
// if ((awcfile != null))
|
|
// { }
|
|
//}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
UpdateStatus("Error! " + ex.ToString());
|
|
}
|
|
}
|
|
}
|
|
|
|
//var sd = Sequence.SeqDict;
|
|
//if (sd != null)
|
|
//{
|
|
//}
|
|
}
|
|
public void TestYmaps()
|
|
{
|
|
foreach (RpfFile file in AllRpfs)
|
|
{
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if (entry.NameLower.EndsWith(".ymap"))
|
|
{
|
|
UpdateStatus(string.Format(entry.Path));
|
|
YmapFile ymapfile = RpfMan.GetFile<YmapFile>(entry);
|
|
if ((ymapfile != null))// && (ymapfile.Meta != null))
|
|
{ }
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
UpdateStatus("Error! " + ex.ToString());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
public void TestPlacements()
|
|
{
|
|
//int totplacements = 0;
|
|
//int tottimedplacements = 0;
|
|
//int totaudioplacements = 0;
|
|
//StringBuilder sbtest = new StringBuilder();
|
|
//StringBuilder sbterr = new StringBuilder();
|
|
//sbtest.AppendLine("X, Y, Z, name, assetName, drawableDictionary, textureDictionary, ymap");
|
|
//foreach (RpfFile file in RpfMan.AllRpfs)
|
|
//{
|
|
// foreach (RpfEntry entry in file.AllEntries)
|
|
// {
|
|
// try
|
|
// {
|
|
// if (entry.NameLower.EndsWith(".ymap"))
|
|
// {
|
|
// UpdateStatus(string.Format(entry.Path));
|
|
// YmapFile ymapfile = RpfMan.GetFile<YmapFile>(entry);
|
|
// if ((ymapfile != null))// && (ymapfile.Meta != null))
|
|
// {
|
|
// //if (ymapfile.CMapData.parent == 0) //root ymap output
|
|
// //{
|
|
// // sbtest.AppendLine(JenkIndex.GetString(ymapfile.CMapData.name) + ": " + entry.Path);
|
|
// //}
|
|
// if (ymapfile.CEntityDefs != null)
|
|
// {
|
|
// for (int n = 0; n < ymapfile.CEntityDefs.Length; n++)
|
|
// {
|
|
// //find ytyp...
|
|
// var entdef = ymapfile.CEntityDefs[n];
|
|
// var pos = entdef.position;
|
|
// bool istimed = false;
|
|
// Tuple<YtypFile, int> archetyp;
|
|
// if (!BaseArchetypes.TryGetValue(entdef.archetypeName, out archetyp))
|
|
// {
|
|
// sbterr.AppendLine("Couldn't find ytyp for " + entdef.ToString());
|
|
// }
|
|
// else
|
|
// {
|
|
// int ymapbasecount = (archetyp.Item1.CBaseArchetypeDefs != null) ? archetyp.Item1.CBaseArchetypeDefs.Length : 0;
|
|
// int baseoffset = archetyp.Item2 - ymapbasecount;
|
|
// if (baseoffset >= 0)
|
|
// {
|
|
// if ((archetyp.Item1.CTimeArchetypeDefs == null) || (baseoffset > archetyp.Item1.CTimeArchetypeDefs.Length))
|
|
// {
|
|
// sbterr.AppendLine("Couldn't lookup CTimeArchetypeDef... " + archetyp.ToString());
|
|
// continue;
|
|
// }
|
|
|
|
// istimed = true;
|
|
|
|
// //it's a CTimeArchetypeDef...
|
|
// CTimeArchetypeDef ctad = archetyp.Item1.CTimeArchetypeDefs[baseoffset];
|
|
|
|
// //if (ctad.ToString().Contains("spider"))
|
|
// //{
|
|
// //}
|
|
// //sbtest.AppendFormat("{0}, {1}, {2}, {3}, {4}", pos.X, pos.Y, pos.Z, ctad.ToString(), entry.Name);
|
|
// //sbtest.AppendLine();
|
|
|
|
// tottimedplacements++;
|
|
// }
|
|
// totplacements++;
|
|
// }
|
|
|
|
// Tuple<YtypFile, int> audiotyp;
|
|
// if (AudioArchetypes.TryGetValue(entdef.archetypeName, out audiotyp))
|
|
// {
|
|
// if (istimed)
|
|
// {
|
|
// }
|
|
// if (!BaseArchetypes.TryGetValue(entdef.archetypeName, out archetyp))
|
|
// {
|
|
// sbterr.AppendLine("Couldn't find ytyp for " + entdef.ToString());
|
|
// }
|
|
// if (audiotyp.Item1 != archetyp.Item1)
|
|
// {
|
|
// }
|
|
|
|
// CBaseArchetypeDef cbad = archetyp.Item1.CBaseArchetypeDefs[archetyp.Item2];
|
|
// CExtensionDefAudioEmitter emitr = audiotyp.Item1.AudioEmitters[audiotyp.Item2];
|
|
|
|
// if (emitr.name != cbad.name)
|
|
// {
|
|
// }
|
|
|
|
// string hashtest = JenkIndex.GetString(emitr.effectHash);
|
|
|
|
// sbtest.AppendFormat("{0}, {1}, {2}, {3}, {4}, {5}", pos.X, pos.Y, pos.Z, cbad.ToString(), entry.Name, hashtest);
|
|
// sbtest.AppendLine();
|
|
|
|
// totaudioplacements++;
|
|
// }
|
|
|
|
// }
|
|
// }
|
|
|
|
// //if (ymapfile.TimeCycleModifiers != null)
|
|
// //{
|
|
// // for (int n = 0; n < ymapfile.TimeCycleModifiers.Length; n++)
|
|
// // {
|
|
// // var tcmod = ymapfile.TimeCycleModifiers[n];
|
|
// // Tuple<YtypFile, int> archetyp;
|
|
// // if (BaseArchetypes.TryGetValue(tcmod.name, out archetyp))
|
|
// // {
|
|
// // }
|
|
// // else
|
|
// // {
|
|
// // }
|
|
// // }
|
|
// //}
|
|
// }
|
|
// }
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// sbterr.AppendLine(entry.Path + ": " + ex.ToString());
|
|
// }
|
|
// }
|
|
//}
|
|
|
|
//UpdateStatus("Ymap scan finished.");
|
|
|
|
//sbtest.AppendLine();
|
|
//sbtest.AppendLine(totplacements.ToString() + " total CEntityDef placements parsed");
|
|
//sbtest.AppendLine(tottimedplacements.ToString() + " total CTimeArchetypeDef placements");
|
|
//sbtest.AppendLine(totaudioplacements.ToString() + " total CExtensionDefAudioEmitter placements");
|
|
|
|
//string teststr = sbtest.ToString();
|
|
//string testerr = sbterr.ToString();
|
|
|
|
//return;
|
|
}
|
|
public void TestDrawables()
|
|
{
|
|
|
|
|
|
DateTime starttime = DateTime.Now;
|
|
|
|
bool doydr = false;
|
|
bool doydd = false;
|
|
bool doyft = true;
|
|
|
|
List<string> errs = new List<string>();
|
|
Dictionary<ulong, VertexDeclaration> vdecls = new Dictionary<ulong, VertexDeclaration>();
|
|
Dictionary<ulong, int> vdecluse = new Dictionary<ulong, int>();
|
|
int drawablecount = 0;
|
|
foreach (RpfFile file in AllRpfs)
|
|
{
|
|
foreach (RpfEntry entry in file.AllEntries)
|
|
{
|
|
try
|
|
{
|
|
if (doydr && entry.NameLower.EndsWith(".ydr"))
|
|
{
|
|
UpdateStatus(entry.Path);
|
|
YdrFile ydr = RpfMan.GetFile<YdrFile>(entry);
|
|
|
|
if (ydr == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read file");
|
|
continue;
|
|
}
|
|
if (ydr.Drawable == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read drawable data");
|
|
continue;
|
|
}
|
|
drawablecount++;
|
|
foreach (var kvp in ydr.Drawable.VertexDecls)
|
|
{
|
|
if (!vdecls.ContainsKey(kvp.Key))
|
|
{
|
|
vdecls.Add(kvp.Key, kvp.Value);
|
|
vdecluse.Add(kvp.Key, 1);
|
|
}
|
|
else
|
|
{
|
|
vdecluse[kvp.Key]++;
|
|
}
|
|
}
|
|
}
|
|
else if (doydd & entry.NameLower.EndsWith(".ydd"))
|
|
{
|
|
UpdateStatus(entry.Path);
|
|
YddFile ydd = RpfMan.GetFile<YddFile>(entry);
|
|
|
|
if (ydd == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read file");
|
|
continue;
|
|
}
|
|
if (ydd.Dict == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read drawable dictionary data");
|
|
continue;
|
|
}
|
|
foreach (var drawable in ydd.Dict.Values)
|
|
{
|
|
drawablecount++;
|
|
foreach (var kvp in drawable.VertexDecls)
|
|
{
|
|
if (!vdecls.ContainsKey(kvp.Key))
|
|
{
|
|
vdecls.Add(kvp.Key, kvp.Value);
|
|
vdecluse.Add(kvp.Key, 1);
|
|
}
|
|
else
|
|
{
|
|
vdecluse[kvp.Key]++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (doyft && entry.NameLower.EndsWith(".yft"))
|
|
{
|
|
UpdateStatus(entry.Path);
|
|
YftFile yft = RpfMan.GetFile<YftFile>(entry);
|
|
|
|
if (yft == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read file");
|
|
continue;
|
|
}
|
|
if (yft.Fragment == null)
|
|
{
|
|
errs.Add(entry.Path + ": Couldn't read fragment data");
|
|
continue;
|
|
}
|
|
if (yft.Fragment.Drawable != null)
|
|
{
|
|
drawablecount++;
|
|
foreach (var kvp in yft.Fragment.Drawable.VertexDecls)
|
|
{
|
|
if (!vdecls.ContainsKey(kvp.Key))
|
|
{
|
|
vdecls.Add(kvp.Key, kvp.Value);
|
|
vdecluse.Add(kvp.Key, 1);
|
|
}
|
|
else
|
|
{
|
|
vdecluse[kvp.Key]++;
|
|
}
|
|
}
|
|
}
|
|
if ((yft.Fragment.Clothes != null) && (yft.Fragment.Clothes.data_items != null))
|
|
{
|
|
foreach (var cloth in yft.Fragment.Clothes.data_items)
|
|
{
|
|
drawablecount++;
|
|
foreach (var kvp in cloth.Drawable.VertexDecls)
|
|
{
|
|
if (!vdecls.ContainsKey(kvp.Key))
|
|
{
|
|
vdecls.Add(kvp.Key, kvp.Value);
|
|
vdecluse.Add(kvp.Key, 1);
|
|
}
|
|
else
|
|
{
|
|
vdecluse[kvp.Key]++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ((yft.Fragment.Unknown_28h_Data != null) && (yft.Fragment.Unknown_28h_Data.data_items != null))
|
|
{
|
|
foreach (var drawable in yft.Fragment.Unknown_28h_Data.data_items)
|
|
{
|
|
drawablecount++;
|
|
foreach (var kvp in drawable.VertexDecls)
|
|
{
|
|
if (!vdecls.ContainsKey(kvp.Key))
|
|
{
|
|
vdecls.Add(kvp.Key, kvp.Value);
|
|
vdecluse.Add(kvp.Key, 1);
|
|
}
|
|
else
|
|
{
|
|
vdecluse[kvp.Key]++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
errs.Add(entry.Path + ": " + ex.ToString());
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
string errstr = string.Join("\r\n", errs);
|
|
|
|
|
|
|
|
//build vertex types code string
|
|
errs.Clear();
|
|
StringBuilder sbverts = new StringBuilder();
|
|
foreach (var kvp in vdecls)
|
|
{
|
|
var vd = kvp.Value;
|
|
int usage = vdecluse[kvp.Key];
|
|
sbverts.AppendFormat("public struct VertexType{0} //id: {1}, stride: {2}, flags: {3}, types: {4}, refs: {5}", vd.Flags, kvp.Key, vd.Stride, vd.Flags, vd.Types, usage);
|
|
sbverts.AppendLine();
|
|
sbverts.AppendLine("{");
|
|
uint compid = 1;
|
|
for (int i = 0; i < 16; i++)
|
|
{
|
|
if (((vd.Flags >> i) & 1) == 1)
|
|
{
|
|
string typestr = "Unknown";
|
|
uint type = (uint)((vd.Types >> (4 * i)) & 0xF);
|
|
switch (type)
|
|
{
|
|
case 0: typestr = "ushort"; break;// Data[i] = new ushort[1 * count]; break;
|
|
case 1: typestr = "ushort2"; break;// Data[i] = new ushort[2 * count]; break;
|
|
case 2: typestr = "ushort3"; break;// Data[i] = new ushort[3 * count]; break;
|
|
case 3: typestr = "ushort4"; break;// Data[i] = new ushort[4 * count]; break;
|
|
case 4: typestr = "float"; break;// Data[i] = new float[1 * count]; break;
|
|
case 5: typestr = "Vector2"; break;// Data[i] = new float[2 * count]; break;
|
|
case 6: typestr = "Vector3"; break;// Data[i] = new float[3 * count]; break;
|
|
case 7: typestr = "Vector4"; break;// Data[i] = new float[4 * count]; break;
|
|
case 8: typestr = "uint"; break;// Data[i] = new uint[count]; break;
|
|
case 9: typestr = "uint"; break;// Data[i] = new uint[count]; break;
|
|
case 10: typestr = "uint"; break;// Data[i] = new uint[count]; break;
|
|
default:
|
|
break;
|
|
}
|
|
sbverts.AppendLine(" public " + typestr + " Component" + compid.ToString() + ";");
|
|
compid++;
|
|
}
|
|
|
|
}
|
|
sbverts.AppendLine("}");
|
|
sbverts.AppendLine();
|
|
}
|
|
|
|
string vertstr = sbverts.ToString();
|
|
string verrstr = string.Join("\r\n", errs);
|
|
|
|
UpdateStatus((DateTime.Now - starttime).ToString() + " elapsed, " + drawablecount.ToString() + " drawables, " + errs.Count.ToString() + " errors.");
|
|
|
|
}
|
|
public void GetArchetypeTimesList()
|
|
{
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.AppendLine("Name,AssetName,12am,1am,2am,3am,4am,5am,6am,7am,8am,9am,10am,11am,12pm,1pm,2pm,3pm,4pm,5pm,6pm,7pm,8pm,9pm,10pm,11pm,+12am,+1am,+2am,+3am,+4am,+5am,+6am,+7am");
|
|
foreach (var ytyp in YtypDict.Values)
|
|
{
|
|
foreach (var arch in ytyp.AllArchetypes)
|
|
{
|
|
if (arch.Type == MetaName.CTimeArchetypeDef)
|
|
{
|
|
var ta = arch as TimeArchetype;
|
|
var t = ta.TimeFlags;
|
|
sb.Append(arch.Name);
|
|
sb.Append(",");
|
|
sb.Append(arch.AssetName);
|
|
sb.Append(",");
|
|
for (int i = 0; i < 32; i++)
|
|
{
|
|
bool v = ((t >> i) & 1) == 1;
|
|
sb.Append(v ? "1" : "0");
|
|
sb.Append(",");
|
|
}
|
|
sb.AppendLine();
|
|
}
|
|
}
|
|
}
|
|
|
|
var csv = sb.ToString();
|
|
|
|
|
|
|
|
}
|
|
public void DecodeRelFiles()
|
|
{
|
|
UpdateStatus("Decoding REL files");
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
StringBuilder sbh = new StringBuilder();
|
|
|
|
foreach (RpfFile rpf in RpfMan.AllRpfs)
|
|
{
|
|
foreach (RpfEntry entry in rpf.AllEntries)
|
|
{
|
|
RpfFileEntry rfe = entry as RpfFileEntry;
|
|
if (rfe == null) continue;
|
|
|
|
if (rfe.NameLower.EndsWith(".rel"))
|
|
{
|
|
RelFile rel = new RelFile(rfe);
|
|
RpfMan.LoadFile(rel, rfe);
|
|
|
|
if (rel.NameTable == null)
|
|
{
|
|
sb.AppendLine(rfe.Path + ": no strings found");
|
|
}
|
|
else
|
|
{
|
|
sb.AppendLine(rfe.Path + ": " + rel.NameTable.Length.ToString() + " strings found:");
|
|
foreach (string str in rel.NameTable)
|
|
{
|
|
sb.AppendLine(str);
|
|
}
|
|
}
|
|
if (rel.IndexStrings != null)
|
|
{
|
|
sb.AppendLine("Config-specific:");
|
|
foreach (var unk in rel.IndexStrings)
|
|
{
|
|
sb.AppendLine(unk.ToString());
|
|
}
|
|
}
|
|
if (rel.IndexHashes != null)
|
|
{
|
|
sbh.AppendLine(rfe.Path + ": " + rel.IndexHashes.Length.ToString() + " entries:");
|
|
foreach (var unk in rel.IndexHashes)
|
|
{
|
|
sbh.Append(unk.Name.Hash.ToString("X8"));
|
|
string strval;
|
|
if (JenkIndex.Index.TryGetValue(unk.Name, out strval))
|
|
{
|
|
sbh.Append(" - ");
|
|
sbh.Append(strval);
|
|
}
|
|
sbh.AppendLine();
|
|
//sbh.AppendLine(unk.ToString());
|
|
}
|
|
sbh.AppendLine();
|
|
}
|
|
if (rel.Unk05Hashes != null)
|
|
{
|
|
sbh.AppendLine(rfe.Path + ": " + rel.Unk05Hashes.Length.ToString() + " Hashes1:");
|
|
foreach (var unk in rel.Unk05Hashes)
|
|
{
|
|
sbh.Append(unk.Hash.ToString("X8"));
|
|
string strval;
|
|
if (JenkIndex.Index.TryGetValue(unk, out strval))
|
|
{
|
|
sbh.Append(" - ");
|
|
sbh.Append(strval);
|
|
}
|
|
sbh.AppendLine();
|
|
}
|
|
sbh.AppendLine();
|
|
}
|
|
if (rel.ContainerHashes != null)
|
|
{
|
|
sbh.AppendLine(rfe.Path + ": " + rel.ContainerHashes.Length.ToString() + " Hashes2:");
|
|
foreach (var unk in rel.ContainerHashes)
|
|
{
|
|
sbh.Append(unk.Hash.ToString("X8"));
|
|
string strval;
|
|
if (JenkIndex.Index.TryGetValue(unk, out strval))
|
|
{
|
|
sbh.Append(" - ");
|
|
sbh.Append(strval);
|
|
}
|
|
sbh.AppendLine();
|
|
}
|
|
sbh.AppendLine();
|
|
}
|
|
|
|
sb.AppendLine();
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
int ctot = Dat151RelData.TotCount;
|
|
StringBuilder sbp = new StringBuilder();
|
|
foreach (string s in Dat151RelData.FoundCoords)
|
|
{
|
|
sbp.AppendLine(s);
|
|
}
|
|
string posz = sbp.ToString();
|
|
|
|
string relstrs = sb.ToString();
|
|
string hashstrs = sbh.ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public struct GameFileCacheKey
|
|
{
|
|
public uint Hash { get; set; }
|
|
public GameFileType Type { get; set; }
|
|
|
|
public GameFileCacheKey(uint hash, GameFileType type)
|
|
{
|
|
Hash = hash;
|
|
Type = type;
|
|
}
|
|
}
|
|
|
|
|
|
}
|