Changed package

This commit is contained in:
Clisprail
2014-04-10 18:50:44 +02:00
parent 3ccded6853
commit c353f54f02
48 changed files with 148 additions and 148 deletions
+202
View File
@@ -0,0 +1,202 @@
package org.rev317.min.api.methods;
import java.util.HashMap;
import org.parabot.core.Context;
import org.rev317.min.Loader;
import org.rev317.min.accessors.Client;
import org.rev317.min.api.wrappers.Character;
import org.rev317.min.api.wrappers.GroundItem;
import org.rev317.min.api.wrappers.Item;
import org.rev317.min.api.wrappers.SceneObject;
/**
*
* @author Everel
*
*/
public class Menu {
public static final int ACTION_CLICK_BUTTON = 646;
public static final int ACTION_DROP_ITEM = 847;
public static final int ACTION_TAKE_ITEM = 234;
private static HashMap<String, String> constants;
/**
* Interacts with a sceneobject
* @param object
* @param actionIndex
*/
public static void interact(SceneObject object, int actionIndex) {
int actionId = 502;
switch (actionIndex) {
case 0:
actionId = 502;
break;
case 1:
actionId = 900;
break;
case 2:
actionId = 113;
break;
case 3:
actionId = 872;
break;
case 4:
actionId = 1062;
break;
}
sendAction(actionId, object.getId(), object.getLocalRegionX(), object.getLocalRegionY());
}
/**
* Interacts with a character
* @param character
* @param actionIndex
*/
public static void interact(Character character, int actionIndex) {
int actionId = 20;
switch (actionIndex) {
case 0:
actionId = 20;
break;
case 1:
actionId = 412;
break;
case 2:
actionId = 225;
break;
case 3:
actionId = 965;
break;
case 4:
actionId = 478;
break;
}
sendAction(actionId, character.getIndex(), 0, 0);
}
/**
* Interacts with an item when it has the following menu
* Transform-1
* Transform-5
* Transform-10
* etc..
* @param item
* @param actionIndex
* @param interfaceParentId
*/
public static void transformItem(Item item, int actionIndex,
int interfaceParentId) {
int actionId = 632;
switch (actionIndex) {
case 0:
actionId = 632;
break;
case 1:
actionId = 78;
break;
case 2:
actionId = 867;
break;
case 3:
actionId = 431;
break;
case 4:
actionId = 53;
break;
}
sendAction(actionId, (int) item.getId() - 1, item.getSlot(),
interfaceParentId);
}
/**
* Takes grounditem from the ground
* @param item
*/
public static void take(GroundItem item) {
sendAction(ACTION_TAKE_ITEM, item.getId(), item.getX(), item.getY());
}
/**
* Interacts with a ground item
* @param item
* @param action
*/
public static void interact(GroundItem item, int action) {
int actionId = 652;
switch (action) {
case 0:
actionId = 652;
break;
case 1:
actionId = 567;
break;
case 2:
actionId = 234;
break;
case 3:
actionId = 244;
break;
case 4:
actionId = 213;
break;
}
sendAction(actionId, item.getId(), item.getX(), item.getY());
}
/**
* Drops an item
* @param item
*/
public static void drop(Item item) {
sendAction(ACTION_DROP_ITEM, (int) item.getId() - 1, item.getSlot(),
Inventory.INVENTORY_INDEX);
}
/**
* Clicks a button
* @param id
*/
public static void clickButton(int id) {
sendAction(ACTION_CLICK_BUTTON, 0, 0, id);
}
/**
* Sends an action to the client
* @param action
* @param cmd1
* @param cmd2
* @param cmd3
*/
public static void sendAction(int action, int cmd1, int cmd2, int cmd3) {
sendAction(action, cmd1, cmd2, cmd3, 0);
}
/**
* Sends an action to the client
* @param action
* @param cmd1
* @param cmd2
* @param cmd3
* @param cmd4
*/
public static void sendAction(int action, int cmd1, int cmd2, int cmd3, int cmd4) {
if (constants == null) {
constants = Context.getInstance().getHookParser().getConstants();
}
int index = 0;
Client client = Loader.getClient();
client.getMenuAction1()[index] = cmd1;
client.getMenuAction2()[index] = cmd2;
client.getMenuAction3()[index] = cmd3;
client.getMenuActionId()[index] = action;
client.doAction(index);
}
}