Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/effects/WiredEffectMatchFurni.java
KrewsOrg 6f24103528 Fixed dismounting.
Added `hotel.room.wired.norules` which is disabled by default, which will allow you to use wired to place furniture under users.
2019-05-01 00:59:25 +01:00

338 lines
12 KiB
Java

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.InteractionRoller;
import com.eu.habbo.habbohotel.items.interactions.InteractionWiredEffect;
import com.eu.habbo.habbohotel.rooms.Room;
import com.eu.habbo.habbohotel.rooms.RoomTile;
import com.eu.habbo.habbohotel.rooms.RoomTileState;
import com.eu.habbo.habbohotel.rooms.RoomUnit;
import com.eu.habbo.habbohotel.users.Habbo;
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.habbohotel.wired.WiredMatchFurniSetting;
import com.eu.habbo.messages.ClientMessage;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.rooms.items.FloorItemOnRollerComposer;
import com.eu.habbo.messages.outgoing.rooms.items.FloorItemUpdateComposer;
import gnu.trove.set.hash.THashSet;
import java.sql.ResultSet;
import java.sql.SQLException;
public class WiredEffectMatchFurni extends InteractionWiredEffect
{
private static final WiredEffectType type = WiredEffectType.MATCH_SSHOT;
private THashSet<WiredMatchFurniSetting> settings;
private boolean state = false;
private boolean direction = false;
private boolean position = false;
public boolean checkForWiredResetPermission = true;
public WiredEffectMatchFurni(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem);
this.settings = new THashSet<>(0);
}
public WiredEffectMatchFurni(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells);
this.settings = new THashSet<>(0);
}
@Override
public boolean execute(RoomUnit roomUnit, Room room, Object[] stuff)
{
THashSet<RoomTile> tilesToUpdate = new THashSet<>(this.settings.size());
//this.refresh();
for(WiredMatchFurniSetting setting : this.settings)
{
HabboItem item = room.getHabboItem(setting.itemId);
if(item != null)
{
if(this.state && (this.checkForWiredResetPermission && item.allowWiredResetState()))
{
if(!setting.state.equals(" "))
{
item.setExtradata(setting.state);
tilesToUpdate.addAll(room.getLayout().getTilesAt(room.getLayout().getTile(item.getX(), item.getY()), item.getBaseItem().getWidth(), item.getBaseItem().getLength(), item.getRotation()));
}
}
int oldRotation = item.getRotation();
boolean slideAnimation = true;
if(this.direction)
{
item.setRotation(setting.rotation);
slideAnimation = false;
}
//room.sendComposer(new ItemStateComposer(item).compose());
room.sendComposer(new FloorItemUpdateComposer(item).compose());
if(this.position)
{
RoomTile t = room.getLayout().getTile((short) setting.x, (short) setting.y);
if (t != null)
{
if (t.state != RoomTileState.INVALID)
{
boolean canMove = true;
if (t.x == item.getX() && t.y == item.getY())
{
canMove = !(room.getTopItemAt(t.x, t.y) == item);
slideAnimation = false;
}
// TODO: MOVE THIS TO ARCTURUSEXTENDED INSTEAD OF A CONFIG.
// if (canMove && !room.hasHabbosAt(t.x, t.y))
if ((canMove && !room.hasHabbosAt(t.x, t.y) && !Emulator.getConfig().getBoolean("hotel.room.wired.norules")) || (Emulator.getConfig().getBoolean("hotel.room.wired.norules") && (!room.hasHabbosAt(t.x, t.y) || item.isWalkable() || item.getBaseItem().allowSit())))
{
THashSet<RoomTile> tiles = room.getLayout().getTilesAt(t, item.getBaseItem().getWidth(), item.getBaseItem().getLength(), setting.rotation);
double highestZ = -1d;
for (RoomTile tile : tiles)
{
if (tile.state == RoomTileState.INVALID)
{
highestZ = -1d;
break;
}
if (item instanceof InteractionRoller && room.hasItemsAt(tile.x, tile.y))
{
highestZ = -1d;
break;
}
double stackHeight = room.getStackHeight(tile.x, tile.y, false, item);
if (stackHeight > highestZ)
{
highestZ = stackHeight;
}
}
if (highestZ != -1d)
{
tilesToUpdate.addAll(tiles);
double offsetZ = highestZ - item.getZ();
tilesToUpdate.addAll(room.getLayout().getTilesAt(room.getLayout().getTile(item.getX(), item.getY()), item.getBaseItem().getWidth(), item.getBaseItem().getLength(), oldRotation));
if (!slideAnimation)
{
item.setX(t.x);
item.setY(t.y);
}
room.sendComposer(new FloorItemOnRollerComposer(item, null, t, offsetZ, room).compose());
}
// TODO: MOVE THIS TO ARCTURUSEXTENDED INSTEAD OF A CONFIG.
if(Emulator.getConfig().getBoolean("hotel.room.wired.norules")) {
if (room.hasHabbosAt(t.x, t.y)) {
THashSet<Habbo> habbos = room.getHabbosAt(t.x, t.y);
for (Habbo habbo : habbos) {
try {
item.onWalkOn(habbo.getRoomUnit(), room, null);
} catch (Exception e) {
}
}
}
}
}
}
}
}
item.needsUpdate(true);
}
}
room.updateTiles(tilesToUpdate);
return true;
}
@Override
public String getWiredData()
{
this.refresh();
StringBuilder data = new StringBuilder(this.settings.size() + ":");
if(this.settings.isEmpty())
{
data.append(";");
}
else
{
Room room = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId());
for (WiredMatchFurniSetting item : this.settings)
{
HabboItem i;
if (room != null)
{
i = room.getHabboItem(item.itemId);
if (i != null)
{
data.append(item.toString(this.checkForWiredResetPermission && i.allowWiredResetState())).append(";");
}
}
}
}
data.append(":").append(this.state ? 1 : 0).append(":").append(this.direction ? 1 : 0).append(":").append(this.position ? 1 : 0).append(":").append(this.getDelay());
return data.toString();
}
@Override
public void loadWiredData(ResultSet set, Room room) throws SQLException
{
String[] data = set.getString("wired_data").split(":");
int itemCount = Integer.valueOf(data[0]);
String[] items = data[1].split(";");
for(int i = 0; i < items.length; i++)
{
try
{
String[] stuff = items[i].split("-");
if (stuff.length >= 5)
{
this.settings.add(new WiredMatchFurniSetting(Integer.valueOf(stuff[0]), stuff[1], Integer.valueOf(stuff[2]), Integer.valueOf(stuff[3]), Integer.valueOf(stuff[4])));
}
}
catch (Exception e)
{
Emulator.getLogging().logErrorLine(e);
}
}
this.state = data[2].equals("1");
this.direction = data[3].equals("1");
this.position = data[4].equals("1");
this.setDelay(Integer.valueOf(data[5]));
}
@Override
public void onPickUp()
{
this.settings.clear();
this.state = false;
this.direction = false;
this.position = false;
this.setDelay(0);
}
@Override
public WiredEffectType getType()
{
return type;
}
@Override
public void serializeWiredData(ServerMessage message, Room room)
{
this.refresh();
message.appendBoolean(false);
message.appendInt(WiredHandler.MAXIMUM_FURNI_SELECTION);
message.appendInt(this.settings.size());
for(WiredMatchFurniSetting item : this.settings)
message.appendInt(item.itemId);
message.appendInt(this.getBaseItem().getSpriteId());
message.appendInt(this.getId());
message.appendString("");
message.appendInt(3);
message.appendInt(this.state ? 1 : 0);
message.appendInt(this.direction ? 1 : 0);
message.appendInt(this.position ? 1 : 0);
message.appendInt(0);
message.appendInt(this.getType().code);
message.appendInt(this.getDelay());
message.appendInt(0);
}
@Override
public boolean saveData(ClientMessage packet, GameClient gameClient)
{
this.settings.clear();
//packet.readInt();
int count;
packet.readInt();
this.state = packet.readInt() == 1;
this.direction = packet.readInt() == 1;
this.position = packet.readInt() == 1;
packet.readString();
Room room = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId());
if(room == null)
return true;
count = packet.readInt();
for(int i = 0; i < count; i++)
{
int itemId = packet.readInt();
HabboItem item = room.getHabboItem(itemId);
if (item != null)
this.settings.add(new WiredMatchFurniSetting(item.getId(), this.checkForWiredResetPermission && item.allowWiredResetState() ? item.getExtradata() : " ", item.getRotation(), item.getX(), item.getY()));
}
this.setDelay(packet.readInt());
return true;
}
private void refresh()
{
Room room = Emulator.getGameEnvironment().getRoomManager().getRoom(this.getRoomId());
if(room != null && room.isLoaded())
{
THashSet<WiredMatchFurniSetting> remove = new THashSet<>();
for (WiredMatchFurniSetting setting : this.settings)
{
HabboItem item = room.getHabboItem(setting.itemId);
if (item == null)
{
remove.add(setting);
}
}
for(WiredMatchFurniSetting setting : remove)
{
this.settings.remove(setting);
}
}
}
}