/
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.Libraries;
import java.text.DateFormat;
import java.text.ParseException;
import java.util.Calendar;
import java.util.TimeZone;

import com.planet_ink.coffee_mud.Libraries.interfaces.TimeManager;
import com.planet_ink.coffee_mud.core.CMath;


/* 
   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 CoffeeTime extends StdLibrary implements TimeManager
{
    public String ID(){return "CoffeeTime";}
    /**
     * Returns the numeric representation of the month
     * 
     * <br><br><b>Usage:</b> Month2MM("January");
     * @param Month The month name
     * @return String The number of the month as a string
     */ 
    public String month2MM(String Month)
    {
        if (Month.equals("January"))
            return "01";
        if (Month.equals("February"))
            return "02";
        if (Month.equals("March"))
            return "03";
        if (Month.equals("April"))
            return "04";
        if (Month.equals("May"))
            return "05";
        if (Month.equals("June"))
            return "06";
        if (Month.equals("July"))
            return "07";
        if (Month.equals("August"))
            return "08";
        if (Month.equals("September"))
            return "09";
        if (Month.equals("October"))
            return "10";
        if (Month.equals("November"))
            return "11";
        if (Month.equals("December"))
            return "12";
        
        return "01";
    }
    
    

    /**
     * Return the name of the month, given a number
     * 
     * <br><br><b>Usage:</b> String Mnth=ReturnMonthName(m,GiveShort).charStats();
     * @param Number Month number to convert
     * @param GiveShort Give abbreviation if true
     * @return String Month name
     */
    public String getMonthName(int Number, boolean GiveShort)
    {
        if(Number>12)Number=Number%12;
        
        if(!GiveShort)
            switch(Number)
            {
                case 1: return "January";
                case 2: return "February";
                case 3: return "March";
                case 4: return "April";
                case 5: return "May";
                case 6: return "June";
                case 7: return "July";
                case 8: return "August";
                case 9: return "September";
                case 10: return "October";
                case 11: return "November";
                case 12: return "December";
            }
        else
            switch(Number)
            {
                case 1: return "Jan";
                case 2: return "Feb";
                case 3: return "Mar";
                case 4: return "Apr";
                case 5: return "May";
                case 6: return "Jun";
                case 7: return "Jul";
                case 8: return "Aug";
                case 9: return "Sep";
                case 10: return "Oct";
                case 11: return "Nov";
                case 12: return "Dec";
            }
            
        return "";
    }
    
    
    /**
     * Converts a string of some form into a Calendar object.
     * 
     * <br><br><b>Usage:</b> Calendar.S2Date(GetRes(Results,"StartDateTime"));
     * @param TheDate The string to retrieve from
     * @return Calendar Calendar object
     */
    public long string2Millis(String TheDate)
    {
        Calendar C=string2Date(TheDate);
        if(C!=null) return C.getTimeInMillis();
        return 0;
    }
    
    /**
     * Converts a string of some form into a Calendar object.
     *
     * <br><br><b>Usage:</b> Calendar.string2Date(GetRes(Results,"StartDateTime"));
     * @param TheDate The string to retrieve from
     * @return Calendar Calendar object
     */
    public Calendar string2Date(String TheDate)
    {
        Calendar D=Calendar.getInstance();

        if(TheDate==null)
            return D;
        if(TheDate.trim().length()==0)
            return D;
        // for those stupid SQLServer date formats, clean them up!
        if((TheDate.indexOf(".")==19)
        ||((TheDate.indexOf("-")==4)&&(TheDate.indexOf(":")==13)))
        {
            //String TheOldDate=TheDate;
            int HH=CMath.s_int(TheDate.substring(11,13));
            int MM=CMath.s_int(TheDate.substring(14,16));
            int AP=Calendar.AM;
            if(TheDate.trim().endsWith("PM"))
                AP=Calendar.PM;
            else
            if(TheDate.trim().endsWith("AM"))
                AP=Calendar.AM;
            else
            if(HH==0)
            {
                HH=12;
                AP=Calendar.AM;
            }
            else
            if(HH>12)
            {
                HH=HH-12;
                AP=Calendar.PM;
            }
            else
            if(TheDate.toUpperCase().substring(10).indexOf("P")>=0)
                AP=Calendar.PM;
            else
            if(TheDate.toUpperCase().substring(10).indexOf("A")>=0)
                AP=Calendar.AM;
            else
            if(HH==12) // as 12 always means 12 noon in international date/time -- 0 = 12am
                AP=Calendar.PM;

            if((AP==Calendar.PM)&&(HH==12))
                D.set(Calendar.HOUR,0);
            else
            if((AP==Calendar.AM)&&(HH==12))
                D.set(Calendar.HOUR,0);
            else
                D.set(Calendar.HOUR,HH);

            D.set(Calendar.AM_PM,AP);
            D.set(Calendar.MINUTE,MM);
            D.set(Calendar.SECOND,0);
            D.set(Calendar.MILLISECOND,0);

            int YY=CMath.s_int(TheDate.substring(0,4));
            D.set(Calendar.YEAR,YY);
            int MN=CMath.s_int(TheDate.substring(5,7));
            D.set(Calendar.MONTH,MN-1);
            int DA=CMath.s_int(TheDate.substring(8,10));
            D.set(Calendar.DATE,DA);
            D.set(Calendar.AM_PM,AP);
        }
        else
        {
            // If it has no time, give it one!
            if((TheDate.indexOf(":")<0)
            &&(TheDate.indexOf("AM")<0)
            &&(TheDate.indexOf("PM")<0))
                TheDate=TheDate+" 5:00 PM";
    
            try
            {
                DateFormat fmt=DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT);
                fmt.parse(TheDate);
                D=fmt.getCalendar();
                D.set(Calendar.SECOND,0);
                D.set(Calendar.MILLISECOND,0);
            }
            catch(ParseException e)
            { }
        }
        confirmDateAMPM(TheDate,D);
        return D;
    }
    
    private void confirmDateAMPM(String TheDate, Calendar D)
    {
        try
        {
            if(TheDate.trim().endsWith("PM"))
            {
                if(D.get(Calendar.AM_PM)==Calendar.AM)
                    D.set(Calendar.AM_PM,Calendar.PM);
                if(D.get(Calendar.AM_PM)==Calendar.AM)
                    D.add(Calendar.HOUR,12);
                if(D.get(Calendar.AM_PM)==Calendar.AM)
                    D.setTimeInMillis(D.getTimeInMillis()+(12*60*60*1000));
            }
            else
            if(TheDate.trim().endsWith("AM"))
            {
                if(D.get(Calendar.AM_PM)==Calendar.PM)
                    D.set(Calendar.AM_PM,Calendar.AM);
                if(D.get(Calendar.AM_PM)==Calendar.PM)
                    D.add(Calendar.HOUR,-12);
                if(D.get(Calendar.AM_PM)==Calendar.PM)
                    D.setTimeInMillis(D.getTimeInMillis()-(12*60*60*1000));
            }
        }
        catch(Exception e)
        { }
    }
    
    
    /**
     * Returns the regular Hours given the hours in the 
     * international format (military time)
     * 
     * <br><br><b>Usage:</b> ConvertHour(GetIn(req, "ENDHR"))
     * @param TheHour Hours in military format
     * @return String Hours in regular format
     **/
    public String convertHour(String TheHour)
    {
        int IntHour =  CMath.s_int(TheHour);
        if (IntHour > 12)
        {
            IntHour = IntHour-12;
        }
        else
            if (IntHour == 0)
                IntHour = 12;
        
        TheHour = Integer.toString(IntHour);
        return TheHour;
    }
    
    /**
     * Returns the AMPM stamp given the international Hours portion the Time
     * 
     * <br><br><b>Usage:</b> getAMPM(GetIn(req, "ENDHR"))
     * @param TheHour Hours in military format
     * @return String AM or PM stamp
     **/
    public String getAMPM(String TheHour)
    {
        String Stamp;
        
        int IntHour =  CMath.s_int(TheHour);
        if (IntHour >= 12)
            Stamp = "PM";
        else 
            Stamp = "AM";
        return Stamp;
    }
    
    /**
     * Get the zone id given the timezone string
     * 
     * <br><br><b>Usage:</b> GetTheZoneID(MeetTZ.getRawOffset())+"\n";
     * @param theRawOffset The time zone's raw offset to convert
     * @return String The time zone ID
     */
    public String getTheIntZoneID(int theRawOffset)
    {
        if (theRawOffset == 0)          // GMT 0
            return "GMT";
        if (theRawOffset == 3600000)    // GMT 1
            return "CET";
        if (theRawOffset == 7200000)    // GMT 2
            return "CAT";
        if (theRawOffset == 10800000)   // GMT 3
            return "EAT";
        if (theRawOffset == 12600000)   // GMT 3.5
            return "MET";
        if (theRawOffset == 14400000)   // GMT 4
            return "NET";
        if (theRawOffset == 18000000)   // GMT 5
            return "PLT";
        if (theRawOffset == 19800000)   // GMT 5.5
            return "IST";
        if (theRawOffset == 21600000)   // GMT 6
            return "BST";
        if (theRawOffset == 25200000)   // GMT 7
            return "VST";
        if (theRawOffset == 28800000)   // GMT 8
            return "CTT";
        if (theRawOffset == 32400000)   // GMT 9
            return "JST";
        if (theRawOffset == 34200000)   // GMT 9.5
            return "ACT";
        if (theRawOffset == 36000000)   // GMT 10
            return "AET";
        if (theRawOffset == 39600000)   // GMT 11
            return "SST";
        if (theRawOffset == 43200000)   // GMT 12
            return "NST";
        if (theRawOffset == -39600000)  // GMT -11
            return "MIT";
        if (theRawOffset == -36000000)  // GMT -10
            return "HST";
        if (theRawOffset == -32400000)  // GMT -9
            return "AST";
        if (theRawOffset == -28800000)  // GMT -8
            return "PST";
        if (theRawOffset == -25200000)  // GMT -7
            return "MST";
        if (theRawOffset == -21600000)  // GMT -6
            return "CST";
        if (theRawOffset == -18000000)  // GMT -5
            return "EST";
        if (theRawOffset == -14400000)  // GMT -4
            return "ADT";
        if (theRawOffset == -12600000)  // GMT -3.5
            return "CNT";
        if (theRawOffset == -10800000)  // GMT -3
            return "AGT";
        if (theRawOffset == -7200000)   // GMT -2
            return "BET";
        if (theRawOffset == -3600000)   // GMT -1
            return "EET";
        
        return "GMT";
                
    }
    
    /**
     *  Returns the time zone of the given ID
     * 
     * <br><br><b>Usage:</b> MEETZN = GetTheTimeZone(ID);
     * @param theID The ID of the abbreviated time zone.
     * @return String The time zone name
     */
    public String getTheTimeZone(String theID)
    {
        if (theID.equalsIgnoreCase("CET"))
            return "Europe/Paris";
        if (theID.equalsIgnoreCase("ADT"))
            return "America/Halifax";
        if (theID.equalsIgnoreCase("BET"))
            return "Atlantic/South_Georgia";
        if (theID.equalsIgnoreCase("EET"))
            return "Atlantic/Azores";
        if (theID.equalsIgnoreCase("CAT"))
            return "Europe/Athens";
        if (theID.equalsIgnoreCase("EAT"))
            return "Asia/Riyadh";
        
        return theID;
    }
    
    
    /**
     * Returns the month for a given date
     * 
     * <br><br><b>Usage:</b> String ENDMM=d2MMString();
     * @param time The time in miliseconds
     * @return String The month name
     **/
    public String date2MonthString(long time)
    {
        Calendar C=makeCalendar(time);
        switch (C.get(Calendar.MONTH)+1)
        {
            case 1: 
                return "January";
            case 2: 
                return "February";
            case 3: 
                return "March";
            case 4: 
                return "April";
            case 5: 
                return "May";
            case 6: 
                return "June";
            case 7: 
                return "July";
            case 8: 
                return "August";
            case 9: 
                return "September";
            case 10: 
                return "October";
            case 11: 
                return "November";
            case 12: 
                return "December";
            default:
                return "January";
        }
    }

    /**
     * Returns the DD portion of a given date
     * 
     * <br><br><b>Usage:</b> String ENDDD=d2DDString();
     * @param time The time in miliseconds
     * @return String The day
     **/
    public String date2DayOfMonthString(long time)
    {
        Calendar C=makeCalendar(time);
        String Day=Integer.toString(C.get(Calendar.DAY_OF_MONTH)).trim();
        if (Day.length()==1)
            Day = "0" + Day;
        return Day;
    }

    /**
    * Returns the YYYY portion of a given date
    * Returns the DD portion of a given date
    * 
    * <br><br><b>Usage:</b> String ENDYYYY=d2YYYYString();
    * @param time The time in miliseconds
    * @return String The year
    **/
    public String date2YYYYString(long time)
    {
        Calendar C=makeCalendar(time);
        String Year=Integer.toString(C.get(Calendar.YEAR)).trim();
        if (Year.length()==2)
            Year = "20" + Year;
        return Year;
    }

    /**
    * Returns the Hours portion of a given Time
    * 
    * <br><br><b>Usage:</b> String ENDHR=T2HRString();
    * @param time The time in miliseconds
    * @return String The hour
    **/
    public String date2HRString(long time)
    {
        Calendar C=makeCalendar(time);
        int IntHour = C.get(Calendar.HOUR);
        if (IntHour==0)
            IntHour=12;
                
        String StrHour=Integer.toString(IntHour);
        if (StrHour.length()==1)
            StrHour = "0" + StrHour;
        return StrHour;
    }
    

    /**
    * Returns the Minutes portion of a given Time
    * 
    * <br><br><b>Usage:</b> String ENDMIN=T2MINString();
    * @param time The time in miliseconds
    * @return String The minutes
    **/
    public String date2MINString(long time)
    {
        Calendar C=makeCalendar(time);
        int IntMin = C.get(Calendar.MINUTE);
        int remainder = IntMin % 5;
        if (remainder != 0)
        {
            if (remainder >= 3)
            {
                IntMin = IntMin + (5 - remainder);
                if (IntMin == 60)
                    IntMin = 55;
            }
            else
                IntMin = IntMin - remainder;
        }
        String StrMin=Integer.toString(IntMin);
        if (StrMin.length()==1)
            StrMin = "0" + StrMin;      
        return StrMin;
    }
    
    /**
     *  Returns the time zone of the server
     * 
     * <br><br><b>Usage:</b> MEETZN = T2ZoneString();
     * @param time The time in miliseconds
     * @return String The time zone
     */
    public String date2ZoneString(long time)
    {
        Calendar C=makeCalendar(time);
        TimeZone CurrentZone;
        CurrentZone = C.getTimeZone();
        String theID = CurrentZone.getID();
        theID = getTheIntZoneID(CurrentZone.getRawOffset());

        return  theID; 
    }
        
    /**
     * Returns the Minutes portion of a given Time
     * 
     * <br><br><b>Usage:</b> String ST_AMPM=T2_AMPMString();
     * @param time The time in miliseconds
     * @return String AM or PM stamp
     **/
    public String date2AMPMString(long time)
    {
        String AMPM;
        Calendar C=makeCalendar(time);
        if (C.get(Calendar.AM_PM)==Calendar.PM)
            AMPM="PM";
        else
            AMPM="AM";
            
        return AMPM;
    }

    private Calendar makeCalendar(long time)
    {
        Calendar C=Calendar.getInstance();
        C.setTimeInMillis(time);
        return C;
    }
    public String date2String(Calendar C)
    {
        String MINUTE=Integer.toString(C.get(Calendar.MINUTE)).trim();
        if(MINUTE.length()==1)
            MINUTE="0"+MINUTE;
        String AMPM="AM";
        if(C.get(Calendar.AM_PM)==Calendar.PM)
            AMPM="PM";
        int Hour=C.get(Calendar.HOUR);
        if(Hour==0) Hour=12;
        String Year=Integer.toString(C.get(Calendar.YEAR));
        if(Year.length()<4)
        {
            if(Year.length()<2)
                Year=("0"+Year);
            if(Year.length()<2)
                Year=("0"+Year);
            int Yr=CMath.s_int(Year);
            if(Yr<50)Year="20"+Year;
            else Year="19"+Year;
        }
        return (C.get(Calendar.MONTH)+1)+"/"+C.get(Calendar.DATE)+"/"+Year+" "+Hour+":"+MINUTE+" "+AMPM;
    }
    /**
     * Converts a given date into a string of form:
     * MM/DD/YYYY HH:MM AP
     * 
     * <br><br><b>Usage:</b> d2String()
     * @param time The time in miliseconds
     * @return String Formatted date/time
     */
    public String date2String(long time)
    {
        Calendar C=makeCalendar(time);
        return date2String(C);
    }

    
    /**
     * Converts a given date into a string of form:
     * MM/DD/YYYY HH:MM AP
     * 
     * <br><br><b>Usage:</b> d2SString()
     * @param time The time in miliseconds
     * @return String Formatted date/time
     */
    public String date2SecondsString(long time)
    {
        Calendar C=makeCalendar(time);
        String StrDate=date2String(C);
        if(StrDate.length()<3) return StrDate;
        return (StrDate.substring(0,StrDate.length()-3)+":"+C.get(Calendar.SECOND)+" "+StrDate.substring(StrDate.length()-2));
    }

    /**
     * Converts a given date into a string of form:
     * MM/DD/YYYY
     * 
     * <br><br><b>Usage:</b> d2DString()
     * @param time The time in miliseconds
     * @return String Formatted date
     */
    public String date2DateString(long time)
    {
        String T=date2String(time);
        if(T.indexOf(" ")>0) T=T.substring(0,T.indexOf(" "));
        return T.trim();
    }

    /**
     * Converts a given date into a string of form:
     * MM/DD/YY
     * 
     * <br><br><b>Usage:</b> d2D2String()
     * @param time The time in miliseconds
     * @return String Formatted date
     */
    public String date2Date2String(long time)
    {
        String T=date2DateString(time);
        int x=T.lastIndexOf("/");
        T=T.substring(0,x+1)+T.substring(x+3);
        return T.trim();
    }

    /**
    * format the date
    * 
    * <br><br><b>Usage:</b>  msgDateFormat(98374987234)
    * @param time The time in miliseconds
    * @return String The date
    */
    public String smtpDateFormat(long time) 
    {
        Calendar senddate=makeCalendar(time);
        String formatted = "hold";

        String Day[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
        String Month[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul","Aug", "Sep", "Oct", "Nov", "Dec"};
        int dow=senddate.get(Calendar.DAY_OF_WEEK)-1;
        int date=senddate.get(Calendar.DAY_OF_MONTH);
        int m=senddate.get(Calendar.MONTH);
        int y=senddate.get(Calendar.YEAR);
        int h=senddate.get(Calendar.HOUR_OF_DAY);
        int min=senddate.get(Calendar.MINUTE);
        int s=senddate.get(Calendar.SECOND);
        int zof=senddate.get(Calendar.ZONE_OFFSET);
        int dof=senddate.get(Calendar.DST_OFFSET);

        formatted = Day[dow] + ", ";
        formatted = formatted + String.valueOf(date) + " ";
        formatted = formatted + Month[m] + " ";
        formatted = formatted + String.valueOf(y) + " ";
        if (h < 10) formatted = formatted + "0";
        formatted = formatted + String.valueOf(h) + ":";
        if (min < 10) formatted = formatted + "0";
        formatted = formatted + String.valueOf(min) + ":";
        if (s < 10) formatted = formatted + "0";
        formatted = formatted + String.valueOf(s) + " ";
        if ((zof + dof) < 0)
            formatted = formatted + "-";
        else
            formatted = formatted + "+";
        
        zof=Math.round(zof/1000); // now in seconds
        zof=Math.round(zof/60); // now in minutes
        
        dof=Math.round(dof/1000); // now in seconds
        dof=Math.round(dof/60); // now in minutes
        
        if ((Math.abs(zof + dof)/60) < 10) formatted = formatted + "0";
        formatted = formatted + String.valueOf(Math.abs(zof + dof)/60);
        if ((Math.abs(zof + dof)%60) < 10) formatted = formatted + "0";
        formatted = formatted + String.valueOf(Math.abs(zof + dof)%60);

        return formatted;
    }
}