UnrealDumper-4.25 icon indicating copy to clipboard operation
UnrealDumper-4.25 copied to clipboard

Dumper does not produce valid SDK

Open oparkerj opened this issue 2 years ago • 2 comments

I wanted to list the issues that the dumper caused when it created the SDK. (By the way, this is the only SDK dumper that dumped without errors first try just by adding my game to the list).

  1. Engine classes are generated out of order. Quite a few of the engine structs reference structs that are defined further down in the file. I can manually reorder the structs, but it takes a while to do.
  2. Not all structs are generated. For example, TArray or TMap are completely missing, but so are a lot of others.
  3. Some game functions have invalid names. Some of the functions and fields in the game contain dashes, which are not valid in function names.

oparkerj avatar Sep 11 '22 23:09 oparkerj

My solution to the above issue was to write an external program that merges all the headers into one working header with missing classes included.

The only remaining issue is other strange behavior: Offsets for functions are only correct for built in classes. Any of the structs that are obviously unique to the game have the same offset for every single function across every struct.

oparkerj avatar Sep 22 '22 02:09 oparkerj

My solution to the above issue was to write an external program that merges all the headers into one working header with missing classes included.

The only remaining issue is other strange behavior: Offsets for functions are only correct for built in classes. Any of the structs that are obviously unique to the game have the same offset for every single function across every struct.

you can share with me?

zimzika avatar Jun 14 '23 18:06 zimzika