package com.eu.habbo.habbohotel.items.interactions.wired.effects; import com.eu.habbo.Emulator; import com.eu.habbo.habbohotel.gameclients.GameClient; import com.eu.habbo.habbohotel.items.Item; import com.eu.habbo.habbohotel.items.interactions.*; import com.eu.habbo.habbohotel.items.interactions.games.InteractionGameGate; import com.eu.habbo.habbohotel.items.interactions.games.InteractionGameScoreboard; import com.eu.habbo.habbohotel.items.interactions.games.InteractionGameTimer; import com.eu.habbo.habbohotel.items.interactions.games.battlebanzai.InteractionBattleBanzaiTeleporter; import com.eu.habbo.habbohotel.items.interactions.games.battlebanzai.InteractionBattleBanzaiTile; import com.eu.habbo.habbohotel.items.interactions.games.freeze.InteractionFreezeBlock; import com.eu.habbo.habbohotel.items.interactions.games.freeze.InteractionFreezeExitTile; import com.eu.habbo.habbohotel.items.interactions.games.freeze.InteractionFreezeTile; import com.eu.habbo.habbohotel.items.interactions.games.tag.InteractionTagField; import com.eu.habbo.habbohotel.items.interactions.games.tag.InteractionTagPole; import com.eu.habbo.habbohotel.items.interactions.pets.*; import com.eu.habbo.habbohotel.items.interactions.wired.WiredSettings; 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.procedure.TObjectProcedure; import gnu.trove.set.hash.THashSet; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; public class WiredEffectToggleRandom extends InteractionWiredEffect { private static final Logger LOGGER = LoggerFactory.getLogger(WiredEffectToggleRandom.class); public static final WiredEffectType type = WiredEffectType.TOGGLE_RANDOM; private final THashSet items = new THashSet<>(); private static final List> FORBIDDEN_TYPES = new ArrayList>() { { this.add(InteractionWired.class); this.add(InteractionTeleport.class); this.add(InteractionPushable.class); this.add(InteractionTagPole.class); this.add(InteractionTagField.class); this.add(InteractionCrackable.class); this.add(InteractionGameScoreboard.class); this.add(InteractionGameGate.class); this.add(InteractionFreezeTile.class); this.add(InteractionFreezeBlock.class); this.add(InteractionFreezeExitTile.class); this.add(InteractionBattleBanzaiTeleporter.class); this.add(InteractionBattleBanzaiTile.class); this.add(InteractionMonsterPlantSeed.class); this.add(InteractionPetBreedingNest.class); this.add(InteractionPetDrink.class); this.add(InteractionPetFood.class); this.add(InteractionPetToy.class); this.add(InteractionBadgeDisplay.class); this.add(InteractionClothing.class); this.add(InteractionVendingMachine.class); this.add(InteractionGift.class); this.add(InteractionPressurePlate.class); this.add(InteractionMannequin.class); this.add(InteractionGymEquipment.class); this.add(InteractionHopper.class); this.add(InteractionObstacle.class); this.add(InteractionOneWayGate.class); this.add(InteractionPuzzleBox.class); this.add(InteractionRoller.class); this.add(InteractionSwitch.class); this.add(InteractionTent.class); this.add(InteractionTrap.class); this.add(InteractionTrophy.class); this.add(InteractionWater.class); } }; public WiredEffectToggleRandom(ResultSet set, Item baseItem) throws SQLException { super(set, baseItem); } public WiredEffectToggleRandom(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) { super(id, userId, item, extradata, limitedStack, limitedSells); } @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(""); message.appendInt(0); message.appendInt(0); message.appendInt(this.getType().code); message.appendInt(this.getDelay()); if (this.requiresTriggeringUser()) { List invalidTriggers = new ArrayList<>(); room.getRoomSpecialTypes().getTriggers(this.getX(), this.getY()).forEach(new TObjectProcedure() { @Override public boolean execute(InteractionWiredTrigger object) { if (!object.isTriggeredByRoomUnit()) { invalidTriggers.add(object.getBaseItem().getSpriteId()); } return true; } }); message.appendInt(invalidTriggers.size()); for (Integer i : invalidTriggers) { message.appendInt(i); } } else { message.appendInt(0); } } @Override public boolean saveData(WiredSettings settings, GameClient gameClient) throws WiredSaveException { int itemsCount = settings.getFurniIds().length; 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 = settings.getFurniIds()[i]; 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 = settings.getDelay(); if(delay > Emulator.getConfig().getInt("hotel.wired.max_delay", 20)) throw new WiredSaveException("Delay too long"); this.items.clear(); this.items.addAll(newItems); this.setDelay(delay); return true; } @Override public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff) { THashSet items = this.items; for (HabboItem item : items) { if (item.getRoomId() == 0 || FORBIDDEN_TYPES.stream().anyMatch(a -> a.isAssignableFrom(item.getClass()))) { this.items.remove(item); continue; } try { item.setExtradata(Emulator.getRandom().nextInt(item.getBaseItem().getStateCount() + 1) + ""); room.updateItem(item); } catch (Exception e) { LOGGER.error("Caught exception", e); } } return true; } @Override public String getWiredData() { return WiredHandler.getGsonBuilder().create().toJson(new JsonData( this.getDelay(), this.items.stream().map(HabboItem::getId).collect(Collectors.toList()) )); } @Override public void loadWiredData(ResultSet set, Room room) throws SQLException { this.items.clear(); String wiredData = set.getString("wired_data"); if (wiredData.startsWith("{")) { JsonData data = WiredHandler.getGsonBuilder().create().fromJson(wiredData, JsonData.class); this.setDelay(data.delay); for (Integer id: data.itemIds) { HabboItem item = room.getHabboItem(id); if (item instanceof InteractionFreezeBlock || item instanceof InteractionGameTimer || item instanceof InteractionCrackable) continue; if (item != null) this.items.add(item); } } else { String[] wiredDataOld = wiredData.split("\t"); if (wiredDataOld.length >= 1) { this.setDelay(Integer.parseInt(wiredDataOld[0])); } if (wiredDataOld.length == 2) { if (wiredDataOld[1].contains(";")) { for (String s : wiredDataOld[1].split(";")) { HabboItem item = room.getHabboItem(Integer.parseInt(s)); if (item instanceof InteractionFreezeBlock || item instanceof InteractionGameTimer || item instanceof InteractionCrackable) continue; if (item != null) this.items.add(item); } } } } } @Override public void onPickUp() { this.items.clear(); this.setDelay(0); } @Override public WiredEffectType getType() { return type; } static class JsonData { int delay; List itemIds; public JsonData(int delay, List itemIds) { this.delay = delay; this.itemIds = itemIds; } } }