Fixed #66
This commit is contained in:
@@ -20,7 +20,6 @@ package org.jackhuang.hellominecraft.launcher.core;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
|
||||||
import org.jackhuang.hellominecraft.util.system.OS;
|
import org.jackhuang.hellominecraft.util.system.OS;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -63,14 +62,11 @@ public final class MCUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static File getInitGameDir() {
|
public static File getInitGameDir() {
|
||||||
File gameDir = IOUtils.currentDir();
|
File gameDir = new File(MCUtils.minecraft());
|
||||||
if (gameDir.exists()) {
|
if (!gameDir.exists()) {
|
||||||
gameDir = new File(gameDir, MCUtils.minecraft());
|
File newFile = MCUtils.getLocation();
|
||||||
if (!gameDir.exists()) {
|
if (newFile.exists())
|
||||||
File newFile = MCUtils.getLocation();
|
gameDir = newFile;
|
||||||
if (newFile.exists())
|
|
||||||
gameDir = newFile;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return gameDir;
|
return gameDir;
|
||||||
}
|
}
|
||||||
@@ -80,6 +76,6 @@ public final class MCUtils {
|
|||||||
public static void tryWriteProfile(File gameDir) throws IOException {
|
public static void tryWriteProfile(File gameDir) throws IOException {
|
||||||
File file = new File(gameDir, "launcher_profiles.json");
|
File file = new File(gameDir, "launcher_profiles.json");
|
||||||
if (!file.exists())
|
if (!file.exists())
|
||||||
FileUtils.writeStringToFile(file, PROFILE);
|
FileUtils.write(file, PROFILE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ public class AssetsMojangLoader extends IAssetsHandler {
|
|||||||
public void executeTask() throws Throwable {
|
public void executeTask() throws Throwable {
|
||||||
if (!areDependTasksSucceeded)
|
if (!areDependTasksSucceeded)
|
||||||
throw new IllegalStateException("Failed to get asset index");
|
throw new IllegalStateException("Failed to get asset index");
|
||||||
String result = FileUtils.readFileToString(f);
|
String result = FileUtils.read(f);
|
||||||
if (StrUtils.isBlank(result))
|
if (StrUtils.isBlank(result))
|
||||||
throw new IllegalStateException("Index json is empty, please redownload it!");
|
throw new IllegalStateException("Index json is empty, please redownload it!");
|
||||||
AssetsIndex o = C.GSON.fromJson(result, AssetsIndex.class);
|
AssetsIndex o = C.GSON.fromJson(result, AssetsIndex.class);
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ public class MinecraftAssetService extends IMinecraftAssetService {
|
|||||||
File objectsDir = new File(assetsDir, "objects");
|
File objectsDir = new File(assetsDir, "objects");
|
||||||
File indexFile = new File(indexDir, assetVersion + ".json");
|
File indexFile = new File(indexDir, assetVersion + ".json");
|
||||||
try {
|
try {
|
||||||
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(FileUtils.readFileToString(indexFile, "UTF-8"), AssetsIndex.class);
|
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(FileUtils.read(indexFile, "UTF-8"), AssetsIndex.class);
|
||||||
|
|
||||||
String hash = ((AssetsObject) index.getFileMap().get(name)).getHash();
|
String hash = ((AssetsObject) index.getFileMap().get(name)).getHash();
|
||||||
return new File(objectsDir, hash.substring(0, 2) + "/" + hash);
|
return new File(objectsDir, hash.substring(0, 2) + "/" + hash);
|
||||||
@@ -152,7 +152,7 @@ public class MinecraftAssetService extends IMinecraftAssetService {
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
String assetIndexContent = FileUtils.readFileToString(indexFile, "UTF-8");
|
String assetIndexContent = FileUtils.read(indexFile, "UTF-8");
|
||||||
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(assetIndexContent, AssetsIndex.class);
|
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(assetIndexContent, AssetsIndex.class);
|
||||||
|
|
||||||
if (index == null)
|
if (index == null)
|
||||||
@@ -180,7 +180,7 @@ public class MinecraftAssetService extends IMinecraftAssetService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
String assetIndexContent = FileUtils.readFileToString(indexFile, "UTF-8");
|
String assetIndexContent = FileUtils.read(indexFile, "UTF-8");
|
||||||
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(assetIndexContent, AssetsIndex.class);
|
AssetsIndex index = (AssetsIndex) C.GSON.fromJson(assetIndexContent, AssetsIndex.class);
|
||||||
|
|
||||||
if (index == null)
|
if (index == null)
|
||||||
@@ -195,7 +195,7 @@ public class MinecraftAssetService extends IMinecraftAssetService {
|
|||||||
if (original.exists()) {
|
if (original.exists()) {
|
||||||
cnt++;
|
cnt++;
|
||||||
if (!target.isFile())
|
if (!target.isFile())
|
||||||
FileUtils.copyFile(original, target, false);
|
FileUtils.copyFile(original, target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// If the scale new format existent file is lower then 0.1, use the old format.
|
// If the scale new format existent file is lower then 0.1, use the old format.
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ public class MinecraftDownloadService extends IMinecraftDownloadService {
|
|||||||
if (mvj.exists() && !mvj.delete())
|
if (mvj.exists() && !mvj.delete())
|
||||||
HMCLog.warn("Failed to delete " + mvj);
|
HMCLog.warn("Failed to delete " + mvj);
|
||||||
try {
|
try {
|
||||||
MinecraftVersion mv = C.GSON.fromJson(FileUtils.readFileToStringQuietly(new File(vpath, id + ".json")), MinecraftVersion.class);
|
MinecraftVersion mv = C.GSON.fromJson(FileUtils.readQuietly(new File(vpath, id + ".json")), MinecraftVersion.class);
|
||||||
if (mv == null)
|
if (mv == null)
|
||||||
throw new JsonSyntaxException("incorrect version");
|
throw new JsonSyntaxException("incorrect version");
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ public final class MinecraftInstallerService extends IMinecraftInstallerService
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Task downloadForge(String installId, InstallerVersion v) {
|
public Task downloadForge(String installId, InstallerVersion v) {
|
||||||
File filepath = IOUtils.tryGetCanonicalFile(IOUtils.currentDirWithSeparator() + "forge-installer.jar");
|
File filepath = IOUtils.tryGetCanonicalFile("forge-installer.jar");
|
||||||
if (v.installer == null)
|
if (v.installer == null)
|
||||||
return null;
|
return null;
|
||||||
else
|
else
|
||||||
@@ -68,7 +68,7 @@ public final class MinecraftInstallerService extends IMinecraftInstallerService
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Task downloadOptiFine(String installId, InstallerVersion v) {
|
public Task downloadOptiFine(String installId, InstallerVersion v) {
|
||||||
File filepath = IOUtils.tryGetCanonicalFile(IOUtils.currentDirWithSeparator() + "optifine-installer.jar");
|
File filepath = IOUtils.tryGetCanonicalFile("optifine-installer.jar");
|
||||||
if (v.installer == null)
|
if (v.installer == null)
|
||||||
return null;
|
return null;
|
||||||
OptiFineDownloadFormatter task = new OptiFineDownloadFormatter(v.installer);
|
OptiFineDownloadFormatter task = new OptiFineDownloadFormatter(v.installer);
|
||||||
@@ -79,7 +79,7 @@ public final class MinecraftInstallerService extends IMinecraftInstallerService
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Task downloadLiteLoader(String installId, InstallerVersion v) {
|
public Task downloadLiteLoader(String installId, InstallerVersion v) {
|
||||||
File filepath = IOUtils.tryGetCanonicalFile(IOUtils.currentDirWithSeparator() + "liteloader-universal.jar");
|
File filepath = IOUtils.tryGetCanonicalFile("liteloader-universal.jar");
|
||||||
FileDownloadTask task = (FileDownloadTask) new FileDownloadTask(v.universal, filepath).setTag("LiteLoader");
|
FileDownloadTask task = (FileDownloadTask) new FileDownloadTask(v.universal, filepath).setTag("LiteLoader");
|
||||||
return task.after(new LiteLoaderInstaller(service, installId, (LiteLoaderVersionList.LiteLoaderInstallerVersion) v).registerPreviousResult(task))
|
return task.after(new LiteLoaderInstaller(service, installId, (LiteLoaderVersionList.LiteLoaderInstallerVersion) v).registerPreviousResult(task))
|
||||||
.after(new DeleteFileTask(filepath));
|
.after(new DeleteFileTask(filepath));
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ import java.util.ArrayList;
|
|||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
import org.jackhuang.hellominecraft.util.system.Compressor;
|
import org.jackhuang.hellominecraft.util.system.Compressor;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -40,7 +39,7 @@ public class PackMinecraftInstaller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void install() throws IOException {
|
public void install() throws IOException {
|
||||||
File file = new File(IOUtils.currentDir(), "HMCL-MERGE-TEMP");
|
File file = new File("HMCL-MERGE-TEMP");
|
||||||
if (!file.exists() && !file.mkdirs())
|
if (!file.exists() && !file.mkdirs())
|
||||||
HMCLog.warn("Failed to make directories: " + file);
|
HMCLog.warn("Failed to make directories: " + file);
|
||||||
for (String src1 : src)
|
for (String src1 : src)
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ public class OptiFineInstaller extends Task implements PreviousResultRegistrar<F
|
|||||||
if (!loc.exists() && loc.mkdirs())
|
if (!loc.exists() && loc.mkdirs())
|
||||||
HMCLog.warn("Failed to make directories: " + loc);
|
HMCLog.warn("Failed to make directories: " + loc);
|
||||||
File json = new File(loc, mv.id + ".json");
|
File json = new File(loc, mv.id + ".json");
|
||||||
FileUtils.writeStringToFile(json, C.GSON.toJson(mv, MinecraftVersion.class));
|
FileUtils.write(json, C.GSON.toJson(mv, MinecraftVersion.class));
|
||||||
|
|
||||||
service.version().refreshVersions();
|
service.version().refreshVersions();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ import org.jackhuang.hellominecraft.util.MessageBox;
|
|||||||
import org.jackhuang.hellominecraft.util.system.OS;
|
import org.jackhuang.hellominecraft.util.system.OS;
|
||||||
import org.jackhuang.hellominecraft.util.system.Platform;
|
import org.jackhuang.hellominecraft.util.system.Platform;
|
||||||
import org.jackhuang.hellominecraft.util.StrUtils;
|
import org.jackhuang.hellominecraft.util.StrUtils;
|
||||||
import org.jackhuang.hellominecraft.util.Utils;
|
|
||||||
import org.jackhuang.hellominecraft.launcher.core.GameException;
|
import org.jackhuang.hellominecraft.launcher.core.GameException;
|
||||||
import org.jackhuang.hellominecraft.launcher.core.auth.UserProfileProvider;
|
import org.jackhuang.hellominecraft.launcher.core.auth.UserProfileProvider;
|
||||||
import org.jackhuang.hellominecraft.launcher.core.version.MinecraftVersion;
|
import org.jackhuang.hellominecraft.launcher.core.version.MinecraftVersion;
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ public class GameLauncher {
|
|||||||
* @throws IOException failed creating process
|
* @throws IOException failed creating process
|
||||||
*/
|
*/
|
||||||
public void launch(List str) throws IOException {
|
public void launch(List str) throws IOException {
|
||||||
if (!service.version().onLaunch())
|
if (!service.version().onLaunch(options.getLaunchVersion()))
|
||||||
return;
|
return;
|
||||||
if (StrUtils.isNotBlank(options.getPrecalledCommand())) {
|
if (StrUtils.isNotBlank(options.getPrecalledCommand())) {
|
||||||
Process p = Runtime.getRuntime().exec(options.getPrecalledCommand());
|
Process p = Runtime.getRuntime().exec(options.getPrecalledCommand());
|
||||||
@@ -155,7 +155,7 @@ public class GameLauncher {
|
|||||||
*/
|
*/
|
||||||
public File makeLauncher(String launcherName, List str) throws IOException {
|
public File makeLauncher(String launcherName, List str) throws IOException {
|
||||||
HMCLog.log("Making shell launcher...");
|
HMCLog.log("Making shell launcher...");
|
||||||
service.version().onLaunch();
|
service.version().onLaunch(options.getLaunchVersion());
|
||||||
boolean isWin = OS.os() == OS.WINDOWS;
|
boolean isWin = OS.os() == OS.WINDOWS;
|
||||||
File f = new File(launcherName + (isWin ? ".bat" : ".sh"));
|
File f = new File(launcherName + (isWin ? ".bat" : ".sh"));
|
||||||
if (!f.exists() && !f.createNewFile())
|
if (!f.exists() && !f.createNewFile())
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ public final class ModpackManager {
|
|||||||
HMCLog.warn("Failed to rename incorrect json " + oldFile + " to " + nowFile);
|
HMCLog.warn("Failed to rename incorrect json " + oldFile + " to " + nowFile);
|
||||||
|
|
||||||
File json = new File(nowFile, "pack.json");
|
File json = new File(nowFile, "pack.json");
|
||||||
MinecraftVersion mv = C.GSON.fromJson(FileUtils.readFileToString(json), MinecraftVersion.class);
|
MinecraftVersion mv = C.GSON.fromJson(FileUtils.read(json), MinecraftVersion.class);
|
||||||
if (mv.jar == null)
|
if (mv.jar == null)
|
||||||
throw new FileNotFoundException(C.i18n("modpack.incorrect_format.no_jar"));
|
throw new FileNotFoundException(C.i18n("modpack.incorrect_format.no_jar"));
|
||||||
|
|
||||||
c.add(service.download().downloadMinecraftJar(mv, new File(nowFile, id + ".jar")));
|
c.add(service.download().downloadMinecraftJar(mv, new File(nowFile, id + ".jar")));
|
||||||
mv.jar = null;
|
mv.jar = null;
|
||||||
FileUtils.writeStringToFile(json, C.GSON.toJson(mv));
|
FileUtils.write(json, C.GSON.toJson(mv));
|
||||||
if (!json.renameTo(new File(nowFile, id + ".json")))
|
if (!json.renameTo(new File(nowFile, id + ".json")))
|
||||||
HMCLog.warn("Failed to rename pack.json to new id");
|
HMCLog.warn("Failed to rename pack.json to new id");
|
||||||
|
|
||||||
|
|||||||
@@ -72,13 +72,6 @@ public abstract class IMinecraftProvider {
|
|||||||
*/
|
*/
|
||||||
public abstract boolean install(String version, Consumer<MinecraftVersion> callback);
|
public abstract boolean install(String version, Consumer<MinecraftVersion> callback);
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the thing like ".minecraft/resourcepacks".
|
|
||||||
*
|
|
||||||
* @return the thing
|
|
||||||
*/
|
|
||||||
public abstract File getResourcePacks();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param v should be resolved
|
* @param v should be resolved
|
||||||
@@ -164,7 +157,7 @@ public abstract class IMinecraftProvider {
|
|||||||
*
|
*
|
||||||
* @return if false, will break the launch process.
|
* @return if false, will break the launch process.
|
||||||
*/
|
*/
|
||||||
public abstract boolean onLaunch();
|
public abstract boolean onLaunch(String id);
|
||||||
|
|
||||||
public File baseDirectory() {
|
public File baseDirectory() {
|
||||||
return service.baseDirectory();
|
return service.baseDirectory();
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ public class MinecraftVersionManager extends IMinecraftProvider {
|
|||||||
}
|
}
|
||||||
MinecraftVersion mcVersion;
|
MinecraftVersion mcVersion;
|
||||||
try {
|
try {
|
||||||
mcVersion = C.GSON.fromJson(FileUtils.readFileToString(jsonFile), MinecraftVersion.class);
|
mcVersion = C.GSON.fromJson(FileUtils.read(jsonFile), MinecraftVersion.class);
|
||||||
if (mcVersion == null)
|
if (mcVersion == null)
|
||||||
throw new GameException("Wrong json format, got null.");
|
throw new GameException("Wrong json format, got null.");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@@ -119,7 +119,7 @@ public class MinecraftVersionManager extends IMinecraftProvider {
|
|||||||
if (MessageBox.Show(C.i18n("launcher.versions_json_not_formatted", id), MessageBox.YES_NO_OPTION) == MessageBox.YES_OPTION) {
|
if (MessageBox.Show(C.i18n("launcher.versions_json_not_formatted", id), MessageBox.YES_NO_OPTION) == MessageBox.YES_OPTION) {
|
||||||
service.download().downloadMinecraftVersionJson(id);
|
service.download().downloadMinecraftVersionJson(id);
|
||||||
try {
|
try {
|
||||||
mcVersion = C.GSON.fromJson(FileUtils.readFileToString(jsonFile), MinecraftVersion.class);
|
mcVersion = C.GSON.fromJson(FileUtils.read(jsonFile), MinecraftVersion.class);
|
||||||
if (mcVersion == null)
|
if (mcVersion == null)
|
||||||
throw new GameException("Wrong json format, got null.");
|
throw new GameException("Wrong json format, got null.");
|
||||||
} catch (IOException | GameException | JsonSyntaxException ex) {
|
} catch (IOException | GameException | JsonSyntaxException ex) {
|
||||||
@@ -164,7 +164,7 @@ public class MinecraftVersionManager extends IMinecraftProvider {
|
|||||||
public boolean renameVersion(String from, String to) {
|
public boolean renameVersion(String from, String to) {
|
||||||
try {
|
try {
|
||||||
File fromJson = new File(versionRoot(from), from + ".json");
|
File fromJson = new File(versionRoot(from), from + ".json");
|
||||||
MinecraftVersion mcVersion = C.GSON.fromJson(FileUtils.readFileToString(fromJson), MinecraftVersion.class);
|
MinecraftVersion mcVersion = C.GSON.fromJson(FileUtils.read(fromJson), MinecraftVersion.class);
|
||||||
mcVersion.id = to;
|
mcVersion.id = to;
|
||||||
FileUtils.writeQuietly(fromJson, C.GSON.toJson(mcVersion));
|
FileUtils.writeQuietly(fromJson, C.GSON.toJson(mcVersion));
|
||||||
File toDir = versionRoot(to);
|
File toDir = versionRoot(to);
|
||||||
@@ -198,7 +198,7 @@ public class MinecraftVersionManager extends IMinecraftProvider {
|
|||||||
return false;
|
return false;
|
||||||
if (callback != null) {
|
if (callback != null) {
|
||||||
File mvt = new File(versionRoot(id), id + ".json");
|
File mvt = new File(versionRoot(id), id + ".json");
|
||||||
MinecraftVersion v = C.GSON.fromJson(FileUtils.readFileToStringQuietly(mvt), MinecraftVersion.class);
|
MinecraftVersion v = C.GSON.fromJson(FileUtils.readQuietly(mvt), MinecraftVersion.class);
|
||||||
if (v == null)
|
if (v == null)
|
||||||
return false;
|
return false;
|
||||||
callback.accept(v);
|
callback.accept(v);
|
||||||
@@ -254,13 +254,8 @@ public class MinecraftVersionManager extends IMinecraftProvider {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getResourcePacks() {
|
public boolean onLaunch(String id) {
|
||||||
return new File(service.baseDirectory(), "resourcepacks");
|
File resourcePacks = new File(getRunDirectory(id), "resourcepacks");
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onLaunch() {
|
|
||||||
File resourcePacks = getResourcePacks();
|
|
||||||
if (!resourcePacks.exists() && !resourcePacks.mkdirs())
|
if (!resourcePacks.exists() && !resourcePacks.mkdirs())
|
||||||
HMCLog.warn("Failed to make resourcePacks: " + resourcePacks);
|
HMCLog.warn("Failed to make resourcePacks: " + resourcePacks);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ public final class Profile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Profile(String name) {
|
public Profile(String name) {
|
||||||
this(name, new File(IOUtils.currentDir(), ".minecraft").getPath());
|
this(name, new File(".minecraft").getPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
public Profile(String name, String gameDir) {
|
public Profile(String name, String gameDir) {
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ import org.jackhuang.hellominecraft.launcher.core.download.DownloadType;
|
|||||||
import org.jackhuang.hellominecraft.util.CollectionUtils;
|
import org.jackhuang.hellominecraft.util.CollectionUtils;
|
||||||
import org.jackhuang.hellominecraft.util.EventHandler;
|
import org.jackhuang.hellominecraft.util.EventHandler;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
|
||||||
import org.jackhuang.hellominecraft.util.MessageBox;
|
import org.jackhuang.hellominecraft.util.MessageBox;
|
||||||
import org.jackhuang.hellominecraft.util.UpdateChecker;
|
import org.jackhuang.hellominecraft.util.UpdateChecker;
|
||||||
|
|
||||||
@@ -43,7 +42,7 @@ public final class Settings {
|
|||||||
public static final String DEFAULT_PROFILE = "Default";
|
public static final String DEFAULT_PROFILE = "Default";
|
||||||
public static final String HOME_PROFILE = "Home";
|
public static final String HOME_PROFILE = "Home";
|
||||||
|
|
||||||
public static final File SETTINGS_FILE = new File(IOUtils.currentDir(), "hmcl.json");
|
public static final File SETTINGS_FILE = new File("hmcl.json");
|
||||||
|
|
||||||
private static final Config SETTINGS;
|
private static final Config SETTINGS;
|
||||||
public static final UpdateChecker UPDATE_CHECKER = new UpdateChecker(Main.getVersionNumber(), "hmcl");
|
public static final UpdateChecker UPDATE_CHECKER = new UpdateChecker(Main.getVersionNumber(), "hmcl");
|
||||||
@@ -71,7 +70,7 @@ public final class Settings {
|
|||||||
Config c = new Config();
|
Config c = new Config();
|
||||||
if (SETTINGS_FILE.exists())
|
if (SETTINGS_FILE.exists())
|
||||||
try {
|
try {
|
||||||
String str = FileUtils.readFileToString(SETTINGS_FILE);
|
String str = FileUtils.read(SETTINGS_FILE);
|
||||||
if (str == null || str.trim().equals(""))
|
if (str == null || str.trim().equals(""))
|
||||||
HMCLog.log("Settings file is empty, use the default settings.");
|
HMCLog.log("Settings file is empty, use the default settings.");
|
||||||
else {
|
else {
|
||||||
|
|||||||
@@ -406,10 +406,6 @@
|
|||||||
<Group type="102" attributes="0">
|
<Group type="102" attributes="0">
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
<Group type="103" groupAlignment="0" attributes="0">
|
||||||
<Component id="txtWrapperLauncher" alignment="0" max="32767" attributes="0"/>
|
<Component id="txtWrapperLauncher" alignment="0" max="32767" attributes="0"/>
|
||||||
<Group type="102" alignment="0" attributes="0">
|
|
||||||
<Component id="lblPrecalledCommand1" min="-2" max="-2" attributes="0"/>
|
|
||||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
|
||||||
</Group>
|
|
||||||
<Group type="102" alignment="0" attributes="0">
|
<Group type="102" alignment="0" attributes="0">
|
||||||
<EmptySpace max="-2" attributes="0"/>
|
<EmptySpace max="-2" attributes="0"/>
|
||||||
<Component id="chkNoJVMArgs" min="-2" max="-2" attributes="0"/>
|
<Component id="chkNoJVMArgs" min="-2" max="-2" attributes="0"/>
|
||||||
@@ -418,6 +414,7 @@
|
|||||||
</Group>
|
</Group>
|
||||||
<Group type="102" attributes="0">
|
<Group type="102" attributes="0">
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
<Group type="103" groupAlignment="0" attributes="0">
|
||||||
|
<Component id="lblPrecalledCommand1" alignment="0" min="-2" max="-2" attributes="0"/>
|
||||||
<Component id="lblPrecalledCommand" alignment="0" min="-2" max="-2" attributes="0"/>
|
<Component id="lblPrecalledCommand" alignment="0" min="-2" max="-2" attributes="0"/>
|
||||||
<Component id="lblServerIP" alignment="0" min="-2" max="-2" attributes="0"/>
|
<Component id="lblServerIP" alignment="0" min="-2" max="-2" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
|
|||||||
@@ -61,7 +61,6 @@ import org.jackhuang.hellominecraft.util.system.OS;
|
|||||||
import org.jackhuang.hellominecraft.util.StrUtils;
|
import org.jackhuang.hellominecraft.util.StrUtils;
|
||||||
import org.jackhuang.hellominecraft.util.func.Consumer;
|
import org.jackhuang.hellominecraft.util.func.Consumer;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
|
||||||
import org.jackhuang.hellominecraft.util.ui.SwingUtils;
|
import org.jackhuang.hellominecraft.util.ui.SwingUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.Java;
|
import org.jackhuang.hellominecraft.util.system.Java;
|
||||||
import org.jackhuang.hellominecraft.util.tasks.TaskWindow;
|
import org.jackhuang.hellominecraft.util.tasks.TaskWindow;
|
||||||
@@ -1095,7 +1094,7 @@ public final class GameSettingsPanel extends AnimatedPanel implements DropTarget
|
|||||||
}//GEN-LAST:event_btnMakeLaunchScriptActionPerformed
|
}//GEN-LAST:event_btnMakeLaunchScriptActionPerformed
|
||||||
|
|
||||||
private void btnIncludeMinecraftActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnIncludeMinecraftActionPerformed
|
private void btnIncludeMinecraftActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnIncludeMinecraftActionPerformed
|
||||||
JFileChooser fc = new JFileChooser(IOUtils.currentDir());
|
JFileChooser fc = new JFileChooser(new File("."));
|
||||||
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
|
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
|
||||||
if (fc.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
|
if (fc.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
|
||||||
File newGameDir = fc.getSelectedFile();
|
File newGameDir = fc.getSelectedFile();
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ public class LaunchingUIDaemon {
|
|||||||
}
|
}
|
||||||
String msg = C.i18n("launch.exited_abnormally") + " exit code: " + t;
|
String msg = C.i18n("launch.exited_abnormally") + " exit code: " + t;
|
||||||
if (errorText != null)
|
if (errorText != null)
|
||||||
msg += ", advice: " + MinecraftCrashAdvicer.getAdvice(FileUtils.readFileToStringQuietly(new File(errorText)));
|
msg += ", advice: " + MinecraftCrashAdvicer.getAdvice(FileUtils.readQuietly(new File(errorText)));
|
||||||
MessageBox.Show(msg);
|
MessageBox.Show(msg);
|
||||||
WebFrame f = new WebFrame(logs);
|
WebFrame f = new WebFrame(logs);
|
||||||
f.setModal(true);
|
f.setModal(true);
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ public class HMCLMinecraftService extends IMinecraftService {
|
|||||||
VersionSetting vs = null;
|
VersionSetting vs = null;
|
||||||
File f = new File(provider.versionRoot(id), "hmclversion.cfg");
|
File f = new File(provider.versionRoot(id), "hmclversion.cfg");
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
String s = FileUtils.readFileToStringQuietly(f);
|
String s = FileUtils.readQuietly(f);
|
||||||
if (s != null)
|
if (s != null)
|
||||||
try {
|
try {
|
||||||
vs = C.GSON.fromJson(s, VersionSetting.class);
|
vs = C.GSON.fromJson(s, VersionSetting.class);
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ public class AppDataUpgrader extends IUpgrader {
|
|||||||
try {
|
try {
|
||||||
File f = AppDataUpgraderTask.HMCL_VER_FILE;
|
File f = AppDataUpgraderTask.HMCL_VER_FILE;
|
||||||
if (f.exists()) {
|
if (f.exists()) {
|
||||||
Map<String, String> m = C.GSON.fromJson(FileUtils.readFileToString(f), Map.class);
|
Map<String, String> m = C.GSON.fromJson(FileUtils.read(f), Map.class);
|
||||||
String s = m.get("ver");
|
String s = m.get("ver");
|
||||||
if (s != null && VersionNumber.check(s).compareTo(nowVersion) > 0) {
|
if (s != null && VersionNumber.check(s).compareTo(nowVersion) > 0) {
|
||||||
String j = m.get("loc");
|
String j = m.get("loc");
|
||||||
@@ -179,7 +179,7 @@ public class AppDataUpgrader extends IUpgrader {
|
|||||||
json.put("ver", newestVersion);
|
json.put("ver", newestVersion);
|
||||||
json.put("loc", f.getAbsolutePath());
|
json.put("loc", f.getAbsolutePath());
|
||||||
String result = C.GSON.toJson(json);
|
String result = C.GSON.toJson(json);
|
||||||
FileUtils.writeStringToFile(HMCL_VER_FILE, result);
|
FileUtils.write(HMCL_VER_FILE, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ import java.io.FileNotFoundException;
|
|||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.nio.channels.FileChannel;
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.StandardCopyOption;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
@@ -134,20 +135,10 @@ public class FileUtils {
|
|||||||
|
|
||||||
public static void copyDirectory(File srcDir, File destDir)
|
public static void copyDirectory(File srcDir, File destDir)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
copyDirectory(srcDir, destDir, true);
|
copyDirectory(srcDir, destDir, null);
|
||||||
}
|
|
||||||
|
|
||||||
public static void copyDirectory(File srcDir, File destDir, boolean preserveFileDate)
|
|
||||||
throws IOException {
|
|
||||||
copyDirectory(srcDir, destDir, null, preserveFileDate);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void copyDirectory(File srcDir, File destDir, FileFilter filter)
|
public static void copyDirectory(File srcDir, File destDir, FileFilter filter)
|
||||||
throws IOException {
|
|
||||||
copyDirectory(srcDir, destDir, filter, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void copyDirectory(File srcDir, File destDir, FileFilter filter, boolean preserveFileDate)
|
|
||||||
throws IOException {
|
throws IOException {
|
||||||
if (srcDir == null)
|
if (srcDir == null)
|
||||||
throw new NullPointerException("Source must not be null");
|
throw new NullPointerException("Source must not be null");
|
||||||
@@ -171,10 +162,10 @@ public class FileUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
doCopyDirectory(srcDir, destDir, filter, preserveFileDate, exclusionList);
|
doCopyDirectory(srcDir, destDir, filter, exclusionList);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void doCopyDirectory(File srcDir, File destDir, FileFilter filter, boolean preserveFileDate, List<String> exclusionList)
|
private static void doCopyDirectory(File srcDir, File destDir, FileFilter filter, List<String> exclusionList)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
File[] srcFiles = filter == null ? srcDir.listFiles() : srcDir.listFiles(filter);
|
File[] srcFiles = filter == null ? srcDir.listFiles() : srcDir.listFiles(filter);
|
||||||
if (srcFiles == null)
|
if (srcFiles == null)
|
||||||
@@ -191,22 +182,19 @@ public class FileUtils {
|
|||||||
File dstFile = new File(destDir, srcFile.getName());
|
File dstFile = new File(destDir, srcFile.getName());
|
||||||
if ((exclusionList == null) || (!exclusionList.contains(srcFile.getCanonicalPath())))
|
if ((exclusionList == null) || (!exclusionList.contains(srcFile.getCanonicalPath())))
|
||||||
if (srcFile.isDirectory())
|
if (srcFile.isDirectory())
|
||||||
doCopyDirectory(srcFile, dstFile, filter, preserveFileDate, exclusionList);
|
doCopyDirectory(srcFile, dstFile, filter, exclusionList);
|
||||||
else
|
else
|
||||||
doCopyFile(srcFile, dstFile, preserveFileDate);
|
doCopyFile(srcFile, dstFile);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
destDir.setLastModified(srcDir.lastModified());
|
||||||
if (preserveFileDate)
|
|
||||||
destDir.setLastModified(srcDir.lastModified());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String readFileToString(File file)
|
public static String read(File file)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String readFileToStringQuietly(File file) {
|
public static String readQuietly(File file) {
|
||||||
try {
|
try {
|
||||||
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
@@ -215,12 +203,12 @@ public class FileUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String readFileToString(File file, String charset)
|
public static String read(File file, String charset)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return NetUtils.getStreamContent(IOUtils.openInputStream(file), charset);
|
return NetUtils.getStreamContent(IOUtils.openInputStream(file), charset);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String readFileToStringIgnoreFileNotFound(File file) throws IOException {
|
public static String readIgnoreFileNotFound(File file) throws IOException {
|
||||||
try {
|
try {
|
||||||
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
return NetUtils.getStreamContent(IOUtils.openInputStream(file));
|
||||||
} catch (FileNotFoundException ex) {
|
} catch (FileNotFoundException ex) {
|
||||||
@@ -237,11 +225,6 @@ public class FileUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void copyFile(File srcFile, File destFile)
|
public static void copyFile(File srcFile, File destFile)
|
||||||
throws IOException {
|
|
||||||
copyFile(srcFile, destFile, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void copyFile(File srcFile, File destFile, boolean preserveFileDate)
|
|
||||||
throws IOException {
|
throws IOException {
|
||||||
if (srcFile == null)
|
if (srcFile == null)
|
||||||
throw new NullPointerException("Source must not be null");
|
throw new NullPointerException("Source must not be null");
|
||||||
@@ -260,42 +243,12 @@ public class FileUtils {
|
|||||||
|
|
||||||
if ((destFile.exists()) && (!destFile.canWrite()))
|
if ((destFile.exists()) && (!destFile.canWrite()))
|
||||||
throw new IOException("Destination '" + destFile + "' exists but is read-only");
|
throw new IOException("Destination '" + destFile + "' exists but is read-only");
|
||||||
doCopyFile(srcFile, destFile, preserveFileDate);
|
doCopyFile(srcFile, destFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void doCopyFile(File srcFile, File destFile, boolean preserveFileDate)
|
public static void doCopyFile(File srcFile, File destFile)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
if ((destFile.exists()) && (destFile.isDirectory()))
|
Files.copy(srcFile.toPath(), destFile.toPath(), StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING);
|
||||||
throw new IOException("Destination '" + destFile + "' exists but is a directory");
|
|
||||||
|
|
||||||
FileInputStream fis = null;
|
|
||||||
FileOutputStream fos = null;
|
|
||||||
FileChannel input = null;
|
|
||||||
FileChannel output = null;
|
|
||||||
try {
|
|
||||||
fis = new FileInputStream(srcFile);
|
|
||||||
fos = new FileOutputStream(destFile);
|
|
||||||
input = fis.getChannel();
|
|
||||||
output = fos.getChannel();
|
|
||||||
long size = input.size();
|
|
||||||
long pos = 0L;
|
|
||||||
long count;
|
|
||||||
while (pos < size) {
|
|
||||||
count = size - pos > 31457280L ? 31457280L : size - pos;
|
|
||||||
pos += output.transferFrom(input, pos, count);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
IOUtils.closeQuietly(output);
|
|
||||||
IOUtils.closeQuietly(fos);
|
|
||||||
IOUtils.closeQuietly(input);
|
|
||||||
IOUtils.closeQuietly(fis);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (srcFile.length() != destFile.length())
|
|
||||||
throw new IOException("Failed to copy full contents from '" + srcFile + "' to '" + destFile + "'");
|
|
||||||
|
|
||||||
if (preserveFileDate)
|
|
||||||
destFile.setLastModified(srcFile.lastModified());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int indexOfLastSeparator(String filename) {
|
public static int indexOfLastSeparator(String filename) {
|
||||||
@@ -350,9 +303,9 @@ public class FileUtils {
|
|||||||
return filename.substring(0, index);
|
return filename.substring(0, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean writeQuietly(File file, CharSequence data) {
|
public static boolean writeQuietly(File file, String data) {
|
||||||
try {
|
try {
|
||||||
write(file, data);
|
FileUtils.write(file, data);
|
||||||
return true;
|
return true;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
HMCLog.warn("Failed to write data to file: " + file, e);
|
HMCLog.warn("Failed to write data to file: " + file, e);
|
||||||
@@ -360,38 +313,17 @@ public class FileUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void write(File file, CharSequence data)
|
public static void write(File file, String data)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
write(file, data, "UTF-8", false);
|
write(file, data, "UTF-8", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void write(File file, CharSequence data, boolean append)
|
public static void write(File file, String data, String encoding)
|
||||||
throws IOException {
|
|
||||||
write(file, data, "UTF-8", append);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void write(File file, CharSequence data, String encoding)
|
|
||||||
throws IOException {
|
throws IOException {
|
||||||
write(file, data, encoding, false);
|
write(file, data, encoding, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void write(File file, CharSequence data, String encoding, boolean append)
|
public static void write(File file, String data, String encoding, boolean append)
|
||||||
throws IOException {
|
|
||||||
String str = data == null ? null : data.toString();
|
|
||||||
writeStringToFile(file, str, encoding, append);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeStringToFile(File file, String data)
|
|
||||||
throws IOException {
|
|
||||||
writeStringToFile(file, data, "UTF-8", false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeStringToFile(File file, String data, String encoding)
|
|
||||||
throws IOException {
|
|
||||||
writeStringToFile(file, data, encoding, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void writeStringToFile(File file, String data, String encoding, boolean append)
|
|
||||||
throws IOException {
|
throws IOException {
|
||||||
OutputStream out = null;
|
OutputStream out = null;
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -27,8 +27,6 @@ import java.io.IOException;
|
|||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.io.Reader;
|
|
||||||
import java.io.Writer;
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.NetworkInterface;
|
import java.net.NetworkInterface;
|
||||||
@@ -37,6 +35,7 @@ import java.net.URL;
|
|||||||
import java.net.UnknownHostException;
|
import java.net.UnknownHostException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import org.jackhuang.hellominecraft.util.func.Consumer;
|
||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -85,40 +84,24 @@ public class IOUtils {
|
|||||||
return t.substring(i + 1, (t.length() - i) + (i + 1) - 1);
|
return t.substring(i + 1, (t.length() - i) + (i + 1) - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ArrayList<String> findAllFile(File f) {
|
public static void findAllFile(File f, Consumer<String> callback) {
|
||||||
ArrayList<String> arr = new ArrayList<>();
|
|
||||||
if (f.isDirectory()) {
|
if (f.isDirectory()) {
|
||||||
File[] f1 = f.listFiles();
|
File[] f1 = f.listFiles();
|
||||||
int len = f1.length;
|
int len = f1.length;
|
||||||
for (int i = 0; i < len; i++)
|
for (int i = 0; i < len; i++)
|
||||||
if (f1[i].isFile())
|
if (f1[i].isFile())
|
||||||
arr.add(f1[i].getName());
|
callback.accept(f1[i].getName());
|
||||||
}
|
}
|
||||||
return arr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ArrayList<String> findAllFileWithFullName(File f) {
|
public static void findAllDir(File f, Consumer<String> callback) {
|
||||||
ArrayList<String> arr = new ArrayList<>();
|
|
||||||
if (f.isDirectory()) {
|
|
||||||
File[] f1 = f.listFiles();
|
|
||||||
int len = f1.length;
|
|
||||||
for (int i = 0; i < len; i++)
|
|
||||||
if (f1[i].isFile())
|
|
||||||
arr.add(addSeparator(f.getAbsolutePath()) + f1[i].getName());
|
|
||||||
}
|
|
||||||
return arr;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ArrayList<String> findAllDir(File f) {
|
|
||||||
ArrayList<String> arr = new ArrayList<>();
|
|
||||||
if (f.isDirectory()) {
|
if (f.isDirectory()) {
|
||||||
File[] f1 = f.listFiles();
|
File[] f1 = f.listFiles();
|
||||||
int len = f1.length;
|
int len = f1.length;
|
||||||
for (int i = 0; i < len; i++)
|
for (int i = 0; i < len; i++)
|
||||||
if (f1[i].isDirectory())
|
if (f1[i].isDirectory())
|
||||||
arr.add(f1[i].getName());
|
callback.accept(f1[i].getName());
|
||||||
}
|
}
|
||||||
return arr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getRealPath() {
|
public static String getRealPath() {
|
||||||
@@ -139,14 +122,6 @@ public class IOUtils {
|
|||||||
return path.startsWith("/") || path.indexOf(":") > 0;
|
return path.startsWith("/") || path.indexOf(":") > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static File currentDir() {
|
|
||||||
return new File(".");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String currentDirWithSeparator() {
|
|
||||||
return addSeparator(currentDir().getAbsolutePath());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getLocalMAC() {
|
public static String getLocalMAC() {
|
||||||
InetAddress addr;
|
InetAddress addr;
|
||||||
try {
|
try {
|
||||||
@@ -221,22 +196,6 @@ public class IOUtils {
|
|||||||
return entryBuffer;
|
return entryBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void closeQuietly(Reader input) {
|
|
||||||
closeQuietly((Closeable) input);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void closeQuietly(Writer output) {
|
|
||||||
closeQuietly((Closeable) output);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void closeQuietly(InputStream input) {
|
|
||||||
closeQuietly((Closeable) input);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void closeQuietly(OutputStream output) {
|
|
||||||
closeQuietly((Closeable) output);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void closeQuietly(Closeable closeable) {
|
public static void closeQuietly(Closeable closeable) {
|
||||||
try {
|
try {
|
||||||
if (closeable != null)
|
if (closeable != null)
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ public enum OS {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static String getLinuxReleaseVersion() throws IOException {
|
public static String getLinuxReleaseVersion() throws IOException {
|
||||||
return FileUtils.readFileToString(new File("/etc/issue"));
|
return FileUtils.read(new File("/etc/issue"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getSystemVersion() {
|
public static String getSystemVersion() {
|
||||||
|
|||||||
@@ -20,12 +20,12 @@ package org.jackhuang.hellominecraft.svrmgr.server;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
import org.jackhuang.hellominecraft.util.system.Compressor;
|
import org.jackhuang.hellominecraft.util.system.Compressor;
|
||||||
import org.jackhuang.hellominecraft.svrmgr.setting.SettingsManager;
|
import org.jackhuang.hellominecraft.svrmgr.setting.SettingsManager;
|
||||||
import org.jackhuang.hellominecraft.svrmgr.util.Utilities;
|
import org.jackhuang.hellominecraft.svrmgr.util.Utilities;
|
||||||
|
import org.jackhuang.hellominecraft.util.func.Consumer;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
||||||
|
|
||||||
@@ -39,9 +39,8 @@ public class BackupManager {
|
|||||||
return Utilities.getGameDir() + "backups-HMCSM" + File.separator;
|
return Utilities.getGameDir() + "backups-HMCSM" + File.separator;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ArrayList<String> getBackupList() {
|
public static void getBackupList(Consumer<String> c) {
|
||||||
String gameDir = backupDir();
|
IOUtils.findAllFile(new File(backupDir()), c);
|
||||||
return IOUtils.findAllFile(new File(gameDir));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void addWorldBackup(final String folder) {
|
public static void addWorldBackup(final String folder) {
|
||||||
@@ -61,17 +60,15 @@ public class BackupManager {
|
|||||||
t.start();
|
t.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ArrayList<String> findAllWorlds() {
|
public static void findAllWorlds(Consumer<String> callback) {
|
||||||
String gameDir = Utilities.getGameDir();
|
String gameDir = Utilities.getGameDir();
|
||||||
ArrayList<String> folders = IOUtils.findAllDir(new File(gameDir));
|
IOUtils.findAllDir(new File(gameDir), folder -> {
|
||||||
ArrayList<String> result = new ArrayList<>();
|
String worldPath = gameDir + folder + File.separator;
|
||||||
for (String folder : folders) {
|
IOUtils.findAllFile(new File(worldPath), f -> {
|
||||||
String worldPath = gameDir + folder + File.separator;
|
if ("level.dat".equals(f))
|
||||||
ArrayList<String> files = IOUtils.findAllFile(new File(worldPath));
|
callback.accept(folder);
|
||||||
if (files.contains("level.dat"))
|
});
|
||||||
result.add(folder);
|
});
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void restoreBackup(File backupFile) {
|
public static void restoreBackup(File backupFile) {
|
||||||
@@ -89,10 +86,10 @@ public class BackupManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void backupAllWorlds() {
|
public static void backupAllWorlds() {
|
||||||
ArrayList<String> al = findAllWorlds();
|
findAllWorlds(world -> {
|
||||||
for (String world : al)
|
|
||||||
if (!SettingsManager.settings.inactiveWorlds.contains(world))
|
if (!SettingsManager.settings.inactiveWorlds.contains(world))
|
||||||
addWorldBackup(world);
|
addWorldBackup(world);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void backupAllPlugins() {
|
public static void backupAllPlugins() {
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ public abstract class PlayerList<T extends BasePlayer> {
|
|||||||
op = null;
|
op = null;
|
||||||
if (txt.exists())
|
if (txt.exists())
|
||||||
try {
|
try {
|
||||||
initByText(FileUtils.readFileToStringIgnoreFileNotFound(txt));
|
initByText(FileUtils.readIgnoreFileNotFound(txt));
|
||||||
if (op != null)
|
if (op != null)
|
||||||
player.addAll(op);
|
player.addAll(op);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ import java.io.File;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
import org.jackhuang.hellominecraft.util.system.FileUtils;
|
||||||
import org.jackhuang.hellominecraft.util.system.IOUtils;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -37,13 +36,13 @@ public class SettingsManager {
|
|||||||
public static Settings settings;
|
public static Settings settings;
|
||||||
public static boolean isFirstLoad = false;
|
public static boolean isFirstLoad = false;
|
||||||
static Gson gson;
|
static Gson gson;
|
||||||
|
private static final File file = new File("hmcsm.json");
|
||||||
|
|
||||||
public static void load() {
|
public static void load() {
|
||||||
gson = new Gson();
|
gson = new Gson();
|
||||||
File file = new File(IOUtils.currentDir(), "hmcsm.json");
|
|
||||||
if (file.exists())
|
if (file.exists())
|
||||||
try {
|
try {
|
||||||
String str = FileUtils.readFileToString(file);
|
String str = FileUtils.read(file);
|
||||||
if (str == null || str.trim().equals(""))
|
if (str == null || str.trim().equals(""))
|
||||||
init();
|
init();
|
||||||
else
|
else
|
||||||
@@ -64,9 +63,8 @@ public class SettingsManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void save() {
|
public static void save() {
|
||||||
File f = new File(IOUtils.currentDir(), "hmcsm.json");
|
|
||||||
try {
|
try {
|
||||||
FileUtils.write(f, gson.toJson(settings));
|
FileUtils.write(file, gson.toJson(settings));
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
HMCLog.err("Failed to save settings.", ex);
|
HMCLog.err("Failed to save settings.", ex);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2781,13 +2781,12 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
String path = Utilities.getPath("mods");
|
String path = Utilities.getPath("mods");
|
||||||
if (path == null)
|
if (path == null)
|
||||||
return;
|
return;
|
||||||
ArrayList<String> sl = IOUtils.findAllFile(new File(path));
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstExternalMods.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstExternalMods.getModel();
|
||||||
while (model.getRowCount() > 0)
|
while (model.getRowCount() > 0)
|
||||||
model.removeRow(0);
|
model.removeRow(0);
|
||||||
for (String s : sl)
|
IOUtils.findAllFile(new File(path), s
|
||||||
model.addRow(new Object[] { !SettingsManager.settings.inactiveExtMods.contains(s), s, ModType.getModTypeShowName(ModType.getModType(IOUtils.addSeparator(path) + s)) });
|
-> model.addRow(new Object[] { !SettingsManager.settings.inactiveExtMods.contains(s), s, ModType.getModTypeShowName(ModType.getModType(IOUtils.addSeparator(path) + s)) })
|
||||||
|
);
|
||||||
lstExternalMods.updateUI();
|
lstExternalMods.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2795,19 +2794,18 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
String path = Utilities.getPath("plugins");
|
String path = Utilities.getPath("plugins");
|
||||||
if (path == null)
|
if (path == null)
|
||||||
return;
|
return;
|
||||||
ArrayList<String> sl = IOUtils.findAllFile(new File(path));
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstPlugins.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstPlugins.getModel();
|
||||||
while (model.getRowCount() > 0)
|
while (model.getRowCount() > 0)
|
||||||
model.removeRow(0);
|
model.removeRow(0);
|
||||||
for (String s : sl) {
|
IOUtils.findAllFile(new File(path), s -> {
|
||||||
PluginInformation p = PluginManager.getPluginYML(new File(Utilities.getGameDir() + "plugins" + File.separator + s));
|
PluginInformation p = PluginManager.getPluginYML(new File(Utilities.getGameDir() + "plugins" + File.separator + s));
|
||||||
if (p == null)
|
if (p == null)
|
||||||
model.addRow(new Object[] { !SettingsManager.settings.inactivePlugins.contains(s), s,
|
model.addRow(new Object[] { !SettingsManager.settings.inactivePlugins.contains(s), s,
|
||||||
"", "", "", "" });
|
"", "", "", "" });
|
||||||
else
|
else
|
||||||
model.addRow(new Object[] { !SettingsManager.settings.inactivePlugins.contains(s), s,
|
model.addRow(new Object[] { !SettingsManager.settings.inactivePlugins.contains(s), s,
|
||||||
p.name, p.version, p.author, p.description });
|
p.name, p.version, p.author, p.description });
|
||||||
}
|
});
|
||||||
|
|
||||||
lstPlugins.updateUI();
|
lstPlugins.updateUI();
|
||||||
}
|
}
|
||||||
@@ -2816,37 +2814,35 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
String path = Utilities.getPath("coremods");
|
String path = Utilities.getPath("coremods");
|
||||||
if (path == null)
|
if (path == null)
|
||||||
return;
|
return;
|
||||||
ArrayList<String> sl = IOUtils.findAllFile(new File(path));
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstCoreMods.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstCoreMods.getModel();
|
||||||
while (model.getRowCount() > 0)
|
while (model.getRowCount() > 0)
|
||||||
model.removeRow(0);
|
model.removeRow(0);
|
||||||
for (String s : sl)
|
IOUtils.findAllFile(new File(path), s
|
||||||
model.addRow(new Object[] { !SettingsManager.settings.inactiveCoreMods.contains(s), s, ModType.getModTypeShowName(ModType.getModType(IOUtils.addSeparator(path) + s)) });
|
-> model.addRow(new Object[] { !SettingsManager.settings.inactiveCoreMods.contains(s), s, ModType.getModTypeShowName(ModType.getModType(IOUtils.addSeparator(path) + s)) }));
|
||||||
|
|
||||||
lstCoreMods.updateUI();
|
lstCoreMods.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loadWorlds() {
|
void loadWorlds() {
|
||||||
ArrayList<String> s = BackupManager.findAllWorlds();
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstWorlds.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstWorlds.getModel();
|
||||||
if (SettingsManager.settings.inactiveWorlds == null)
|
if (SettingsManager.settings.inactiveWorlds == null)
|
||||||
SettingsManager.settings.inactiveWorlds = new ArrayList<>();
|
SettingsManager.settings.inactiveWorlds = new ArrayList<>();
|
||||||
for (String world : s)
|
BackupManager.findAllWorlds(world -> {
|
||||||
model.addRow(new Object[] {
|
model.addRow(new Object[] {
|
||||||
world, Utilities.getGameDir() + world, !SettingsManager.settings.inactiveWorlds.contains(world)
|
world, Utilities.getGameDir() + world, !SettingsManager.settings.inactiveWorlds.contains(world)
|
||||||
});
|
});
|
||||||
|
});
|
||||||
lstWorlds.updateUI();
|
lstWorlds.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loadBackups() {
|
void loadBackups() {
|
||||||
ArrayList<String> al = BackupManager.getBackupList();
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstBackups.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstBackups.getModel();
|
||||||
for (String backup : al) {
|
BackupManager.getBackupList(backup -> {
|
||||||
String[] names = FileUtils.getExtension(backup).split("\\+");
|
String[] names = FileUtils.getExtension(backup).split("\\+");
|
||||||
model.addRow(new Object[] {
|
model.addRow(new Object[] {
|
||||||
names[0], names[1], names[2]
|
names[0], names[1], names[2]
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
lstBackups.updateUI();
|
lstBackups.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3007,17 +3003,16 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
}
|
}
|
||||||
|
|
||||||
void refreshInfos() {
|
void refreshInfos() {
|
||||||
ArrayList<String> al = IOUtils.findAllFile(new File(Utilities.getGameDir() + "infos-HMCSM"));
|
|
||||||
DefaultTableModel model = (DefaultTableModel) lstInfos.getModel();
|
DefaultTableModel model = (DefaultTableModel) lstInfos.getModel();
|
||||||
for (String s : al)
|
while (model.getRowCount() > 0)
|
||||||
model.addRow(new Object[] { s, FileUtils.getExtension(s) });
|
model.removeRow(0);
|
||||||
|
IOUtils.findAllFile(new File(Utilities.getGameDir() + "infos-HMCSM"), s -> model.addRow(new Object[] { s, FileUtils.getExtension(s) }));
|
||||||
lstInfos.updateUI();
|
lstInfos.updateUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
void refreshReports() {
|
void refreshReports() {
|
||||||
ArrayList<String> al = IOUtils.findAllFile(new File(Utilities.getGameDir() + "crash-reports"));
|
lstCrashReportsModel.clear();
|
||||||
for (String s : al)
|
IOUtils.findAllFile(new File(Utilities.getGameDir() + "crash-reports"), s -> lstCrashReportsModel.addElement(s));
|
||||||
lstCrashReportsModel.addElement(s);
|
|
||||||
lstReports.setModel(lstCrashReportsModel);
|
lstReports.setModel(lstCrashReportsModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3721,7 +3716,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
String id = (String) lstDownloads.getModel().getValueAt(lstDownloads.getSelectedRow(), 0);
|
String id = (String) lstDownloads.getModel().getValueAt(lstDownloads.getSelectedRow(), 0);
|
||||||
final String MC_DOWNLOAD_URL = "https://s3.amazonaws.com/Minecraft.Download/versions/";
|
final String MC_DOWNLOAD_URL = "https://s3.amazonaws.com/Minecraft.Download/versions/";
|
||||||
String url = MC_DOWNLOAD_URL + id + "/";
|
String url = MC_DOWNLOAD_URL + id + "/";
|
||||||
File serverjar = new File(IOUtils.currentDir(), "minecraft_server." + id + ".jar");
|
File serverjar = new File("minecraft_server." + id + ".jar");
|
||||||
serverjar.delete();
|
serverjar.delete();
|
||||||
|
|
||||||
String downloadURL = url + "minecraft_server." + id + ".jar";
|
String downloadURL = url + "minecraft_server." + id + ".jar";
|
||||||
@@ -3739,7 +3734,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
if (index == -1)
|
if (index == -1)
|
||||||
return;
|
return;
|
||||||
String path = Utilities.getGameDir() + "infos-HMCSM" + File.separator + model.getValueAt(index, 0);
|
String path = Utilities.getGameDir() + "infos-HMCSM" + File.separator + model.getValueAt(index, 0);
|
||||||
String content = FileUtils.readFileToString(new File(path));
|
String content = FileUtils.read(new File(path));
|
||||||
txtInfo.setText(content);
|
txtInfo.setText(content);
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
HMCLog.warn("Failed to read info.", ex);
|
HMCLog.warn("Failed to read info.", ex);
|
||||||
@@ -3747,14 +3742,14 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
}//GEN-LAST:event_btnShowInfoActionPerformed
|
}//GEN-LAST:event_btnShowInfoActionPerformed
|
||||||
|
|
||||||
private void btnAutoSearchActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnAutoSearchActionPerformed
|
private void btnAutoSearchActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnAutoSearchActionPerformed
|
||||||
ArrayList<String> al = IOUtils.findAllFile(IOUtils.currentDir());
|
IOUtils.findAllFile(new File("."), s -> {
|
||||||
for (String s : al)
|
if (ServerChecker.isServerJar(new File(s))) {
|
||||||
if (ServerChecker.isServerJar(new File(s))) {
|
String path = IOUtils.tryGetCanonicalFilePath(new File(s));
|
||||||
String path = IOUtils.tryGetCanonicalFilePath(new File(IOUtils.currentDir(), s));
|
txtMainJar.setText(path);
|
||||||
txtMainJar.setText(path);
|
SettingsManager.settings.mainjar = path;
|
||||||
SettingsManager.settings.mainjar = path;
|
SettingsManager.save();
|
||||||
SettingsManager.save();
|
}
|
||||||
}
|
});
|
||||||
}//GEN-LAST:event_btnAutoSearchActionPerformed
|
}//GEN-LAST:event_btnAutoSearchActionPerformed
|
||||||
|
|
||||||
private void cboCategoryItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_cboCategoryItemStateChanged
|
private void cboCategoryItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_cboCategoryItemStateChanged
|
||||||
@@ -3784,7 +3779,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
if (index == -1)
|
if (index == -1)
|
||||||
return;
|
return;
|
||||||
String path = Utilities.getGameDir() + "crash-reports" + File.separator + lstCrashReportsModel.get(index);
|
String path = Utilities.getGameDir() + "crash-reports" + File.separator + lstCrashReportsModel.get(index);
|
||||||
String content = FileUtils.readFileToString(new File(path));
|
String content = FileUtils.read(new File(path));
|
||||||
txtCrashReport.setText(content);
|
txtCrashReport.setText(content);
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
HMCLog.warn("Failed to get crash-report.", ex);
|
HMCLog.warn("Failed to get crash-report.", ex);
|
||||||
@@ -3858,7 +3853,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
BukkitVersion v = cb.get(idx);
|
BukkitVersion v = cb.get(idx);
|
||||||
File file = new File(IOUtils.currentDir(), "craftbukkit-" + ext + "-" + v.version + ".jar");
|
File file = new File("craftbukkit-" + ext + "-" + v.version + ".jar");
|
||||||
TaskWindow.factory().append(new FileDownloadTask(v.downloadLink, IOUtils.tryGetCanonicalFile(file)).setTag("bukkit-" + ext + "-" + v.version))
|
TaskWindow.factory().append(new FileDownloadTask(v.downloadLink, IOUtils.tryGetCanonicalFile(file)).setTag("bukkit-" + ext + "-" + v.version))
|
||||||
.create();
|
.create();
|
||||||
}//GEN-LAST:event_btnDownloadCraftbukkitActionPerformed
|
}//GEN-LAST:event_btnDownloadCraftbukkitActionPerformed
|
||||||
@@ -3869,7 +3864,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
return;
|
return;
|
||||||
ForgeVersion v = mcpcPackages.get(cboCauldronMinecraft.getSelectedItem().toString()).get(idx);
|
ForgeVersion v = mcpcPackages.get(cboCauldronMinecraft.getSelectedItem().toString()).get(idx);
|
||||||
String url;
|
String url;
|
||||||
File filepath = new File(IOUtils.currentDir(), "forge-installer.jar");
|
File filepath = new File("forge-installer.jar");
|
||||||
url = v.installer[1];
|
url = v.installer[1];
|
||||||
if (!TaskWindow.factory().append(new FileDownloadTask(url, filepath).setTag("cauldron-" + v.ver)).create())
|
if (!TaskWindow.factory().append(new FileDownloadTask(url, filepath).setTag("cauldron-" + v.ver)).create())
|
||||||
MessageBox.Show(C.i18n("install.failed_download_forge"));
|
MessageBox.Show(C.i18n("install.failed_download_forge"));
|
||||||
@@ -3879,7 +3874,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
|
|
||||||
private void installMCPC(final File filepath) {
|
private void installMCPC(final File filepath) {
|
||||||
try {
|
try {
|
||||||
ForgeInstaller installer = new ForgeInstaller(IOUtils.currentDir(), filepath);
|
ForgeInstaller installer = new ForgeInstaller(new File("."), filepath);
|
||||||
installer.install();
|
installer.install();
|
||||||
MessageBox.Show(C.i18n("install.success"));
|
MessageBox.Show(C.i18n("install.success"));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@@ -3910,7 +3905,7 @@ public final class MainWindow extends javax.swing.JFrame
|
|||||||
}//GEN-LAST:event_cboCauldronMinecraftItemStateChanged
|
}//GEN-LAST:event_cboCauldronMinecraftItemStateChanged
|
||||||
|
|
||||||
private void btnInstallMCPCActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnInstallMCPCActionPerformed
|
private void btnInstallMCPCActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnInstallMCPCActionPerformed
|
||||||
File filepath = new File(IOUtils.currentDir(), "forge-installer.jar");
|
File filepath = new File("forge-installer.jar");
|
||||||
if (!filepath.exists()) {
|
if (!filepath.exists()) {
|
||||||
MessageBox.Show("您还未下载Cauldron!请点击下载按钮下载并自动安装!");
|
MessageBox.Show("您还未下载Cauldron!请点击下载按钮下载并自动安装!");
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user