2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launcher.profiles;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.InetSocketAddress;
|
2018-09-25 15:05:20 +03:00
|
|
|
import java.util.*;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
import ru.gravit.launcher.LauncherAPI;
|
|
|
|
import ru.gravit.launcher.hasher.FileNameMatcher;
|
2018-09-24 19:34:06 +03:00
|
|
|
import ru.gravit.launcher.hasher.HashedDir;
|
2018-09-17 10:20:34 +03:00
|
|
|
import ru.gravit.utils.helper.IOHelper;
|
|
|
|
import ru.gravit.utils.helper.VerifyHelper;
|
2018-09-17 10:07:32 +03:00
|
|
|
import ru.gravit.launcher.serialize.HInput;
|
|
|
|
import ru.gravit.launcher.serialize.config.ConfigObject;
|
|
|
|
import ru.gravit.launcher.serialize.stream.StreamObject;
|
|
|
|
import ru.gravit.launcher.serialize.config.entry.*;
|
|
|
|
|
|
|
|
@SuppressWarnings("ComparableImplementedButEqualsNotOverridden")
|
|
|
|
public final class
|
|
|
|
ClientProfile extends ConfigObject implements Comparable<ClientProfile> {
|
|
|
|
@LauncherAPI
|
|
|
|
public enum Version {
|
|
|
|
MC147("1.4.7", 51),
|
|
|
|
MC152("1.5.2", 61),
|
|
|
|
MC164("1.6.4", 78),
|
|
|
|
MC172("1.7.2", 4),
|
|
|
|
MC1710("1.7.10", 5),
|
|
|
|
MC189("1.8.9", 47),
|
|
|
|
MC194("1.9.4", 110),
|
|
|
|
MC1102("1.10.2", 210),
|
|
|
|
MC1112("1.11.2", 316),
|
|
|
|
MC1122("1.12.2", 340),
|
|
|
|
MC113("1.13", 393),
|
2018-11-03 17:35:47 +03:00
|
|
|
MC1131("1.13.1", 401),
|
|
|
|
MC1132("1.13.2", 402);
|
2018-09-17 10:07:32 +03:00
|
|
|
private static final Map<String, Version> VERSIONS;
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
static {
|
|
|
|
Version[] versionsValues = values();
|
|
|
|
VERSIONS = new HashMap<>(versionsValues.length);
|
|
|
|
for (Version version : versionsValues)
|
2018-09-22 17:33:00 +03:00
|
|
|
VERSIONS.put(version.name, version);
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public static Version byName(String name) {
|
|
|
|
return VerifyHelper.getMapValue(VERSIONS, name, String.format("Unknown client version: '%s'", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
public final String name;
|
|
|
|
|
|
|
|
public final int protocol;
|
|
|
|
|
|
|
|
Version(String name, int protocol) {
|
|
|
|
this.name = name;
|
|
|
|
this.protocol = protocol;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "Minecraft " + name;
|
|
|
|
}
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
@LauncherAPI
|
|
|
|
public static final StreamObject.Adapter<ClientProfile> RO_ADAPTER = input -> new ClientProfile(input, true);
|
|
|
|
|
|
|
|
private static final FileNameMatcher ASSET_MATCHER = new FileNameMatcher(
|
|
|
|
new String[0], new String[]{"indexes", "objects"}, new String[0]);
|
|
|
|
// Version
|
|
|
|
private final StringConfigEntry version;
|
|
|
|
|
|
|
|
private final StringConfigEntry assetIndex;
|
|
|
|
// Client
|
|
|
|
private final IntegerConfigEntry sortIndex;
|
|
|
|
private final StringConfigEntry title;
|
|
|
|
private final StringConfigEntry serverAddress;
|
|
|
|
|
|
|
|
private final IntegerConfigEntry serverPort;
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-25 15:05:20 +03:00
|
|
|
public static class MarkedString {
|
2018-11-08 13:41:16 +03:00
|
|
|
@LauncherAPI
|
2018-09-25 15:05:20 +03:00
|
|
|
public String string;
|
2018-11-08 13:41:16 +03:00
|
|
|
@LauncherAPI
|
2018-09-25 15:05:20 +03:00
|
|
|
public boolean mark;
|
|
|
|
|
|
|
|
public MarkedString(String string, boolean mark) {
|
|
|
|
this.string = string;
|
|
|
|
this.mark = mark;
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-25 15:05:20 +03:00
|
|
|
public MarkedString(String string) {
|
|
|
|
this.string = string;
|
|
|
|
this.mark = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
if (this == o) return true;
|
|
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
MarkedString that = (MarkedString) o;
|
|
|
|
return Objects.equals(string, that.string);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return Objects.hash(string);
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
// Updater and client watch service
|
2018-09-24 19:34:06 +03:00
|
|
|
private final List<String> update = new ArrayList<>();
|
|
|
|
private final List<String> updateExclusions = new ArrayList<>();
|
2018-11-08 15:50:24 +03:00
|
|
|
private final List<String> updateShared = new ArrayList<>();
|
2018-09-24 19:34:06 +03:00
|
|
|
private final List<String> updateVerify = new ArrayList<>();
|
2018-09-25 15:05:20 +03:00
|
|
|
private final Set<MarkedString> updateOptional = new HashSet<>();
|
2018-09-17 10:07:32 +03:00
|
|
|
private final BooleanConfigEntry updateFastCheck;
|
|
|
|
|
|
|
|
private final BooleanConfigEntry useWhitelist;
|
|
|
|
// Client launcher
|
|
|
|
private final StringConfigEntry mainClass;
|
|
|
|
private final ListConfigEntry jvmArgs;
|
|
|
|
private final ListConfigEntry classPath;
|
|
|
|
private final ListConfigEntry clientArgs;
|
|
|
|
|
|
|
|
private final ListConfigEntry whitelist;
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public ClientProfile(BlockConfigEntry block) {
|
|
|
|
super(block);
|
|
|
|
|
|
|
|
// Version
|
|
|
|
version = block.getEntry("version", StringConfigEntry.class);
|
|
|
|
assetIndex = block.getEntry("assetIndex", StringConfigEntry.class);
|
|
|
|
|
|
|
|
// Client
|
|
|
|
sortIndex = block.getEntry("sortIndex", IntegerConfigEntry.class);
|
|
|
|
title = block.getEntry("title", StringConfigEntry.class);
|
|
|
|
serverAddress = block.getEntry("serverAddress", StringConfigEntry.class);
|
|
|
|
serverPort = block.getEntry("serverPort", IntegerConfigEntry.class);
|
|
|
|
|
|
|
|
// Updater and client watch service
|
2018-09-24 19:34:06 +03:00
|
|
|
block.getEntry("update", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(update::add);
|
|
|
|
block.getEntry("updateVerify", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(updateVerify::add);
|
2018-11-08 15:50:24 +03:00
|
|
|
block.getEntry("updateShared", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(updateVerify::add);
|
2018-09-25 15:05:20 +03:00
|
|
|
block.getEntry("updateOptional", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(e -> updateOptional.add(new MarkedString(e)));
|
2018-09-24 19:34:06 +03:00
|
|
|
block.getEntry("updateExclusions", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(updateExclusions::add);
|
2018-11-06 15:14:08 +03:00
|
|
|
block.getEntry("enabledOptional", ListConfigEntry.class).stream(StringConfigEntry.class).forEach(e -> updateOptional.stream().anyMatch(e1 -> e.equals(e1.string) && (e1.mark = true)));
|
2018-09-17 10:07:32 +03:00
|
|
|
updateFastCheck = block.getEntry("updateFastCheck", BooleanConfigEntry.class);
|
|
|
|
useWhitelist = block.getEntry("useWhitelist", BooleanConfigEntry.class);
|
|
|
|
|
|
|
|
// Client launcher
|
|
|
|
mainClass = block.getEntry("mainClass", StringConfigEntry.class);
|
|
|
|
classPath = block.getEntry("classPath", ListConfigEntry.class);
|
|
|
|
jvmArgs = block.getEntry("jvmArgs", ListConfigEntry.class);
|
|
|
|
clientArgs = block.getEntry("clientArgs", ListConfigEntry.class);
|
|
|
|
whitelist = block.getEntry("whitelist", ListConfigEntry.class);
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public ClientProfile(HInput input, boolean ro) throws IOException {
|
|
|
|
this(new BlockConfigEntry(input, ro));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compareTo(ClientProfile o) {
|
|
|
|
return Integer.compare(getSortIndex(), o.getSortIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String getAssetIndex() {
|
|
|
|
return assetIndex.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public FileNameMatcher getAssetUpdateMatcher() {
|
|
|
|
return getVersion().compareTo(Version.MC1710) >= 0 ? ASSET_MATCHER : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String[] getClassPath() {
|
|
|
|
return classPath.stream(StringConfigEntry.class).toArray(String[]::new);
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String[] getClientArgs() {
|
|
|
|
return clientArgs.stream(StringConfigEntry.class).toArray(String[]::new);
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
2018-09-24 19:34:06 +03:00
|
|
|
public FileNameMatcher getClientUpdateMatcher(/*boolean excludeOptional*/) {
|
|
|
|
String[] updateArray = update.toArray(new String[0]);
|
|
|
|
String[] verifyArray = updateVerify.toArray(new String[0]);
|
|
|
|
List<String> excludeList;
|
|
|
|
//if(excludeOptional)
|
|
|
|
//{
|
|
|
|
// excludeList = new ArrayList<>();
|
|
|
|
// excludeList.addAll(updateExclusions);
|
|
|
|
// excludeList.addAll(updateOptional);
|
|
|
|
//}
|
|
|
|
//else
|
|
|
|
excludeList = updateExclusions;
|
|
|
|
String[] exclusionsArray = excludeList.toArray(new String[0]);
|
2018-09-17 10:07:32 +03:00
|
|
|
return new FileNameMatcher(updateArray, verifyArray, exclusionsArray);
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String[] getJvmArgs() {
|
|
|
|
return jvmArgs.stream(StringConfigEntry.class).toArray(String[]::new);
|
|
|
|
}
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
@LauncherAPI
|
|
|
|
public String getMainClass() {
|
|
|
|
return mainClass.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String getServerAddress() {
|
|
|
|
return serverAddress.getValue();
|
|
|
|
}
|
|
|
|
|
2018-09-25 15:05:20 +03:00
|
|
|
@LauncherAPI
|
2018-11-08 15:30:16 +03:00
|
|
|
public Set<MarkedString> getOptional() {
|
2018-09-25 15:05:20 +03:00
|
|
|
return updateOptional;
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 19:34:06 +03:00
|
|
|
@LauncherAPI
|
2018-11-08 15:30:16 +03:00
|
|
|
public void markOptional(String opt) {
|
|
|
|
if (!updateOptional.contains(new MarkedString(opt)))
|
|
|
|
throw new SecurityException(String.format("Optional mod %s not found in optionalList", opt));
|
|
|
|
updateOptional.forEach(e -> {
|
|
|
|
if (e.string.equals(opt)) e.mark = true;
|
|
|
|
});
|
2018-09-24 19:34:06 +03:00
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-24 19:34:06 +03:00
|
|
|
@LauncherAPI
|
2018-11-08 15:30:16 +03:00
|
|
|
public void unmarkOptional(String opt) {
|
|
|
|
if (!updateOptional.contains(new MarkedString(opt)))
|
|
|
|
throw new SecurityException(String.format("Optional mod %s not found in optionalList", opt));
|
|
|
|
updateOptional.forEach(e -> {
|
|
|
|
if (e.string.equals(opt)) e.mark = false;
|
|
|
|
});
|
2018-09-24 19:34:06 +03:00
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
|
|
|
public void pushOptional(HashedDir dir, boolean digest) throws IOException {
|
|
|
|
for (MarkedString opt : updateOptional) {
|
|
|
|
if (!opt.mark) dir.removeR(opt.string);
|
2018-09-24 19:34:06 +03:00
|
|
|
}
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
@LauncherAPI
|
|
|
|
public int getServerPort() {
|
|
|
|
return serverPort.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public InetSocketAddress getServerSocketAddress() {
|
|
|
|
return InetSocketAddress.createUnresolved(getServerAddress(), getServerPort());
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public int getSortIndex() {
|
|
|
|
return sortIndex.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public String getTitle() {
|
|
|
|
return title.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public Version getVersion() {
|
|
|
|
return Version.byName(version.getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public boolean isUpdateFastCheck() {
|
|
|
|
return updateFastCheck.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
2018-09-22 17:33:00 +03:00
|
|
|
public boolean isWhitelistContains(String username) {
|
|
|
|
if (!useWhitelist.getValue()) return true;
|
|
|
|
return whitelist.stream(StringConfigEntry.class).anyMatch(e -> e.equals(username));
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public void setTitle(String title) {
|
|
|
|
this.title.setValue(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public void setVersion(Version version) {
|
|
|
|
this.version.setValue(version.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return title.getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
@LauncherAPI
|
|
|
|
public void verify() {
|
|
|
|
// Version
|
|
|
|
getVersion();
|
|
|
|
IOHelper.verifyFileName(getAssetIndex());
|
|
|
|
|
|
|
|
// Client
|
|
|
|
VerifyHelper.verify(getTitle(), VerifyHelper.NOT_EMPTY, "Profile title can't be empty");
|
|
|
|
VerifyHelper.verify(getServerAddress(), VerifyHelper.NOT_EMPTY, "Server address can't be empty");
|
|
|
|
VerifyHelper.verifyInt(getServerPort(), VerifyHelper.range(0, 65535), "Illegal server port: " + getServerPort());
|
|
|
|
|
|
|
|
// Client launcher
|
|
|
|
jvmArgs.verifyOfType(ConfigEntry.Type.STRING);
|
|
|
|
classPath.verifyOfType(ConfigEntry.Type.STRING);
|
|
|
|
clientArgs.verifyOfType(ConfigEntry.Type.STRING);
|
|
|
|
VerifyHelper.verify(getTitle(), VerifyHelper.NOT_EMPTY, "Main class can't be empty");
|
|
|
|
}
|
|
|
|
}
|