commit
25732395fb
10
.idea/artifacts/TAL_jar.xml
generated
Normal file
10
.idea/artifacts/TAL_jar.xml
generated
Normal file
@ -0,0 +1,10 @@
|
||||
<component name="ArtifactManager">
|
||||
<artifact type="jar" name="TAL:jar">
|
||||
<output-path>$PROJECT_DIR$/out/artifacts/TAL_jar</output-path>
|
||||
<root id="archive" name="TAL.jar">
|
||||
<element id="module-output" name="TAL" />
|
||||
<element id="extracted-dir" path="$APPLICATION_HOME_DIR$/redist/annotations-java8.jar" path-in-jar="/" />
|
||||
<element id="extracted-dir" path="$PROJECT_DIR$/libs/libRefTools.jar" path-in-jar="/" />
|
||||
</root>
|
||||
</artifact>
|
||||
</component>
|
4
.idea/libraries/libRefTools.xml
generated
4
.idea/libraries/libRefTools.xml
generated
@ -4,8 +4,6 @@
|
||||
<root url="jar://$PROJECT_DIR$/libs/libRefTools.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES>
|
||||
<root url="jar://$PROJECT_DIR$/libs/libRefTools.jar!/" />
|
||||
</SOURCES>
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
1
.idea/misc.xml
generated
1
.idea/misc.xml
generated
@ -9,4 +9,5 @@
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
<component name="WebServicesPlugin" addRequiredLibraries="true" />
|
||||
</project>
|
2
TAL.iml
2
TAL.iml
@ -7,7 +7,6 @@
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" name="libRefTools" level="project" />
|
||||
<orderEntry type="module-library">
|
||||
<library>
|
||||
<CLASSES>
|
||||
@ -17,5 +16,6 @@
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="library" name="libRefTools" level="project" />
|
||||
</component>
|
||||
</module>
|
Binary file not shown.
@ -10,48 +10,71 @@ favour and pour yourself some nice Jack Daniels. You deserve it if you're going
|
||||
|
||||
package Launcher;
|
||||
|
||||
import Launcher.net.Updater;
|
||||
import com.tofvesson.reflection.SafeReflection;
|
||||
import javafx.animation.KeyFrame;
|
||||
import javafx.animation.Timeline;
|
||||
import javafx.application.Application;
|
||||
import javafx.fxml.FXMLLoader;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.scene.control.Button;
|
||||
import javafx.scene.control.Tab;
|
||||
import javafx.scene.control.TextField;
|
||||
import javafx.scene.control.*;
|
||||
import javafx.scene.image.Image;
|
||||
import javafx.scene.image.ImageView;
|
||||
import javafx.scene.layout.Pane;
|
||||
import javafx.scene.shape.Rectangle;
|
||||
import javafx.stage.Stage;
|
||||
import javafx.stage.StageStyle;
|
||||
import java.net.URL;
|
||||
import java.io.File;
|
||||
import com.tofvesson.async.*;
|
||||
import javafx.util.Duration;
|
||||
|
||||
public class Main extends Application {
|
||||
|
||||
public static final URL mainLauncher = Main.class.getResource("../assets/layout/main.fxml"); // Launcher body
|
||||
// Semantic versioning system data
|
||||
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 = 2; // Patch version
|
||||
|
||||
private double xOffset = 0, yOffset = 0; // Offsets for dragging
|
||||
private Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn; // Define buttons
|
||||
private static String[] args;
|
||||
private Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn; // Define buttons
|
||||
private ImageView icon;
|
||||
private TextField Search_modpacks;
|
||||
private Image appIcon;
|
||||
private Rectangle dragBar; // Draggable top bar
|
||||
private Pane root, tab;
|
||||
private Tabs activeTab = Tabs.Home;
|
||||
private Node activeTab, settings_activeTab;
|
||||
Async stringUpdater;
|
||||
|
||||
@Override
|
||||
public void start(Stage primaryStage) throws Exception{
|
||||
|
||||
primaryStage.initStyle(StageStyle.UNDECORATED); // Remove ugly trash
|
||||
primaryStage.initStyle(StageStyle.UNDECORATED);
|
||||
|
||||
root = FXMLLoader.load(mainLauncher);
|
||||
if(args.length<2 || !args[1].equals("false")){
|
||||
Stage d = new Stage();
|
||||
Timeline t = new Timeline();
|
||||
t.getKeyFrames().add(new KeyFrame(Duration.millis(1), event ->{ d.close(); primaryStage.show(); }));
|
||||
d.initStyle(StageStyle.UNDECORATED);
|
||||
Pane n = (Pane) Tabs.load("dialog_update");
|
||||
d.setScene(new Scene(n));
|
||||
d.show();
|
||||
Thread t1 = new Thread(()->{
|
||||
try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); }
|
||||
Updater.getInstance(t);
|
||||
});
|
||||
t1.setDaemon(true);
|
||||
t1.start();
|
||||
} else primaryStage.show(); // Remove ugly trash
|
||||
|
||||
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]");
|
||||
primaryStage.setScene(new Scene(root, 900, 500));
|
||||
primaryStage.show();
|
||||
primaryStage.getIcons().clear();
|
||||
primaryStage.getIcons().add(appIcon = new Image(getClass().getResourceAsStream("../assets/icons/app.png")));
|
||||
|
||||
primaryStage.getIcons().add(appIcon = new Image(getClass().getResourceAsStream("/assets/icons/app.png")));
|
||||
|
||||
// Field initialization
|
||||
exit = (Button) root.lookup("#exit");
|
||||
@ -70,45 +93,66 @@ public class Main extends Application {
|
||||
|
||||
Search_modpacks = (TextField) root.lookup("#search-modpacks");
|
||||
|
||||
|
||||
// Infrastructural navigation
|
||||
exit.setOnMouseClicked(event -> primaryStage.close()); // Closes the program if exit button is clicked
|
||||
min.setOnMouseClicked(event -> primaryStage.setIconified(true)); // Minimizes the program if minimize button is clicked
|
||||
|
||||
Home_btn.setOnMouseClicked(event ->{
|
||||
if(activeTab!=Tabs.Home){
|
||||
(activeTab=Tabs.Home).switchTab(tab);
|
||||
if(!activeTab.equals(Home_btn)){
|
||||
updateTabSelection(Home_btn, TabType.MAIN);
|
||||
Tabs.switchTab("home", tab);
|
||||
}
|
||||
}); // Sets the active tab to the home tab unless it's already active
|
||||
|
||||
Modpack_btn.setOnMouseClicked(event ->{
|
||||
if(activeTab!=Tabs.Modpacks){
|
||||
if(!activeTab.equals(Modpack_btn)){
|
||||
updateTabSelection(Modpack_btn, TabType.MAIN);
|
||||
Tabs.switchTab("modpacks", tab);
|
||||
if(stringUpdater!=null && stringUpdater.isAlive()) stringUpdater.cancel();
|
||||
(activeTab=Tabs.Modpacks).switchTab(tab); // Sets the active tab to the modpacks tab unless it's already active
|
||||
|
||||
//TODO: Create a dynamic updating string from the input ( Text Field ) *-* Done *-*
|
||||
|
||||
|
||||
stringUpdater = new Async(SafeReflection.getFirstMethod(Main.class, "detectStringUpdate"), Tabs.Modpacks.loaded.lookup("#search-modpacks"));
|
||||
|
||||
stringUpdater = new Async(SafeReflection.getFirstMethod(Main.class, "detectStringUpdate"), Tabs.load("modpacks").lookup("#search-modpacks"));
|
||||
}
|
||||
});
|
||||
|
||||
Instance_btn.setOnMouseClicked(event -> {
|
||||
if(activeTab!=Tabs.Instance){
|
||||
(activeTab = Tabs.Instance).switchTab(tab);
|
||||
if(!activeTab.equals(Instance_btn)){
|
||||
updateTabSelection(Instance_btn, TabType.MAIN);
|
||||
Tabs.switchTab("instance", tab);
|
||||
Tabs.load("instance").lookup("#Launch-VM").setOnMouseClicked(event1 -> {
|
||||
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Settings_btn.setOnMouseClicked(event ->{
|
||||
if(activeTab!=Tabs.Settings){
|
||||
(activeTab=Tabs.Settings).switchTab(tab); // Sets the active tab to the settings tab unless it's already active
|
||||
if(!activeTab.equals(Settings_btn)){
|
||||
updateTabSelection(Settings_btn, TabType.MAIN);
|
||||
Node n = Tabs.switchTab("settings", tab); // 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 -> {
|
||||
// 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
|
||||
updateTabSelection(n.lookup("#Settings-Mine-btn"), TabType.SETTINGS);
|
||||
Node minecraftLayout = Tabs.switchTab("settings_minecraft", (Pane) n.lookup("#Settings-Pane"));
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
Tabs.switchTab(settings_activeTab.getId().equals("Settings-Gen-btn") ? "settings_generic" : "settings_minecraft", (Pane) n.lookup("#Settings-Pane"));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Drag
|
||||
dragBar.setOnMousePressed(event -> {
|
||||
xOffset = event.getSceneX();
|
||||
@ -119,20 +163,42 @@ public class Main extends Application {
|
||||
primaryStage.setY(event.getScreenY() - yOffset);
|
||||
});
|
||||
|
||||
|
||||
// Set up default layout
|
||||
Tabs.Home.switchTab(tab);
|
||||
activeTab = Home_btn; // Update selected tab
|
||||
Tabs.switchTab("home", tab);
|
||||
icon.setImage(appIcon);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
public static void main(String[] args) throws Exception{
|
||||
Main.args = args;
|
||||
if (args.length > 0) {
|
||||
File f = new File(args[0]);
|
||||
if (f.isFile()) f.delete(); // Delete previous jar
|
||||
}
|
||||
launch(args);
|
||||
}
|
||||
|
||||
/**
|
||||
* Search for packs with an 80% match compared to detected string.
|
||||
* @param toRead TextField to read from.
|
||||
*/
|
||||
public static void detectStringUpdate(TextField toRead){
|
||||
String s = "";
|
||||
while(true) if(!s.equals(toRead.getText())) System.out.println(s = toRead.getText());
|
||||
|
||||
}
|
||||
|
||||
void updateTabSelection(Node newTab, TabType t){
|
||||
Node n = t==TabType.MAIN?activeTab:settings_activeTab;
|
||||
n.getStyleClass().remove("selected");
|
||||
n.getStyleClass().add("tab");
|
||||
if(t==TabType.MAIN) activeTab = newTab;
|
||||
else settings_activeTab = newTab;
|
||||
newTab.getStyleClass().remove("tab");
|
||||
newTab.getStyleClass().add("selected");
|
||||
}
|
||||
|
||||
enum TabType{
|
||||
SETTINGS, MAIN
|
||||
}
|
||||
}
|
||||
|
@ -1,37 +1,73 @@
|
||||
package Launcher;
|
||||
|
||||
import com.tofvesson.collections.ShiftingList;
|
||||
import javafx.fxml.FXMLLoader;
|
||||
import javafx.scene.Parent;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.layout.Pane;
|
||||
import javafx.util.Pair;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
|
||||
public enum Tabs {
|
||||
@SuppressWarnings("unused")
|
||||
public class Tabs {
|
||||
|
||||
Modpacks(Tabs.class.getResource("../assets/layout/modpacks.fxml")),
|
||||
Home(Tabs.class.getResource("../assets/layout/home.fxml")),
|
||||
Settings(Tabs.class.getResource("../assets/layout/settings.fxml")),
|
||||
Instance(Tabs.class.getResource("../assets/layout/instance.fxml"));
|
||||
private static final ShiftingList<Pair<URL, Node>> loaded = new ShiftingList<>(35); // Memory-efficient list of loaded files
|
||||
|
||||
/**
|
||||
* Url referencing xml.
|
||||
* Loads layout from file in layout assets folder. If layout is already loaded,
|
||||
* Tabs won't bother with reloading and will instead return the cached version.
|
||||
* @param fileName Name of fxml file to load. (Must be located in /assets/layout/ folder or name must define name subfolder in layouts folder)
|
||||
* @return Generified object referring to loaded resource.
|
||||
*/
|
||||
public final URL url;
|
||||
|
||||
/**
|
||||
* Loaded layout
|
||||
*/
|
||||
public final Parent loaded;
|
||||
|
||||
Tabs(URL url){
|
||||
this.url = url;
|
||||
Parent p = null;
|
||||
try { p = FXMLLoader.load(url); } catch (IOException e) { e.printStackTrace(); }
|
||||
loaded = p;
|
||||
public static Node load(String fileName){
|
||||
if(!fileName.endsWith(".fxml")) fileName+=".fxml";
|
||||
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);
|
||||
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());
|
||||
return p1[0];
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
return new Pane(); // Returns empty layout if all else fails
|
||||
}
|
||||
}
|
||||
|
||||
public void switchTab(Pane holder){
|
||||
holder.getChildren().clear();
|
||||
holder.getChildren().add(loaded);
|
||||
/**
|
||||
* Switches the currently loaded tab in holder pane. Removes current children from holder and adds new tab instead.
|
||||
* If holder already contains layout, method simply returns the loaded resource.
|
||||
* @param newTabName Name of file containing the new tab data.
|
||||
* @param holder Pane where tab should be loaded to.
|
||||
* @return Generified object referring to loaded resource.
|
||||
*/
|
||||
public static Node switchTab(String newTabName, Pane holder){
|
||||
Node n = load(newTabName);
|
||||
if(!holder.getChildren().contains(n)) {
|
||||
holder.getChildren().clear();
|
||||
holder.getChildren().add(n);
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
/**
|
||||
* Forces unloading of resource to free up resources and/or clear data.
|
||||
* @param fileName Name of resource to unload.
|
||||
*/
|
||||
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);
|
||||
}
|
||||
|
||||
/**
|
||||
* Forces unloading and the subsequent loading of a layout resource.
|
||||
* @param fileName Name of resource to reload.
|
||||
* @return Newly loaded layout.
|
||||
*/
|
||||
public static Node reloadTab(String fileName){
|
||||
unloadTab(fileName);
|
||||
return load(fileName);
|
||||
}
|
||||
}
|
||||
|
5
src/Launcher/minecraft/Launcher.java
Normal file
5
src/Launcher/minecraft/Launcher.java
Normal file
@ -0,0 +1,5 @@
|
||||
package Launcher.minecraft;
|
||||
|
||||
public class Launcher {
|
||||
|
||||
}
|
@ -1,35 +1,111 @@
|
||||
package Launcher.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import Launcher.Main;
|
||||
import com.tofvesson.async.Async;
|
||||
import com.tofvesson.reflection.SafeReflection;
|
||||
import javafx.animation.Timeline;
|
||||
import javax.net.ssl.HttpsURLConnection;
|
||||
import java.io.*;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.net.URLConnection;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import static Launcher.Main.semVerMajor;
|
||||
import static Launcher.Main.semVerMinor;
|
||||
import static Launcher.Main.semVerPatch;
|
||||
|
||||
/**
|
||||
* Simple thing for updating launcher
|
||||
*/
|
||||
public class Updater {
|
||||
|
||||
private static Updater instance;
|
||||
private URLConnection conn;
|
||||
private static volatile Updater instance;
|
||||
private static Async<Updater> setup;
|
||||
public static final Pattern version = Pattern.compile("(?s)<span class=\"css-truncate-target\">.*?(\\d)\\.(\\d)\\.(\\d)</span>.*?<a href=\"/GabrielTofvesson/TeamAvionLauncher/releases/download/(.*?)\\.jar\" rel=\"nofollow\">"); // Pattern to match when finding refs
|
||||
private HttpsURLConnection conn;
|
||||
public static final URL updateURL;
|
||||
|
||||
private Updater(String URL) throws IOException {
|
||||
conn = new URL(URL).openConnection();
|
||||
static {
|
||||
URL u = null;
|
||||
try { u = new URL("https://github.com/GabrielTofvesson/TeamAvionLauncher/releases"); } catch (MalformedURLException e) { e.printStackTrace(); }
|
||||
updateURL = u;
|
||||
}
|
||||
|
||||
public void downloadStuff(){
|
||||
//TODO: Download lots of stuff
|
||||
}
|
||||
private Updater(Timeline t){
|
||||
try {
|
||||
conn = (HttpsURLConnection) updateURL.openConnection();
|
||||
conn.setDoOutput(true);
|
||||
conn.setDoInput(true);
|
||||
conn.setRequestMethod("GET");
|
||||
conn.setRequestProperty("User-Agent", "Mozilla/5.0");
|
||||
if(conn.getResponseCode()!=200){
|
||||
t.play();
|
||||
return; // Can't get update site
|
||||
}
|
||||
conn.connect();
|
||||
|
||||
public void downloadMoreStuff(){
|
||||
//TODO: Download more stuff
|
||||
}
|
||||
|
||||
public void downloadEvenMoreStuff(){
|
||||
//TODO: Download even more stuff
|
||||
}
|
||||
BufferedReader in = new BufferedReader(new InputStreamReader(
|
||||
conn.getInputStream()));
|
||||
String inputLine;
|
||||
StringBuilder response = new StringBuilder();
|
||||
while ((inputLine = in.readLine()) != null) response.append(inputLine);
|
||||
in.close();
|
||||
|
||||
public static Updater getInstance(String url) throws IOException {
|
||||
if(instance==null) instance = new Updater(url);
|
||||
return instance;
|
||||
Matcher m = version.matcher(response.toString());
|
||||
String downloadLink = "";
|
||||
int semMajor = semVerMajor, semMinor = semVerMinor, semPatch = semVerPatch;
|
||||
while(m.find()){
|
||||
int semMaj = Integer.parseInt(m.group(1)),
|
||||
semMin = Integer.parseInt(m.group(2)),
|
||||
semPat = Integer.parseInt(m.group(3));
|
||||
if(semMaj < semMajor || (semMaj==semMajor && semMin<semMinor) ||
|
||||
(semMaj==semMajor && semMin==semMinor && semPat<=semPatch)) continue; // Version found isn't new
|
||||
downloadLink = "https://github.com/GabrielTofvesson/TeamAvionLauncher/releases/download/"+m.group(4)+".jar";
|
||||
semMajor = semMaj;
|
||||
semMinor = semMin;
|
||||
semPatch = semPat;
|
||||
}
|
||||
if(downloadLink.equals("")){
|
||||
t.play();
|
||||
return;
|
||||
}
|
||||
File f = new File("TAL-"+semMajor+"_"+semMinor+"_"+semPatch+".jar"), f1;
|
||||
if((f1=new File(Main.class.getResource("/assets/").getFile())).getParent().contains("!") &&
|
||||
f1.getParent().contains("file:")) // Find .jar representation of this program
|
||||
f1=new File(f1.getParent().substring(f1.getParent().indexOf("file:")+5, f1.getParent().length()-1)); // Prepare for deletion
|
||||
if(f.isFile()) f.renameTo(new File("-"+f.getName()));
|
||||
f.createNewFile();
|
||||
OutputStream o = new FileOutputStream(f);
|
||||
HttpsURLConnection dl = (HttpsURLConnection) new URL(downloadLink).openConnection(); // Downloader
|
||||
dl.setDoOutput(true);
|
||||
dl.setDoInput(true);
|
||||
dl.setRequestMethod("GET");
|
||||
dl.setRequestProperty("User-Agent", "Mozilla/5.0");
|
||||
if(dl.getResponseCode()!=200){
|
||||
t.play();
|
||||
return;
|
||||
}
|
||||
dl.connect();
|
||||
InputStream reader = dl.getInputStream();
|
||||
int i;
|
||||
byte[] buffer = new byte[256];
|
||||
while((i=reader.read(buffer))!=-1) o.write(buffer, 0, i);
|
||||
reader.close();
|
||||
o.close();
|
||||
System.out.println("Starting!");
|
||||
Runtime.getRuntime().exec("java -jar "+f.getName()+" "+f1.getAbsolutePath()+" "+false);
|
||||
System.exit(0);
|
||||
} catch (IOException e) {
|
||||
//e.printStackTrace();
|
||||
System.out.println("No internet connection available!");
|
||||
t.play();
|
||||
}
|
||||
}
|
||||
public static void checkUpdate(Timeline t){ setup = new Async<>(SafeReflection.getFirstConstructor(Updater.class), t); }
|
||||
|
||||
public static Updater getInstance(Timeline t) {
|
||||
if(setup==null) checkUpdate(t);
|
||||
return instance==null?instance=setup.await():instance; // Await async creation
|
||||
}
|
||||
}
|
||||
|
3
src/META-INF/MANIFEST.MF
Normal file
3
src/META-INF/MANIFEST.MF
Normal file
@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: Launcher.Main
|
||||
|
18
src/assets/layout/dialog_update.fxml
Normal file
18
src/assets/layout/dialog_update.fxml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
<Pane xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Label prefHeight="103.0" prefWidth="421.0" text="Looking for updates..." textAlignment="CENTER">
|
||||
<font>
|
||||
<Font size="40.0" />
|
||||
</font>
|
||||
<padding>
|
||||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
|
||||
</padding>
|
||||
</Label>
|
||||
<Label layoutX="23.0" layoutY="72.0" prefHeight="21.0" prefWidth="104.0" text="Everything is good" />
|
||||
</Pane>
|
@ -5,15 +5,13 @@
|
||||
<?import javafx.scene.shape.Rectangle?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Rectangle id="Modpack-back" arcHeight="5.0" arcWidth="5.0" height="47.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="34.0" layoutY="5.0" text="Home" textFill="WHITE">
|
||||
<Rectangle id="Modpack-back" height="40.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="339.0" layoutY="1.0" text="Home" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="31.0" />
|
||||
</font>
|
||||
</Label>
|
||||
</children>
|
||||
</Pane>
|
||||
|
||||
|
@ -1,18 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.Button?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.shape.Rectangle?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Rectangle id="Modpack-back" arcHeight="5.0" arcWidth="5.0" height="47.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="34.0" layoutY="5.0" text="Instances" textFill="WHITE">
|
||||
<Rectangle id="Modpack-back" height="40.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="324.0" layoutY="1.0" text="Instances" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="31.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<Button id="Launch-VM" layoutX="34.0" layoutY="105.0" mnemonicParsing="false" text="Launch" />
|
||||
<Label layoutX="34.0" layoutY="79.0" text="Vanilla Minecraft" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="21.0" />
|
||||
</font>
|
||||
</Label>
|
||||
</children>
|
||||
</Pane>
|
||||
</Pane>
|
||||
|
5
src/assets/layout/instance_userinfo.fxml
Normal file
5
src/assets/layout/instance_userinfo.fxml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
|
||||
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.92" xmlns:fx="http://javafx.com/fxml/1" />
|
@ -7,40 +7,40 @@
|
||||
<?import javafx.scene.shape.Rectangle?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="500" prefWidth="900" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="500" prefWidth="900" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Rectangle id="rectangle" arcHeight="5.0" arcWidth="5.0" fill="white" height="50.0" strokeType="INSIDE" width="900.0" />
|
||||
<Button id="exit" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="862.0" layoutY="13.0" mnemonicParsing="false" stylesheets="@../style/nav.css" text="X" textFill="WHITE" />
|
||||
<Button id="min" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="841.0" layoutY="13.0" mnemonicParsing="false" stylesheets="@../style/nav.css" text="-" textFill="WHITE" />
|
||||
<Rectangle id="rectangle" fill="white" height="50.0" strokeType="INSIDE" width="900.0" />
|
||||
<Button id="exit" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="862.0" layoutY="13.0" mnemonicParsing="false" text="X" textFill="WHITE" />
|
||||
<Button id="min" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="841.0" layoutY="13.0" mnemonicParsing="false" text="-" textFill="WHITE" />
|
||||
<ImageView id="icon" fitHeight="30" fitWidth="30" layoutX="26.0" layoutY="11.0" />
|
||||
<Label layoutX="75.0" layoutY="11.0" text="Team-Avion Launcher" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="24.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<Rectangle id="nav" arcHeight="5.0" arcWidth="5.0" fill="#101e38" height="450.0" layoutY="50.0" stroke="TRANSPARENT" strokeType="INSIDE" width="150.0" />
|
||||
<Button id="Home-btn" layoutY="50.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Home" textFill="WHITE" textOverrun="CLIP">
|
||||
<Rectangle id="rectangle-1" height="450.0" layoutY="50.0" styleClass="nav-bar" width="150.0" />
|
||||
<Button id="Home-btn" layoutY="50.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" styleClass="selected" text="Home" textFill="WHITE" textOverrun="CLIP">
|
||||
<font>
|
||||
<Font name="Centaur" size="16.0" />
|
||||
</font>
|
||||
</Button>
|
||||
<Button id="Modpacks-btn" layoutY="90.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Modpack" textFill="WHITE" textOverrun="CLIP">
|
||||
<Button id="Modpacks-btn" layoutY="90.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" styleClass="tab" text="Modpack" textAlignment="CENTER" textFill="WHITE" textOverrun="CLIP">
|
||||
<font>
|
||||
<Font name="Centaur" size="16.0" />
|
||||
</font>
|
||||
</Button>
|
||||
<Button id="Instance-btn" layoutY="130.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Instances" textFill="WHITE" textOverrun="CLIP">
|
||||
<Button id="Instance-btn" layoutY="130.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" styleClass="tab" text="Instances" textFill="WHITE" textOverrun="CLIP">
|
||||
<font>
|
||||
<Font name="Centaur" size="16.0" />
|
||||
</font>
|
||||
</Button>
|
||||
<Button id="Settings-btn" layoutY="170.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Settings" textFill="WHITE" textOverrun="CLIP">
|
||||
<Button id="Settings-btn" layoutY="170.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" styleClass="tab" text="Settings" textFill="WHITE" textOverrun="CLIP">
|
||||
<font>
|
||||
<Font name="Centaur" size="16.0" />
|
||||
</font>
|
||||
</Button>
|
||||
<Pane id="tab" layoutX="150.0" layoutY="50.0" prefHeight="450.0" prefWidth="750.0" />
|
||||
<Label layoutX="17.0" layoutY="455.0" text="Version : PreDev-0.0.1" textFill="white" />
|
||||
<Label id="version" layoutX="17.0" layoutY="455.0" text="Version : $v" textFill="white" />
|
||||
<Label layoutX="9.0" layoutY="472.0" text="Copyright 2016 TeamAvion" textFill="WHITE">
|
||||
<font>
|
||||
<Font size="11.0" />
|
||||
|
@ -6,14 +6,14 @@
|
||||
<?import javafx.scene.shape.Rectangle?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Rectangle id="Modpack-back" arcHeight="5.0" arcWidth="5.0" height="47.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="34.0" layoutY="5.0" text="Modpacks" textFill="WHITE">
|
||||
<Rectangle id="Modpack-back" height="40.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="40.0" layoutY="1.0" text="Modpacks" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="31.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<TextField id="search-modpacks" layoutX="516.0" layoutY="5.0" prefHeight="25.0" prefWidth="212.0" promptText="Search Modpacks" />
|
||||
<TextField id="search-modpacks" layoutX="518.0" layoutY="2.0" prefHeight="25.0" prefWidth="212.0" promptText="Search Modpacks" />
|
||||
</children>
|
||||
</Pane>
|
||||
|
@ -1,19 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.Button?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.shape.Rectangle?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Rectangle id="Modpack-back" arcHeight="5.0" arcWidth="5.0" height="47.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="34.0" layoutY="5.0" text="Settings" textFill="WHITE">
|
||||
<Rectangle id="Modpack-back" height="40.0" strokeType="INSIDE" width="750.0" />
|
||||
<Label layoutX="331.0" layoutY="1.0" text="Settings" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Centaur" size="31.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<Rectangle id="rectangle-2" height="40.0" layoutY="40.0" width="750.0" />
|
||||
<Button id="Settings-Gen-btn" layoutY="40.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="100.0" styleClass="selected" text="General" textFill="WHITE" />
|
||||
<Button id="Settings-Mine-btn" layoutX="100.0" layoutY="40.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="100.0" styleClass="tab" text="Minecraft" textFill="WHITE">
|
||||
<font>
|
||||
<Font name="Candara" size="12.0" />
|
||||
</font>
|
||||
</Button>
|
||||
<Pane id="Settings-Pane" layoutY="90.0" prefHeight="360.0" prefWidth="750.0" />
|
||||
</children>
|
||||
</Pane>
|
||||
|
||||
|
19
src/assets/layout/settings_generic.fxml
Normal file
19
src/assets/layout/settings_generic.fxml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.Button?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="360.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Label layoutX="22.0" layoutY="14.0" text="General Settings">
|
||||
<font>
|
||||
<Font name="Centaur" size="25.0" />
|
||||
</font>
|
||||
</Label>
|
||||
<Button layoutX="22.0" layoutY="72.0" mnemonicParsing="false" text="light" />
|
||||
<Button layoutX="96.0" layoutY="72.0" mnemonicParsing="false" text="dark" />
|
||||
<Button layoutX="170.0" layoutY="72.0" mnemonicParsing="false" text="default" />
|
||||
</children>
|
||||
</Pane>
|
15
src/assets/layout/settings_minecraft.fxml
Normal file
15
src/assets/layout/settings_minecraft.fxml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.Pane?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
|
||||
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="360.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.92" xmlns:fx="http://javafx.com/fxml/1">
|
||||
<children>
|
||||
<Label layoutX="22.0" layoutY="14.0" text="Minecraft Settings">
|
||||
<font>
|
||||
<Font name="Centaur" size="25.0" />
|
||||
</font>
|
||||
</Label>
|
||||
</children>
|
||||
</Pane>
|
48
src/assets/style/dark-theme.css
Normal file
48
src/assets/style/dark-theme.css
Normal file
@ -0,0 +1,48 @@
|
||||
#pane {
|
||||
-fx-background-color: rgba(7, 4, 20, 0.85);
|
||||
}
|
||||
#rectangle {
|
||||
-fx-fill: #050517;
|
||||
}
|
||||
|
||||
#rectangle-1 {
|
||||
-fx-fill: #080920;
|
||||
}
|
||||
|
||||
#rectangle-2 {
|
||||
-fx-fill: #0d0d39;
|
||||
}
|
||||
|
||||
#Modpack-back {
|
||||
-fx-fill: #0a0e2e;
|
||||
}
|
||||
#exit, #min{
|
||||
-fx-background-color: rgba(30, 25, 25, 0);
|
||||
}
|
||||
#min:hover, #exit:hover{
|
||||
-fx-background-color: #bf0000;
|
||||
}
|
||||
#search-modpacks {
|
||||
-fx-text-inner-color: white;
|
||||
-fx-background-color: rgba(0, 0, 0, 0.17);
|
||||
-fx-padding: 10px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
-fx-background-color: rgba(0, 0, 0, 0);
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.tab:hover{
|
||||
-fx-background-color: #0c182d;
|
||||
|
||||
}
|
||||
|
||||
.selected {
|
||||
-fx-background-color: #0c182d;
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.selected:hover {
|
||||
-fx-background-color: #0c182d;
|
||||
}
|
48
src/assets/style/default-theme.css
Normal file
48
src/assets/style/default-theme.css
Normal file
@ -0,0 +1,48 @@
|
||||
#pane {
|
||||
-fx-background-color: rgba(7, 4, 20, 0.85);
|
||||
}
|
||||
#rectangle {
|
||||
-fx-fill: #050517;
|
||||
}
|
||||
|
||||
#rectangle-1 {
|
||||
-fx-fill: #080920;
|
||||
}
|
||||
|
||||
#rectangle-2 {
|
||||
-fx-fill: #0d0d39;
|
||||
}
|
||||
|
||||
#Modpack-back {
|
||||
-fx-fill: #0a0e2e;
|
||||
}
|
||||
#exit, #min{
|
||||
-fx-background-color: rgba(30, 25, 25, 0);
|
||||
}
|
||||
#min:hover, #exit:hover{
|
||||
-fx-background-color: #bf0000;
|
||||
}
|
||||
#search-modpacks {
|
||||
-fx-text-inner-color: white;
|
||||
-fx-background-color: rgba(0, 0, 0, 0.17);
|
||||
-fx-padding: 10px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
-fx-background-color: rgba(0, 0, 0, 0);
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.tab:hover{
|
||||
-fx-background-color: #0c182d;
|
||||
|
||||
}
|
||||
|
||||
.selected {
|
||||
-fx-background-color: #0c182d;
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.selected:hover {
|
||||
-fx-background-color: #0c182d;
|
||||
}
|
48
src/assets/style/light-theme.css
Normal file
48
src/assets/style/light-theme.css
Normal file
@ -0,0 +1,48 @@
|
||||
#pane {
|
||||
-fx-background-color: rgba(206, 206, 206, 0.85);
|
||||
}
|
||||
#rectangle {
|
||||
-fx-fill: #898989;
|
||||
}
|
||||
|
||||
#rectangle-1 {
|
||||
-fx-fill: #bfbfbf;
|
||||
}
|
||||
|
||||
#rectangle-2 {
|
||||
-fx-fill: #909090;
|
||||
}
|
||||
|
||||
#Modpack-back {
|
||||
-fx-fill: #9f9f9f;
|
||||
}
|
||||
#exit, #min{
|
||||
-fx-background-color: rgba(30, 25, 25, 0);
|
||||
}
|
||||
#min:hover, #exit:hover{
|
||||
-fx-background-color: #bf0000;
|
||||
}
|
||||
#search-modpacks {
|
||||
-fx-text-inner-color: white;
|
||||
-fx-background-color: rgba(0, 0, 0, 0.17);
|
||||
-fx-padding: 10px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
-fx-background-color: rgba(0, 0, 0, 0);
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.tab:hover{
|
||||
-fx-background-color: #d5d5d5;
|
||||
|
||||
}
|
||||
|
||||
.selected {
|
||||
-fx-background-color: #6e6e6e;
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
|
||||
.selected:hover {
|
||||
-fx-background-color: #6e6e6e;
|
||||
}
|
@ -1,27 +0,0 @@
|
||||
#pane {
|
||||
-fx-background-color: #050f19;
|
||||
}
|
||||
#rectangle {
|
||||
-fx-fill: #031128;
|
||||
}
|
||||
#Modpack-back {
|
||||
-fx-fill: #042344;
|
||||
}
|
||||
#exit, #min{
|
||||
-fx-background-color: rgba(30, 25, 25, 0);
|
||||
}
|
||||
#min:hover, #exit:hover{
|
||||
-fx-background-color: #bf0000;
|
||||
}
|
||||
#Home-btn, #Modpacks-btn, #Settings-btn, #Instance-btn {
|
||||
-fx-background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
#Home-btn:hover, #Modpacks-btn:hover, #Settings-btn:hover, #Instance-btn:hover {
|
||||
-fx-background-color: #0c182d;
|
||||
-fx-background-radius: 0em;
|
||||
}
|
||||
#search-modpacks {
|
||||
-fx-text-inner-color: white;
|
||||
-fx-background-color: rgba(0, 0, 0, 0.5);
|
||||
-fx-padding: 10px;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user