2011-02-20 23:45:14 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
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
|
2011-02-20 23:45:14 +01:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-02-20 23:45:14 +01:00
|
|
|
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
|
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-02-20 23:45:14 +01:00
|
|
|
#include "activeobject.h"
|
2012-12-20 18:19:49 +01:00
|
|
|
#include <map>
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
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-10 03:15:10 +02:00
|
|
|
class ClientEnvironment;
|
2011-11-13 23:19:48 +01:00
|
|
|
class ITextureSource;
|
|
|
|
class IGameDef;
|
2012-03-05 00:30:55 +01:00
|
|
|
class LocalPlayer;
|
|
|
|
struct ItemStack;
|
2011-04-10 03:15:10 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
class ClientActiveObject : public ActiveObject
|
|
|
|
{
|
|
|
|
public:
|
2011-12-01 17:23:58 +01:00
|
|
|
ClientActiveObject(u16 id, IGameDef *gamedef, ClientEnvironment *env);
|
2011-02-20 23:45:14 +01:00
|
|
|
virtual ~ClientActiveObject();
|
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
virtual void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
|
|
|
|
IrrlichtDevice *irr){}
|
2012-11-04 22:54:50 +01:00
|
|
|
virtual void removeFromScene(bool permanent){}
|
2011-02-20 23:45:14 +01:00
|
|
|
// 0 <= light_at_pos <= LIGHT_SUN
|
|
|
|
virtual void updateLight(u8 light_at_pos){}
|
|
|
|
virtual v3s16 getLightPosition(){return v3s16(0,0,0);}
|
2011-04-07 23:47:14 +02:00
|
|
|
virtual core::aabbox3d<f32>* getSelectionBox(){return NULL;}
|
|
|
|
virtual core::aabbox3d<f32>* getCollisionBox(){return NULL;}
|
2013-06-14 14:04:46 +02:00
|
|
|
virtual bool collideWithObjects(){return false;}
|
2011-04-07 23:47:14 +02:00
|
|
|
virtual v3f getPosition(){return v3f(0,0,0);}
|
2012-10-28 16:07:11 +01:00
|
|
|
virtual scene::IMeshSceneNode *getMeshSceneNode(){return NULL;}
|
|
|
|
virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode(){return NULL;}
|
|
|
|
virtual scene::IBillboardSceneNode *getSpriteSceneNode(){return NULL;}
|
|
|
|
virtual bool isPlayer(){return false;}
|
|
|
|
virtual bool isLocalPlayer(){return false;}
|
2012-11-12 15:35:10 +01:00
|
|
|
virtual void setAttachments(){}
|
2011-10-15 01:28:57 +02:00
|
|
|
virtual bool doShowSelectionBox(){return true;}
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
// Step object in time
|
2011-04-10 03:15:10 +02:00
|
|
|
virtual void step(float dtime, ClientEnvironment *env){}
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
// Process a message sent by the server side object
|
|
|
|
virtual void processMessage(const std::string &data){}
|
|
|
|
|
2011-04-10 03:15:10 +02:00
|
|
|
virtual std::string infoText() {return "";}
|
2012-03-09 19:28:55 +01:00
|
|
|
virtual std::string debugInfoText() {return "";}
|
2011-10-15 11:17:21 +02:00
|
|
|
|
2011-02-21 15:10:36 +01:00
|
|
|
/*
|
2011-04-07 23:47:14 +02:00
|
|
|
This takes the return value of
|
|
|
|
ServerActiveObject::getClientInitializationData
|
2011-02-21 15:10:36 +01:00
|
|
|
*/
|
|
|
|
virtual void initialize(const std::string &data){}
|
|
|
|
|
|
|
|
// Create a certain type of ClientActiveObject
|
2011-12-01 17:23:58 +01:00
|
|
|
static ClientActiveObject* create(u8 type, IGameDef *gamedef,
|
|
|
|
ClientEnvironment *env);
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2011-10-15 11:17:21 +02:00
|
|
|
// If returns true, punch will not be sent to the server
|
2012-03-05 00:30:55 +01:00
|
|
|
virtual bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
|
|
|
|
float time_from_last_punch=1000000)
|
2011-10-15 11:17:21 +02:00
|
|
|
{ return false; }
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
protected:
|
2011-04-10 03:15:10 +02:00
|
|
|
// Used for creating objects based on type
|
2011-12-01 17:23:58 +01:00
|
|
|
typedef ClientActiveObject* (*Factory)(IGameDef *gamedef, ClientEnvironment *env);
|
2011-04-07 23:47:14 +02:00
|
|
|
static void registerType(u16 type, Factory f);
|
2011-11-13 23:19:48 +01:00
|
|
|
IGameDef *m_gamedef;
|
2011-12-01 17:23:58 +01:00
|
|
|
ClientEnvironment *m_env;
|
2011-04-07 23:47:14 +02:00
|
|
|
private:
|
2011-04-10 03:15:10 +02:00
|
|
|
// Used for creating objects based on type
|
2012-12-20 18:19:49 +01:00
|
|
|
static std::map<u16, Factory> m_types;
|
2011-02-20 23:45:14 +01:00
|
|
|
};
|
|
|
|
|
2011-04-07 23:47:14 +02:00
|
|
|
struct DistanceSortedActiveObject
|
|
|
|
{
|
|
|
|
ClientActiveObject *obj;
|
|
|
|
f32 d;
|
|
|
|
|
|
|
|
DistanceSortedActiveObject(ClientActiveObject *a_obj, f32 a_d)
|
|
|
|
{
|
|
|
|
obj = a_obj;
|
|
|
|
d = a_d;
|
|
|
|
}
|
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
bool operator < (const DistanceSortedActiveObject &other) const
|
2011-04-07 23:47:14 +02:00
|
|
|
{
|
|
|
|
return d < other.d;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
#endif
|
|
|
|
|