/
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;
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.
*/
public class Directions
{
    private Directions(){super();}
    private static Directions inst=new Directions();
    public static Directions instance(){return inst;}
    
	public static int NUM_DIRECTIONS=7;
	
	public static final int NORTH=0;
	public static final int SOUTH=1;
	public static final int EAST=2;
	public static final int WEST=3;
	public static final int UP=4;
	public static final int DOWN=5;
	
	public static final int GATE=6;

	public static final int NORTHEAST=7;
	public static final int NORTHWEST=8;
	public static final int SOUTHEAST=9;
	public static final int SOUTHWEST=10;
	
	public static final String[] DIRECTION_CHARS={"N","S","E","W","U","D","V","NE","NW","SE","SW"};
	public static int[] DIRECTIONS_BASE={NORTH,SOUTH,EAST,WEST};
	public static String DIRECTIONS_DESC="N, S, E, W, U, D, or V";
	public static String[][] DIRECTIONS_FULL_CHART={
	    {"UP",""+UP},
	    {"ABOVE",""+UP},
	    {"NORTH",""+NORTH},
	    {"EAST",""+EAST},
	    {"WEST",""+WEST},
	    {"SOUTH",""+SOUTH},
	    {"NORTHEAST",""+NORTHEAST},
	    {"NORTHWEST",""+NORTHWEST},
	    {"SOUTHWEST",""+SOUTHWEST},
	    {"SOUTHEAST",""+SOUTHEAST},
	    {"NW",""+NORTHWEST},
	    {"NE",""+NORTHEAST},
	    {"SW",""+SOUTHWEST},
	    {"SE",""+SOUTHEAST},
	    {"DOWN",""+DOWN},
	    {"BELOW",""+DOWN},
	    {"NOWHERE",""+GATE},
	    {"HERE",""+GATE},
	    {"THERE",""+GATE},
	    {"VORTEX",""+GATE}
	};
											   
	public static String getDirectionName(String theDir)
	{
		return getDirectionName(getDirectionCode(theDir));
	}

	public static void ReInitialize(int dirs)
	{
	    NUM_DIRECTIONS=dirs;
	    if(dirs<11)
	    {
	        DIRECTIONS_BASE=new int[4];
	        DIRECTIONS_BASE[0]=NORTH;
	        DIRECTIONS_BASE[1]=SOUTH;
	        DIRECTIONS_BASE[2]=EAST;
	        DIRECTIONS_BASE[3]=WEST;
	    	DIRECTIONS_DESC="N, S, E, W, U, D, or V";
	    }
	    else
	    {
	        DIRECTIONS_BASE=new int[8];
	        DIRECTIONS_BASE[0]=NORTH;
	        DIRECTIONS_BASE[1]=SOUTH;
	        DIRECTIONS_BASE[2]=EAST;
	        DIRECTIONS_BASE[3]=WEST;
	        DIRECTIONS_BASE[4]=NORTHEAST;
	        DIRECTIONS_BASE[5]=NORTHWEST;
	        DIRECTIONS_BASE[6]=SOUTHEAST;
	        DIRECTIONS_BASE[7]=SOUTHWEST;
	    	DIRECTIONS_DESC="N, S, E, W, NE, NW, SE, SW, U, D, or V";
	    }
	}
	
	public static String getDirectionName(int code)
	{
		switch(code)
		{
			case NORTH:
				return "North";
			case SOUTH:
				return "South";
			case EAST:
				return "East";
			case WEST:
				return "West";
			case UP:
				return "Up";
			case DOWN:
				return "Down";
			case GATE:
				return "There";
			case NORTHEAST:
				return "Northeast";
			case NORTHWEST:
				return "Northwest";
			case SOUTHEAST:
				return "Southeast";
			case SOUTHWEST:
				return "Southwest";
		}
		return "";
	}

	public static String getDirectionChar(int code)
	{
		if(code<NUM_DIRECTIONS)
			return DIRECTION_CHARS[code];
		return " ";
	}

	public static int getDirectionCode(String theDir)
	{
	    int code=getGoodDirectionCode(theDir);
	    if(code<0)
	    {
			theDir=theDir.toUpperCase();
			for(int i=0;i<NUM_DIRECTIONS;i++)
			    if(theDir.startsWith(DIRECTION_CHARS[i]))
			        return i;
	    }
		return code;
	}
	
	public static int getGoodDirectionCode(String theDir)
	{
	    if(theDir.length()==0) return -1;
	    theDir=theDir.toUpperCase();
	    for(int i=0;i<DIRECTIONS_FULL_CHART.length;i++)
	        if((DIRECTIONS_FULL_CHART[i][0].startsWith(theDir))
	        &&(CMath.s_int(DIRECTIONS_FULL_CHART[i][1])<NUM_DIRECTIONS))
	            return CMath.s_int(DIRECTIONS_FULL_CHART[i][1]); 
		return -1;
	}
	
	public static int[] adjustXYByDirections(int x, int y, int direction)
	{
		switch(direction)
		{
		case Directions.NORTH: y--; break;
		case Directions.SOUTH: y++; break;
		case Directions.EAST: x++; break;
		case Directions.WEST: x--; break;
		case Directions.NORTHEAST: x++; y--; break;
		case Directions.NORTHWEST: x--; y--; break;
		case Directions.SOUTHEAST: x++; y++; break;
		case Directions.SOUTHWEST: x--; y++; break;
		}
		int[] xy=new int[2];
		xy[0]=x;
		xy[1]=y;
		return xy;
	}
	

	public static String getFromDirectionName(String theDir)
	{
		int code=getDirectionCode(theDir);
		return getFromDirectionName(code);
	}
	
	public static String getFromDirectionName(int code)
	{
		switch(code)
		{
		case NORTH:
			return "the north";
		case SOUTH:
			return "the south";
		case EAST:
			return "the east";
		case WEST:
			return "the west";
		case UP:
			return "above";
		case DOWN:
			return "below";
		case GATE:
			return "out of nowhere";
		case NORTHEAST:
			return "the northeast";
		case NORTHWEST:
			return "the northwest";
		case SOUTHEAST:
			return "the southeast";
		case SOUTHWEST:
			return "the southwest";
		}
		return "";
	}
	
	public static String getInDirectionName(int code)
	{
		switch(code)
		{
		case NORTH:
			return "to the north";
		case SOUTH:
			return "to the south";
		case EAST:
			return "to the east";
		case WEST:
			return "to the west";
		case NORTHEAST:
			return "to the northeast";
		case NORTHWEST:
			return "to the northwest";
		case SOUTHEAST:
			return "to the southeast";
		case SOUTHWEST:
			return "to the southwest";
		case UP:
			return "above you";
		case DOWN:
			return "below";
		case GATE:
			return "there";
		}
		return "";
	}
	
	public static int getOpDirectionCode(int code)
	{
		switch(code)
		{
		case NORTH:
			return SOUTH;
		case SOUTH:
			return NORTH;
		case WEST:
			return EAST;
		case EAST:
			return WEST;
		case NORTHEAST:
			return SOUTHWEST;
		case NORTHWEST:
			return SOUTHEAST;
		case SOUTHEAST:
			return NORTHWEST;
		case SOUTHWEST:
			return NORTHEAST;
		case UP:
			return DOWN;
		case DOWN:
			return UP;
		case GATE:
			return GATE;
		}
		return -1;
	}
	public static int getOpDirectionCode(String theDir)
	{
		int code=getDirectionCode(theDir);
		return getOpDirectionCode(code);
	}
	
}