diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..cfd206b --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/org_json_1_6_20240205.xml b/.idea/libraries/org_json_1_6_20240205.xml new file mode 100644 index 0000000..a68417e --- /dev/null +++ b/.idea/libraries/org_json_1_6_20240205.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07115cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..60eea78 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/firestar.iml b/firestar.iml new file mode 100644 index 0000000..225728b --- /dev/null +++ b/firestar.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Kermit.java b/src/Kermit.java new file mode 100644 index 0000000..37fb2f9 --- /dev/null +++ b/src/Kermit.java @@ -0,0 +1,184 @@ +/* + * Firestar Mod Manager + * Copyright (C) 2024 bonkmaykr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + +import javax.swing.*; +import javax.swing.text.StyleConstants; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.File; + +// handles setup window +public class Kermit implements ActionListener { + public enum Pages { + AGREEMENT(0), + EXPORT_MODE(1), + SDK_INSTALL(2), + SDK_FAILURE(3), + WHAT_OS(4), + EXPORT_LOCATION(5), + DONE(6); + + public final int value; + + private Pages(int i) { + this.value = i; + } + } + + JDialog frame = new JDialog();; + JButton button = new JButton("Next"); + JButton button2 = new JButton("Quit"); + JButton button3 = new JButton("Cancel"); + JButton button4 = new JButton("Back"); + JTextPane dialogText = new JTextPane(); + Pages page = Pages.AGREEMENT; + javax.swing.text.StyledDocument document = dialogText.getStyledDocument(); + javax.swing.text.SimpleAttributeSet align= new javax.swing.text.SimpleAttributeSet(); + + public void setup(File fConf) { //File variable is redundant. unused + // todo Disable MissPiggy + changePage(Pages.AGREEMENT); + } + + @Override + public void actionPerformed(ActionEvent actionEvent) { + if (actionEvent.getSource() == button2){ + System.exit(0); + } else if (actionEvent.getSource() == button){ + switch (page) { + case AGREEMENT: + frame.remove(button); + frame.remove(button2); + changePage(Pages.EXPORT_MODE); + break; + case EXPORT_MODE: + if (Main.repatch) {changePage(Pages.SDK_INSTALL);} else {changePage(Pages.EXPORT_LOCATION);} + break; + case SDK_INSTALL: + break; + case SDK_FAILURE: + break; + case WHAT_OS: + break; + case EXPORT_LOCATION: + changePage(Pages.DONE); + break; + case DONE: + // todo Enable MissPiggy + + page = Pages.AGREEMENT; //set it here since we're disposing of the entire thing + frame.dispose(); + break; + default: + throw new UnsupportedOperationException("ERROR: Undefined behavior in Kermit's event listener. Get a programmer!"); + //JOptionPane OhShit = new JOptionPane.showMessageDialog(null, "Fuck"); + } + } + } + + public void changePage(Pages GoTo) { + switch (GoTo) { + case AGREEMENT: + page = Pages.AGREEMENT; + + button.setBounds(292, 343, 300, 30); + button.addActionListener(this); + frame.add(button); + + button2.setBounds(0, 343, 292, 30); + button2.addActionListener(this); + frame.add(button2); + + dialogText.setHighlighter(null); + dialogText.getCaret().setVisible(false); + dialogText.setFocusable(false); + dialogText.setBounds(0, 0, 592, 343); + //dialogText.setAlignmentX(JComponent.CENTER_ALIGNMENT); + //dialogText.setAlignmentY(JComponent.CENTER_ALIGNMENT); + StyleConstants.setAlignment(align, StyleConstants.ALIGN_CENTER); + document.setParagraphAttributes(0, document.getLength(), align, false); + //dialogText.setText("Aww Fiddlesticks, what now?"); + dialogText.setText("WELCOME TO FIRESTAR\n\n" + + "This initial setup guide will help you prepare your Playstation Vita, Playstation TV, or Vita3K emulator to play WipEout mods. You will be asked a series of questions to help Firestar decide the most optimal installation method for you.\n\n" + + "If you encounter any issues while using Firestar you may contact the author at bonkmaykr@screwgravity.net\n\n" + + "DISCLAIMER: This program is free software licensed under the GNU General Public License version 3.0. You may share this program and it's source code so long as you extend the same rights to others. The developers of this software are never responsible for any damage to your game console and Firestar is provided to you without any warranty or legal guarantee. By using Firestar, you agree to these terms. For more information, visit https://www.gnu.org/licenses/gpl-3.0.en.html"); + frame.add(dialogText); + + frame.setSize(600, 400); + frame.setTitle("Initial Setup"); + frame.setAlwaysOnTop(true); + frame.setDefaultCloseOperation(0); + frame.setResizable(false); + frame.setLayout(null); + frame.setVisible(true); + break; + case EXPORT_MODE: + page = Pages.EXPORT_MODE; + + button.setBounds(292, 343, 300, 30); + button.addActionListener(this); + frame.add(button); + + button2.setBounds(0, 343, 292, 30); + button2.addActionListener(this); + frame.add(button2); + + dialogText.setHighlighter(null); + dialogText.getCaret().setVisible(false); + dialogText.setFocusable(false); + dialogText.setBounds(0, 0, 592, 343); + //dialogText.setAlignmentX(JComponent.CENTER_ALIGNMENT); + //dialogText.setAlignmentY(JComponent.CENTER_ALIGNMENT); + StyleConstants.setAlignment(align, StyleConstants.ALIGN_CENTER); + document.setParagraphAttributes(0, document.getLength(), align, false); + //dialogText.setText("Aww Fiddlesticks, what now?"); + dialogText.setText("WELCOME TO FIRESTAR\n\n" + + "This initial setup guide will help you prepare your Playstation Vita, Playstation TV, or Vita3K emulator to play WipEout mods. You will be asked a series of questions to help Firestar decide the most optimal installation method for you.\n\n" + + "If you encounter any issues while using Firestar you may contact the author at bonkmaykr@screwgravity.net\n\n" + + "DISCLAIMER: This program is free software licensed under the GNU General Public License version 3.0. You may share this program and it's source code so long as you extend the same rights to others. The developers of this software are never responsible for any damage to your game console and Firestar is provided to you without any warranty or legal guarantee. By using Firestar, you agree to these terms. For more information, visit https://www.gnu.org/licenses/gpl-3.0.en.html"); + frame.add(dialogText); + + frame.setSize(600, 400); + frame.setTitle("Initial Setup"); + frame.setAlwaysOnTop(true); + frame.setDefaultCloseOperation(0); + frame.setResizable(false); + frame.setLayout(null); + frame.setVisible(true); + break; + case SDK_INSTALL: + page = Pages.SDK_INSTALL; + break; + case SDK_FAILURE: + page = Pages.SDK_FAILURE; + break; + case WHAT_OS: + page = Pages.WHAT_OS; + break; + case EXPORT_LOCATION: + page = Pages.EXPORT_LOCATION; + break; + case DONE: + page = Pages.DONE; + break; + default: + throw new UnsupportedOperationException("ERROR: Undefined behavior in Kermit.changePage(). Get a programmer!"); + //JOptionPane OhShit = new JOptionPane.showMessageDialog(null, "Fuck"); + } + } +} diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..e24664e --- /dev/null +++ b/src/Main.java @@ -0,0 +1,61 @@ +/* + * Firestar Mod Manager + * Copyright (C) 2024 bonkmaykr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + +import org.json.*; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.*; +import javax.swing.*; + +public class Main { + public static String vstr = "debug"; + public static String vcode = "Natasha"; + public static int vint = 0; + + public static String path; //game assets location + public static boolean repatch; //are we in compat mode? + //public static String psarc; //sdk location + + public static void main(String[] args) { + // license string + System.out.printf("FIRESTAR MOD MANAGER for WipEout 2048\nversion " + vstr + " (codename " + vcode + ")\nCopyright (C) 2024 bonkmaykr\n\nThis program is free software: you can redistribute it and/or modify\n" + + "it under the terms of the GNU General Public License as published by\n" + + "the Free Software Foundation, either version 3 of the License, or\n" + + "(at your option) any later version.\n" + + "\n" + + "This program is distributed in the hope that it will be useful,\n" + + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + + "GNU General Public License for more details.\n" + + "\n" + + "You should have received a copy of the GNU General Public License\n" + + "along with this program. If not, see https://www.gnu.org/licenses/.\n\n\n\n"); + + //begin + // todo create main window + + // check and load configs + File fConf = new File(System.getProperty("user.home") + "/.firestar/firestar.conf"); + if (!fConf.isFile()) { + new Kermit().setup(fConf); // this is a fresh install, run the OOBE. + } + + // todo load modlist and send to MissPiggy + } +} \ No newline at end of file