413 lines
18 KiB
Java
413 lines
18 KiB
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package forgemodpackbuilder;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import javax.swing.DefaultListModel;
|
|
import javax.swing.JOptionPane;
|
|
|
|
/**
|
|
*
|
|
* @author simonr
|
|
*/
|
|
public class GUI extends javax.swing.JFrame {
|
|
|
|
static String datei = null;
|
|
static String[] mods1 = new String[300];
|
|
static String[] mods2 = new String[300];
|
|
static String version = "1.10.2";
|
|
|
|
/**
|
|
* Creates new form GUI
|
|
*/
|
|
public GUI() {
|
|
initComponents();
|
|
}
|
|
|
|
/**
|
|
* This method is called from within the constructor to initialize the form.
|
|
* WARNING: Do NOT modify this code. The content of this method is always
|
|
* regenerated by the Form Editor.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
private void initComponents() {
|
|
|
|
jLabel1 = new javax.swing.JLabel();
|
|
jScrollPane1 = new javax.swing.JScrollPane();
|
|
jList1 = new javax.swing.JList<>();
|
|
jLabel2 = new javax.swing.JLabel();
|
|
jButton1 = new javax.swing.JButton();
|
|
jScrollPane3 = new javax.swing.JScrollPane();
|
|
jList2 = new javax.swing.JList<>();
|
|
jButton2 = new javax.swing.JButton();
|
|
jButton3 = new javax.swing.JButton();
|
|
jButton4 = new javax.swing.JButton();
|
|
jButton5 = new javax.swing.JButton();
|
|
jComboBox1 = new javax.swing.JComboBox<>();
|
|
jButton6 = new javax.swing.JButton();
|
|
jButton8 = new javax.swing.JButton();
|
|
jTextField1 = new javax.swing.JTextField();
|
|
jButton7 = new javax.swing.JButton();
|
|
|
|
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
|
setTitle("ForgeModpackBuilder");
|
|
|
|
jLabel1.setText("Version");
|
|
|
|
jScrollPane1.setViewportView(jList1);
|
|
jList1.getAccessibleContext().setAccessibleDescription("");
|
|
|
|
jLabel2.setText("Mods:");
|
|
|
|
jButton1.setText("Hinzufügen");
|
|
jButton1.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton1ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jScrollPane3.setViewportView(jList2);
|
|
|
|
jButton2.setText("Laden");
|
|
jButton2.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton2ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton3.setText("Minecraft starten");
|
|
jButton3.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton3ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton4.setText("Forge installieren");
|
|
jButton4.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton4ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton5.setText("Modpack erstellen");
|
|
jButton5.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton5ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jComboBox1.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "1.10.2", "1.9.4", "1.8.9", "1.7.10" }));
|
|
jComboBox1.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jComboBox1ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton6.setText("Modpack Laden und Installieren");
|
|
jButton6.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton6ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton8.setText("Entfernen");
|
|
jButton8.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton8ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jTextField1.setToolTipText("");
|
|
jTextField1.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jTextField1ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
jButton7.setText("Bibliotheken download");
|
|
jButton7.addActionListener(new java.awt.event.ActionListener() {
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
jButton7ActionPerformed(evt);
|
|
}
|
|
});
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
getContentPane().setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel1)
|
|
.addGap(4, 4, 4)
|
|
.addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addGap(58, 58, 58)
|
|
.addComponent(jButton6, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addGap(18, 18, 18)
|
|
.addComponent(jButton4, javax.swing.GroupLayout.PREFERRED_SIZE, 154, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jButton3, javax.swing.GroupLayout.PREFERRED_SIZE, 157, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jLabel2)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jButton2)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jTextField1)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jButton8)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jButton1))
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 537, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(jScrollPane3, javax.swing.GroupLayout.DEFAULT_SIZE, 421, Short.MAX_VALUE)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(jButton7, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addComponent(jButton5, javax.swing.GroupLayout.PREFERRED_SIZE, 177, javax.swing.GroupLayout.PREFERRED_SIZE)))))
|
|
.addContainerGap())
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(jLabel1)
|
|
.addComponent(jButton3)
|
|
.addComponent(jButton4)
|
|
.addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(jButton6))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.Alignment.TRAILING)
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(jButton1)
|
|
.addComponent(jButton2)
|
|
.addComponent(jButton5)
|
|
.addComponent(jButton8)
|
|
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(jButton7)))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 478, Short.MAX_VALUE)
|
|
.addComponent(jScrollPane3))
|
|
.addGap(26, 26, 26))
|
|
);
|
|
|
|
pack();
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
|
|
// TODO add your handling code here:
|
|
System.out.println("Ausgewählt = " + jList1.getSelectedValue());
|
|
datei = jList1.getSelectedValue();
|
|
try {
|
|
DateiKopierenClass.main(null);
|
|
} catch (IOException ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
jButton2ActionPerformed(evt);
|
|
|
|
}//GEN-LAST:event_jButton1ActionPerformed
|
|
|
|
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
|
|
// TODO add your handling code here:
|
|
File dir = new File("./modpack/modpack");
|
|
dir.mkdir();
|
|
dir = new File("./modpack/modpack/mods");
|
|
dir.mkdir();
|
|
for (int i = 0; i < 200; i++) {
|
|
mods1[i] = null;
|
|
mods2[i] = null;
|
|
}
|
|
Suche.main(mods1);
|
|
Suche1.main(mods2);
|
|
DefaultListModel dim = new DefaultListModel();
|
|
DefaultListModel dim1 = new DefaultListModel();
|
|
for (int i = 0; i < 200; i++) {
|
|
dim.addElement(mods1[i]);
|
|
dim1.addElement(mods2[i]);
|
|
}
|
|
jList1.setModel(dim);
|
|
jList2.setModel(dim1);
|
|
}//GEN-LAST:event_jButton2ActionPerformed
|
|
|
|
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
|
|
// TODO add your handling code here:
|
|
ProcExecExamples.funktion = 1;
|
|
try {
|
|
ProcExecExamples.main(null);
|
|
} catch (Exception ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
}//GEN-LAST:event_jButton3ActionPerformed
|
|
|
|
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton4ActionPerformed
|
|
// TODO add your handling code here:
|
|
ProcExecExamples.funktion = 2;
|
|
try {
|
|
ProcExecExamples.main(null);
|
|
} catch (Exception ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
}//GEN-LAST:event_jButton4ActionPerformed
|
|
|
|
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
|
|
try {
|
|
downloader.main(null);
|
|
downloader1.main(null);
|
|
// TODO add your handling code here:
|
|
VerzeichnisDurchsuchen3.main(null);
|
|
DateiKopierenClass1.main(null);
|
|
DateiKopierenClass2.main(null);
|
|
String file = "./modpack/modpack/" + GUI.datei.substring(GUI.datei.lastIndexOf("/") + 1);
|
|
new File(file).renameTo(new File("./modpack/modpack/forge.jar"));
|
|
frage.main(null);
|
|
} catch (IOException ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
} catch (Throwable ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
}//GEN-LAST:event_jButton5ActionPerformed
|
|
|
|
private void jComboBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jComboBox1ActionPerformed
|
|
// TODO add your handling code here:
|
|
String s = (String) jComboBox1.getSelectedItem();
|
|
System.out.println(s);
|
|
version = s;
|
|
File dir = new File("./modpack/" + version);
|
|
dir.mkdir();
|
|
dir = new File("./modpack/" + version + "/mods");
|
|
dir.mkdir();
|
|
jButton2ActionPerformed(evt);
|
|
|
|
}//GEN-LAST:event_jComboBox1ActionPerformed
|
|
|
|
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton6ActionPerformed
|
|
// TODO add your handling code here:
|
|
try {
|
|
JOptionPane.showMessageDialog(null, "Bitte geben sie den Pfad zu dem Modpack ein!");
|
|
OeffnenDialogClass.main(null);
|
|
OeffnenDialogClass a = new OeffnenDialogClass();
|
|
System.out.println("GUI = " + datei);
|
|
UnZip.modpack = datei;
|
|
UnZip.main();
|
|
jButton4ActionPerformed(evt);
|
|
} catch (java.lang.NullPointerException ex) {
|
|
System.out.println("Keine Eingabe");
|
|
}
|
|
//jButton3ActionPerformed(evt);
|
|
}//GEN-LAST:event_jButton6ActionPerformed
|
|
|
|
private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton8ActionPerformed
|
|
// TODO add your handling code here:
|
|
System.out.println(jList2.getSelectedValue());
|
|
datei = jList2.getSelectedValue();
|
|
try {
|
|
FileDeleteExample.main(null);
|
|
} catch (java.lang.NullPointerException ex) {
|
|
System.out.println("Datei nicht Vorhanden!!!");
|
|
}
|
|
jButton2ActionPerformed(evt);
|
|
|
|
}//GEN-LAST:event_jButton8ActionPerformed
|
|
|
|
private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField1ActionPerformed
|
|
// TODO add your handling code here:
|
|
Suche.name = jTextField1.getText();
|
|
System.out.println(Suche1.name);
|
|
Suche.main(null);
|
|
jButton2ActionPerformed(evt);
|
|
|
|
}//GEN-LAST:event_jTextField1ActionPerformed
|
|
|
|
private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton7ActionPerformed
|
|
try {
|
|
// TODO add your handling code here:
|
|
downloader.main(null);
|
|
downloader1.main(null);
|
|
VerzeichnisDurchsuchen3.main(null);
|
|
DateiKopierenClass1.main(null);
|
|
DateiKopierenClass2.main(null);
|
|
String file = "./modpack/modpack/" + GUI.datei.substring(GUI.datei.lastIndexOf("/") + 1);
|
|
new File(file).renameTo(new File("./modpack/modpack/forge.jar"));
|
|
} catch (Throwable ex) {
|
|
Logger.getLogger(GUI.class.getName()).log(Level.SEVERE, null, ex);
|
|
}
|
|
}//GEN-LAST:event_jButton7ActionPerformed
|
|
|
|
DefaultListModel dim2 = new DefaultListModel();
|
|
|
|
/**
|
|
* @param args the command line arguments
|
|
*/
|
|
public static void main(String args[]) {
|
|
/* Set the Nimbus look and feel */
|
|
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
|
|
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
|
|
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
|
|
*/
|
|
try {
|
|
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
|
|
if ("Nimbus".equals(info.getName())) {
|
|
javax.swing.UIManager.setLookAndFeel(info.getClassName());
|
|
break;
|
|
|
|
}
|
|
}
|
|
} catch (ClassNotFoundException ex) {
|
|
java.util.logging.Logger.getLogger(GUI.class
|
|
.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
|
} catch (InstantiationException ex) {
|
|
java.util.logging.Logger.getLogger(GUI.class
|
|
.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
|
} catch (IllegalAccessException ex) {
|
|
java.util.logging.Logger.getLogger(GUI.class
|
|
.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
|
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
|
java.util.logging.Logger.getLogger(GUI.class
|
|
.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
}
|
|
//</editor-fold>
|
|
|
|
/* Create and display the form */
|
|
java.awt.EventQueue.invokeLater(() -> {
|
|
new GUI().setVisible(true);
|
|
File dir = new File("./modpack");
|
|
dir.mkdir();
|
|
System.out.println(System.getProperty("user.home"));
|
|
});
|
|
}
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JButton jButton1;
|
|
private javax.swing.JButton jButton2;
|
|
private javax.swing.JButton jButton3;
|
|
private javax.swing.JButton jButton4;
|
|
private javax.swing.JButton jButton5;
|
|
private javax.swing.JButton jButton6;
|
|
private javax.swing.JButton jButton7;
|
|
private javax.swing.JButton jButton8;
|
|
private javax.swing.JComboBox<String> jComboBox1;
|
|
private javax.swing.JLabel jLabel1;
|
|
private javax.swing.JLabel jLabel2;
|
|
private javax.swing.JList<String> jList1;
|
|
private javax.swing.JList<String> jList2;
|
|
private javax.swing.JScrollPane jScrollPane1;
|
|
private javax.swing.JScrollPane jScrollPane3;
|
|
private javax.swing.JTextField jTextField1;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|