Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/conditions/WiredConditionNotFurniTypeMatch.java

142 lines
4.1 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.items.interactions.wired.conditions;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.items.interactions.InteractionWiredCondition;
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.WiredConditionType;
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;
2019-05-26 20:14:53 +02:00
public class WiredConditionNotFurniTypeMatch extends InteractionWiredCondition {
2018-07-06 15:30:00 +02:00
public static final WiredConditionType type = WiredConditionType.NOT_STUFF_IS;
2018-09-28 21:25:00 +02:00
private THashSet<HabboItem> items = new THashSet<>();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
public WiredConditionNotFurniTypeMatch(ResultSet set, Item baseItem) throws SQLException {
2018-07-06 15:30:00 +02:00
super(set, baseItem);
}
2019-05-26 20:14:53 +02:00
public WiredConditionNotFurniTypeMatch(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);
}
@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
this.refresh();
2019-05-26 20:14:53 +02:00
if (stuff != null) {
if (stuff.length >= 1) {
if (stuff[0] instanceof HabboItem) {
2018-07-06 15:30:00 +02:00
HabboItem item = (HabboItem) stuff[0];
2019-05-26 20:14:53 +02:00
for (HabboItem i : this.items) {
if (i.getBaseItem().getId() == item.getBaseItem().getId())
2018-07-06 15:30:00 +02:00
return false;
}
}
}
}
return true;
}
@Override
2019-05-26 20:14:53 +02:00
public String getWiredData() {
2018-07-06 15:30:00 +02:00
this.refresh();
2019-03-18 02:22:00 +01:00
StringBuilder data = new StringBuilder();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
for (HabboItem item : this.items)
2019-03-18 02:22:00 +01:00
data.append(item.getId()).append(";");
2018-07-06 15:30:00 +02:00
2019-03-18 02:22:00 +01:00
return data.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-07-06 15:30:00 +02:00
this.items.clear();
String[] data = set.getString("wired_data").split(";");
2019-05-26 20:14:53 +02:00
for (String s : data)
2018-07-06 15:30:00 +02:00
this.items.add(room.getHabboItem(Integer.valueOf(s)));
}
@Override
2019-05-26 20:14:53 +02:00
public void onPickUp() {
2018-07-06 15:30:00 +02:00
this.items.clear();
}
@Override
2019-05-26 20:14:53 +02:00
public WiredConditionType getType() {
2018-07-06 15:30:00 +02:00
return type;
}
@Override
2019-05-26 20:14:53 +02:00
public void serializeWiredData(ServerMessage message, Room room) {
2018-07-06 15:30:00 +02:00
this.refresh();
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("");
message.appendInt(0);
message.appendInt(0);
message.appendInt(this.getType().code);
message.appendInt(0);
message.appendInt(0);
}
@Override
2019-05-26 20:14:53 +02:00
public boolean saveData(ClientMessage packet) {
2018-07-06 15:30:00 +02:00
this.items.clear();
packet.readInt();
packet.readString();
int count = packet.readInt();
Room room = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId());
2019-05-26 20:14:53 +02:00
if (room != null) {
for (int i = 0; i < count; i++) {
2018-07-06 15:30:00 +02:00
this.items.add(room.getHabboItem(packet.readInt()));
}
}
return true;
}
2019-05-26 20:14:53 +02:00
private void refresh() {
2018-09-28 21:25:00 +02:00
THashSet<HabboItem> items = new THashSet<>();
2018-07-06 15:30:00 +02:00
Room room = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId());
2019-05-26 20:14:53 +02:00
if (room == null) {
2018-07-06 15:30:00 +02:00
items.addAll(this.items);
2019-05-26 20:14:53 +02:00
} else {
for (HabboItem item : this.items) {
2018-07-06 15:30:00 +02:00
if (room.getHabboItem(item.getId()) == null)
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);
}
}
}