/
com/planet_ink/coffee_mud/Abilities/
com/planet_ink/coffee_mud/Abilities/Common/
com/planet_ink/coffee_mud/Abilities/Diseases/
com/planet_ink/coffee_mud/Abilities/Druid/
com/planet_ink/coffee_mud/Abilities/Fighter/
com/planet_ink/coffee_mud/Abilities/Prayers/
com/planet_ink/coffee_mud/Abilities/Properties/
com/planet_ink/coffee_mud/Abilities/Skills/
com/planet_ink/coffee_mud/Abilities/Songs/
com/planet_ink/coffee_mud/Abilities/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Areas/interfaces/
com/planet_ink/coffee_mud/Behaviors/
com/planet_ink/coffee_mud/CharClasses/interfaces/
com/planet_ink/coffee_mud/Commands/
com/planet_ink/coffee_mud/Commands/interfaces/
com/planet_ink/coffee_mud/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Software/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/Locales/interfaces/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/MOBS/interfaces/
com/planet_ink/coffee_mud/Races/
com/planet_ink/coffee_mud/Races/interfaces/
com/planet_ink/coffee_mud/WebMacros/
com/planet_ink/coffee_mud/WebMacros/interfaces/
com/planet_ink/coffee_mud/application/
com/planet_ink/coffee_mud/core/smtp/
com/planet_ink/siplet/applet/
lib/
resources/examples/
resources/fakedb/
resources/quests/delivery/
resources/quests/diseased/
resources/quests/drowning/
resources/quests/gobwar/
resources/quests/holidays/
resources/quests/robbed/
resources/quests/smurfocide/
resources/quests/stolen/
resources/quests/templates/
resources/quests/treasurehunt/
resources/quests/vengeance/
web/
web/admin.templates/
web/admin/images/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
package com.planet_ink.coffee_mud.core.interfaces;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Commands.interfaces.*;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;

/* 
   Copyright 2000-2006 Bo Zimmerman

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/
/**
 * This interface is implemented by any object which wishes to get periodic thread time from
 * the threads engine.  Almost all CoffeeMud objects implement this interface 
 * @author Bo Zimmerman
 *
 */
public interface Tickable extends CMObject
{
    /**
     * The nice displayable name of this instance of this object
     * @return the displayable name of this object instance
     */
	public String name();
    /**
     * A coded status for this object during the period where
     * its tick method is being called. The statis is defined,
     * at least in part, by constants in this interface STATUS_*.
     * STATUS_NOT should be returned when the objects tick method
     * is not currently in execution.  It should never return 
     * STATUS_NOT when the objects tick method is in execution.
     * @see Tickable#tick(Tickable, int)
     * @return the numeric status of this object
     */
	public long getTickStatus();

    /**
     * this is the method which is called periodically by the threading engine.  How often it
     * is called depends on the parameters passed to the threadding engine when it is submitted
     * for thread access.  Typically the period is once per TIME_TICK period, but that is
     * determined when the object is submitted to the thread engine.  
     * @see Tickable
     * @see com.planet_ink.coffee_mud.core.threads.ServiceEngine
     * @see TickableGroup
     * @param ticking a reference to this Tickable object
     * @param tickID the TICKID_ constant describing this periodic call, as defined in Tickable
     * @return true always, unless this object no longer wishes to ever tick again, in which case false
     */
    public boolean tick(Tickable ticking, int tickID);
    
    /** the number of miliseconds for each tick/round.*/
    public final static long TIME_TICK=4000;
    /** the number of milliseconds for each game-mud-hour */
    public final static long TIME_MILIS_PER_MUDHOUR=10*60000;
    /** the number of game/rounds for each real minute of time */
    public final static long TICKS_PER_RLMIN=(int)Math.round(60000.0/new Long(TIME_TICK).doubleValue());
    /** TIME_TICK as a double */
    public final static double TIME_TICK_DOUBLE=new Long(TIME_TICK).doubleValue();

    /** a mask for tickids */
    public final static int TICKMASK_SOLITARY=65536;
    /** the most common tickid, representing the tick of a mob*/
    public final static int TICKID_MOB=0;
    /** the tickid representing the tick of a behavior on an item*/
    public final static int TICKID_ITEM_BEHAVIOR=1;
    /** the tickid representing the tick that automatically closes open doors*/
    public final static int TICKID_EXIT_REOPEN=2;
    /** the tickid representing the decay tick on a corpse*/
    public final static int TICKID_DEADBODY_DECAY=3;
    /** the tickid representing the going out of a light*/
    public final static int TICKID_LIGHT_FLICKERS=4;
    /** the tickid representing the resetting of a trap*/
    public final static int TICKID_TRAP_RESET=5;
    /** the tickid representing the destruction of a trap*/
    public final static int TICKID_TRAP_DESTRUCTION=6;
    /** the tickid representing the returning of an innkey to the front desk*/
    public final static int TICKID_ITEM_BOUNCEBACK=7;
    /** the tickid representing the tick of a behavior on a room*/
    public final static int TICKID_ROOM_BEHAVIOR=8;
    /** the tickid representing the standard tick of an area*/
    public final static int TICKID_AREA=9;
    /** the tickid representing the resetting of an item that rejuvinates*/
    public final static int TICKID_ROOM_ITEM_REJUV=10;
    /** the tickid representing the ticking of a behavior on an exit*/
    public final static int TICKID_EXIT_BEHAVIOR=11;
    /** the tickid representing the ticking of a spell on a non-mob object*/
    public final static int TICKID_SPELL_AFFECT=12;
    /** the tickid representing the ticking of a quest script*/
    public final static int TICKID_QUEST=13;
    /** the tickid representing the ticking of a clan object*/
    public final static int TICKID_CLAN=14;
    /** the tickid representing the ticking of a clan item*/
    public final static int TICKID_CLANITEM=15;
    /** the tickid representing the ticking of the smtp server*/
    public final static int TICKID_EMAIL=TICKMASK_SOLITARY|16;
    /** the tickid representing the impending stop of a service*/
    public final static int TICKID_READYTOSTOP=17;
    /** modifies a tickID to designate a longer wait before declaring dead.*/
    public final static int TICKID_LONGERMASK=256;

    /** a tick status constant representing  the state of waiting for tick access */
	public static long STATUS_NOT=0;
    /** a tick status constant representing the state of just starting its tick access */
	public static long STATUS_START=1;
    /** a tick status representing CLASS part  of its tick access  */
	public static long STATUS_CLASS=2;
    /** a tick status representing RACE part  of its tick access  */
	public static long STATUS_RACE=3;
    /** a tick status representing COMBAT part  of its tick access  */
	public static long STATUS_FIGHT=4;
    /** a tick status representing WEATHER part  of its tick access  */
	public static long STATUS_WEATHER=5;
    /** a tick status representing DEAD part  of its tick access  */
	public static long STATUS_DEAD=6;
    /** a tick status representing ALIVE part  of its tick access  */
	public static long STATUS_ALIVE=7;
    /** a tick status representing OTHER part  of its tick access  */
	public static long STATUS_REBIRTH=8;
    /** a tick status representing ALIVE part  of its tick access  */
	public static long STATUS_OTHER=98;
    /** a tick status representing the end of its tick access  */
	public static long STATUS_END=99;
    /** a tick status MASK representing the tick access of an associated behavior */
	public static long STATUS_BEHAVIOR=512;
    /** a tick status MASK representing the tick access of an associated effect */
	public static long STATUS_AFFECT=1024;
    /** a tick status MASK  whose meaning is class dependent */
	public static long STATUS_MISC=2048;
    /** a tick status MASK  whose meaning is class dependent */
    public static long STATUS_MISC2=4096;
    /** a tick status MASK  whose meaning is class dependent */
	public static long STATUS_MISC3=8192;
    /** a tick status MASK  whose meaning is class dependent */
	public static long STATUS_MISC4=16384;
    /** a tick status MASK  whose meaning is class dependent */
	public static long STATUS_MISC5=32768;
    /** a tick status MASK  whose meaning is class dependent */
	public static long STATUS_MISC6=65536;
    /** a tick status MASK  whose meaning is class dependent */
    public static long STATUS_MISC7=131072;
}