]> git.lizzy.rs Git - dragonfireclient.git/blob - src/serverobject.cpp
Fix active_object_count and active_object_count_wider not getting updated between...
[dragonfireclient.git] / src / serverobject.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
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 General Public License for more details.
14
15 You should have received a copy of the GNU 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.
18 */
19
20 #include "serverobject.h"
21 #include <fstream>
22 #include "inventory.h"
23
24 ServerActiveObject::ServerActiveObject(ServerEnvironment *env, v3f pos):
25         ActiveObject(0),
26         m_known_by_count(0),
27         m_removed(false),
28         m_pending_deactivation(false),
29         m_static_exists(false),
30         m_static_block(1337,1337,1337),
31         m_env(env),
32         m_base_position(pos)
33 {
34 }
35
36 ServerActiveObject::~ServerActiveObject()
37 {
38 }
39
40 void ServerActiveObject::addedToEnvironment()
41 {
42 }
43
44 ServerActiveObject* ServerActiveObject::create(u8 type,
45                 ServerEnvironment *env, u16 id, v3f pos,
46                 const std::string &data)
47 {
48         // Find factory function
49         core::map<u16, Factory>::Node *n;
50         n = m_types.find(type);
51         if(n == NULL)
52         {
53                 // If factory is not found, just return.
54                 dstream<<"WARNING: ServerActiveObject: No factory for type="
55                                 <<type<<std::endl;
56                 return NULL;
57         }
58
59         Factory f = n->getValue();
60         ServerActiveObject *object = (*f)(env, pos, data);
61         return object;
62 }
63
64 void ServerActiveObject::registerType(u16 type, Factory f)
65 {
66         core::map<u16, Factory>::Node *n;
67         n = m_types.find(type);
68         if(n)
69                 return;
70         m_types.insert(type, f);
71 }
72
73
74