aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/time.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-13 19:47:07 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit1fb931fbd950324754536ee0b33ed0b91f68c9a2 (patch)
treea00c388b39ece9d327f9ddff4109f8795f8aa3a8 /engines/glk/time.h
parent7d670ff157fbc3df45f70f9e7a5b537b3d13152b (diff)
downloadscummvm-rg350-1fb931fbd950324754536ee0b33ed0b91f68c9a2.tar.gz
scummvm-rg350-1fb931fbd950324754536ee0b33ed0b91f68c9a2.tar.bz2
scummvm-rg350-1fb931fbd950324754536ee0b33ed0b91f68c9a2.zip
GLK: Changing gargoyle folder to glk
Diffstat (limited to 'engines/glk/time.h')
-rw-r--r--engines/glk/time.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/engines/glk/time.h b/engines/glk/time.h
new file mode 100644
index 0000000000..119fab76e5
--- /dev/null
+++ b/engines/glk/time.h
@@ -0,0 +1,93 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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.
+ *
+ */
+
+#ifndef GLK_TIME_H
+#define GLK_TIME_H
+
+#include "glk/glk_types.h"
+
+namespace Gargoyle {
+
+typedef int64 TimeSeconds;
+
+struct Timestamp {
+ glsi32 high_sec;
+ glui32 low_sec;
+ glsi32 microsec;
+};
+typedef Timestamp glktimeval_t;
+
+struct TimeAndDate {
+ glsi32 year; ///< full (four-digit) year
+ glsi32 month; ///< 1-12, 1 is January
+ glsi32 day; ///< 1-31
+ glsi32 weekday; ///< 0-6, 0 is Sunday
+ glsi32 hour; ///< 0-23
+ glsi32 minute; ///< 0-59
+ glsi32 second; ///< 0-59, maybe 60 during a leap second
+ glsi32 microsec; ///< 0-999999
+private:
+ /**
+ * Get the number of seconds since the start of 1970
+ */
+ int64 getSecondsSince1970() const;
+
+ /**
+ * Convert a time in seconds to the structure
+ */
+ void setTime(const TimeSeconds &ts);
+
+ /**
+ * Get time in seconds from the structure
+ */
+ TimeSeconds getTime() const;
+public:
+ /**
+ * Constructor
+ */
+ TimeAndDate();
+
+ /**
+ * Constructor
+ */
+ TimeAndDate(const TimeSeconds &ts);
+
+ /**
+ * Constructor
+ */
+ TimeAndDate(const Timestamp &t);
+
+ /**
+ * Convert to seconds
+ */
+ operator TimeSeconds() const;
+
+ /**
+ * Convert to time stamp
+ */
+ operator Timestamp() const;
+};
+typedef TimeAndDate glkdate_t;
+
+} // End of namespace Gargoyle
+
+#endif