diff --git a/.idea/misc.xml b/.idea/misc.xml index 59225cf..62c93ea 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,12 +1,9 @@ - - - - + diff --git a/libs/libRefTools.jar b/libs/libRefTools.jar index 02b5c30..99f8e4d 100644 Binary files a/libs/libRefTools.jar and b/libs/libRefTools.jar differ diff --git a/src/Launcher/Main.java b/src/Launcher/Main.java index 57e2c0a..bf8446b 100644 --- a/src/Launcher/Main.java +++ b/src/Launcher/Main.java @@ -7,8 +7,6 @@ always tell me that it's virtually unreadable and it doesn't help that it's diff does without them losing interest. Also, in case you are actually, seriously going to read this crap, do yourself a favour and pour yourself some nice Jack Daniels. You deserve it if you're going to read through this. - - Do not Read Past this point... This is a human health advisory. Anyone reading past this point will risk his or her life. If you get sick reading, we will not claim responsibility on your health. Please Stay Clear of the Code. */ @@ -17,7 +15,6 @@ package Launcher; import Launcher.net.Updater; import com.tofvesson.async.Async; -import com.tofvesson.joe.Localization; import com.tofvesson.reflection.SafeReflection; import javafx.animation.KeyFrame; import javafx.animation.Timeline; @@ -26,21 +23,25 @@ import javafx.collections.ObservableList; import javafx.scene.Node; import javafx.scene.Parent; import javafx.scene.Scene; -import javafx.scene.control.Button; -import javafx.scene.control.Label; -import javafx.scene.control.TextField; +import javafx.scene.control.*; import javafx.scene.image.Image; import javafx.scene.image.ImageView; +import javafx.scene.input.MouseEvent; import javafx.scene.layout.Pane; import javafx.scene.shape.Rectangle; +import javafx.stage.Modality; import javafx.stage.Stage; import javafx.stage.StageStyle; import javafx.util.Duration; +import java.io.BufferedReader; import java.io.File; -import java.io.IOException; +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.net.HttpURLConnection; +import java.net.URL; +import java.net.URLConnection; import java.util.ArrayList; -import java.util.Arrays; import java.util.List; /* @@ -54,19 +55,22 @@ public class Main extends Application { public static final String semVerDevState = "PreDev"; // Development stage public static final int semVerMajor = 0; // Major version public static final int semVerMinor = 2; // Minor version - public static final int semVerPatch = 5; // Patch version + public static final int semVerPatch = 6; // Patch version double xOffset = 0, yOffset = 0; // Offsets for dragging private static String[] args; - Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn, Default_theme, Dark_theme, Light_theme; // Define buttons + Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn, Default_theme, Dark_theme, Light_theme, Login_minecraft; // Define buttons private ImageView icon; - private TextField Search_modpacks; + private TextField Search_modpacks, Username_minecraft; private Image appIcon; private Rectangle dragBar; // Draggable top bar - Pane root, tab; + Pane root, tab, dragbar_1; + private PasswordField Password_minecraft; Node activeTab, settings_activeTab; private Label dialog_changer; + private CheckBox RAM_Default; + private Slider RAM_slider; Async stringUpdater; @@ -82,6 +86,7 @@ public class Main extends Application { d.initStyle(StageStyle.UNDECORATED); Pane n = (Pane) Tabs.load("dialog_update"); d.setScene(new Scene(n)); + d.getIcons().add(appIcon = new Image(getClass().getResourceAsStream("/assets/icons/app.png"))); d.show(); Thread t1 = new Thread(()->{ try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } @@ -93,8 +98,8 @@ public class Main extends Application { root = (Pane) Tabs.load("main"); // Load via layout loader ((Label)root.lookup("#version")).setText(((Label) root.lookup("#version")) // Dynamically set version label - .getText().replace("$v", semVerDevState+"-"+semVerMajor+"."+semVerMinor+"."+semVerPatch)); // Use variables to define version - primaryStage.setTitle("Team-Avion Launcher [WIP]"); + .getText().replace("$v", semVerDevState+" "+semVerMajor+"."+semVerMinor+"."+semVerPatch)); // Use variables to define version + primaryStage.setTitle("Team-Avion Launcher"); primaryStage.setScene(new Scene(root, 900, 500)); primaryStage.getIcons().clear(); primaryStage.getIcons().add(appIcon = new Image(getClass().getResourceAsStream("/assets/icons/app.png"))); @@ -112,6 +117,7 @@ public class Main extends Application { Default_theme = (Button) root.lookup("#default-theme"); Light_theme = (Button) root.lookup("#light-theme"); Dark_theme = (Button) root.lookup("#dark-theme"); + Login_minecraft = (Button) root.lookup("#minecraft-login-btn"); dialog_changer = (Label) root.lookup("#dialog-changer"); @@ -120,6 +126,8 @@ public class Main extends Application { icon = (ImageView) root.lookup("#icon"); Search_modpacks = (TextField) root.lookup("#search-modpacks"); + Username_minecraft = (TextField) root.lookup("#minecraftuser"); + Password_minecraft = (PasswordField) root.lookup("#minecraftpass"); // Infrastructural navigation exit.setOnMouseClicked(event -> primaryStage.close()); // Closes the program if exit button is clicked @@ -131,7 +139,6 @@ public class Main extends Application { Tabs.switchTab("home", tab); } }); // Sets the active tab to the home tab unless it's already active - Modpack_btn.setOnMouseClicked(event ->{ if(!activeTab.equals(Modpack_btn)){ updateTabSelection(Modpack_btn, TabType.MAIN); @@ -162,23 +169,20 @@ public class Main extends Application { }); } }); - - Settings_btn.setOnMouseClicked(event ->{ + Settings_btn.setOnMouseClicked((MouseEvent event) ->{ if(!activeTab.equals(Settings_btn)){ updateTabSelection(Settings_btn, TabType.MAIN); Node n = Tabs.switchTab("settings", tab), tmp; // Sets the active tab to the settings tab unless it's already active - if(settings_activeTab==null) settings_activeTab = n.lookup("#Settings-Gen-btn"); // First time stuff - - n.lookup("#Settings-Gen-btn").setOnMouseClicked(event1 -> { + n.lookup("#Settings-Gen-btn").setOnMouseClicked(event1 -> { // Generic Settings Sub-tab if(!settings_activeTab.getId().equals(n.lookup("#Settings-Gen-btn").getId())){ // Use id to identify layouts updateTabSelection(n.lookup("#Settings-Gen-btn"), TabType.SETTINGS); Node genericLayout = Tabs.switchTab("settings_generic", (Pane) n.lookup("#Settings-Pane")); + } }); - n.lookup("#Settings-Mine-btn").setOnMouseClicked(event1 -> { // Minecraft Settings Sub-tab if(!settings_activeTab.getId().equals(n.lookup("#Settings-Mine-btn").getId())){ // Use id to identify layouts @@ -187,7 +191,61 @@ public class Main extends Application { Tabs.load("settings_minecraft").lookup("#minecraft-login-btn").setOnMouseClicked(event3 ->{ System.out.println("Logging into minecraft"); + Stage login = new Stage(); + login.initModality(Modality.APPLICATION_MODAL); + login.initStyle(StageStyle.UNDECORATED); + Pane minecraftlogin = (Pane) Tabs.reloadTab("instance_userinfo"); + login.setScene(new Scene(minecraftlogin, 300, 308)); + login.show(); + login.setResizable(false); + login.setTitle("Minecraft Login"); + + dragbar_1 = (Pane) minecraftlogin.lookup("#dragbar-1"); + + dragbar_1.setOnMousePressed(event4 -> { + xOffset = event4.getSceneX(); + yOffset = event4.getSceneY(); + }); + dragbar_1.setOnMouseDragged(event4 -> { + login.setX(event4.getScreenX() - xOffset); + login.setY(event4.getScreenY() - yOffset); + }); + + minecraftlogin.lookup("#close-minecraft-login-window").setOnMouseClicked(event4 ->{ + System.out.println("Closing window"); + login.close(); + }); + + minecraftlogin.lookup("#minecraft-login").setOnMouseClicked(event4 ->{ + System.out.println("Logging in ...."); + Pane lw; + Scene s = login.getScene(); + login.setScene(new Scene(lw=(Pane)Tabs.reloadTab("instance_loginwait"), 300, 308)); + login.getScene().getRoot().setOnMousePressed(event5 -> { + xOffset = event5.getSceneX(); + yOffset = event5.getSceneY(); + }); + login.getScene().getRoot().setOnMouseDragged(event5 -> { + login.setX(event5.getScreenX() - xOffset); + login.setY(event5.getScreenY() - yOffset); + }); + lw.lookup("#login_cancel").setOnMouseClicked(event2 -> { + System.out.println("Canceled"); + login.setScene(s); + }); + }); }); + + Node Minecraft_settings = Tabs.load("settings_minecraft"); + + RAM_Default = (CheckBox) Minecraft_settings.lookup("#RAM-Default"); + RAM_slider = (Slider) Minecraft_settings.lookup("#RAM-slider"); + + + // Default States for the General Settings + RAM_slider.setDisable(true); + RAM_Default.setSelected(true); + } }); @@ -226,7 +284,7 @@ public class Main extends Application { } public static void main(String[] args) throws Exception{ - // TODO: Try and fix this code please, It still doesn't work on my PC. + // TODO: Needs Fixing. /* Localization l = new Localization(new File(Main.class.getResource("../assets/lang/").getFile())); // Create a localization with aggressive loading System.out.println(Arrays.toString(l.getLanguageNames())); System.out.println("Success: "+l.get("du_label")); */ @@ -238,6 +296,40 @@ public class Main extends Application { launch(args); } + private static String MakeJSONRequest(String username, String password){ return "{\"agent\": { \"name\": \"Minecraft\", \"version\": 1 }, \"username\": \""+username+"\", \"password\": \""+password+"\"}"; } + + private static String httpRequest(URL url, String content) throws Exception { + byte[] contentBytes = content.getBytes("UTF-8"); + + URLConnection connection = url.openConnection(); + connection.setDoInput(true); + connection.setDoOutput(true); + connection.setRequestProperty("Accept-Charset", "UTF-8"); + connection.setRequestProperty("Content-Type", "application/json"); + connection.setRequestProperty("Content-Length", Integer.toString(contentBytes.length)); + + OutputStream requestStream = connection.getOutputStream(); + requestStream.write(contentBytes, 0, contentBytes.length); + requestStream.close(); + + String response = ""; + BufferedReader responseStream; + if (((HttpURLConnection) connection).getResponseCode() == 200) { + responseStream = new BufferedReader(new InputStreamReader(connection.getInputStream(), "UTF-8")); + } else { + responseStream = new BufferedReader(new InputStreamReader(((HttpURLConnection) connection).getErrorStream(), "UTF-8")); + } + + response = responseStream.readLine(); + responseStream.close(); + + if (((HttpURLConnection) connection).getResponseCode() != 200) { + //Failed to login (Invalid Credentials or whatever) + } + + return response; + } + /** * Search for packs with an 80% match compared to detected string. * @param toRead TextField to read from. diff --git a/src/Launcher/Tabs.java b/src/Launcher/Tabs.java index 0c67337..c17347d 100644 --- a/src/Launcher/Tabs.java +++ b/src/Launcher/Tabs.java @@ -33,10 +33,10 @@ public class Tabs { URL file = Main.class.getResource("/assets/layout/"+fileName); try { final boolean[] b = {false}; - loaded.stream().filter(p -> p.getKey().equals(file)).forEach(p->b[0]=true); + loaded.stream().filter(p ->p!=null && p.getKey().equals(file)).forEach(p->b[0]=true); if(!b[0]) loaded.add(new Pair<>(file, FXMLLoader.load(file))); // Load file if it isn't already loaded final Node[] p1 = new Node[]{new Pane()}; - loaded.stream().filter(p->p.getKey().equals(file)).forEach(p->p1[0]=p.getValue()); + loaded.stream().filter(p->p!=null && p.getKey().equals(file)).forEach(p->p1[0]=p.getValue()); return p1[0]; } catch (IOException e) { e.printStackTrace(); @@ -67,7 +67,7 @@ public class Tabs { public static void unloadTab(String fileName){ if(!fileName.endsWith(".fxml")) fileName+=".fxml"; URL file = Main.class.getResource("/assets/layout/"+fileName); - loaded.stream().filter(p->p.getKey().equals(file)).forEach(loaded::remove); + loaded.stream().filter(p->p!=null && p.getKey().equals(file)).forEach(loaded::remove); } /** diff --git a/src/Launcher/minecraft/Launcher.java b/src/Launcher/minecraft/Launcher.java index 9e31fcb..dbe5581 100644 --- a/src/Launcher/minecraft/Launcher.java +++ b/src/Launcher/minecraft/Launcher.java @@ -1,5 +1,7 @@ package Launcher.minecraft; public class Launcher { - + + + } diff --git a/src/assets/icons/Minecraft-Wallpaper.png b/src/assets/icons/Minecraft-Wallpaper.png new file mode 100644 index 0000000..67d97db Binary files /dev/null and b/src/assets/icons/Minecraft-Wallpaper.png differ diff --git a/src/assets/icons/minecraft.png b/src/assets/icons/minecraft.png new file mode 100644 index 0000000..b373878 Binary files /dev/null and b/src/assets/icons/minecraft.png differ diff --git a/src/assets/layout/dialog_update.fxml b/src/assets/layout/dialog_update.fxml index cc24e8f..7ab777c 100644 --- a/src/assets/layout/dialog_update.fxml +++ b/src/assets/layout/dialog_update.fxml @@ -11,7 +11,7 @@