merged the content type extension and delta
[oweals/minetest.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, u16 id, v3f pos):
25         ActiveObject(id),
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 ServerActiveObject* ServerActiveObject::create(u8 type,
41                 ServerEnvironment *env, u16 id, v3f pos,
42                 const std::string &data)
43 {
44         // Find factory function
45         core::map<u16, Factory>::Node *n;
46         n = m_types.find(type);
47         if(n == NULL)
48         {
49                 // If factory is not found, just return.
50                 dstream<<"WARNING: ServerActiveObject: No factory for type="
51                                 <<type<<std::endl;
52                 return NULL;
53         }
54
55         Factory f = n->getValue();
56         ServerActiveObject *object = (*f)(env, id, pos, data);
57         return object;
58 }
59
60 void ServerActiveObject::registerType(u16 type, Factory f)
61 {
62         core::map<u16, Factory>::Node *n;
63         n = m_types.find(type);
64         if(n)
65                 return;
66         m_types.insert(type, f);
67 }
68
69
70