-
Notifications
You must be signed in to change notification settings - Fork 29
/
FindObjectEntry.cpp
59 lines (46 loc) · 1.4 KB
/
FindObjectEntry.cpp
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
#include <iostream>
#include "UPKUtils.h"
using namespace std;
int main(int argN, char* argV[])
{
cout << "FindObjectEntry by wghost81 aka Wasteland Ghost" << endl;
if (argN < 3 || argN > 4)
{
cerr << "Usage: FindObjectEntry UnpackedResourceFile.upk ObjectName [/d]" << endl;
return 1;
}
UPKUtils package(argV[1]);
UPKReadErrors err = package.GetError();
if (err != UPKReadErrors::NoErrors)
{
cerr << "Error reading package:\n" << FormatReadErrors(err);
if (package.IsCompressed())
cerr << "Compression flags:\n" << FormatCompressionFlags(package.GetCompressionFlags());
return 1;
}
string NameToFind = argV[2];
cout << "Name to find: " << NameToFind << endl;
UObjectReference ObjRef = package.FindObject(NameToFind, false);
if (ObjRef == 0)
{
cerr << "Can't find object entry by name " << NameToFind << endl;
return 1;
}
if (ObjRef > 0 && argN == 4 && string(argV[3]) == "/d")
{
package.SaveExportData((uint32_t)ObjRef);
}
if (ObjRef > 0)
{
cout << "Found Export Object:\n" << package.FormatExport(ObjRef, true);
}
else
{
cout << "Found Import Object:\n" << package.FormatImport(-ObjRef, true);
}
if (ObjRef > 0)
{
cout << "Attempting deserialization:\n" << package.Deserialize(ObjRef, true);
}
return 0;
}