mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-09-10 12:26:16 -04:00
Reconstruct codes
This commit is contained in:
parent
2862e3a6ee
commit
ce721c2e09
2
.gitignore
vendored
Executable file → Normal file
2
.gitignore
vendored
Executable file → Normal file
@ -25,3 +25,5 @@ HMCL/build/
|
|||||||
HMCLServer/
|
HMCLServer/
|
||||||
HMCSM/build/
|
HMCSM/build/
|
||||||
MetroLookAndFeel/build/
|
MetroLookAndFeel/build/
|
||||||
|
/HMCUtils/build/
|
||||||
|
/HMCLaF/build/
|
@ -55,6 +55,35 @@ task generateSources(type: Copy) {
|
|||||||
compileJava.setSource "$buildDir/generated-src"
|
compileJava.setSource "$buildDir/generated-src"
|
||||||
compileJava.dependsOn generateSources
|
compileJava.dependsOn generateSources
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
java {
|
||||||
|
srcDirs = [
|
||||||
|
'src/core/java/',
|
||||||
|
'src/main/java/'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
resources {
|
||||||
|
srcDirs = ['src/main/resources/']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
core {
|
||||||
|
java {
|
||||||
|
compileClasspath += main.compileClasspath
|
||||||
|
runtimeClasspath += main.runtimeClasspath
|
||||||
|
srcDirs 'src/core/java/'
|
||||||
|
}
|
||||||
|
resources {
|
||||||
|
srcDirs 'src/main/resources/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
coreCompile.extendsFrom compile
|
||||||
|
coreRuntime.extendsFrom runtime
|
||||||
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral();
|
mavenCentral();
|
||||||
@ -80,8 +109,8 @@ configure(install.repositories.mavenInstaller) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(":MetroLookAndFeel")
|
compile project(":HMCLaF")
|
||||||
compile project(":HMCLAPI")
|
compile project(":HMCUtils")
|
||||||
compile group: "org.commonjava.googlecode.markdown4j", name: "markdown4j", version: "2.2-cj-1.0"
|
compile group: "org.commonjava.googlecode.markdown4j", name: "markdown4j", version: "2.2-cj-1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@ package org.jackhuang.hellominecraft.launcher.api;
|
|||||||
|
|
||||||
import org.jackhuang.hellominecraft.launcher.core.GameException;
|
import org.jackhuang.hellominecraft.launcher.core.GameException;
|
||||||
import org.jackhuang.hellominecraft.launcher.core.service.IMinecraftService;
|
import org.jackhuang.hellominecraft.launcher.core.service.IMinecraftService;
|
||||||
import org.jackhuang.hellominecraft.launcher.setting.Profile;
|
|
||||||
import org.jackhuang.hellominecraft.launcher.core.auth.AuthenticationException;
|
import org.jackhuang.hellominecraft.launcher.core.auth.AuthenticationException;
|
||||||
import org.jackhuang.hellominecraft.launcher.core.auth.IAuthenticator;
|
import org.jackhuang.hellominecraft.launcher.core.auth.IAuthenticator;
|
||||||
import org.jackhuang.hellominecraft.launcher.core.auth.UserProfileProvider;
|
import org.jackhuang.hellominecraft.launcher.core.auth.UserProfileProvider;
|
||||||
@ -35,12 +34,12 @@ public interface IPlugin {
|
|||||||
/**
|
/**
|
||||||
* You can modify the application actions by this method.
|
* You can modify the application actions by this method.
|
||||||
*
|
*
|
||||||
* @param profile info to the Minecraft Loader
|
* @param obj minecraft service wanted
|
||||||
*
|
*
|
||||||
* @return For example, you can implement IMinecraftProvider to support
|
* @return For example, you can implement IMinecraftProvider to support
|
||||||
* MultiMC
|
* MultiMC
|
||||||
*/
|
*/
|
||||||
IMinecraftService provideMinecraftService(Profile profile);
|
IMinecraftService provideMinecraftService(Object obj);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register authenticators by calling IAuthenticator.LOGINS.add.
|
* Register authenticators by calling IAuthenticator.LOGINS.add.
|
@ -18,7 +18,6 @@
|
|||||||
package org.jackhuang.hellominecraft.launcher.api;
|
package org.jackhuang.hellominecraft.launcher.api;
|
||||||
|
|
||||||
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
import org.jackhuang.hellominecraft.util.logging.HMCLog;
|
||||||
import org.jackhuang.hellominecraft.launcher.util.DefaultPlugin;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -26,15 +25,19 @@ import org.jackhuang.hellominecraft.launcher.util.DefaultPlugin;
|
|||||||
*/
|
*/
|
||||||
public class PluginManager {
|
public class PluginManager {
|
||||||
|
|
||||||
private static IPlugin NOW_PLUGIN = new DefaultPlugin();
|
private static IPlugin NOW_PLUGIN;
|
||||||
|
|
||||||
public static void getServerPlugin() {
|
public static void getServerPlugin() {
|
||||||
try {
|
try {
|
||||||
ClassLoader cl = Thread.currentThread().getContextClassLoader();
|
getPlugin(Thread.currentThread().getContextClassLoader().loadClass("org.jackhuang.hellominecraft.launcher.server.ServerPlugin"));
|
||||||
Class c = cl.loadClass("org.jackhuang.hellominecraft.launcher.server.ServerPlugin");
|
|
||||||
IPlugin p = (IPlugin) c.newInstance();
|
|
||||||
NOW_PLUGIN = p;
|
|
||||||
} catch (ClassNotFoundException ignore) {
|
} catch (ClassNotFoundException ignore) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void getPlugin(Class<?> cls) {
|
||||||
|
try {
|
||||||
|
IPlugin p = (IPlugin) cls.newInstance();
|
||||||
|
NOW_PLUGIN = p;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
HMCLog.err("Failed to new instance");
|
HMCLog.err("Failed to new instance");
|
||||||
}
|
}
|
@ -46,6 +46,7 @@ import org.jackhuang.hellominecraft.util.ui.LogWindow;
|
|||||||
import org.jackhuang.hellominecraft.launcher.setting.Settings;
|
import org.jackhuang.hellominecraft.launcher.setting.Settings;
|
||||||
import org.jackhuang.hellominecraft.launcher.util.upgrade.IUpgrader;
|
import org.jackhuang.hellominecraft.launcher.util.upgrade.IUpgrader;
|
||||||
import org.jackhuang.hellominecraft.launcher.ui.MainFrame;
|
import org.jackhuang.hellominecraft.launcher.ui.MainFrame;
|
||||||
|
import org.jackhuang.hellominecraft.launcher.util.DefaultPlugin;
|
||||||
import org.jackhuang.hellominecraft.lookandfeel.HelloMinecraftLookAndFeel;
|
import org.jackhuang.hellominecraft.lookandfeel.HelloMinecraftLookAndFeel;
|
||||||
import org.jackhuang.hellominecraft.util.MathUtils;
|
import org.jackhuang.hellominecraft.util.MathUtils;
|
||||||
import org.jackhuang.hellominecraft.util.StrUtils;
|
import org.jackhuang.hellominecraft.util.StrUtils;
|
||||||
@ -118,7 +119,7 @@ public final class Main implements Runnable {
|
|||||||
@SuppressWarnings({ "CallToPrintStackTrace", "UseSpecificCatch" })
|
@SuppressWarnings({ "CallToPrintStackTrace", "UseSpecificCatch" })
|
||||||
public static void main(String[] args) throws IOException {
|
public static void main(String[] args) throws IOException {
|
||||||
{
|
{
|
||||||
//PluginManager.getServerPlugin();
|
PluginManager.getPlugin(DefaultPlugin.class);
|
||||||
if (IUpgrader.NOW_UPGRADER.parseArguments(getVersionNumber(), args))
|
if (IUpgrader.NOW_UPGRADER.parseArguments(getVersionNumber(), args))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -42,8 +42,8 @@ public class DefaultPlugin implements IPlugin {
|
|||||||
SkinmeAuthenticator SKINME_LOGIN = null;
|
SkinmeAuthenticator SKINME_LOGIN = null;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IMinecraftService provideMinecraftService(Profile profile) {
|
public IMinecraftService provideMinecraftService(Object profile) {
|
||||||
return new HMCLMinecraftService(profile);
|
return new HMCLMinecraftService((Profile) profile);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -35,7 +35,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(":HMCLAPI")
|
compile project(":HMCUtils")
|
||||||
}
|
}
|
||||||
|
|
||||||
retrolambda {
|
retrolambda {
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user