Compare commits
No commits in common. "e7bde3bab1c8a7dc1a0eafbf7ea75fe7cb858241" and "8ce3afa7d663308ca96a0b3e79c3943026cdd513" have entirely different histories.
e7bde3bab1
...
8ce3afa7d6
|
@ -1,9 +0,0 @@
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
charset = utf-8
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
tab_width = 4
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
indent_style = tab
|
|
|
@ -1,19 +1,18 @@
|
||||||
package org.ecorous.esnesnon.nonsense_remapper;
|
package org.ecorous.esnesnon.nonsense_remapper;
|
||||||
|
|
||||||
import java.io.IOError;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.*;
|
import java.nio.file.*;
|
||||||
import java.nio.file.attribute.BasicFileAttributes;
|
import java.nio.file.attribute.BasicFileAttributes;
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
|
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.Mapper;
|
import org.ecorous.esnesnon.nonsense_remapper.api.Mapper;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.ParameterClassRemapper;
|
import org.ecorous.esnesnon.nonsense_remapper.api.ParameterClassRemapper;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.MappingData;
|
import org.ecorous.esnesnon.nonsense_remapper.api.data.MappingData;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.Member;
|
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.Parchment;
|
import org.ecorous.esnesnon.nonsense_remapper.api.data.Parchment;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.parser.ProguardParser;
|
import org.ecorous.esnesnon.nonsense_remapper.parser.ProguardParser;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.provider.MojmapProvider;
|
import org.ecorous.esnesnon.nonsense_remapper.provider.MojmapProvider;
|
||||||
|
@ -21,23 +20,24 @@ import org.ecorous.esnesnon.nonsense_remapper.provider.ParchmentProvider;
|
||||||
import org.objectweb.asm.ClassReader;
|
import org.objectweb.asm.ClassReader;
|
||||||
import org.objectweb.asm.ClassVisitor;
|
import org.objectweb.asm.ClassVisitor;
|
||||||
import org.objectweb.asm.ClassWriter;
|
import org.objectweb.asm.ClassWriter;
|
||||||
import org.objectweb.asm.Opcodes;
|
|
||||||
import org.objectweb.asm.commons.ClassRemapper;
|
import org.objectweb.asm.commons.ClassRemapper;
|
||||||
|
|
||||||
public class NonsenseRemapper {
|
public class NonsenseRemapper {
|
||||||
|
|
||||||
public static void run(String minecraftVersion, Path inputJar, Path outputJar, boolean skipMetaInf, boolean renameParameters) throws IOException, InterruptedException {
|
public static void run(String minecraftVersion, Path inputJar, Path outputJar, boolean skipMetaInf, boolean renameParameters) throws IOException, InterruptedException {
|
||||||
MappingData data = ProguardParser.read(MojmapProvider.get(minecraftVersion, outputJar.resolveSibling("client-" + minecraftVersion + ".txt")).orElseThrow()).reverse();
|
MappingData data = ProguardParser.read(MojmapProvider.get(minecraftVersion).orElseThrow()).reverse();
|
||||||
|
Mapper mapper = new Mapper(data);
|
||||||
|
|
||||||
|
|
||||||
Parchment paramMappings = null;
|
Parchment paramMappings = null;
|
||||||
if (renameParameters) {
|
if (renameParameters) {
|
||||||
paramMappings = ParchmentProvider.getParchment(minecraftVersion, outputJar.getParent());
|
paramMappings = ParchmentProvider.getParchment(minecraftVersion, outputJar.getParent());
|
||||||
}
|
}
|
||||||
|
|
||||||
remap(data, inputJar, outputJar, skipMetaInf, paramMappings);
|
remap(mapper, inputJar, outputJar, skipMetaInf, paramMappings);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void remap(MappingData data, Path inputJar, Path outputJar, boolean skipMetaInf, Parchment paramMappings) throws IOException, InterruptedException {
|
public static void remap(Mapper mapper, Path inputJar, Path outputJar, boolean skipMetaInf, Parchment paramMappings) throws IOException, InterruptedException {
|
||||||
Files.deleteIfExists(outputJar);
|
Files.deleteIfExists(outputJar);
|
||||||
|
|
||||||
System.out.println("Remapping...");
|
System.out.println("Remapping...");
|
||||||
|
@ -49,35 +49,12 @@ public class NonsenseRemapper {
|
||||||
FileSystem outFs = FileSystems.newFileSystem(outputJar, Map.of("create", "true"))) {
|
FileSystem outFs = FileSystems.newFileSystem(outputJar, Map.of("create", "true"))) {
|
||||||
List<Callable<Void>> tasks = new ArrayList<>();
|
List<Callable<Void>> tasks = new ArrayList<>();
|
||||||
|
|
||||||
Map<String, List<String>> lazyParents = new ConcurrentHashMap<>();
|
|
||||||
Mapper mapper = new Mapper(data, className -> lazyParents.computeIfAbsent(className, ignored -> {
|
|
||||||
try {
|
|
||||||
Path path = inFs.getPath("/" + className + ".class");
|
|
||||||
if (!Files.isRegularFile(path))
|
|
||||||
return List.of();
|
|
||||||
|
|
||||||
byte[] bytes = Files.readAllBytes(path);
|
|
||||||
ClassReader reader = new ClassReader(bytes);
|
|
||||||
List<String> superTypes = new ArrayList<>();
|
|
||||||
reader.accept(new ClassVisitor(Opcodes.ASM9) {
|
|
||||||
@Override
|
|
||||||
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
|
|
||||||
superTypes.add(superName);
|
|
||||||
superTypes.addAll(Arrays.asList(interfaces));
|
|
||||||
}
|
|
||||||
}, ClassReader.SKIP_CODE | ClassReader.SKIP_DEBUG | ClassReader.SKIP_FRAMES);
|
|
||||||
|
|
||||||
return superTypes;
|
|
||||||
} catch (IOException error) {
|
|
||||||
throw new Error(error); // not our problem :^) for now
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
Files.walkFileTree(inFs.getPath("/"), new SimpleFileVisitor<>() {
|
Files.walkFileTree(inFs.getPath("/"), new SimpleFileVisitor<>() {
|
||||||
@Override
|
@Override
|
||||||
public FileVisitResult visitFile(Path path, BasicFileAttributes basicFileAttributes) {
|
public FileVisitResult visitFile(Path path, BasicFileAttributes basicFileAttributes) {
|
||||||
if (skipMetaInf && path.startsWith("/META-INF"))
|
if (skipMetaInf && path.startsWith("/META-INF")) {
|
||||||
return FileVisitResult.SKIP_SUBTREE;
|
return FileVisitResult.SKIP_SUBTREE;
|
||||||
|
}
|
||||||
|
|
||||||
tasks.add(() -> {
|
tasks.add(() -> {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -4,18 +4,12 @@ import org.ecorous.esnesnon.nonsense_remapper.api.data.MappingData;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.Member;
|
import org.ecorous.esnesnon.nonsense_remapper.api.data.Member;
|
||||||
import org.objectweb.asm.commons.Remapper;
|
import org.objectweb.asm.commons.Remapper;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.function.Function;
|
|
||||||
|
|
||||||
public class Mapper extends Remapper {
|
public class Mapper extends Remapper {
|
||||||
|
|
||||||
private final MappingData data;
|
private final MappingData data;
|
||||||
private final Function<String, List<String>> parentProvider;
|
|
||||||
|
|
||||||
public Mapper(MappingData data, Function<String, List<String>> parentProvider) {
|
public Mapper(MappingData data) {
|
||||||
this.data = data;
|
this.data = data;
|
||||||
this.parentProvider = parentProvider;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -25,39 +19,11 @@ public class Mapper extends Remapper {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String mapMethodName(String owner, String name, String descriptor) {
|
public String mapMethodName(String owner, String name, String descriptor) {
|
||||||
String result = map(0, data.methods(), owner, name, descriptor);
|
return data.methods().getOrDefault(new Member(owner, name, descriptor), name);
|
||||||
if (result != null)
|
|
||||||
return result;
|
|
||||||
|
|
||||||
return name;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String mapFieldName(String owner, String name, String descriptor) {
|
public String mapFieldName(String owner, String name, String descriptor) {
|
||||||
String result = map(0, data.fields(), owner, name, descriptor);
|
return data.fields().getOrDefault(new Member(owner, name, descriptor), name);
|
||||||
if (result != null)
|
|
||||||
return result;
|
|
||||||
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String map(int depth, Map<Member, String> map, String owner, String name, String descriptor) {
|
|
||||||
if (owner.startsWith("["))
|
|
||||||
return null;
|
|
||||||
|
|
||||||
String result = map.get(new Member(owner, name, descriptor));
|
|
||||||
if (result != null)
|
|
||||||
return result;
|
|
||||||
|
|
||||||
if (depth >= 64)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
for (String parent : parentProvider.apply(owner)) {
|
|
||||||
result = map(depth + 1, map, parent, name, descriptor);
|
|
||||||
if (result != null)
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package org.ecorous.esnesnon.nonsense_remapper.parser;
|
package org.ecorous.esnesnon.nonsense_remapper.parser;
|
||||||
|
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.MappingData;
|
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.api.data.Member;
|
import org.ecorous.esnesnon.nonsense_remapper.api.data.Member;
|
||||||
|
import org.ecorous.esnesnon.nonsense_remapper.api.data.MappingData;
|
||||||
|
|
||||||
public class ProguardParser {
|
public class ProguardParser {
|
||||||
|
|
||||||
|
|
|
@ -4,24 +4,12 @@ import com.google.gson.*;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.Constants;
|
import org.ecorous.esnesnon.nonsense_remapper.Constants;
|
||||||
import org.ecorous.esnesnon.nonsense_remapper.HttpHelper;
|
import org.ecorous.esnesnon.nonsense_remapper.HttpHelper;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
public class MojmapProvider {
|
public class MojmapProvider {
|
||||||
|
|
||||||
public static Optional<String> get(String gameVersion, Path cacheFile) {
|
public static Optional<String> get(String gameVersion) {
|
||||||
if (Files.exists(cacheFile)){
|
return HttpHelper.getJson(Constants.VERSION_MANIFEST).map(manifest -> {
|
||||||
try {
|
|
||||||
return Optional.of(Files.readString(cacheFile, StandardCharsets.UTF_8));
|
|
||||||
} catch (IOException e) {
|
|
||||||
// TODO
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return HttpHelper.getJson(Constants.VERSION_MANIFEST).flatMap(manifest -> {
|
|
||||||
String versionName;
|
String versionName;
|
||||||
if (gameVersion.startsWith("latest-")) {
|
if (gameVersion.startsWith("latest-")) {
|
||||||
versionName = manifest.get("latest").getAsJsonObject().get(gameVersion.split("-")[1]).getAsString();
|
versionName = manifest.get("latest").getAsJsonObject().get(gameVersion.split("-")[1]).getAsString();
|
||||||
|
@ -39,18 +27,10 @@ public class MojmapProvider {
|
||||||
String mappingsUrl = versionManifest
|
String mappingsUrl = versionManifest
|
||||||
.get("downloads").getAsJsonObject().get("client_mappings").getAsJsonObject().get("url").getAsString();
|
.get("downloads").getAsJsonObject().get("client_mappings").getAsJsonObject().get("url").getAsString();
|
||||||
|
|
||||||
return HttpHelper.getString(mappingsUrl).map(s -> {
|
return HttpHelper.getString(mappingsUrl).orElseThrow();
|
||||||
try {
|
|
||||||
Files.writeString(cacheFile, s);
|
|
||||||
} catch (IOException e) {
|
|
||||||
// TODO
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
return s;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Optional.empty();
|
return null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue