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 
ClientActiveObject(u16 id,Client * client,ClientEnvironment * env)28 ClientActiveObject::ClientActiveObject(u16 id, Client *client,
29 		ClientEnvironment *env):
30 	ActiveObject(id),
31 	m_client(client),
32 	m_env(env)
33 {
34 }
35 
~ClientActiveObject()36 ClientActiveObject::~ClientActiveObject()
37 {
38 	removeFromScene(true);
39 }
40 
create(ActiveObjectType type,Client * client,ClientEnvironment * env)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 
registerType(u16 type,Factory f)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 
67