Compare commits
No commits in common. "88d10a9a2e70f2aa280cf97d26c0d538da4df75c" and "bd69031a3dc029215451c788ad82fb2f45a45118" have entirely different histories.
88d10a9a2e
...
bd69031a3d
|
@ -13,10 +13,8 @@ windows_libs_other/
|
||||||
.venv
|
.venv
|
||||||
*.gpr
|
*.gpr
|
||||||
*.rep
|
*.rep
|
||||||
.vscode
|
|
||||||
.clangd
|
|
||||||
|
|
||||||
ACP_Ray2/
|
ACP_Ray2/
|
||||||
build/
|
build/
|
||||||
# game_re/
|
# game_re/
|
||||||
windows_libs/
|
windows_libs/
|
|
@ -6,7 +6,14 @@
|
||||||
"Rayman4Dev": true,
|
"Rayman4Dev": true,
|
||||||
"vbox": true,
|
"vbox": true,
|
||||||
},
|
},
|
||||||
// Use the redhat java extension
|
// "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -jar C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar"
|
||||||
|
// "java.configuration.runtimes": [
|
||||||
|
// {
|
||||||
|
// "name": "JavaSE-1.8",
|
||||||
|
// "path": "C:\\Program Files\\Microsoft\\jdk-17.0.11.9-hotspot\\",
|
||||||
|
// "sources": "C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar"
|
||||||
|
// }
|
||||||
|
// ],
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar",
|
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar",
|
||||||
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Decompiler\\lib\\Decompiler.jar",
|
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Decompiler\\lib\\Decompiler.jar",
|
|
@ -1,6 +1,6 @@
|
||||||
// Script to export decompiled C code from Ghidra
|
// Script to export decompiled C code from Ghidra
|
||||||
// @category _Reman3
|
// @category _Reman3
|
||||||
// @menupath Reman3.Decompile All
|
// @menupath Tools.Reman3.Decompile All
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
|
@ -500,10 +500,6 @@ public class Decompile extends GhidraScript {
|
||||||
throw new Exception("Output directory does not exist: " + RecompileConfig.INSTANCE.outputDir);
|
throw new Exception("Output directory does not exist: " + RecompileConfig.INSTANCE.outputDir);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure to create output folders
|
|
||||||
RecompileConfig.INSTANCE.dirDecompFix.mkdirs();
|
|
||||||
RecompileConfig.INSTANCE.dirDecompAuto.mkdirs();
|
|
||||||
|
|
||||||
buildFunctionBlacklist();
|
buildFunctionBlacklist();
|
||||||
|
|
||||||
List<Function> functions = new ArrayList<>();
|
List<Function> functions = new ArrayList<>();
|
||||||
|
|
Loading…
Reference in New Issue