Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionMusicDisc.java

114 lines
2.8 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.items.interactions;
2019-04-22 01:42:00 +02:00
import com.eu.habbo.Emulator;
2018-07-06 15:30:00 +02:00
import com.eu.habbo.habbohotel.items.Item;
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.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.rooms.items.jukebox.JukeBoxMySongsComposer;
import java.sql.ResultSet;
import java.sql.SQLException;
public class InteractionMusicDisc extends HabboItem
{
private int songId;
private boolean inQueue;
public InteractionMusicDisc(ResultSet set, Item baseItem) throws SQLException
{
super(set, baseItem);
String[] stuff = this.getExtradata().split("\n");
2019-04-22 01:42:00 +02:00
if(stuff.length >= 7 && !stuff[6].isEmpty())
2018-07-06 15:30:00 +02:00
{
2019-04-22 01:42:00 +02:00
try
{
this.songId = Integer.valueOf(stuff[6]);
}
catch (Exception e)
{
Emulator.getLogging().logErrorLine("Warning: Item " + this.getId() + " has an invalid song id set for its music disk!");
}
2018-07-06 15:30:00 +02:00
}
}
public InteractionMusicDisc(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells)
{
super(id, userId, item, extradata, limitedStack, limitedSells);
String[] stuff = this.getExtradata().split("\n");
2019-04-22 01:42:00 +02:00
if(stuff.length >= 7 && !stuff[6].isEmpty())
2018-07-06 15:30:00 +02:00
{
2019-04-22 01:42:00 +02:00
try
{
this.songId = Integer.valueOf(stuff[6]);
} catch (Exception e)
{
Emulator.getLogging().logErrorLine("Warning: Item " + this.getId() + " has an invalid song id set for its music disk!");
}
2018-07-06 15:30:00 +02:00
}
}
@Override
public void serializeExtradata(ServerMessage serverMessage)
{
serverMessage.appendInt((this.isLimited() ? 256 : 0));
serverMessage.appendString(this.getExtradata());
super.serializeExtradata(serverMessage);
}
@Override
public boolean canWalkOn(RoomUnit roomUnit, Room room, Object[] objects)
{
return false;
}
@Override
public boolean isWalkable()
{
return false;
}
@Override
public void onWalk(RoomUnit roomUnit, Room room, Object[] objects) throws Exception
{
}
public int getSongId()
{
2019-03-18 02:22:00 +01:00
return this.songId;
2018-07-06 15:30:00 +02:00
}
@Override
public void onPlace(Room room)
{
super.onPlace(room);
room.sendComposer(new JukeBoxMySongsComposer(room.getTraxManager().myList()).compose());
}
@Override
public void onPickUp(Room room)
{
super.onPickUp(room);
room.getTraxManager().removeSong(this.getId());
}
public boolean inQueue()
{
return this.inQueue;
}
public void inQueue(boolean inQueue)
{
this.inQueue = inQueue;
}
}