Just ONE tweaker
When we make the next release, we need to specify in the setup files that Baritone now requires the SimpleTweaker dependency, and we need to remove the old alternate tweaker references. (Optifine and Forge)
This commit is contained in:
parent
0db18a7caf
commit
54215bdb18
@ -73,9 +73,15 @@ repositories {
|
|||||||
name = 'spongepowered-repo'
|
name = 'spongepowered-repo'
|
||||||
url = 'http://repo.spongepowered.org/maven/'
|
url = 'http://repo.spongepowered.org/maven/'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
maven {
|
||||||
|
name = 'impactdevelopment-repo'
|
||||||
|
url = 'https://impactdevelopment.github.io/maven/'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
runtime launchCompile('com.github.ImpactDevelopment:SimpleTweaker:1.1')
|
||||||
runtime launchCompile('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
|
runtime launchCompile('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
|
||||||
// Mixin includes a lot of dependencies that are too up-to-date
|
// Mixin includes a lot of dependencies that are too up-to-date
|
||||||
exclude module: 'launchwrapper'
|
exclude module: 'launchwrapper'
|
||||||
|
@ -17,61 +17,39 @@
|
|||||||
|
|
||||||
package baritone.launch;
|
package baritone.launch;
|
||||||
|
|
||||||
import net.minecraft.launchwrapper.ITweaker;
|
import io.github.impactdevelopment.simpletweaker.SimpleTweaker;
|
||||||
|
import net.minecraft.launchwrapper.Launch;
|
||||||
import net.minecraft.launchwrapper.LaunchClassLoader;
|
import net.minecraft.launchwrapper.LaunchClassLoader;
|
||||||
import org.spongepowered.asm.launch.MixinBootstrap;
|
import org.spongepowered.asm.launch.MixinBootstrap;
|
||||||
import org.spongepowered.asm.mixin.MixinEnvironment;
|
import org.spongepowered.asm.mixin.MixinEnvironment;
|
||||||
import org.spongepowered.asm.mixin.Mixins;
|
import org.spongepowered.asm.mixin.Mixins;
|
||||||
import org.spongepowered.tools.obfuscation.mcp.ObfuscationServiceMCP;
|
import org.spongepowered.tools.obfuscation.mcp.ObfuscationServiceMCP;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Brady
|
* @author Brady
|
||||||
* @since 7/31/2018 9:59 PM
|
* @since 7/31/2018 9:59 PM
|
||||||
*/
|
*/
|
||||||
public class BaritoneTweaker implements ITweaker {
|
public class BaritoneTweaker extends SimpleTweaker {
|
||||||
|
|
||||||
List<String> args;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void acceptOptions(List<String> args, File gameDir, File assetsDir, String profile) {
|
|
||||||
this.args = new ArrayList<>(args);
|
|
||||||
if (gameDir != null) {
|
|
||||||
addArg("gameDir", gameDir.getAbsolutePath());
|
|
||||||
}
|
|
||||||
if (assetsDir != null) {
|
|
||||||
addArg("assetsDir", assetsDir.getAbsolutePath());
|
|
||||||
}
|
|
||||||
if (profile != null) {
|
|
||||||
addArg("version", profile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void injectIntoClassLoader(LaunchClassLoader classLoader) {
|
public void injectIntoClassLoader(LaunchClassLoader classLoader) {
|
||||||
|
super.injectIntoClassLoader(classLoader);
|
||||||
|
|
||||||
MixinBootstrap.init();
|
MixinBootstrap.init();
|
||||||
|
|
||||||
|
// noinspection unchecked
|
||||||
|
List<String> tweakClasses = (List<String>) Launch.blackboard.get("TweakClasses");
|
||||||
|
|
||||||
|
String obfuscation = ObfuscationServiceMCP.NOTCH;
|
||||||
|
if (tweakClasses.stream().anyMatch(s -> s.contains("net.minecraftforge.fml.common.launcher"))) {
|
||||||
|
obfuscation = ObfuscationServiceMCP.SEARGE;
|
||||||
|
}
|
||||||
|
|
||||||
MixinEnvironment.getDefaultEnvironment().setSide(MixinEnvironment.Side.CLIENT);
|
MixinEnvironment.getDefaultEnvironment().setSide(MixinEnvironment.Side.CLIENT);
|
||||||
MixinEnvironment.getDefaultEnvironment().setObfuscationContext(ObfuscationServiceMCP.NOTCH);
|
MixinEnvironment.getDefaultEnvironment().setObfuscationContext(obfuscation);
|
||||||
|
|
||||||
Mixins.addConfiguration("mixins.baritone.json");
|
Mixins.addConfiguration("mixins.baritone.json");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public final String getLaunchTarget() {
|
|
||||||
return "net.minecraft.client.main.Main";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public final String[] getLaunchArguments() {
|
|
||||||
return this.args.toArray(new String[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void addArg(String label, String value) {
|
|
||||||
if (!args.contains("--" + label) && value != null) {
|
|
||||||
this.args.add("--" + label);
|
|
||||||
this.args.add(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of Baritone.
|
|
||||||
*
|
|
||||||
* Baritone is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Lesser General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Baritone is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
|
||||||
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package baritone.launch;
|
|
||||||
|
|
||||||
import net.minecraft.launchwrapper.LaunchClassLoader;
|
|
||||||
import org.spongepowered.asm.mixin.MixinEnvironment;
|
|
||||||
import org.spongepowered.tools.obfuscation.mcp.ObfuscationServiceMCP;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Brady
|
|
||||||
* @since 7/31/2018 10:09 PM
|
|
||||||
*/
|
|
||||||
public class BaritoneTweakerForge extends BaritoneTweaker {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public final void acceptOptions(List<String> args, File gameDir, File assetsDir, String profile) {
|
|
||||||
this.args = new ArrayList<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public final void injectIntoClassLoader(LaunchClassLoader classLoader) {
|
|
||||||
super.injectIntoClassLoader(classLoader);
|
|
||||||
MixinEnvironment.getDefaultEnvironment().setObfuscationContext(ObfuscationServiceMCP.SEARGE);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is part of Baritone.
|
|
||||||
*
|
|
||||||
* Baritone is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Lesser General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* Baritone is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
|
||||||
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package baritone.launch;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Brady
|
|
||||||
* @since 7/31/2018 10:10 PM
|
|
||||||
*/
|
|
||||||
public class BaritoneTweakerOptifine extends BaritoneTweaker {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public final void acceptOptions(List<String> args, File gameDir, File assetsDir, String profile) {
|
|
||||||
this.args = new ArrayList<>();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user