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

193 lines
6.2 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.habbohotel.wired.WiredMatchFurniSetting;
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 WiredConditionNotMatchStatePosition extends InteractionWiredCondition {
2018-07-06 15:30:00 +02:00
public static final WiredConditionType type = WiredConditionType.NOT_MATCH_SSHOT;
private THashSet<WiredMatchFurniSetting> settings;
private boolean state;
private boolean position;
private boolean rotation;
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
public WiredConditionNotMatchStatePosition(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.settings = new THashSet<>();
2018-07-06 15:30:00 +02:00
}
2019-05-26 20:14:53 +02:00
public WiredConditionNotMatchStatePosition(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.settings = new THashSet<>();
2018-07-06 15:30:00 +02:00
}
@Override
2019-05-26 20:14:53 +02:00
public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff) {
if (this.settings.isEmpty())
2018-07-06 15:30:00 +02:00
return true;
2018-09-28 21:25:00 +02:00
THashSet<WiredMatchFurniSetting> s = new THashSet<>();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
for (WiredMatchFurniSetting setting : this.settings) {
2018-07-06 15:30:00 +02:00
HabboItem item = room.getHabboItem(setting.itemId);
2019-05-26 20:14:53 +02:00
if (item != null) {
boolean stateMatches = !this.state || item.getExtradata().equals(setting.state);
boolean positionMatches = !this.position || (setting.x == item.getX() && setting.y == item.getY());
boolean directionMatches = !this.rotation || setting.rotation == item.getRotation();
2019-05-26 20:14:53 +02:00
if (stateMatches && positionMatches && directionMatches)
return false;
2019-05-26 20:14:53 +02:00
} else {
2018-07-06 15:30:00 +02:00
s.add(setting);
}
}
2019-05-26 20:14:53 +02:00
if (!s.isEmpty()) {
for (WiredMatchFurniSetting setting : s) {
2018-07-06 15:30:00 +02:00
this.settings.remove(setting);
}
}
return true;
}
@Override
2019-05-26 20:14:53 +02:00
public String getWiredData() {
2019-03-18 02:22:00 +01:00
StringBuilder data = new StringBuilder(this.settings.size() + ":");
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
if (this.settings.isEmpty()) {
2019-03-18 02:22:00 +01:00
data.append("\t;");
2019-05-26 20:14:53 +02:00
} else {
2018-07-06 15:30:00 +02:00
for (WiredMatchFurniSetting item : this.settings)
2019-03-18 02:22:00 +01:00
data.append(item.toString()).append(";");
2018-07-06 15:30:00 +02:00
}
data.append(":").append(this.state ? 1 : 0).append(":").append(this.rotation ? 1 : 0).append(":").append(this.position ? 1 : 0);
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
String[] data = set.getString("wired_data").split(":");
int itemCount = Integer.valueOf(data[0]);
String[] items = data[1].split(";");
2019-05-26 20:14:53 +02:00
for (int i = 0; i < itemCount; i++) {
2018-07-06 15:30:00 +02:00
String[] stuff = items[i].split("-");
2019-05-26 20:14:53 +02:00
if (stuff.length >= 5)
2018-12-22 11:39:00 +01:00
this.settings.add(new WiredMatchFurniSetting(Integer.valueOf(stuff[0]), stuff[1], Integer.valueOf(stuff[2]), Integer.valueOf(stuff[3]), Integer.valueOf(stuff[4])));
2018-07-06 15:30:00 +02:00
}
this.state = data[2].equals("1");
this.rotation = data[3].equals("1");
2018-07-06 15:30:00 +02:00
this.position = data[4].equals("1");
}
@Override
2019-05-26 20:14:53 +02:00
public void onPickUp() {
2018-07-06 15:30:00 +02:00
this.settings.clear();
this.state = false;
this.rotation = false;
2018-07-06 15:30:00 +02:00
this.position = false;
}
@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.settings.size());
2019-05-26 20:14:53 +02:00
for (WiredMatchFurniSetting item : this.settings)
2018-07-06 15:30:00 +02:00
message.appendInt(item.itemId);
message.appendInt(this.getBaseItem().getSpriteId());
message.appendInt(this.getId());
message.appendString("");
message.appendInt(4);
message.appendInt(this.state ? 1 : 0);
message.appendInt(this.rotation ? 1 : 0);
2018-07-06 15:30:00 +02:00
message.appendInt(this.position ? 1 : 0);
message.appendInt(10);
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.settings.clear();
int count;
packet.readInt();
this.state = packet.readInt() == 1;
this.rotation = packet.readInt() == 1;
2018-07-06 15:30:00 +02:00
this.position = packet.readInt() == 1;
packet.readString();
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
return true;
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
int itemId = packet.readInt();
HabboItem item = room.getHabboItem(itemId);
if (item != null)
2018-12-22 11:39:00 +01:00
this.settings.add(new WiredMatchFurniSetting(item.getId(), item.getExtradata(), item.getRotation(), item.getX(), item.getY()));
2018-07-06 15:30:00 +02:00
}
return true;
}
2019-05-26 20:14:53 +02:00
private void refresh() {
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-09-28 21:25:00 +02:00
THashSet<WiredMatchFurniSetting> remove = new THashSet<>();
2018-07-06 15:30:00 +02:00
2019-05-26 20:14:53 +02:00
for (WiredMatchFurniSetting setting : this.settings) {
2018-07-06 15:30:00 +02:00
HabboItem item = room.getHabboItem(setting.itemId);
2019-05-26 20:14:53 +02:00
if (item == null) {
2018-07-06 15:30:00 +02:00
remove.add(setting);
}
}
2019-05-26 20:14:53 +02:00
for (WiredMatchFurniSetting setting : remove) {
2018-07-06 15:30:00 +02:00
this.settings.remove(setting);
}
}
}
}