]> git.lizzy.rs Git - dragonfireclient.git/blob - src/client/clientobject.cpp
Merge branch 'master' of https://github.com/minetest/minetest
[dragonfireclient.git] / src / client / clientobject.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 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.
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 Lesser General Public License for more details.
14
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.
18 */
19
20 #include "clientobject.h"
21 #include "debug.h"
22 #include "porting.h"
23
24 /*
25         ClientActiveObject
26 */
27
28 ClientActiveObject::ClientActiveObject(u16 id, Client *client,
29                 ClientEnvironment *env):
30         ActiveObject(id),
31         m_client(client),
32         m_env(env)
33 {
34 }
35
36 ClientActiveObject::~ClientActiveObject()
37 {
38         removeFromScene(true);
39 }
40
41 ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
42                 Client *client, ClientEnvironment *env)
43 {
44         // Find factory function
45         auto n = m_types.find(type);
46         if (n == m_types.end()) {
47                 // If factory is not found, just return.
48                 warningstream << "ClientActiveObject: No factory for type="
49                                 << (int)type << std::endl;
50                 return NULL;
51         }
52
53         Factory f = n->second;
54         ClientActiveObject *object = (*f)(client, env);
55         return object;
56 }
57
58 void ClientActiveObject::registerType(u16 type, Factory f)
59 {
60         auto n = m_types.find(type);
61         if (n != m_types.end())
62                 return;
63         m_types[type] = f;
64 }
65
66