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
|
// 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.h,v 1.16 2006-10-26 00:48:06 alriddoch Exp $
#ifndef COMMON_DATE_TIME_H
#define COMMON_DATE_TIME_H
#include <string>
#include <iostream>
class DateTime {
protected:
unsigned int m_second;
unsigned int m_minute;
unsigned int m_hour;
unsigned int m_day;
unsigned int m_month;
unsigned int m_year;
static unsigned int m_spm; // seconds per minute
static unsigned int m_mph; // minutes per hour
static unsigned int m_hpd; // hours per day
static unsigned int m_dpm; // days per month
static unsigned int m_mpy; // months per year
void set(int);
public:
explicit DateTime(char *);
explicit DateTime(int);
DateTime(int, int, int, int, int, int);
bool isValid() const;
static void define(unsigned int spm, unsigned int mph, unsigned int hpd,
unsigned int dpm, unsigned int mpy) {
m_spm = spm; m_mph = mph; m_hpd = hpd; m_dpm = dpm; m_mpy = mpy;
}
int seconds();
void update(int);
std::string asString();
int second() const { return m_second; }
int minute() const { return m_minute; }
int hour() const { return m_hour; }
int day() const { return m_day; }
int month() const { return m_month; }
int year() const { return m_year; }
static unsigned int spm() { return m_spm; }
static unsigned int mph() { return m_mph; }
static unsigned int hpd() { return m_hpd; }
static unsigned int dpm() { return m_dpm; }
static unsigned int mpy() { return m_mpy; }
bool operator==( const DateTime & ) const;
};
inline std::ostream & operator<<(std::ostream& s, const DateTime& d) {
return s << d.year() << "-" << d.month() << "-" << d.day() << " "
<< d.hour() << ":" << d.minute() << ":" << d.second();
}
#endif // COMMON_DATE_TIME_H
|