summaryrefslogtreecommitdiffstats
path: root/src/utils/speedconv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/speedconv.cpp')
-rw-r--r--src/utils/speedconv.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/utils/speedconv.cpp b/src/utils/speedconv.cpp
new file mode 100644
index 0000000..14d328f
--- /dev/null
+++ b/src/utils/speedconv.cpp
@@ -0,0 +1,31 @@
+/*
+ * The Mana Server
+ * Copyright (C) 2004-2010 The Mana World Development Team
+ *
+ * This file is part of The Mana Server.
+ *
+ * The Mana Server 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
+ * any later version.
+ *
+ * The Mana Server 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 The Mana Server. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "utils/speedconv.hpp"
+
+double utils::tpsToSpeed(double tps)
+{
+ return (32000 / (tps * DEFAULT_TILE_LENGTH));
+}
+
+double utils::speedToTps(double speed)
+{
+ return (32000 / (speed * DEFAULT_TILE_LENGTH));
+}