diff --git a/.idea/09HDscape.iml b/.idea/09HDscape.iml
new file mode 100644
index 000000000..73bd99b0a
--- /dev/null
+++ b/.idea/09HDscape.iml
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 000000000..90149d666
--- /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 000000000..7c02bf6bd
--- /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 000000000..35eb1ddfb
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/09HDscape-management-server/src/org/keldagrim/launcher/Initializer.java b/09HDscape-management-server/src/org/keldagrim/launcher/Initializer.java
index 947e6a410..59bfd1f96 100644
--- a/09HDscape-management-server/src/org/keldagrim/launcher/Initializer.java
+++ b/09HDscape-management-server/src/org/keldagrim/launcher/Initializer.java
@@ -22,13 +22,13 @@ public class Initializer {
* @param args
*/
public static void main(String[] args) {
- try {
- UIManager.setLookAndFeel(new org.pushingpixels.substance.api.skin.SubstanceTwilightLookAndFeel());
+ /*try {
+// UIManager.setLookAndFeel(new org.pushingpixels.substance.api.skin.SubstanceTwilightLookAndFeel());
JFrame.setDefaultLookAndFeelDecorated(true);
} catch (UnsupportedLookAndFeelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
- }
+ }*/
EventQueue.invokeLater(new Runnable() {
@Override
diff --git a/09HDscape-server/Main Frame.fxml b/09HDscape-server/Main Frame.fxml
deleted file mode 100644
index 7ccce177d..000000000
--- a/09HDscape-server/Main Frame.fxml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/09HDscape-server/src/org/crandor/Main Frame.fxml b/09HDscape-server/src/org/crandor/Main Frame.fxml
deleted file mode 100644
index 6bef90d5e..000000000
--- a/09HDscape-server/src/org/crandor/Main Frame.fxml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/09HDscape-server/src/org/crandor/Main.java b/09HDscape-server/src/org/crandor/Main.java
index b8286b6dd..7c324ca6c 100644
--- a/09HDscape-server/src/org/crandor/Main.java
+++ b/09HDscape-server/src/org/crandor/Main.java
@@ -21,7 +21,7 @@ import org.crandor.tools.backup.AutoBackup;
* @author Vexia
*
*/
-public final class Main extends Application {
+public final class Main {
/**
* The time stamp of when the server started running.
@@ -50,7 +50,7 @@ public final class Main extends Application {
// }
startTime = System.currentTimeMillis();
final TimeStamp t = new TimeStamp();
- backup = new AutoBackup();
+// backup = new AutoBackup();
GameWorld.prompt(true);
SQLManager.init();
Runtime.getRuntime().addShutdownHook(new Thread(new SystemShutdownHook()));
@@ -78,12 +78,4 @@ public final class Main extends Application {
public static void setStartTime(long startTime) {
Main.startTime = startTime;
}
-
- @Override
- public void start(Stage primaryStage) throws Exception {
- Parent root = FXMLLoader.load(getClass().getResource("Main Frame.fxml"));
- primaryStage.setTitle("Management Panel");
- primaryStage.setScene(new Scene(root, 600, 450));
- primaryStage.show();
- }
}
\ No newline at end of file
diff --git a/09HDscape-server/src/org/crandor/game/node/entity/player/Player.java b/09HDscape-server/src/org/crandor/game/node/entity/player/Player.java
index 616ae8d00..59992bee0 100644
--- a/09HDscape-server/src/org/crandor/game/node/entity/player/Player.java
+++ b/09HDscape-server/src/org/crandor/game/node/entity/player/Player.java
@@ -77,8 +77,6 @@ import org.crandor.net.packet.out.SkillLevel;
import org.crandor.net.packet.out.UpdateSceneGraph;
import org.crandor.plugin.Plugin;
import org.crandor.tools.StringUtils;
-import org.crandor.tools.panel.Controller;
-import org.crandor.tools.panel.PlayerListPulse;
import java.util.ArrayList;
import java.util.List;
@@ -250,7 +248,6 @@ public class Player extends Entity {
*/
private final HunterManager hunterManager = new HunterManager(this);
- private final PlayerListPulse playerListPulse = new PlayerListPulse(this);
/**
* The treasure trail manager.
@@ -277,7 +274,6 @@ public class Player extends Entity {
*/
private final IronmanManager ironmanManager = new IronmanManager(this);
- private final Controller controller = new Controller(this);
/**
* The logout plugins.
@@ -1261,13 +1257,6 @@ public class Player extends Entity {
this.skillTasks = skillTasks;
}
- public Controller getController() {
- return controller;
- }
-
- public PlayerListPulse getPlayerListPulse() {
- return playerListPulse;
- }
@Override
diff --git a/09HDscape-server/src/org/crandor/tools/panel/BoxOptions.java b/09HDscape-server/src/org/crandor/tools/panel/BoxOptions.java
deleted file mode 100644
index d4f403bc1..000000000
--- a/09HDscape-server/src/org/crandor/tools/panel/BoxOptions.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.crandor.tools.panel;
-
-/**
- * Package -> ethan
- * Created on -> 8/31/2016 @9:54 PM for CP
- *
- * @author Ethan Kyle Millard
- */
-public enum BoxOptions {
-
- PUNISHMENTS(new String[] {"Temp. Mute", "Perm. Mute", "IP Mute", "Un-mute", "Temp. Ban", "Perm. Ban", "IP Ban", "Un-ban"}),
- TOOLS(new String[] {"NPC Definitions", "Item Definitions "}),
- RANKS(new String[] {"Promote", "Demote"});
-
- private String[] options;
-
- BoxOptions(String[] options) {
- this.options = options;
- }
-
- public String[] getOptions() {
- return options;
- }
-
-}
diff --git a/09HDscape-server/src/org/crandor/tools/panel/Console.java b/09HDscape-server/src/org/crandor/tools/panel/Console.java
deleted file mode 100644
index 7c9247721..000000000
--- a/09HDscape-server/src/org/crandor/tools/panel/Console.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package org.crandor.tools.panel;
-
-import javafx.scene.control.TextArea;
-
-import java.io.IOException;
-import java.io.OutputStream;
-
-public class Console extends OutputStream {
-
- private TextArea output;
-
- public Console(TextArea ta) {
- this.output = ta;
- }
-
- @Override
- public void write(int i) throws IOException {
- output.appendText(String.valueOf((char) i));
- }
- }
\ No newline at end of file
diff --git a/09HDscape-server/src/org/crandor/tools/panel/Controller.java b/09HDscape-server/src/org/crandor/tools/panel/Controller.java
deleted file mode 100644
index 3c2c6ab77..000000000
--- a/09HDscape-server/src/org/crandor/tools/panel/Controller.java
+++ /dev/null
@@ -1,198 +0,0 @@
-package org.crandor.tools.panel;
-
-import javafx.collections.FXCollections;
-import javafx.collections.ObservableList;
-import javafx.event.ActionEvent;
-import javafx.event.EventHandler;
-import javafx.fxml.FXML;
-import javafx.fxml.Initializable;
-import javafx.geometry.Insets;
-import javafx.geometry.Pos;
-import javafx.scene.Scene;
-import javafx.scene.control.*;
-import javafx.scene.layout.AnchorPane;
-import javafx.scene.layout.VBox;
-import javafx.scene.text.Text;
-import javafx.stage.Modality;
-import javafx.stage.Stage;
-import org.crandor.tools.TimeStamp;
-import org.crandor.ServerConstants;
-import org.crandor.game.node.entity.player.Player;
-import org.crandor.game.system.SystemLogger;
-import org.crandor.game.system.SystemShutdownHook;
-import org.crandor.game.system.mysql.SQLManager;
-import org.crandor.game.world.GameWorld;
-import org.crandor.net.NioReactor;
-import org.crandor.net.amsc.WorldCommunicator;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.io.PrintStream;
-import java.net.URL;
-import java.util.ResourceBundle;
-import java.util.Scanner;
-
-import static javafx.scene.layout.VBoxBuilder.create;
-
-public class Controller extends AnchorPane implements Initializable {
-
- private ObservableList rankData = FXCollections.observableArrayList();
- private ObservableList punishmentData = FXCollections.observableArrayList();
- private ObservableList toolsData = FXCollections.observableArrayList();
- private ObservableList playerListData = FXCollections.observableArrayList();
-
- @FXML
- private PasswordField validationKey;
-
- @FXML
- private AnchorPane vali;
-
- @FXML
- private AnchorPane mainFrame;
-
- @FXML
- private VBox legendFrame;
-
- @FXML
- private Button submitButton;
-
- @FXML
- private TextArea playersList;
-
- @FXML
- private TextArea systemLogger;
-
- @FXML
- private ComboBox punishmentBox;
-
- @FXML
- private ComboBox toolsBox;
-
- @FXML
- private ComboBox ranksBox;
-
- public static long startTime;
-
- public static NioReactor reactor;
-
- private Player player;
-
-
- public Controller() {
- for (String options : BoxOptions.RANKS.getOptions()) {
- rankData.add(options);
- }
- for (String options : BoxOptions.PUNISHMENTS.getOptions()) {
- punishmentData.add(options);
- }
- for (String options : BoxOptions.TOOLS.getOptions()) {
- toolsData.add(options);
- }
- }
-
- public Controller(Player player) {
- this.player = player;
- }
-
- private EventHandler loginEventHandler = event -> {
- try {
- Scanner scanner = new Scanner(new File("key.cfg"));
- String key = scanner.next();
- String sha1Encryption = Encrypt.encryptSHA1(validationKey.getText());
- if (sha1Encryption.length() == key.length()) {
- if (sha1Encryption.equalsIgnoreCase(key)) {
- Stage accessMessage = new Stage();
- Button okayButton = new Button("Ok");
- okayButton.setOnAction((closeErrorEvent) -> {
- legendFrame.getChildren().remove(vali);
- legendFrame.getChildren().add(mainFrame);
- accessMessage.close();
- try {
- startTime = System.currentTimeMillis();
- final TimeStamp t = new TimeStamp();
- GameWorld.prompt(true);
- SQLManager.init();
- Runtime.getRuntime().addShutdownHook(new Thread(new SystemShutdownHook()));
- SystemLogger.log("Starting NIO reactor...");
- reactor = NioReactor.configure(43593 + GameWorld.getSettings().getWorldId());
- WorldCommunicator.connect();
- reactor.start();
- SystemLogger.log(GameWorld.getName() + " flags " + GameWorld.getSettings().toString());
- SystemLogger.log(GameWorld.getName() + " started in " + t.duration(false, "") + " milliseconds.");
- } catch (Throwable throwable) {
- throwable.printStackTrace();
- }
- });
- accessMessage.initModality(Modality.NONE);
- accessMessage.setScene(new Scene(create().children(new Text("[Success] - Access granted.\n"), okayButton).alignment(Pos.CENTER).padding(new Insets(5)).build()));
- accessMessage.show();
- } else {
- Stage errorMessage = new Stage();
- Button okayButton = new Button("Ok");
- okayButton.setOnAction((closeErrorEvent) -> errorMessage.close());
- errorMessage.initModality(Modality.WINDOW_MODAL);
- errorMessage.setScene(new Scene(create().children(new Text("[Error] - Incorrect validation key.\n"), okayButton).alignment(Pos.CENTER).padding(new Insets(5)).build()));
- errorMessage.show();
- ServerConstants.VALIDATED = false;
- }
- }
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- } catch (Throwable throwable) {
- throwable.printStackTrace();
- }
- };
-
- private EventHandler comboBoxEventHandler = event -> {
-
- if (event.getSource() == ranksBox) {
-
- }
-
- if (event.getSource() == punishmentBox) {
-
- }
-
- if (event.getSource() == toolsBox) {
-
- }
- };
-
- @Override
- public void initialize(URL location, ResourceBundle resources) {
-
- legendFrame.getChildren().remove(mainFrame);
-
- submitButton.setOnAction(loginEventHandler);
-
- validationKey.setOnAction(loginEventHandler);
-
- ranksBox.setOnAction(comboBoxEventHandler);
-
- ranksBox.setItems(rankData);
-
- punishmentBox.setItems(punishmentData);
-
- toolsBox.setItems(toolsData);
-
-
- Console console = new Console(systemLogger);
- PrintStream ps = new PrintStream(console, true);
- System.setOut(ps);
- System.setErr(ps);
-
- }
-
- public TextArea getPlayersList() {
- return playersList;
- }
-
- public ObservableList getPlayerListData() {
- return playerListData;
- }
-
-
-}
diff --git a/09HDscape-server/src/org/crandor/tools/panel/Encrypt.java b/09HDscape-server/src/org/crandor/tools/panel/Encrypt.java
deleted file mode 100644
index ba8b3b06f..000000000
--- a/09HDscape-server/src/org/crandor/tools/panel/Encrypt.java
+++ /dev/null
@@ -1,64 +0,0 @@
-package org.crandor.tools.panel;
-
-import java.security.MessageDigest;
-
-/**
- * Handles the encryption of player passwords.
- *
- * @author Apache Ah64
- */
-public class Encrypt {
-
- /**
- * Encrypt the string using the SHA-1 encryption algorithm.
- *
- * @param string
- * The string.
- * @return The encrypted string.
- */
- public static String encryptSHA1(String string) {
- String hash = null;
- try {
- hash = byteArrayToHexString(hash(string));
- } catch (Exception e) {
- e.printStackTrace();
- }
- return hash;
- }
-
- /**
- * Encrypt the string to a SHA-1 hash.
- *
- * @param x
- * The string to encrypt.
- * @return The byte array.
- * @throws Exception
- * when an exception occurs.
- */
- public static byte[] hash(String x) throws Exception {
- MessageDigest string;
- string = MessageDigest.getInstance("SHA-1");
- string.reset();
- string.update(x.getBytes());
- return string.digest();
- }
-
- /**
- * Converts a byte array to hex string.
- *
- * @param b
- * The byte array.
- * @return The hex string.
- */
- public static String byteArrayToHexString(byte[] b) {
- StringBuffer string = new StringBuffer(b.length * 2);
- for (int i = 0; i < b.length; i++) {
- int v = b[i] & 0xff;
- if (v < 16) {
- string.append('0');
- }
- string.append(Integer.toHexString(v));
- }
- return string.toString();
- }
-}
\ No newline at end of file
diff --git a/09HDscape-server/src/org/crandor/tools/panel/PlayerListPulse.java b/09HDscape-server/src/org/crandor/tools/panel/PlayerListPulse.java
deleted file mode 100644
index 8ba0ef6c9..000000000
--- a/09HDscape-server/src/org/crandor/tools/panel/PlayerListPulse.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package org.crandor.tools.panel;
-
-import org.crandor.game.node.entity.player.Player;
-import org.crandor.game.system.task.Pulse;
-import org.crandor.game.world.GameWorld;
-import org.crandor.game.world.callback.CallBack;
-
-/**
- * Package -> org.keldagrim.tools.panel
- * Created on -> 9/1/2016 @2:09 AM for Server
- *
- * @author Ethan Kyle Millard
- */
-public final class PlayerListPulse extends Pulse implements CallBack {
-
- private Player player;
-
- public PlayerListPulse(Player player) {
- this.player = player;
- }
-
- @Override
- public boolean pulse() {
- System.out.println("new pulse");
- player.getController().getPlayersList().appendText(player.getName() + "\n");
- System.out.println(player.getName());
- return false;
- }
-
- @Override
- public boolean call() {
- GameWorld.submit(this);
- return true;
- }
-}
diff --git a/production/09HDScape/.gitignore b/production/09HDScape/.gitignore
deleted file mode 100644
index 17a06722d..000000000
--- a/production/09HDScape/.gitignore
+++ /dev/null
@@ -1,18 +0,0 @@
-bin/**
-out/**
-data/logs/**
-data/profile/**
-.idea/**
-/bin
-.DS_Store**
-.project**
-.classpath**
-.class**
-/bin/
-/out/
-data/cache/
-*.iml
-*.eml
-*.userlibraries
-*.class
-data/players/**
diff --git a/production/09HDScape/.keldagrim_530/runescape/jogl.dll b/production/09HDScape/.keldagrim_530/runescape/jogl.dll
deleted file mode 100644
index 990986f19..000000000
Binary files a/production/09HDScape/.keldagrim_530/runescape/jogl.dll and /dev/null differ
diff --git a/production/09HDScape/.keldagrim_530/runescape/jogl_awt.dll b/production/09HDScape/.keldagrim_530/runescape/jogl_awt.dll
deleted file mode 100644
index d247b4a0b..000000000
Binary files a/production/09HDScape/.keldagrim_530/runescape/jogl_awt.dll and /dev/null differ
diff --git a/production/09HDScape/.settings/org.eclipse.jdt.core.prefs b/production/09HDScape/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index d17b6724d..000000000
--- a/production/09HDScape/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,12 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.7
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.7
diff --git a/production/09HDScape/META-INF/MANIFEST.MF b/production/09HDScape/META-INF/MANIFEST.MF
deleted file mode 100644
index c2c137eb9..000000000
--- a/production/09HDScape/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: org.runite.GameLaunch
-
diff --git a/production/09HDScape/clientlibs.jar b/production/09HDScape/clientlibs.jar
deleted file mode 100644
index 03c398fbc..000000000
Binary files a/production/09HDScape/clientlibs.jar and /dev/null differ
diff --git a/production/09HDScape/dlls need to add to where client saves cache/game_unpacker.dat b/production/09HDScape/dlls need to add to where client saves cache/game_unpacker.dat
deleted file mode 100644
index 4a3fd48ce..000000000
Binary files a/production/09HDScape/dlls need to add to where client saves cache/game_unpacker.dat and /dev/null differ
diff --git a/production/09HDScape/lib/gluegen-rt.jar b/production/09HDScape/lib/gluegen-rt.jar
deleted file mode 100644
index 7ac10a354..000000000
Binary files a/production/09HDScape/lib/gluegen-rt.jar and /dev/null differ
diff --git a/production/09HDScape/lib/jogl.jar b/production/09HDScape/lib/jogl.jar
deleted file mode 100644
index 305e99873..000000000
Binary files a/production/09HDScape/lib/jogl.jar and /dev/null differ
diff --git a/production/09HDScape/lib/laf-plugin-7.2.1.jar b/production/09HDScape/lib/laf-plugin-7.2.1.jar
deleted file mode 100644
index 82b02527e..000000000
Binary files a/production/09HDScape/lib/laf-plugin-7.2.1.jar and /dev/null differ
diff --git a/production/09HDScape/lib/laf-widget-7.2.1.jar b/production/09HDScape/lib/laf-widget-7.2.1.jar
deleted file mode 100644
index 0371eb1b1..000000000
Binary files a/production/09HDScape/lib/laf-widget-7.2.1.jar and /dev/null differ
diff --git a/production/09HDScape/lib/substance-7.2.1.jar b/production/09HDScape/lib/substance-7.2.1.jar
deleted file mode 100644
index 20428dd9e..000000000
Binary files a/production/09HDScape/lib/substance-7.2.1.jar and /dev/null differ
diff --git a/production/09HDScape/lib/trident-7.2.1.jar b/production/09HDScape/lib/trident-7.2.1.jar
deleted file mode 100644
index 54fb61472..000000000
Binary files a/production/09HDScape/lib/trident-7.2.1.jar and /dev/null differ
diff --git a/production/09HDScape/lib/twitter4j-core-4.0.3-SNAPSHOT.jar b/production/09HDScape/lib/twitter4j-core-4.0.3-SNAPSHOT.jar
deleted file mode 100644
index 6aae5344c..000000000
Binary files a/production/09HDScape/lib/twitter4j-core-4.0.3-SNAPSHOT.jar and /dev/null differ
diff --git a/production/09HDScape/org/crandor/Main Frame.fxml b/production/09HDScape/org/crandor/Main Frame.fxml
deleted file mode 100644
index 6bef90d5e..000000000
--- a/production/09HDScape/org/crandor/Main Frame.fxml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/production/09HDScape/org/crandor/cache/def/impl/test.txt b/production/09HDScape/org/crandor/cache/def/impl/test.txt
deleted file mode 100644
index 2cd6e87a9..000000000
--- a/production/09HDScape/org/crandor/cache/def/impl/test.txt
+++ /dev/null
@@ -1,365 +0,0 @@
-private void readValues(int i, InputStream stream, int opcode) {
- if (opcode != 1 && opcode != 5) {
- if (opcode != 2) {
- if (opcode != 14) {
- if (opcode != 15) {
- if (opcode == 17) {
- projectileCliped = false;
- clipType = 0;
- } else if (opcode != 18) {
- if (opcode == 19)
- secondInt = stream.readUnsignedByte();
- else if (opcode == 21)
- aByte3912 = (byte) 1;
- else if (opcode != 22) {
- if (opcode != 23) {
- if (opcode != 24) {
- if (opcode == 27)
- clipType = 1;
- else if (opcode == 28)
- anInt3892 = (stream
- .readUnsignedByte() << 2);
- else if (opcode != 29) {
- if (opcode != 39) {
- if (opcode < 30 || opcode >= 35) {
- if (opcode == 40) {
- int i_53_ = (stream
- .readUnsignedByte());
- originalColors = new short[i_53_];
- modifiedColors = new short[i_53_];
- for (int i_54_ = 0; i_53_ > i_54_; i_54_++) {
- originalColors[i_54_] = (short) (stream
- .readUnsignedShort());
- modifiedColors[i_54_] = (short) (stream
- .readUnsignedShort());
- }
- } else if (opcode != 41) {
- if (opcode != 42) {
- if (opcode != 62) {
- if (opcode != 64) {
- if (opcode == 65)
- anInt3902 = stream
- .readUnsignedShort();
- else if (opcode != 66) {
- if (opcode != 67) {
- if (opcode == 69)
- anInt3925 = stream
- .readUnsignedByte();
- else if (opcode != 70) {
- if (opcode == 71)
- anInt3889 = stream
- .readShort() << 2;
- else if (opcode != 72) {
- if (opcode == 73)
- secondBool = true;
- else if (opcode == 74)
- notCliped = true;
- else if (opcode != 75) {
- if (opcode != 77
- && opcode != 92) {
- if (opcode == 78) {
- anInt3860 = stream
- .readUnsignedShort();
- anInt3904 = stream
- .readUnsignedByte();
- } else if (opcode != 79) {
- if (opcode == 81) {
- aByte3912 = (byte) 2;
- anInt3882 = 256 * stream
- .readUnsignedByte();
- } else if (opcode != 82) {
- if (opcode == 88)
- aBoolean3853 = false;
- else if (opcode != 89) {
- if (opcode == 90)
- aBoolean3870 = true;
- else if (opcode != 91) {
- if (opcode != 93) {
- if (opcode == 94)
- aByte3912 = (byte) 4;
- else if (opcode != 95) {
- if (opcode != 96) {
- if (opcode == 97)
- aBoolean3866 = true;
- else if (opcode == 98)
- aBoolean3923 = true;
- else if (opcode == 99) {
- anInt3857 = stream
- .readUnsignedByte();
- anInt3835 = stream
- .readUnsignedShort();
- } else if (opcode == 100) {
- anInt3844 = stream
- .readUnsignedByte();
- anInt3913 = stream
- .readUnsignedShort();
- } else if (opcode != 101) {
- if (opcode == 102)
- anInt3838 = stream
- .readUnsignedShort();
- else if (opcode == 103)
- thirdInt = 0;
- else if (opcode != 104) {
- if (opcode == 105)
- aBoolean3906 = true;
- else if (opcode == 106) {
- int i_55_ = stream
- .readUnsignedByte();
- anIntArray3869 = new int[i_55_];
- anIntArray3833 = new int[i_55_];
- for (int i_56_ = 0; i_56_ < i_55_; i_56_++) {
- anIntArray3833[i_56_] = stream
- .readUnsignedShort();
- int i_57_ = stream
- .readUnsignedByte();
- anIntArray3869[i_56_] = i_57_;
- anInt3881 += i_57_;
- }
- } else if (opcode == 107)
- anInt3851 = stream
- .readUnsignedShort();
- else if (opcode >= 150
- && opcode < 155) {
- options[opcode
- + -150] = stream
- .readString();
- /*if (!loader.showOptions)
- options[opcode + -150] = null;*/
- } else if (opcode != 160) {
- if (opcode == 162) {
- aByte3912 = (byte) 3;
- anInt3882 = stream
- .readInt();
- } else if (opcode == 163) {
- aByte3847 = (byte) stream
- .readByte();
- aByte3849 = (byte) stream
- .readByte();
- aByte3837 = (byte) stream
- .readByte();
- aByte3914 = (byte) stream
- .readByte();
- } else if (opcode != 164) {
- if (opcode != 165) {
- if (opcode != 166) {
- if (opcode == 167)
- anInt3921 = stream
- .readUnsignedShort();
- else if (opcode != 168) {
- if (opcode == 169) {
- aBoolean3845 = true;
- //added opcode
- }else if (opcode == 170) {
- int anInt3383 = stream.readUnsignedSmart();
- //added opcode
- }else if (opcode == 171) {
- int anInt3362 = stream.readUnsignedSmart();
- //added opcode
- }else if (opcode == 173) {
- int anInt3302 = stream.readUnsignedShort();
- int anInt3336 = stream.readUnsignedShort();
- //added opcode
- }else if (opcode == 177) {
- boolean ub = true;
- //added opcode
- }else if (opcode == 178) {
- int db = stream.readUnsignedByte();
- } else if (opcode == 249) {
- int i_58_ = stream
- .readUnsignedByte();
- if (aClass194_3922 == null) {
- /*int i_59_ = Class307
- .method3331(
- (byte) -117,
- i_58_);
- aClass194_3922 = new HashTable(
- i_59_);*/
- }
- for (int i_60_ = 0; i_60_ < i_58_; i_60_++) {
- boolean bool = stream
- .readUnsignedByte() == 1;
- int i_61_ = stream.read24BitInt();
- Object class279;
- if (!bool)
- /*class279 = new IntegerNode(*/
- stream
- .readInt();//);
- else
- /*class279 = new Class279_Sub4(*/
- stream
- .readString();//);
- /*aClass194_3922
- .method1598(
- (long) i_61_,
- -125,
- class279);*/
- }
- }
- } else
- aBoolean3894 = true;
- } else
- anInt3877 = stream
- .readShort();
- } else
- anInt3875 = stream
- .readShort();
- } else
- anInt3834 = stream
- .readShort();
- } else {
- int i_62_ = stream
- .readUnsignedByte();
- anIntArray3908 = new int[i_62_];
- for (int i_63_ = 0; i_62_ > i_63_; i_63_++)
- anIntArray3908[i_63_] = stream
- .readUnsignedShort();
- }
- } else
- anInt3865 = stream
- .readUnsignedByte();
- } else
- anInt3850 = stream
- .readUnsignedByte();
- } else
- aBoolean3924 = true;
- } else {
- aByte3912 = (byte) 5;
- anInt3882 = stream
- .readShort();
- }
- } else {
- aByte3912 = (byte) 3;
- anInt3882 = stream
- .readUnsignedShort();
- }
- } else
- aBoolean3873 = true;
- } else
- aBoolean3895 = false;
- } else
- aBoolean3891 = true;
- } else {
- anInt3900 = stream
- .readUnsignedShort();
- anInt3905 = stream
- .readUnsignedShort();
- anInt3904 = stream
- .readUnsignedByte();
- int i_64_ = stream
- .readUnsignedByte();
- anIntArray3859 = new int[i_64_];
- for (int i_65_ = 0; i_65_ < i_64_; i_65_++)
- anIntArray3859[i_65_] = stream
- .readUnsignedShort();
- }
- } else {
- configFileId = stream
- .readUnsignedShort();
- if (configFileId == 65535)
- configFileId = -1;
- configId = stream
- .readUnsignedShort();
- if (configId == 65535)
- configId = -1;
- int i_66_ = -1;
- if (opcode == 92) {
- i_66_ = stream
- .readUnsignedShort();
- if (i_66_ == 65535)
- i_66_ = -1;
- }
- int i_67_ = stream
- .readUnsignedByte();
- childrenIds = new int[i_67_
- - -2];
- for (int i_68_ = 0; i_67_ >= i_68_; i_68_++) {
- childrenIds[i_68_] = stream
- .readUnsignedShort();
- if (childrenIds[i_68_] == 65535)
- childrenIds[i_68_] = -1;
- }
- childrenIds[i_67_ + 1] = i_66_;
- }
- } else
- anInt3855 = stream
- .readUnsignedByte();
- } else
- anInt3915 = stream
- .readShort() << 2;
- } else
- anInt3883 = stream
- .readShort() << 2;
- } else
- anInt3917 = stream
- .readUnsignedShort();
- } else
- anInt3841 = stream
- .readUnsignedShort();
- } else
- aBoolean3872 = false;
- } else
- aBoolean3839 = true;
- } else {
- int i_69_ = (stream
- .readUnsignedByte());
- aByteArray3858 = (new byte[i_69_]);
- for (int i_70_ = 0; i_70_ < i_69_; i_70_++)
- aByteArray3858[i_70_] = (byte) (stream
- .readByte());
- }
- } else {
- int i_71_ = (stream
- .readUnsignedByte());
- aShortArray3920 = new short[i_71_];
- aShortArray3919 = new short[i_71_];
- for (int i_72_ = 0; i_71_ > i_72_; i_72_++) {
- aShortArray3920[i_72_] = (short) (stream
- .readUnsignedShort());
- aShortArray3919[i_72_] = (short) (stream
- .readUnsignedShort());
- }
- }
- } else
- options[-30
- + opcode] = (stream
- .readString());
- } else
- anInt3840 = (stream.readByte() * 5);
- } else
- anInt3878 = stream.readByte();
- } else {
- anInt3876 = stream.readUnsignedShort();
- if (anInt3876 == 65535)
- anInt3876 = -1;
- }
- } else
- thirdInt = 1;
- } else
- aBoolean3867 = true;
- } else
- projectileCliped = false;
- } else
- sizeY = stream.readUnsignedByte();
- } else
- sizeX = stream.readUnsignedByte();
- } else
- name = stream.readString();
- } else {
- boolean aBoolean1162 = false;
- if (opcode == 5 && aBoolean1162)
- method3297(stream);
- int i_73_ = stream.readUnsignedByte();
- anIntArrayArray3916 = new int[i_73_][];
- aByteArray3899 = new byte[i_73_];
- for (int i_74_ = 0; i_74_ < i_73_; i_74_++) {
- aByteArray3899[i_74_] = (byte) stream.readByte();
- int i_75_ = stream.readUnsignedByte();
- anIntArrayArray3916[i_74_] = new int[i_75_];
- for (int i_76_ = 0; i_75_ > i_76_; i_76_++)
- anIntArrayArray3916[i_74_][i_76_] = stream
- .readUnsignedShort();
- }
- if (opcode == 5 && !aBoolean1162)
- method3297(stream);
- }
- }
\ No newline at end of file
diff --git a/production/09HDScape/rebel.xml b/production/09HDScape/rebel.xml
deleted file mode 100644
index e1ca8c0a4..000000000
--- a/production/09HDScape/rebel.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/production/09HDScape/res/META-INF/MANIFEST.MF b/production/09HDScape/res/META-INF/MANIFEST.MF
deleted file mode 100644
index b04440617..000000000
--- a/production/09HDScape/res/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: org.odyssey.GameLaunch
-
diff --git a/production/09HDScape/res/favicon.png b/production/09HDScape/res/favicon.png
deleted file mode 100644
index 88db8be49..000000000
Binary files a/production/09HDScape/res/favicon.png and /dev/null differ
diff --git a/production/09HDScape/src/META-INF/MANIFEST.MF b/production/09HDScape/src/META-INF/MANIFEST.MF
deleted file mode 100644
index c2c137eb9..000000000
--- a/production/09HDScape/src/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: org.runite.GameLaunch
-