2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Minetest-c55
|
|
|
|
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
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
|
|
|
|
(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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CLIENTOBJECT_HEADER
|
|
|
|
#define CLIENTOBJECT_HEADER
|
|
|
|
|
|
|
|
#include "common_irrlicht.h"
|
|
|
|
#include "activeobject.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Some planning
|
|
|
|
-------------
|
|
|
|
|
|
|
|
* Client receives a network packet with information of added objects
|
|
|
|
in it
|
|
|
|
* Client supplies the information to its ClientEnvironment
|
|
|
|
* The environment adds the specified objects to itself
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-04-09 21:15:10 -04:00
|
|
|
class ClientEnvironment;
|
2011-11-13 17:19:48 -05:00
|
|
|
class ITextureSource;
|
|
|
|
class IGameDef;
|
2011-04-09 21:15:10 -04:00
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
class ClientActiveObject : public ActiveObject
|
|
|
|
{
|
|
|
|
public:
|
2011-12-01 11:23:58 -05:00
|
|
|
ClientActiveObject(u16 id, IGameDef *gamedef, ClientEnvironment *env);
|
2011-02-20 17:45:14 -05:00
|
|
|
virtual ~ClientActiveObject();
|
|
|
|
|
2011-12-01 11:23:58 -05:00
|
|
|
virtual void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
|
|
|
|
IrrlichtDevice *irr){}
|
2011-02-20 17:45:14 -05:00
|
|
|
virtual void removeFromScene(){}
|
|
|
|
// 0 <= light_at_pos <= LIGHT_SUN
|
|
|
|
virtual void updateLight(u8 light_at_pos){}
|
|
|
|
virtual v3s16 getLightPosition(){return v3s16(0,0,0);}
|
2011-04-07 17:47:14 -04:00
|
|
|
virtual core::aabbox3d<f32>* getSelectionBox(){return NULL;}
|
|
|
|
virtual core::aabbox3d<f32>* getCollisionBox(){return NULL;}
|
|
|
|
virtual v3f getPosition(){return v3f(0,0,0);}
|
2011-10-14 19:28:57 -04:00
|
|
|
virtual bool doShowSelectionBox(){return true;}
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
// Step object in time
|
2011-04-09 21:15:10 -04:00
|
|
|
virtual void step(float dtime, ClientEnvironment *env){}
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
// Process a message sent by the server side object
|
|
|
|
virtual void processMessage(const std::string &data){}
|
|
|
|
|
2011-04-09 21:15:10 -04:00
|
|
|
virtual std::string infoText() {return "";}
|
2011-10-15 05:17:21 -04:00
|
|
|
|
2011-02-21 09:10:36 -05:00
|
|
|
/*
|
2011-04-07 17:47:14 -04:00
|
|
|
This takes the return value of
|
|
|
|
ServerActiveObject::getClientInitializationData
|
2011-02-21 09:10:36 -05:00
|
|
|
*/
|
|
|
|
virtual void initialize(const std::string &data){}
|
|
|
|
|
|
|
|
// Create a certain type of ClientActiveObject
|
2011-12-01 11:23:58 -05:00
|
|
|
static ClientActiveObject* create(u8 type, IGameDef *gamedef,
|
|
|
|
ClientEnvironment *env);
|
2011-02-20 17:45:14 -05:00
|
|
|
|
2011-10-15 05:17:21 -04:00
|
|
|
// If returns true, punch will not be sent to the server
|
|
|
|
virtual bool directReportPunch(const std::string &toolname, v3f dir)
|
|
|
|
{ return false; }
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
protected:
|
2011-04-09 21:15:10 -04:00
|
|
|
// Used for creating objects based on type
|
2011-12-01 11:23:58 -05:00
|
|
|
typedef ClientActiveObject* (*Factory)(IGameDef *gamedef, ClientEnvironment *env);
|
2011-04-07 17:47:14 -04:00
|
|
|
static void registerType(u16 type, Factory f);
|
2011-11-13 17:19:48 -05:00
|
|
|
IGameDef *m_gamedef;
|
2011-12-01 11:23:58 -05:00
|
|
|
ClientEnvironment *m_env;
|
2011-04-07 17:47:14 -04:00
|
|
|
private:
|
2011-04-09 21:15:10 -04:00
|
|
|
// Used for creating objects based on type
|
2011-04-07 17:47:14 -04:00
|
|
|
static core::map<u16, Factory> m_types;
|
2011-02-20 17:45:14 -05:00
|
|
|
};
|
|
|
|
|
2011-04-07 17:47:14 -04:00
|
|
|
struct DistanceSortedActiveObject
|
|
|
|
{
|
|
|
|
ClientActiveObject *obj;
|
|
|
|
f32 d;
|
|
|
|
|
|
|
|
DistanceSortedActiveObject(ClientActiveObject *a_obj, f32 a_d)
|
|
|
|
{
|
|
|
|
obj = a_obj;
|
|
|
|
d = a_d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator < (DistanceSortedActiveObject &other)
|
|
|
|
{
|
|
|
|
return d < other.d;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
#endif
|
|
|
|
|