Added Messages debugging and moved to Maven

This commit is contained in:
JKetelaar
2015-09-13 22:55:23 +02:00
parent 0d97513e8d
commit 2da56102c9
64 changed files with 3738 additions and 3680 deletions
@@ -0,0 +1,21 @@
package org.rev317.min.accessors;
public interface Character {
public int getX();
public int getY();
public int getAnimation();
public int getLoopCycleStatus();
public int getCurrentHealth();
public int getMaxHealth();
public int getInteractingEntity();
String getName();
}
@@ -0,0 +1,57 @@
package org.rev317.min.accessors;
public interface Client {
public Scene getScene();
public Player getMyPlayer();
public Interface[] getInterfaceCache();
public Npc[] getNpcs();
public Player[] getPlayers();
public int getOpenInterfaceId();
public int getBaseX();
public int getBaseY();
public void setInterface(int id);
public int[] getCurrentExp();
public Deque[][][] getGroundItems();
public int getLoopCycle();
public int getBackDialogId();
public int getPlane();
public int[] getMenuActionId();
public int[] getMenuAction1();
public int[] getMenuAction2();
public int[] getMenuAction3();
public int[] getMenuAction4();
public CollisionMap[] getCollisionMap();
// args switched
public boolean walkTo(int clickType, int sizeX, int sizeY, int startX, int startY, int destX, int destY, int type, int face, boolean arbitrary, int rotation);
public void doAction(int i);
public void dropClient();
public int[] getCurrentStats();
public int[] getSettings();
public boolean isLoggedIn();
}
@@ -0,0 +1,9 @@
package org.rev317.min.accessors;
public interface CollisionMap {
public int[][] getFlags();
}
@@ -0,0 +1,9 @@
package org.rev317.min.accessors;
public interface Deque {
public Node getHead();
public Node getCurrent();
}
@@ -0,0 +1,15 @@
package org.rev317.min.accessors;
public interface Ground {
public SceneObjectTile getWallObject();
public SceneObjectTile getWallDecoration();
public SceneObjectTile getGroundDecoration();
public SceneObjectTile getGroundItem();
public SceneObjectTile[] getInteractiveObjects();
}
@@ -0,0 +1,11 @@
package org.rev317.min.accessors;
public interface Interface {
public int[] getItems();
public int[] getStackSizes();
public String getMessage();
}
@@ -0,0 +1,8 @@
package org.rev317.min.accessors;
public interface Item {
public int getId();
}
@@ -0,0 +1,7 @@
package org.rev317.min.accessors;
public interface Node {
public Node getNext();
}
@@ -0,0 +1,7 @@
package org.rev317.min.accessors;
public interface Npc extends Character {
public NpcDef getDef();
}
@@ -0,0 +1,7 @@
package org.rev317.min.accessors;
public interface NpcDef {
public int getId();
}
@@ -0,0 +1,5 @@
package org.rev317.min.accessors;
public interface Player extends Character {
String getName();
}
@@ -0,0 +1,7 @@
package org.rev317.min.accessors;
public interface Scene {
public Ground[][][] getGroundArray();
}
@@ -0,0 +1,7 @@
package org.rev317.min.accessors;
public interface SceneObjectTile {
public int getHash();
}