Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/rooms/RoomMoodlightData.java

94 lines
1.9 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.rooms;
public class RoomMoodlightData
{
private int id;
private boolean enabled;
private boolean backgroundOnly;
private String color;
private int intensity;
public RoomMoodlightData(int id, boolean enabled, boolean backgroundOnly, String color, int intensity)
{
this.id = id;
this.enabled = enabled;
this.backgroundOnly = backgroundOnly;
this.color = color;
this.intensity = intensity;
}
public int getId()
{
return this.id;
}
public void setId(int id)
{
this.id = id;
}
public boolean isEnabled()
{
return this.enabled;
}
public void enable()
{
this.enabled = true;
}
public void disable()
{
this.enabled = false;
}
public boolean isBackgroundOnly()
{
return this.backgroundOnly;
}
public void setBackgroundOnly(boolean backgroundOnly)
{
this.backgroundOnly = backgroundOnly;
}
public String getColor()
{
return this.color;
}
public void setColor(String color)
{
this.color = color;
}
public int getIntensity()
{
return this.intensity;
}
public void setIntensity(int intensity)
{
this.intensity = intensity;
}
public String toString()
{
return (this.enabled ? 2 : 1) + "," + this.id + "," + (this.backgroundOnly ? 2 : 1) + "," + this.color + "," + this.intensity;
}
public static RoomMoodlightData fromString(String s)
{
String[] data = s.split(",");
if(data.length == 5)
{
return new RoomMoodlightData(Integer.valueOf(data[1]), data[0].equalsIgnoreCase("2"), data[2].equalsIgnoreCase("2"), data[3], Integer.valueOf(data[4]));
}
else
{
return new RoomMoodlightData(1, true, true, "#000000", 255);
}
}
}