2021-06-21 09:45:31 +00:00
|
|
|
package the.bytecode.club.bytecodeviewer;
|
|
|
|
|
2021-07-16 18:26:41 +00:00
|
|
|
import org.objectweb.asm.Opcodes;
|
2021-07-14 09:59:36 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.resources.ResourceType;
|
|
|
|
|
2021-06-21 09:45:31 +00:00
|
|
|
import java.io.File;
|
2021-07-07 04:21:06 +00:00
|
|
|
import java.io.PrintStream;
|
2021-06-21 09:45:31 +00:00
|
|
|
|
|
|
|
/**
|
2021-06-26 01:13:46 +00:00
|
|
|
* General program constants, to use this class include everything as a wildcard static import:
|
|
|
|
* import static the.bytecode.club.bytecodeviewer.Constants.*;
|
|
|
|
*
|
2021-06-21 09:45:31 +00:00
|
|
|
* @author Konloch
|
|
|
|
* @since 6/21/2021
|
|
|
|
*/
|
|
|
|
public class Constants
|
|
|
|
{
|
|
|
|
/*per version*/
|
|
|
|
public static String krakatauVersion = "12";
|
|
|
|
public static String enjarifyVersion = "4";
|
2021-07-21 14:28:30 +00:00
|
|
|
|
2021-07-21 14:44:25 +00:00
|
|
|
//if true this disables testing code for tabs
|
|
|
|
//until dragging and full right-click menu support is added this is
|
|
|
|
//a starting point
|
2021-06-21 09:45:31 +00:00
|
|
|
public static final boolean BLOCK_TAB_MENU = true;
|
2021-07-21 14:44:25 +00:00
|
|
|
|
|
|
|
//if true this will attempt to launch the decompilers in a new JVM process
|
|
|
|
//the pro's to this are:
|
|
|
|
// + You can control the java arguments (more memory & stack)
|
|
|
|
//the cons to this are:
|
|
|
|
// + If you could keep it in memory, now you need to write to disk (windows limitations)
|
2021-07-11 12:33:18 +00:00
|
|
|
public static final boolean LAUNCH_DECOMPILERS_IN_NEW_PROCESS = false; //TODO
|
2021-07-21 14:44:25 +00:00
|
|
|
|
|
|
|
//could be automatic by checking if it's loaded a class named whatever for a library
|
|
|
|
//maybe it could be automatic with some maven plugin?
|
|
|
|
public static final boolean FAT_JAR = true;
|
|
|
|
|
|
|
|
//the automatic updater
|
|
|
|
//SHADED_LIBRARIES must be false for the boot loader to startup
|
|
|
|
//TODO this needs to be changed to support maven
|
|
|
|
public static final boolean AUTOMATIC_LIBRARY_UPDATING = false;
|
2021-06-21 09:45:31 +00:00
|
|
|
|
2021-07-21 14:28:30 +00:00
|
|
|
//version is set via maven
|
|
|
|
public static final String VERSION = getVersion(BytecodeViewer.class.getPackage().getImplementationVersion());
|
|
|
|
//dev mode is just a check for running via IDE
|
|
|
|
public static boolean DEV_MODE;
|
|
|
|
|
2021-07-21 17:47:56 +00:00
|
|
|
//if true the version checker will prompt and ask how you would like to proceed
|
2021-07-21 22:55:42 +00:00
|
|
|
public static final boolean FORCE_VERSION_CHECKER_PROMPT = false;
|
2021-07-21 17:47:56 +00:00
|
|
|
|
2021-06-21 09:45:31 +00:00
|
|
|
public static final String fs = System.getProperty("file.separator");
|
|
|
|
public static final String nl = System.getProperty("line.separator");
|
2021-07-11 12:33:18 +00:00
|
|
|
|
|
|
|
//TODO check if $HOME/.local/share exists, if so reference from there instead - #250
|
2021-06-21 09:45:31 +00:00
|
|
|
public static final File BCVDir = new File(System.getProperty("user.home") + fs + ".Bytecode-Viewer");
|
|
|
|
public static final File RT_JAR = new File(System.getProperty("java.home") + fs + "lib" + fs + "rt.jar");
|
2021-07-19 19:23:25 +00:00
|
|
|
public static final File JAVA_BINARY = new File(System.getProperty("java.home") + fs + "bin" + fs + "java.exe");
|
|
|
|
public static final File JAVA_BINARY_NIX = new File(System.getProperty("java.home") + fs + "bin" + fs + "java");
|
2021-06-21 09:45:31 +00:00
|
|
|
public static final File RT_JAR_DUMPED = new File(getBCVDirectory() + fs + "rt.jar");
|
|
|
|
public static final String filesName = getBCVDirectory() + fs + "recentfiles.json";
|
|
|
|
public static final String pluginsName = getBCVDirectory() + fs + "recentplugins.json";
|
|
|
|
public static final String settingsName = getBCVDirectory() + fs + "settings.bcv";
|
|
|
|
public static final String tempDirectory = getBCVDirectory() + fs + "bcv_temp" + fs;
|
2021-07-19 17:46:35 +00:00
|
|
|
public static final String systemTempDirectory = System.getProperty("java.io.tmpdir");
|
2021-06-21 09:45:31 +00:00
|
|
|
public static final String libsDirectory = getBCVDirectory() + fs + "libs" + fs;
|
|
|
|
public static String krakatauWorkingDirectory = getBCVDirectory() + fs + "krakatau_" + krakatauVersion;
|
|
|
|
public static String enjarifyWorkingDirectory = getBCVDirectory() + fs + "enjarify_" + enjarifyVersion;
|
2021-07-14 09:59:36 +00:00
|
|
|
public static final String[] SUPPORTED_FILE_EXTENSIONS = ResourceType.supportedBCVExtensionMap.keySet().toArray(new String[0]);
|
2021-07-16 18:26:41 +00:00
|
|
|
public static final int ASM_VERSION = Opcodes.ASM9;
|
2021-06-21 09:45:31 +00:00
|
|
|
|
2021-07-07 04:21:06 +00:00
|
|
|
public static final PrintStream ERR = System.err;
|
|
|
|
public static final PrintStream OUT = System.out;
|
|
|
|
|
2021-06-21 09:45:31 +00:00
|
|
|
/**
|
|
|
|
* Returns the BCV directory
|
|
|
|
*
|
|
|
|
* @return the static BCV directory
|
|
|
|
*/
|
2021-06-26 05:25:50 +00:00
|
|
|
public static String getBCVDirectory()
|
|
|
|
{
|
2021-06-21 09:45:31 +00:00
|
|
|
while (!BCVDir.exists())
|
|
|
|
BCVDir.mkdirs();
|
|
|
|
|
2021-07-17 20:51:00 +00:00
|
|
|
//hides the BCV directory
|
2021-07-18 19:11:34 +00:00
|
|
|
if (isWindows() && !BCVDir.isHidden())
|
2021-07-17 20:51:00 +00:00
|
|
|
{
|
2021-07-19 13:23:42 +00:00
|
|
|
new Thread(()->{
|
|
|
|
try {
|
|
|
|
// Hide file by running attrib system command (on Windows)
|
|
|
|
Process p = new ProcessBuilder("attrib",
|
|
|
|
"+H",
|
|
|
|
BCVDir.getAbsolutePath()).start();
|
|
|
|
} catch (Exception e) {
|
|
|
|
//ignore
|
|
|
|
}
|
|
|
|
}, "Hide BCV Dir").start();
|
2021-07-17 20:51:00 +00:00
|
|
|
}
|
2021-06-21 09:45:31 +00:00
|
|
|
|
|
|
|
return BCVDir.getAbsolutePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the OS contains 'win'
|
|
|
|
*
|
|
|
|
* @return true if the os.name property contains 'win'
|
|
|
|
*/
|
2021-06-26 05:25:50 +00:00
|
|
|
private static boolean isWindows()
|
|
|
|
{
|
2021-06-21 09:45:31 +00:00
|
|
|
return System.getProperty("os.name").toLowerCase().contains("win");
|
|
|
|
}
|
2021-07-21 14:28:30 +00:00
|
|
|
|
2021-07-21 14:44:25 +00:00
|
|
|
/**
|
|
|
|
* Detects developer mode or returns the current version
|
|
|
|
*/
|
2021-07-21 14:28:30 +00:00
|
|
|
public static String getVersion(String mavenVersion)
|
|
|
|
{
|
2021-07-21 19:55:03 +00:00
|
|
|
if(FORCE_VERSION_CHECKER_PROMPT)
|
2021-07-21 22:54:28 +00:00
|
|
|
return "1.0.0";
|
2021-07-21 17:47:56 +00:00
|
|
|
|
2021-07-21 14:28:30 +00:00
|
|
|
if(mavenVersion == null)
|
|
|
|
{
|
|
|
|
DEV_MODE = true;
|
|
|
|
return "Developer Mode";
|
|
|
|
}
|
|
|
|
|
|
|
|
return mavenVersion;
|
|
|
|
}
|
2021-06-21 09:45:31 +00:00
|
|
|
}
|