1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000,2001 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// $Id: DateTime.cpp,v 1.13 2008-04-28 17:26:09 alriddoch Exp $
#include "DateTime.h"
#include <cstdio>
#include <cstdlib>
// date_pat=re.compile("^|[-:]|\s+");
// unsigned int DateTime::m_spm = 60; // seconds per minute
// Acorn 1/3 time hardcoded for now. This means we keep 24 hours per
// day, and seconds are still the same length. Clocks would still look
// same too.
unsigned int DateTime::m_spm = 20; // seconds per minute
unsigned int DateTime::m_mph = 60; // minutes per hour
unsigned int DateTime::m_hpd = 24; // hours per day
unsigned int DateTime::m_dpm = 28; // days per month
unsigned int DateTime::m_mpy = 12; // months per year
inline void DateTime::set(int t)
{
m_second = t % m_spm;
t /= m_spm;
m_minute = t % m_mph;
t /= m_mph;
m_hour = t % m_hpd;
t /= m_hpd;
m_day = t % m_dpm;
t /= m_dpm;
m_month = t % m_mpy;
t /= m_mpy;
m_year = t;
}
DateTime::DateTime(char * date_time) :
m_second(0), m_minute(0), m_hour(0), m_day(0), m_month(0), m_year(0)
{
// Wouldnt it be better do make date_time a std::string directly ?
std::string date( date_time );
if( date.length() == 19 )
{
m_year = atoi( date.substr( 0, 4 ).c_str() );
m_month = atoi( date.substr( 5, 2 ).c_str() );
m_day = atoi( date.substr( 8, 2 ).c_str() );
m_hour = atoi( date.substr( 11, 2 ).c_str() );
m_minute = atoi( date.substr( 14, 2 ).c_str() );
m_second = atoi( date.substr( 17, 2 ).c_str() );
}
}
DateTime::DateTime(int t)
{
set(t);
}
DateTime::DateTime(int yr, int mn, int da, int hr, int mt, int sc) :
m_second(sc), m_minute(mt), m_hour(hr), m_day(da), m_month(mn), m_year(yr)
{
}
bool DateTime::isValid() const
{
return ( m_second < m_spm ) &&
( m_minute < m_mph ) &&
( m_hour < m_hpd ) &&
( m_day < m_dpm ) &&
( m_month < m_mpy );
}
int DateTime::seconds()
{
return m_second+
m_minute*m_spm+
m_hour*m_spm*m_mph+
(m_day-1)*m_spm*m_mph*m_hpd+
(m_month-1)*m_spm*m_mph*m_hpd*m_dpm+
m_year*m_spm*m_mph*m_hpd*m_dpm*m_mpy;
}
void DateTime::update(int t)
{
set(t);
}
std::string DateTime::asString()
{
//Convert date into string
char buffer[ 100 ];
snprintf( buffer, 100, "%4d-%2d-%2d %2d:%2d:%2d", m_year, m_month, m_day, m_hour, m_minute, m_second );
return std::string( buffer );
}
bool DateTime::operator==( const DateTime & date ) const
{
return ( m_year == date.m_year ) &&
( m_month == date.m_month ) &&
( m_day == date.m_day ) &&
( m_hour == date.m_hour ) &&
( m_minute == date.m_minute ) &&
( m_second == date.m_second );
}
|