X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fclientobject.cpp;h=f4b69201ba9ad6fc38240995d7e0d388fdcf951f;hb=8a99c8c94a40640c7c337278277f5c027e96f3cb;hp=46db389cdc53e696200e18ca66a304adddac971a;hpb=c57637b4c39319e0c0d5d80d0ae2884aec66d691;p=dragonfireclient.git diff --git a/src/clientobject.cpp b/src/clientobject.cpp index 46db389cd..f4b69201b 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. */ @@ -20,150 +20,47 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "clientobject.h" #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() +ClientActiveObject::~ClientActiveObject() { - if(m_node == NULL) - return; - - m_node->remove(); - m_node = NULL; + removeFromScene(true); } -void TestCAO::updateLight(u8 light_at_pos) +ClientActiveObject* ClientActiveObject::create(ActiveObjectType type, + Client *client, ClientEnvironment *env) { -} + // Find factory function + auto n = m_types.find(type); + if (n == m_types.end()) { + // If factory is not found, just return. + warningstream << "ClientActiveObject: No factory for type=" + << (int)type << std::endl; + return NULL; + } -v3s16 TestCAO::getLightPosition() -{ - return floatToInt(m_position, BS); + Factory f = n->second; + ClientActiveObject *object = (*f)(client, env); + return object; } -void TestCAO::updateNodePos() +void ClientActiveObject::registerType(u16 type, Factory f) { - if(m_node == NULL) + auto 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; }