X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fclientobject.cpp;h=37f693c5e1310d0b4306fa9ff720b684db1e9adf;hb=b97c9c65777b0389f4cc9a6e3257506f29761e03;hp=61ceefbe37849c67507187b72a2a2c023a775dc0;hpb=e4f7f97e6c79cda72dec7cd6fea5b85328b75894;p=oweals%2Fminetest.git diff --git a/src/clientobject.cpp b/src/clientobject.cpp index 61ceefbe3..37f693c5e 100644 --- a/src/clientobject.cpp +++ b/src/clientobject.cpp @@ -1,18 +1,18 @@ /* -Minetest-c55 -Copyright (C) 2010-2011 celeron55, Perttu Ahola +Minetest +Copyright (C) 2010-2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Lesser General Public License for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ @@ -21,143 +21,50 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "debug.h" #include "porting.h" #include "constants.h" -#include "utility.h" - -ClientActiveObject::ClientActiveObject(u16 id): - ActiveObject(id) -{ -} - -ClientActiveObject::~ClientActiveObject() -{ - removeFromScene(); -} - -ClientActiveObject* ClientActiveObject::create(u8 type) -{ - if(type == ACTIVEOBJECT_TYPE_INVALID) - { - dstream<<"ClientActiveObject::create(): passed " - <<"ACTIVEOBJECT_TYPE_INVALID"<getMaterial().setFlag(video::EMF_BILINEAR_FILTER, false); - buf->getMaterial().setFlag(video::EMF_FOG_ENABLE, true); - buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL; - // Add to mesh - mesh->addMeshBuffer(buf); - buf->drop(); - m_node = smgr->addMeshSceneNode(mesh, NULL); - mesh->drop(); - updateNodePos(); -} - -void TestCAO::removeFromScene() -{ - if(m_node == NULL) - return; - - m_node->remove(); - m_node = NULL; -} - -void TestCAO::updateLight(u8 light_at_pos) -{ -} + // If factory is not found, just return. + dstream<<"WARNING: ClientActiveObject: No factory for type=" + <<(int)type<second; + ClientActiveObject *object = (*f)(gamedef, env); + return object; } -void TestCAO::updateNodePos() +void ClientActiveObject::registerType(u16 type, Factory f) { - if(m_node == NULL) + std::map::iterator n; + n = m_types.find(type); + if(n != m_types.end()) return; - - m_node->setPosition(m_position); - //m_node->setRotation(v3f(0, 45, 0)); -} - -void TestCAO::step(float dtime) -{ - if(m_node) - { - v3f rot = m_node->getRotation(); - //dstream<<"dtime="<>cmd; - if(cmd == 0) - { - v3f newpos; - is>>newpos.X; - is>>newpos.Y; - is>>newpos.Z; - m_position = newpos; - updateNodePos(); - } + m_types[type] = f; }