summaryrefslogtreecommitdiffstats
path: root/kmines/highscores.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitc90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch)
tree6d8391395bce9eaea4ad78958617edb20c6a7573 /kmines/highscores.cpp
downloadtdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz
tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmines/highscores.cpp')
-rw-r--r--kmines/highscores.cpp94
1 files changed, 94 insertions, 0 deletions
diff --git a/kmines/highscores.cpp b/kmines/highscores.cpp
new file mode 100644
index 00000000..c0e40c10
--- /dev/null
+++ b/kmines/highscores.cpp
@@ -0,0 +1,94 @@
+/*
+ * Copyright (c) 2002 Nicolas HADACEK (hadacek@kde.org)
+ *
+ * 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 "highscores.h"
+
+#include <kurl.h>
+#include <klocale.h>
+#include <kapplication.h>
+#include <kconfig.h>
+
+#include "version.h"
+#include "defines.h"
+
+
+namespace KExtHighscore
+{
+
+ExtManager::ExtManager()
+ : Manager(Level::NB_TYPES)
+{
+ setScoreType(MinuteTime);
+ setWWHighscores(KURL( HOMEPAGE ), SHORT_VERSION);
+ setShowStatistics(true);
+ const uint RANGE[16] = { 1, 3120, 3180, 3240, 3300, 3360, 3420, 3480,
+ 3510, 3540, 3550, 3560, 3570, 3580, 3590, 3600 };
+ QMemArray<uint> s;
+ s.duplicate(RANGE, 16);
+ setScoreHistogram(s, ScoreBound);
+
+ Item *item = new Item((uint)0, i18n("Clicks"), Qt::AlignRight);
+ addScoreItem("nb_actions", item);
+}
+
+QString ExtManager::gameTypeLabel(uint gameType, LabelType type) const
+{
+ const Level::Data &data = Level::DATA[gameType];
+ switch (type) {
+ case Icon:
+ case Standard: return data.label;
+ case I18N: return i18n(Level::LABELS[gameType]);
+ case WW: return data.wwLabel;
+ }
+ return QString::null;
+}
+
+void ExtManager::convertLegacy(uint gameType)
+{
+ QString group;
+ switch ((Level::Type)gameType) {
+ case Level::Easy: group = "Easy level"; break;
+ case Level::Normal: group = "Normal level"; break;
+ case Level::Expert: group = "Expert level"; break;
+ case Level::NB_TYPES: Q_ASSERT(false);
+ }
+
+ KConfigGroupSaver cg(kapp->config(), group);
+ QString name = cg.config()->readEntry("Name", QString::null);
+ if ( name.isNull() ) return;
+ if ( name.isEmpty() ) name = i18n("anonymous");
+ uint minutes = cg.config()->readUnsignedNumEntry("Min", 0);
+ uint seconds = cg.config()->readUnsignedNumEntry("Sec", 0);
+ int score = 3600 - (minutes*60 + seconds);
+ if ( score<=0 ) return;
+ Score s(Won);
+ s.setScore(score);
+ s.setData("name", name);
+ submitLegacyScore(s);
+}
+
+bool ExtManager::isStrictlyLess(const Score &s1, const Score &s2) const
+{
+ if ( s1.score()==s2.score() )
+ // when time is same, favour more clicks (it means auto-reveal
+ // didn't help so much):
+ return s1.data("nb_actions").toUInt()<s2.data("nb_actions").toUInt();
+ return Manager::isStrictlyLess(s1, s2);
+}
+
+}