3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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.
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.
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.
20 #include "content_cso.h"
21 #include <IBillboardSceneNode.h>
23 #include "environment.h"
29 static void setBillboardTextureMatrix(scene::IBillboardSceneNode *bill,
30 float txs, float tys, int col, int row)
32 video::SMaterial& material = bill->getMaterial(0);
33 core::matrix4& matrix = material.getTextureMatrix(0);
34 matrix.setTextureTranslate(txs*col, tys*row);
35 matrix.setTextureScale(txs, tys);
39 class SmokePuffCSO: public ClientSimpleObject
42 scene::IBillboardSceneNode *m_spritenode;
44 SmokePuffCSO(scene::ISceneManager *smgr,
45 ClientEnvironment *env, v3f pos, v2f size):
49 infostream<<"SmokePuffCSO: constructing"<<std::endl;
50 m_spritenode = smgr->addBillboardSceneNode(
51 NULL, v2f(1,1), pos, -1);
52 m_spritenode->setMaterialTexture(0,
53 env->getGameDef()->tsrc()->getTextureRaw("smoke_puff.png"));
54 m_spritenode->setMaterialFlag(video::EMF_LIGHTING, false);
55 m_spritenode->setMaterialFlag(video::EMF_BILINEAR_FILTER, false);
56 //m_spritenode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF);
57 m_spritenode->setMaterialType(video::EMT_TRANSPARENT_ALPHA_CHANNEL);
58 m_spritenode->setMaterialFlag(video::EMF_FOG_ENABLE, true);
59 m_spritenode->setColor(video::SColor(255,0,0,0));
60 m_spritenode->setVisible(true);
61 m_spritenode->setSize(size);
62 /* Update brightness */
65 MapNode n = env->getMap().getNode(floatToInt(pos, BS));
66 light = decode_light(n.getLightBlend(env->getDayNightRatio(),
67 env->getGameDef()->ndef()));
69 catch(InvalidPositionException &e){}
70 video::SColor color(255,light,light,light);
71 m_spritenode->setColor(color);
73 virtual ~SmokePuffCSO()
75 infostream<<"SmokePuffCSO: destructing"<<std::endl;
76 m_spritenode->remove();
78 void step(float dtime)
82 m_to_be_removed = true;
87 ClientSimpleObject* createSmokePuff(scene::ISceneManager *smgr,
88 ClientEnvironment *env, v3f pos, v2f size)
90 return new SmokePuffCSO(smgr, env, pos, size);