started development
This commit is contained in:
parent
7b3fd05555
commit
c9570ae373
|
@ -8,3 +8,4 @@ MinecraftSrc.zip
|
||||||
!/mcp918/assetsIndexTransformer.json
|
!/mcp918/assetsIndexTransformer.json
|
||||||
/rundir/*
|
/rundir/*
|
||||||
/##TEAVM.TMP##/*
|
/##TEAVM.TMP##/*
|
||||||
|
/Eaglerforge-Workspace/
|
|
@ -20,9 +20,10 @@
|
||||||
|
|
||||||
> DELETE 1 @ 1 : 4
|
> DELETE 1 @ 1 : 4
|
||||||
|
|
||||||
> CHANGE 1 : 51 @ 1 : 4
|
> CHANGE 1 : 52 @ 1 : 4
|
||||||
|
|
||||||
~
|
~
|
||||||
|
~ import net.eaglerforge.EaglerForge;
|
||||||
~ import net.lax1dude.eaglercraft.v1_8.internal.PlatformInput;
|
~ import net.lax1dude.eaglercraft.v1_8.internal.PlatformInput;
|
||||||
~
|
~
|
||||||
~ import org.apache.commons.lang3.Validate;
|
~ import org.apache.commons.lang3.Validate;
|
||||||
|
@ -189,7 +190,11 @@
|
||||||
|
|
||||||
> DELETE 2 @ 2 : 3
|
> DELETE 2 @ 2 : 3
|
||||||
|
|
||||||
> CHANGE 15 : 17 @ 15 : 17
|
> INSERT 1 : 2 @ 1
|
||||||
|
|
||||||
|
+ EaglerForge.init();
|
||||||
|
|
||||||
|
> CHANGE 14 : 16 @ 14 : 16
|
||||||
|
|
||||||
~ try {
|
~ try {
|
||||||
~ while (true) {
|
~ while (true) {
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
+ eaglercraft.gui.exitKeyRetarded=Use Backtick (`) to close this screen!
|
+ eaglercraft.gui.exitKeyRetarded=Use Backtick (`) to close this screen!
|
||||||
+ eaglercraft.gui.continue=Continue
|
+ eaglercraft.gui.continue=Continue
|
||||||
+
|
+
|
||||||
+ eaglercraft.menu.forkOnGitlab=Fork on GitLab
|
+ eaglercraft.menu.forkOnGitlab=Fork on GitHub
|
||||||
+ eaglercraft.menu.editProfile=Edit Profile
|
+ eaglercraft.menu.editProfile=Edit Profile
|
||||||
+ eaglercraft.menu.openToLan=Invite
|
+ eaglercraft.menu.openToLan=Invite
|
||||||
+ eaglercraft.menu.closeLan=Stop Sharing
|
+ eaglercraft.menu.closeLan=Stop Sharing
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
package net.eaglerforge;
|
||||||
|
|
||||||
|
import net.lax1dude.eaglercraft.v1_8.log4j.LogManager;
|
||||||
|
import net.lax1dude.eaglercraft.v1_8.log4j.Logger;
|
||||||
|
|
||||||
|
public class EaglerForge {
|
||||||
|
public static final Logger log = LogManager.getLogger();
|
||||||
|
public static void init() {
|
||||||
|
log.info("Starting EaglerForge!");
|
||||||
|
log.info("Loading Mods...");
|
||||||
|
// TODO: Make a javascript moding api using teavm and make the mods load here
|
||||||
|
}
|
||||||
|
}
|
|
@ -9,11 +9,11 @@ public class EaglercraftVersion {
|
||||||
|
|
||||||
/// Customize these to fit your fork:
|
/// Customize these to fit your fork:
|
||||||
|
|
||||||
public static final String projectForkName = "EaglercraftX";
|
public static final String projectForkName = "EaglerForge";
|
||||||
public static final String projectForkVersion = "u22";
|
public static final String projectForkVersion = "v1";
|
||||||
public static final String projectForkVendor = "lax1dude";
|
public static final String projectForkVendor = "radmanplays";
|
||||||
|
|
||||||
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
public static final String projectForkURL = "https://github.com/eaglerforge/EaglerForge";
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@ -47,21 +47,21 @@ public class EaglercraftVersion {
|
||||||
|
|
||||||
// Miscellaneous variables:
|
// Miscellaneous variables:
|
||||||
|
|
||||||
public static final String mainMenuStringA = "Minecraft 1.8.8";
|
public static final String mainMenuStringA = "Minecraft* 1.8.8";
|
||||||
public static final String mainMenuStringB = projectOriginName + " " +
|
public static final String mainMenuStringB = projectOriginName + " " +
|
||||||
projectOriginRevision + "-" + projectOriginVersion + " ultimate";
|
projectOriginRevision + "-" + projectOriginVersion + " ultimate";
|
||||||
public static final String mainMenuStringC = "";
|
public static final String mainMenuStringC = "";
|
||||||
public static final String mainMenuStringD = "Resources Copyright Mojang AB";
|
public static final String mainMenuStringD = "Resources Copyright Mojang AB";
|
||||||
|
|
||||||
public static final String mainMenuStringE = projectForkName + " " + projectForkVersion;
|
public static final String mainMenuStringE = projectForkName + " " + projectForkVersion;
|
||||||
public static final String mainMenuStringF = "Made by " + projectForkVendor;
|
public static final String mainMenuStringF = "Based on eaglercraft " + projectOriginVersion;
|
||||||
|
|
||||||
public static final String mainMenuStringG = "Collector's Edition";
|
public static final String mainMenuStringG = "Collector's Edition";
|
||||||
public static final String mainMenuStringH = "PBR Shaders";
|
public static final String mainMenuStringH = "PBR Shaders";
|
||||||
|
|
||||||
public static final long demoWorldSeed = (long) "North Carolina".hashCode();
|
public static final long demoWorldSeed = (long) "North Carolina".hashCode();
|
||||||
|
|
||||||
public static final boolean mainMenuEnableGithubButton = false;
|
public static final boolean mainMenuEnableGithubButton = true;
|
||||||
|
|
||||||
public static final boolean forceDemoMode = false;
|
public static final boolean forceDemoMode = false;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
Loading…
Reference in New Issue