package com.eu.habbo.habbohotel.items.interactions.wired.effects; import com.eu.habbo.Emulator; import com.eu.habbo.habbohotel.bots.Bot; import com.eu.habbo.habbohotel.gameclients.GameClient; import com.eu.habbo.habbohotel.items.Item; import com.eu.habbo.habbohotel.items.interactions.InteractionWiredEffect; import com.eu.habbo.habbohotel.rooms.Room; import com.eu.habbo.habbohotel.rooms.RoomUnit; import com.eu.habbo.habbohotel.users.HabboItem; import com.eu.habbo.habbohotel.wired.WiredEffectType; import com.eu.habbo.habbohotel.wired.WiredHandler; import com.eu.habbo.messages.ClientMessage; import com.eu.habbo.messages.ServerMessage; import com.eu.habbo.messages.incoming.wired.WiredSaveException; import gnu.trove.set.hash.THashSet; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; public class WiredEffectBotWalkToFurni extends InteractionWiredEffect { public static final WiredEffectType type = WiredEffectType.BOT_MOVE; private List items; private String botName = ""; public WiredEffectBotWalkToFurni(ResultSet set, Item baseItem) throws SQLException { super(set, baseItem); this.items = new ArrayList<>(); } public WiredEffectBotWalkToFurni(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) { super(id, userId, item, extradata, limitedStack, limitedSells); this.items = new ArrayList<>(); } @Override public void serializeWiredData(ServerMessage message, Room room) { THashSet items = new THashSet<>(); for (HabboItem item : this.items) { if (item.getRoomId() != this.getRoomId() || Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(item.getId()) == null) items.add(item); } for (HabboItem item : items) { this.items.remove(item); } message.appendBoolean(false); message.appendInt(WiredHandler.MAXIMUM_FURNI_SELECTION); message.appendInt(this.items.size()); for (HabboItem item : this.items) message.appendInt(item.getId()); message.appendInt(this.getBaseItem().getSpriteId()); message.appendInt(this.getId()); message.appendString(this.botName); message.appendInt(0); message.appendInt(0); message.appendInt(this.getType().code); message.appendInt(this.getDelay()); message.appendInt(0); } @Override public boolean saveData(ClientMessage packet, GameClient gameClient) throws WiredSaveException { packet.readInt(); String botName = packet.readString(); int itemsCount = packet.readInt(); if(itemsCount > Emulator.getConfig().getInt("hotel.wired.furni.selection.count")) { throw new WiredSaveException("Too many furni selected"); } List newItems = new ArrayList<>(); for (int i = 0; i < itemsCount; i++) { int itemId = packet.readInt(); HabboItem it = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(itemId); if(it == null) throw new WiredSaveException(String.format("Item %s not found", itemId)); newItems.add(it); } int delay = packet.readInt(); if(delay > Emulator.getConfig().getInt("hotel.wired.max_delay", 20)) throw new WiredSaveException("Delay too long"); this.items.clear(); this.items.addAll(newItems); this.botName = botName.substring(0, Math.min(botName.length(), Emulator.getConfig().getInt("hotel.wired.message.max_length", 100))); this.setDelay(delay); return true; } @Override public WiredEffectType getType() { return type; } @Override public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff) { List bots = room.getBots(this.botName); if (this.items.isEmpty() || bots.size() != 1) { return true; } Bot bot = bots.get(0); this.items.removeIf(item -> item == null || item.getRoomId() != this.getRoomId() || Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(item.getId()) == null); // Bots shouldn't walk to the tile they are already standing on List possibleItems = this.items.stream() .filter(item -> !room.getBotsOnItem(item).contains(bot)) .collect(Collectors.toList()); // Get a random tile of possible tiles to walk to if (possibleItems.size() > 0) { HabboItem item = possibleItems.get(Emulator.getRandom().nextInt(possibleItems.size())); if (item.getRoomId() != 0 && item.getRoomId() == bot.getRoom().getId()) { bot.getRoomUnit().setGoalLocation(room.getLayout().getTile(item.getX(), item.getY())); } } return true; } @Override public String getWiredData() { ArrayList itemIds = new ArrayList<>(); if (this.items != null) { for (HabboItem item : this.items) { if (item.getRoomId() != 0) { itemIds.add(item.getId()); } } } return WiredHandler.getGsonBuilder().create().toJson(new JsonData(this.botName, itemIds, this.getDelay())); } @Override public void loadWiredData(ResultSet set, Room room) throws SQLException { this.items = new ArrayList<>(); String wiredData = set.getString("wired_data"); if(wiredData.startsWith("{")) { JsonData data = WiredHandler.getGsonBuilder().create().fromJson(wiredData, JsonData.class); this.setDelay(data.delay); this.botName = data.bot_name; for(int itemId : data.items) { HabboItem item = room.getHabboItem(itemId); if (item != null) this.items.add(item); } } else { String[] wiredDataSplit = set.getString("wired_data").split("\t"); if (wiredDataSplit.length >= 2) { this.setDelay(Integer.valueOf(wiredDataSplit[0])); String[] data = wiredDataSplit[1].split(";"); if (data.length > 1) { this.botName = data[0]; for (int i = 1; i < data.length; i++) { HabboItem item = room.getHabboItem(Integer.valueOf(data[i])); if (item != null) this.items.add(item); } } } this.needsUpdate(true); } } @Override public void onPickUp() { this.items.clear(); this.botName = ""; this.setDelay(0); } static class JsonData { String bot_name; List items; int delay; public JsonData(String bot_name, List items, int delay) { this.bot_name = bot_name; this.items = items; this.delay = delay; } } }