|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.planet_ink.coffee_mud.Locales.StdRoom
com.planet_ink.coffee_mud.Locales.WaterSurface
public class WaterSurface
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface com.planet_ink.coffee_mud.Locales.interfaces.Room |
---|
Room.VariationCode |
Nested classes/interfaces inherited from interface com.planet_ink.coffee_mud.core.interfaces.ItemPossessor |
---|
ItemPossessor.Expire, ItemPossessor.Find, ItemPossessor.Move |
Field Summary | |
---|---|
protected int |
liquidType
|
Fields inherited from class com.planet_ink.coffee_mud.Locales.StdRoom |
---|
affectPhyStats, affects, amDestroyed, atmosphere, basePhyStats, behaviors, cachedImageName, climask, combatTurnMobIndex, contents, description, displayText, doors, exits, expirationDate, gridParent, inhabitants, lastResourceTime, me, mobility, myArea, myID, myResource, name, phyStats, rawImageName, roomRecoverMarker, scripts, skyedYet, STDCODES, tickStatus, xtraValues |
Fields inherited from interface com.planet_ink.coffee_mud.core.interfaces.Places |
---|
ALL_CLIMATE_MASK, ATMOSPHERE_INHERIT, CLIMASK_COLD, CLIMASK_DRY, CLIMASK_HOT, CLIMASK_INHERIT, CLIMASK_NORMAL, CLIMASK_WET, CLIMASK_WINDY, CLIMATE_DESCS, NUM_CLIMATES |
Constructor Summary | |
---|---|
WaterSurface()
|
Method Summary | |
---|---|
int |
amountTakenToFillMe(Drink theSource)
Given the liquid source, the amount of liquid which would need to be taken from the source liquid source to fill up THIS liquid source. |
void |
clearSky()
If this room has attached temporary rooms, such as a sky in an outdoor room, or underwater rooms in the ocean, this method will empty all of those rooms of their content, and then destroy those rooms. |
boolean |
containsDrink()
Whether this liquid container still contains any liquid. |
long |
decayTime()
The time, in milliseconds, when this will rot. |
boolean |
disappearsAfterDrinking()
Settable only internally, this method returns whether this entire object is destroyed immediately after it is drank from -- like a potion. |
int |
domainType()
Returns the domain-code for this room, which tells you something about its physical makeup, such as whether it is outdoor, if it's in the woods or surrounded by stone, that sort of thing. |
void |
executeMsg(Environmental myHost,
CMMsg msg)
The general message event handler for the object. |
protected void |
fixUnderwater()
|
java.util.List<Room> |
getSky()
If this room requires attached temporary rooms, such as a sky in an outdoor room, or underwater rooms in the ocean, this method will return any existing one, or an empty list if none exist yet. |
void |
giveASky(int depth)
If this room requires attached temporary rooms, such as a sky in an outdoor room, or underwater rooms in the ocean, this method will create those rooms at the given left of depth. |
java.lang.String |
ID()
The CoffeeMud Java Class ID shared by all instances of this object. |
protected boolean |
IsUnderWaterFatClass(Room thatSea)
|
int |
liquidHeld()
The total amount of liquid possible to be contained in this liquid container. |
int |
liquidRemaining()
The amount of liquid remaining in this liquid container. |
int |
liquidType()
The material type of the liquid in this container. |
boolean |
okMessage(Environmental myHost,
CMMsg msg)
The general message event previewer for the object. |
java.util.List<java.lang.Integer> |
resourceChoices()
Returns a list of all resource codes for potentially gatherable resources in this room. |
void |
setDecayTime(long time)
Sets the time, in milliseconds, when this will rot. |
void |
setLiquidHeld(int amount)
Sets the total amount of liquid possible to be contained in this liquid container. |
void |
setLiquidRemaining(int amount)
Sets the amount of liquid remaining in this liquid container. |
void |
setLiquidType(int newLiquidType)
Sets the material type of the liquid in this container. |
void |
setThirstQuenched(int amount)
Set the amount of thirst points quenched every time this item is drank from. |
int |
thirstQuenched()
The amount of thirst points quenched every time this item is drank from. |
protected int |
UnderWaterDomainType()
|
protected java.lang.String |
UnderWaterLocaleID()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.Environmental |
---|
description, displayText, expirationDate, image, isGeneric, L, maxRange, minRange, miscTextFormat, Name, rawImage, sameAs, setDescription, setDisplayText, setExpirationDate, setImage, setMiscText, setName, text |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.Tickable |
---|
getTickStatus, name, tick |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.StatsAffecting |
---|
affectCharState, affectCharStats, affectPhyStats |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.Contingent |
---|
amDestroyed, destroy, isSavable, setSavable |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.CMObject |
---|
copyOf, initializeClass, newInstance |
Methods inherited from interface java.lang.Comparable |
---|
compareTo |
Methods inherited from interface com.planet_ink.coffee_mud.core.interfaces.Modifiable |
---|
getSaveStatIndex, getStat, getStatCodes, isStat, setStat |
Field Detail |
---|
protected int liquidType
Constructor Detail |
---|
public WaterSurface()
Method Detail |
---|
public java.lang.String ID()
CMObject
ID
in interface CMObject
ID
in class StdRoom
public int domainType()
Room
domainType
in interface Room
domainType
in class StdRoom
Room.INDOORS
,
Room.DOMAIN_INDOORS_CAVE
,
Room.DOMAIN_INDOORS_DESCS
,
Room.DOMAIN_OUTDOORS_CITY
,
Room.DOMAIN_OUTDOOR_DESCS
public long decayTime()
Decayable
decayTime
in interface Decayable
Decayable.setDecayTime(long)
public void setDecayTime(long time)
Decayable
setDecayTime
in interface Decayable
time
- in milliseconds, when this will rot. 0=neverDecayable.decayTime()
protected java.lang.String UnderWaterLocaleID()
protected int UnderWaterDomainType()
protected boolean IsUnderWaterFatClass(Room thatSea)
public java.util.List<Room> getSky()
Room
getSky
in interface Room
getSky
in class StdRoom
Room.clearSky()
,
Room.getSky()
public void giveASky(int depth)
Room
giveASky
in interface Room
giveASky
in class StdRoom
depth
- the diameter of the sky or underwater to createRoom.clearSky()
,
Room.getSky()
public void clearSky()
Room
clearSky
in interface Room
clearSky
in class StdRoom
Room.giveASky(int)
,
Room.getSky()
protected void fixUnderwater()
public boolean okMessage(Environmental myHost, CMMsg msg)
MsgListener
okMessage
in interface MsgListener
okMessage
in class StdRoom
myHost
- either the initiator of the event, or the host of this objectmsg
- the CMMsg that wants to be executed
CMMsg
,
CMMsg.source()
public void executeMsg(Environmental myHost, CMMsg msg)
MsgListener
executeMsg
in interface MsgListener
executeMsg
in class StdRoom
myHost
- either the initiator of the event, or the host of this objectmsg
- the CMMsg that needs to be executedCMMsg
public int thirstQuenched()
Drink
thirstQuenched
in interface Drink
CharState
public int liquidHeld()
Drink
liquidHeld
in interface Drink
public int liquidRemaining()
Drink
liquidRemaining
in interface Drink
Drink.liquidHeld()
public int liquidType()
Drink
liquidType
in interface Drink
RawMaterial
public void setLiquidType(int newLiquidType)
Drink
setLiquidType
in interface Drink
newLiquidType
- the type of liquid contained hereinRawMaterial
public void setThirstQuenched(int amount)
Drink
setThirstQuenched
in interface Drink
amount
- of thirst quenchedCharState
public void setLiquidHeld(int amount)
Drink
setLiquidHeld
in interface Drink
amount
- total liquid contained herein.public void setLiquidRemaining(int amount)
Drink
setLiquidRemaining
in interface Drink
amount
- amount of liquid remaining in this liquid container.Drink.setLiquidHeld(int)
public boolean disappearsAfterDrinking()
Drink
disappearsAfterDrinking
in interface Drink
public boolean containsDrink()
Drink
containsDrink
in interface Drink
public int amountTakenToFillMe(Drink theSource)
Drink
amountTakenToFillMe
in interface Drink
theSource
- the liquid source to fill up from
public java.util.List<java.lang.Integer> resourceChoices()
Room
resourceChoices
in interface Room
resourceChoices
in class StdRoom
RawMaterial
,
RawMaterial.CODES
,
Room.myResource()
,
Room.setResource(int)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |