Translated using Weblate (German)
[oweals/minetest.git] / src / nodetimer.h
index deb77f10ebd8f32e3aea67ac97df2db940278de5..9fb56edecc33a711fe364450bc9560f271c9ed26 100644 (file)
@@ -1,6 +1,6 @@
 /*
-Minetest-c55
-Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
+Minetest
+Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef NODETIMER_HEADER
 #define NODETIMER_HEADER
 
-#include "irrlichttypes_bloated.h"
+#include "irr_v3d.h"
 #include <iostream>
 #include <map>
 
@@ -35,15 +35,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 class NodeTimer
 {
 public:
-       NodeTimer(): duration(0.), elapsed(0.) {}
-       NodeTimer(f32 duration_, f32 elapsed_):
-               duration(duration_), elapsed(elapsed_) {}
+       NodeTimer(): timeout(0.), elapsed(0.) {}
+       NodeTimer(f32 timeout_, f32 elapsed_):
+               timeout(timeout_), elapsed(elapsed_) {}
        ~NodeTimer() {}
        
        void serialize(std::ostream &os) const;
        void deSerialize(std::istream &is);
        
-       f32 duration;
+       f32 timeout;
        f32 elapsed;
 };
 
@@ -57,8 +57,8 @@ public:
        NodeTimerList() {}
        ~NodeTimerList() {}
        
-       void serialize(std::ostream &os) const;
-       void deSerialize(std::istream &is);
+       void serialize(std::ostream &os, u8 map_format_version) const;
+       void deSerialize(std::istream &is, u8 map_format_version);
        
        // Get timer
        NodeTimer get(v3s16 p){
@@ -81,7 +81,7 @@ public:
        }
 
        // A step in time. Returns map of elapsed timers.
-       std::map<v3s16, f32> step(float dtime);
+       std::map<v3s16, NodeTimer> step(float dtime);
 
 private:
        std::map<v3s16, NodeTimer> m_data;