blob: 8abc975f7eb711fb8bf448866b62298a1fe082c1 (
plain)
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
|
package gq.malwarefight.nosession.tweaks.initial;
import gq.malwarefight.nosession.utils.Utils;
import java.io.File;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import net.minecraft.launchwrapper.ITweaker;
import net.minecraft.launchwrapper.LaunchClassLoader;
import org.spongepowered.asm.launch.MixinBootstrap;
import org.spongepowered.asm.mixin.MixinEnvironment;
import org.spongepowered.asm.mixin.Mixins;
public class InitialTweaker implements ITweaker {
public InitialTweaker() {
System.gc(); // try to garbage collect the earlier launch data
}
/**
* This handles the launch arguments passed towards minecraft
* @param args The launch arguments
* @param gameDir The game directory (ie: .minecraft)
* @param assetsDir The assets directory
* @param version The game version
*/
@Override
public final void acceptOptions(List<String> args, File gameDir, File assetsDir, String version) {
boolean isRelaunch = false; // is this invocation from a relaunch?
String uuid = null;
ArrayList<String> argsCopy = new ArrayList<>(args);
for (int i = 0; i < argsCopy.size(); i++) {
if (argsCopy.get(i).equals("--accessToken")) {
if (argsCopy.get(i + 1).equals("<noSessionAccessToken>")) {
isRelaunch = true;
continue;
}
argsCopy.set(i + 1, "<noSessionAccessToken>");
} else if (argsCopy.get(i).equals("--uuid")) {
uuid = argsCopy.get(i + 1);
}
}
if (isRelaunch) {
String finalUUID = uuid;
if (finalUUID == null) {
return; // if we don't have a uuid, quit
}
Runtime.getRuntime().addShutdownHook(
new Thread(() -> {
try {
Socket socket = Utils.getProperSocket(UUID.fromString(Utils.normalizeUUID(finalUUID)));
socket.getOutputStream().write("fullquit\n".getBytes(StandardCharsets.UTF_8));
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
})
);
return; // don't do anything, the change has already been made
}
throw new RuntimeException("It should be impossible to get here! Report this bug to https://github.com/thefightagainstmalware/NoSession");
}
/**
* Inject into the MC class loader
* @param classLoader The class loader
*/
@Override
public final void injectIntoClassLoader(LaunchClassLoader classLoader) {
MixinBootstrap.init();
MixinEnvironment environment = MixinEnvironment.getDefaultEnvironment();
Mixins.addConfiguration("mixins.nosession.json");
// Check if the obfuscation context is null
if (environment.getObfuscationContext() == null) {
environment.setObfuscationContext("notch");
}
// This is a client side, client :)
environment.setSide(MixinEnvironment.Side.CLIENT);
}
@Override
public String getLaunchTarget() {
return MixinBootstrap.getPlatform().getLaunchTarget();
}
@Override
public String[] getLaunchArguments() {
return new String[0];
}
}
|