3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "nodetimer.h"
22 #include "util/serialize.h"
23 #include "constants.h" // MAP_BLOCKSIZE
29 void NodeTimer::serialize(std::ostream &os) const
31 writeF1000(os, timeout);
32 writeF1000(os, elapsed);
35 void NodeTimer::deSerialize(std::istream &is)
37 timeout = readF1000(is);
38 elapsed = readF1000(is);
45 void NodeTimerList::serialize(std::ostream &os, u8 map_format_version) const
47 if(map_format_version == 24){
48 // Version 0 is a placeholder for "nothing to see here; go away."
49 if(m_data.size() == 0){
50 writeU8(os, 0); // version
53 writeU8(os, 1); // version
54 writeU16(os, m_data.size());
57 if(map_format_version >= 25){
59 writeU16(os, m_data.size());
62 for(std::map<v3s16, NodeTimer>::const_iterator
64 i != m_data.end(); i++){
66 NodeTimer t = i->second;
68 u16 p16 = p.Z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + p.Y*MAP_BLOCKSIZE + p.X;
74 void NodeTimerList::deSerialize(std::istream &is, u8 map_format_version)
78 if(map_format_version == 24){
79 u8 timer_version = readU8(is);
80 if(timer_version == 0)
82 if(timer_version != 1)
83 throw SerializationError("unsupported NodeTimerList version");
86 if(map_format_version >= 25){
87 u8 timer_data_len = readU8(is);
88 if(timer_data_len != 2+4+4)
89 throw SerializationError("unsupported NodeTimer data length");
92 u16 count = readU16(is);
94 for(u16 i=0; i<count; i++)
96 u16 p16 = readU16(is);
99 p.Z += p16 / MAP_BLOCKSIZE / MAP_BLOCKSIZE;
100 p16 -= p.Z * MAP_BLOCKSIZE * MAP_BLOCKSIZE;
101 p.Y += p16 / MAP_BLOCKSIZE;
102 p16 -= p.Y * MAP_BLOCKSIZE;
110 infostream<<"WARNING: NodeTimerList::deSerialize(): "
111 <<"invalid data at position"
112 <<"("<<p.X<<","<<p.Y<<","<<p.Z<<"): Ignoring."
117 if(m_data.find(p) != m_data.end())
119 infostream<<"WARNING: NodeTimerList::deSerialize(): "
120 <<"already set data at position"
121 <<"("<<p.X<<","<<p.Y<<","<<p.Z<<"): Ignoring."
126 m_data.insert(std::make_pair(p, t));
130 std::map<v3s16, NodeTimer> NodeTimerList::step(float dtime)
132 std::map<v3s16, NodeTimer> elapsed_timers;
134 for(std::map<v3s16, NodeTimer>::iterator
136 i != m_data.end(); i++){
138 NodeTimer t = i->second;
140 if(t.elapsed >= t.timeout)
141 elapsed_timers.insert(std::make_pair(p, t));
145 // Delete elapsed timers
146 for(std::map<v3s16, NodeTimer>::const_iterator
147 i = elapsed_timers.begin();
148 i != elapsed_timers.end(); i++){
152 return elapsed_timers;