Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/effects/WiredEffectBotWalkToFurni.java

171 lines
5.4 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
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 gnu.trove.set.hash.THashSet;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
2019-05-26 20:14:53 +02:00
public class WiredEffectBotWalkToFurni extends InteractionWiredEffect {
2018-07-06 15:30:00 +02:00
public static final WiredEffectType type = WiredEffectType.BOT_MOVE;
private THashSet<HabboItem> items;
private String botName = "";
2019-05-26 20:14:53 +02:00
public WiredEffectBotWalkToFurni(ResultSet set, Item baseItem) throws SQLException {
2018-07-06 15:30:00 +02:00
super(set, baseItem);
2018-09-28 21:25:00 +02:00
this.items = new THashSet<>();
2018-07-06 15:30:00 +02:00
}
2019-05-26 20:14:53 +02:00
public WiredEffectBotWalkToFurni(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
2018-07-06 15:30:00 +02:00
super(id, userId, item, extradata, limitedStack, limitedSells);
2018-09-28 21:25:00 +02:00
this.items = new THashSet<>();
2018-07-06 15:30:00 +02:00
}
@Override
2019-05-26 20:14:53 +02:00
public void serializeWiredData(ServerMessage message, Room room) {
2018-09-28 21:25:00 +02:00
THashSet<HabboItem> items = new THashSet<>();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
for (HabboItem item : this.items) {
if (item.getRoomId() != this.getRoomId() || Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(item.getId()) == null)
2018-07-06 15:30:00 +02:00
items.add(item);
}
2019-05-26 20:14:53 +02:00
for (HabboItem item : items) {
2018-07-06 15:30:00 +02:00
this.items.remove(item);
}
message.appendBoolean(false);
message.appendInt(WiredHandler.MAXIMUM_FURNI_SELECTION);
message.appendInt(this.items.size());
2019-05-26 20:14:53 +02:00
for (HabboItem item : this.items)
2018-07-06 15:30:00 +02:00
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
2019-05-26 20:14:53 +02:00
public boolean saveData(ClientMessage packet, GameClient gameClient) {
2018-07-06 15:30:00 +02:00
packet.readInt();
this.botName = packet.readString();
this.items.clear();
int count = packet.readInt();
2019-05-26 20:14:53 +02:00
for (int i = 0; i < count; i++) {
2018-07-06 15:30:00 +02:00
this.items.add(Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(packet.readInt()));
}
this.setDelay(packet.readInt());
return true;
}
@Override
2019-05-26 20:14:53 +02:00
public WiredEffectType getType() {
2018-07-06 15:30:00 +02:00
return type;
}
@Override
2019-05-26 20:14:53 +02:00
public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff) {
2018-07-06 15:30:00 +02:00
List<Bot> bots = room.getBots(this.botName);
2020-07-11 03:18:45 +02:00
if (this.items.isEmpty() || bots.size() != 1) {
2018-07-06 15:30:00 +02:00
return false;
2020-07-11 03:18:45 +02:00
}
2018-07-06 15:30:00 +02:00
2020-07-11 03:18:45 +02:00
Bot bot = bots.get(0);
2018-09-28 21:25:00 +02:00
THashSet<HabboItem> items = new THashSet<>();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
for (HabboItem item : this.items) {
if (Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId()).getHabboItem(item.getId()) == null)
2018-07-06 15:30:00 +02:00
items.add(item);
}
2019-05-26 20:14:53 +02:00
for (HabboItem item : items) {
2018-07-06 15:30:00 +02:00
this.items.remove(item);
}
2019-05-26 20:14:53 +02:00
if (this.items.size() > 0) {
2020-07-11 03:18:45 +02:00
int i = Emulator.getRandom().nextInt(this.items.size()) + 1;
int j = 1;
for (HabboItem item : this.items) {
if (item.getRoomId() != 0 && item.getRoomId() == bot.getRoom().getId()) {
if (i == j) {
bot.getRoomUnit().setGoalLocation(room.getLayout().getTile(item.getX(), item.getY()));
break;
} else {
j++;
2018-07-06 15:30:00 +02:00
}
}
}
}
return true;
}
@Override
2019-05-26 20:14:53 +02:00
public String getWiredData() {
2019-03-18 02:22:00 +01:00
StringBuilder wiredData = new StringBuilder(this.getDelay() + "\t" + this.botName + ";");
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
if (this.items != null && !this.items.isEmpty()) {
for (HabboItem item : this.items) {
if (item.getRoomId() != 0) {
2019-03-18 02:22:00 +01:00
wiredData.append(item.getId()).append(";");
2018-07-06 15:30:00 +02:00
}
}
}
2019-03-18 02:22:00 +01:00
return wiredData.toString();
2018-07-06 15:30:00 +02:00
}
@Override
2019-05-26 20:14:53 +02:00
public void loadWiredData(ResultSet set, Room room) throws SQLException {
2018-09-28 21:25:00 +02:00
this.items = new THashSet<>();
2018-07-06 15:30:00 +02:00
String[] wiredData = set.getString("wired_data").split("\t");
2019-05-26 20:14:53 +02:00
if (wiredData.length > 1) {
2018-07-06 15:30:00 +02:00
this.setDelay(Integer.valueOf(wiredData[0]));
String[] data = wiredData[1].split(";");
2019-05-26 20:14:53 +02:00
if (data.length >= 1) {
2018-07-06 15:30:00 +02:00
this.botName = data[0];
2019-05-26 20:14:53 +02:00
for (int i = 1; i < data.length; i++) {
2018-07-06 15:30:00 +02:00
HabboItem item = room.getHabboItem(Integer.valueOf(data[i]));
if (item != null)
this.items.add(item);
}
}
}
}
@Override
2019-05-26 20:14:53 +02:00
public void onPickUp() {
2018-07-06 15:30:00 +02:00
this.items.clear();
this.botName = "";
this.setDelay(0);
}
}