aboutsummaryrefslogtreecommitdiff
path: root/common/updates.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-03-31 09:31:57 +0200
committerEugene Sandulenko2016-03-31 09:31:57 +0200
commit08e7f0ab9179691fe869bab8fee5585364c846c7 (patch)
tree6df2d0906df9c9ca04ed03e76936ceaef82d32b5 /common/updates.cpp
parent556b7ffa29fc7f98904fce4e2fdeb07a5369558d (diff)
downloadscummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.tar.gz
scummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.tar.bz2
scummvm-rg350-08e7f0ab9179691fe869bab8fee5585364c846c7.zip
UPDATES: Got rid of hardcoded update intervals list
Diffstat (limited to 'common/updates.cpp')
-rw-r--r--common/updates.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/common/updates.cpp b/common/updates.cpp
new file mode 100644
index 0000000000..0318864881
--- /dev/null
+++ b/common/updates.cpp
@@ -0,0 +1,56 @@
+/* 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.
+ *
+ */
+
+#include "common/system.h"
+#include "common/updates.h"
+#include "common/translation.h"
+
+namespace Common {
+
+static const int updateIntervals[] = {
+ UpdateManager::kUpdateIntervalNotSupported,
+ UpdateManager::kUpdateIntervalOneDay,
+ UpdateManager::kUpdateIntervalOneWeek,
+ UpdateManager::kUpdateIntervalOneMonth,
+ -1
+};
+
+const int *UpdateManager::getUpdateIntervals() {
+ return updateIntervals;
+}
+
+const char *UpdateManager::updateIntervalToString(int interval) {
+ switch (interval) {
+ case kUpdateIntervalNotSupported:
+ return _("Never");
+ case kUpdateIntervalOneDay:
+ return _("Daily");
+ case kUpdateIntervalOneWeek:
+ return _("Weekly");
+ case kUpdateIntervalOneMonth:
+ return _("Monthly");
+ default:
+ return _("<Bad value>");
+ }
+}
+
+} // End of namespace Common