forked from whoward69/Sims2Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepositoryWizardCache.cs
458 lines (373 loc) · 15 KB
/
RepositoryWizardCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
* Repository Wizard - a utility for repositorying clothes/objects to another item (also known as master/slave technique)
* - see http://www.picknmixmods.com/Sims2/Notes/RepositoryWizard/RepositoryWizard.html
*
* Sims2Tools - a toolkit for manipulating The Sims 2 DBPF files
*
* William Howard - 2020-2024
*
* Permission granted to use this code in any way, except to claim it as your own or sell it
*/
using Sims2Tools.DBPF;
using Sims2Tools.DBPF.CPF;
using Sims2Tools.DBPF.CTSS;
using Sims2Tools.DBPF.Data;
using Sims2Tools.DBPF.Images.IMG;
using Sims2Tools.DBPF.OBJD;
using Sims2Tools.DBPF.Package;
using Sims2Tools.DBPF.SceneGraph.BINX;
using Sims2Tools.DBPF.SceneGraph.CRES;
using Sims2Tools.DBPF.SceneGraph.GMDC;
using Sims2Tools.DBPF.SceneGraph.GMND;
using Sims2Tools.DBPF.SceneGraph.GZPS;
using Sims2Tools.DBPF.SceneGraph.IDR;
using Sims2Tools.DBPF.SceneGraph.SHPE;
using Sims2Tools.DBPF.SceneGraph.XMOL;
using Sims2Tools.DBPF.SceneGraph.XTOL;
using Sims2Tools.DBPF.STR;
using Sims2Tools.DBPF.Utils;
using Sims2Tools.DbpfCache;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Drawing;
namespace RepositoryWizard
{
public class RepoWizardDbpfData : IEquatable<RepoWizardDbpfData>
{
// private static readonly Logger.IDBPFLogger logger = Logger.DBPFLoggerFactory.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
private static DbpfFileCache cache;
public static void SetCache(DbpfFileCache cache)
{
RepoWizardDbpfData.cache = cache;
}
private readonly string packagePath;
private readonly string packageNameNoExtn;
private readonly string packageName;
private readonly Binx binx;
private readonly Idr idrForBinx;
private readonly Cpf cpf;
private readonly Idr idrForCpf;
private readonly Objd objd;
private readonly string modelName;
private readonly string shpeSubsets;
private readonly string gmdcSubsets;
private readonly string designMode;
private readonly string materialsMesh;
private readonly Str str;
private readonly bool isObject = false;
private readonly bool isClothing = false;
private readonly bool hasShoe = false;
public string PackagePath => packagePath;
public string PackageNameNoExtn => packageNameNoExtn;
public string PackageName => packageName;
public bool IsObject => isObject;
public bool IsClothing => isClothing;
public bool HasShoe => hasShoe;
public bool IsDirty => (cpf.IsDirty || str.IsDirty || idrForCpf.IsDirty || binx.IsDirty || idrForBinx.IsDirty);
public void SetClean()
{
cpf.SetClean();
str.SetClean();
idrForCpf.SetClean();
binx.SetClean();
idrForBinx.SetClean();
}
public static RepoWizardDbpfData Create(CacheableDbpfFile package, RepoWizardDbpfData repoWizardData)
{
// This is correct, we want the original (clean) resources from the package using the old (dirty) resource as the key
return Create(package, package.GetEntryByKey(repoWizardData.binx));
}
public static RepoWizardDbpfData Create(CacheableDbpfFile package, DBPFKey binxKey)
{
return Create(package, package.GetEntryByKey(binxKey));
}
public static RepoWizardDbpfData Create(CacheableDbpfFile package, DBPFEntry entry)
{
RepoWizardDbpfData repoWizardData = null;
DBPFResource res = package.GetResourceByEntry(entry);
if (res != null)
{
if (res is Binx binx)
{
Idr idrForBinx = (Idr)package.GetResourceByTGIR(Hash.TGIRHash(binx.InstanceID, binx.ResourceID, Idr.TYPE, binx.GroupID));
if (idrForBinx != null)
{
res = package.GetResourceByKey(idrForBinx.GetItem(binx.GetItem("objectidx").UIntegerValue));
if (res != null)
{
if (res is Gzps || res is Xmol || res is Xtol)
{
Cpf cpf = res as Cpf;
Idr idrForCpf = idrForBinx;
if (res is Xtol)
{
idrForCpf = (Idr)package.GetResourceByTGIR(Hash.TGIRHash(cpf.InstanceID, cpf.ResourceID, Idr.TYPE, cpf.GroupID));
}
if (idrForCpf != null)
{
if (cpf.GetItem("species").UIntegerValue == 0x00000001)
{
repoWizardData = new RepoWizardDbpfData(package, binx, idrForBinx, cpf, idrForCpf);
}
else
{
// Non-human, eg dog or cat, what should we do with these?
}
}
}
}
}
}
else if (res is Objd objd)
{
if (IsPermittedObject(objd))
{
repoWizardData = new RepoWizardDbpfData(package, objd);
}
}
}
return repoWizardData;
}
private RepoWizardDbpfData(CacheableDbpfFile package, Binx binx, Idr idrForBinx, Cpf cpf, Idr idrForCpf)
{
this.packagePath = package.PackagePath;
this.packageNameNoExtn = package.PackageNameNoExtn;
this.packageName = package.PackageName;
this.binx = binx;
this.idrForBinx = idrForBinx;
this.cpf = cpf;
this.idrForCpf = idrForCpf;
this.str = (Str)package.GetResourceByKey(idrForBinx.GetItem(binx.GetItem("stringsetidx").UIntegerValue));
uint outfit = Outfit;
isClothing = (outfit == 0x04 || outfit == 0x08 || outfit == 0x10);
hasShoe = (outfit == 0x08 || outfit == 0x10);
}
private RepoWizardDbpfData(CacheableDbpfFile package, Objd objd)
{
this.packagePath = package.PackagePath;
this.packageNameNoExtn = package.PackageNameNoExtn;
this.packageName = package.PackageName;
this.objd = objd;
Str models = (Str)package.GetResourceByKey(new DBPFKey(Str.TYPE, objd.GroupID, (TypeInstanceID)0x00000085, DBPFData.RESOURCE_NULL));
modelName = models.LanguageItems(MetaData.Languages.Default)[objd.GetRawData(ObjdIndex.DefaultGraphic)].Title;
shpeSubsets = "";
gmdcSubsets = "";
designMode = "";
materialsMesh = "";
Cres cres = (Cres)package.GetResourceByName(Cres.TYPE, modelName);
if (cres != null && cres.ShpeKeys.Count == 1)
{
Shpe shpe = (Shpe)package.GetResourceByKey(cres.ShpeKeys[0]);
if (shpe != null && shpe.GmndNames.Count == 1)
{
foreach (string subset in shpe.Subsets)
{
shpeSubsets = $"{shpeSubsets}, {subset}";
}
if (shpeSubsets.Length > 2) shpeSubsets = shpeSubsets.Substring(2);
Gmnd gmnd = (Gmnd)package.GetResourceByName(Gmnd.TYPE, shpe.GmndNames[0]);
if (gmnd != null && gmnd.GmdcKeys.Count == 1)
{
designMode = gmnd.GetDesignModeEnabledSubsets();
materialsMesh = gmnd.GetMaterialsMeshNameSubsets();
Gmdc gmdc = (Gmdc)package.GetResourceByKey(gmnd.GmdcKeys[0]);
if (gmdc != null)
{
foreach (string subset in gmdc.Subsets)
{
gmdcSubsets = $"{gmdcSubsets}, {subset}";
}
if (gmdcSubsets.Length > 2) gmdcSubsets = gmdcSubsets.Substring(2);
}
}
}
}
this.str = (Str)package.GetResourceByKey(new DBPFKey(Ctss.TYPE, objd.GroupID, (TypeInstanceID)objd.GetRawData(ObjdIndex.CatalogueStringsId), DBPFData.RESOURCE_NULL));
isObject = true;
}
public static bool IsPermittedObject(Objd objd)
{
// Ignore "globals", eg controllers, emitters and the like
if (objd.GetRawData(ObjdIndex.IsGlobalSimObject) != 0x0000) return false;
// Only normal objects, door, windows and columns
if (objd.Type == ObjdType.Normal || objd.Type == ObjdType.Door || objd.Type == ObjdType.Window || objd.Type == ObjdType.ArchitecturalSupport)
{
// Single or multi-tile object?
if (objd.GetRawData(ObjdIndex.MultiTileMasterId) == 0x0000)
{
// Single tile object
return true;
}
else
{
// Is this the main object (and not one of the tiles?)
if (objd.GetRawData(ObjdIndex.MultiTileSubIndex) == 0xFFFF)
{
return true;
}
}
}
return false;
}
public Cpf ThumbnailOwner => cpf is Xtol ? null : cpf;
public Image Thumbnail
{
get
{
if (!(cpf is Xtol)) return null;
Image thumbnail = null;
using (CacheableDbpfFile package = cache.GetOrOpen(packagePath))
{
CpfItem iconidx = binx.GetItem("iconidx");
if (iconidx != null)
{
thumbnail = ((Img)package.GetResourceByKey(idrForBinx.GetItem(iconidx.UIntegerValue)))?.Image;
}
package.Close();
}
return thumbnail;
}
}
public Binx CloneBinx(TypeGroupID newGroupID)
{
Binx cloneBinx = new Binx(new DBPFEntry(binx.TypeID, newGroupID, binx.InstanceID, binx.ResourceID));
cloneBinx.AddItems(binx.CloneItems());
return cloneBinx;
}
public Idr CloneIdrForBinx(TypeGroupID newGroupID)
{
Idr cloneIdr = new Idr(new DBPFEntry(idrForBinx.TypeID, newGroupID, idrForBinx.InstanceID, idrForBinx.ResourceID));
cloneIdr.AddItems(idrForBinx.CloneItems());
return cloneIdr;
}
public Cpf CloneCpf(TypeGroupID newGroupID)
{
Cpf cloneCpf = null;
if (cpf is Gzps)
{
cloneCpf = new Gzps(new DBPFEntry(cpf.TypeID, newGroupID, cpf.InstanceID, cpf.ResourceID));
}
cloneCpf?.AddItems(cpf.CloneItems());
return cloneCpf;
}
public Str CloneStr(TypeGroupID newGroupID)
{
Str cloneStr = new Str(new DBPFEntry(str.TypeID, newGroupID, cpf.InstanceID, cpf.ResourceID));
cloneStr.AddLanguages(str.CloneLanguages());
return cloneStr;
}
public ObjdType Type => objd.Type;
public uint Product
{
get
{
CpfItem cpfItem = cpf.GetItem("product");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public uint Outfit
{
get
{
CpfItem cpfItem = cpf.GetItem("outfit");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public uint Gender
{
get
{
CpfItem cpfItem = cpf.GetItem("gender");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public uint Age
{
get
{
CpfItem cpfItem = cpf.GetItem("age");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public uint Category
{
get
{
CpfItem cpfItem = cpf.GetItem("category");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public uint Shoe
{
get
{
CpfItem cpfItem = cpf.GetItem("shoe");
return (cpfItem == null) ? 0 : cpfItem.UIntegerValue;
}
}
public string Title
{
get
{
if (IsClothing)
{
CpfItem cpfItem = cpf.GetItem("name");
return (cpfItem == null) ? "" : cpfItem.StringValue;
}
else
{
return objd.KeyName;
}
}
}
public uint SortIndex
{
get
{
return (uint)binx.GetItem("sortindex").IntegerValue;
}
}
public string Model => modelName;
public string ShpeSubsets => shpeSubsets;
public string GmdcSubsets => gmdcSubsets;
public string DesignMode => designMode;
public string MaterialsMesh => materialsMesh;
public string Tooltip
{
get
{
return (str != null) ? str.LanguageItems(MetaData.Languages.Default)[0].Title : "";
}
}
public bool Equals(RepoWizardDbpfData other)
{
return this.cpf.Equals(other.cpf);
}
}
public class RepoWizardClothingMesh
{
private readonly string name;
private readonly DBPFKey cresKey;
private readonly DBPFKey shpeKey;
private readonly List<string> shpeSubsets = new List<string>();
private readonly List<string> gmdcSubsets = new List<string>();
public DBPFKey CresKey => cresKey;
public DBPFKey ShpeKey => shpeKey;
public ReadOnlyCollection<string> ShpeSubsets => shpeSubsets.AsReadOnly();
public ReadOnlyCollection<string> GmdcSubsets => gmdcSubsets.AsReadOnly();
public RepoWizardClothingMesh(Cres cres, Shpe shpe, Gmdc gmdc)
{
this.cresKey = new DBPFKey(cres);
this.name = cres.KeyName;
if (name.EndsWith("_cres")) name = name.Substring(0, name.Length - 5);
this.shpeKey = new DBPFKey(shpe);
foreach (string shpeSubset in shpe.Subsets) shpeSubsets.Add(shpeSubset);
if (gmdc != null) foreach (string gmdcSubset in gmdc.Subsets) gmdcSubsets.Add(gmdcSubset);
}
public override string ToString()
{
return name;
}
}
}