2011-02-20 17:45:14 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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 17:45:14 -05: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-02-20 17:45:14 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-02-20 17:45:14 -05: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-16 21:00:31 -04:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-02-20 17:45:14 -05:00
|
|
|
#include "activeobject.h"
|
2012-12-20 12:19:49 -05:00
|
|
|
#include <map>
|
2011-02-20 17:45:14 -05: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-09 21:15:10 -04:00
|
|
|
class ClientEnvironment;
|
2011-11-13 17:19:48 -05:00
|
|
|
class ITextureSource;
|
|
|
|
class IGameDef;
|
2012-03-04 18:30:55 -05:00
|
|
|
class LocalPlayer;
|
|
|
|
struct ItemStack;
|
2014-11-01 22:47:43 -04:00
|
|
|
class WieldMeshSceneNode;
|
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){}
|
2012-11-04 16:54:50 -05:00
|
|
|
virtual void removeFromScene(bool permanent){}
|
2011-02-20 17:45:14 -05: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 17:47:14 -04:00
|
|
|
virtual core::aabbox3d<f32>* getSelectionBox(){return NULL;}
|
2014-04-15 13:49:32 -04:00
|
|
|
virtual bool getCollisionBox(aabb3f *toset){return false;}
|
2013-06-14 08:04:46 -04:00
|
|
|
virtual bool collideWithObjects(){return false;}
|
2011-04-07 17:47:14 -04:00
|
|
|
virtual v3f getPosition(){return v3f(0,0,0);}
|
2014-11-01 22:47:43 -04:00
|
|
|
virtual scene::ISceneNode *getSceneNode(){return NULL;}
|
2012-10-28 11:07:11 -04:00
|
|
|
virtual scene::IMeshSceneNode *getMeshSceneNode(){return NULL;}
|
|
|
|
virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode(){return NULL;}
|
2014-11-01 22:47:43 -04:00
|
|
|
virtual WieldMeshSceneNode *getWieldMeshSceneNode(){return NULL;}
|
2012-10-28 11:07:11 -04:00
|
|
|
virtual scene::IBillboardSceneNode *getSpriteSceneNode(){return NULL;}
|
2014-07-06 07:07:23 -04:00
|
|
|
virtual bool isPlayer() const {return false;}
|
|
|
|
virtual bool isLocalPlayer() const {return false;}
|
2012-11-12 09:35:10 -05:00
|
|
|
virtual void setAttachments(){}
|
2011-10-14 19:28:57 -04:00
|
|
|
virtual bool doShowSelectionBox(){return true;}
|
2014-01-26 05:40:21 -05:00
|
|
|
virtual void updateCameraOffset(v3s16 camera_offset){};
|
2014-07-06 07:07:23 -04:00
|
|
|
|
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){}
|
2014-07-06 07:07:23 -04:00
|
|
|
|
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 "";}
|
2012-03-09 13:28:55 -05:00
|
|
|
virtual std::string debugInfoText() {return "";}
|
2014-07-06 07:07:23 -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){}
|
2014-07-06 07:07:23 -04:00
|
|
|
|
2011-02-21 09:10:36 -05:00
|
|
|
// Create a certain type of ClientActiveObject
|
2015-02-17 05:37:55 -05:00
|
|
|
static ClientActiveObject* create(ActiveObjectType type, IGameDef *gamedef,
|
2011-12-01 11:23:58 -05:00
|
|
|
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
|
2012-03-04 18:30:55 -05:00
|
|
|
virtual bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
|
|
|
|
float time_from_last_punch=1000000)
|
2011-10-15 05:17:21 -04:00
|
|
|
{ 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
|
2012-12-20 12:19:49 -05:00
|
|
|
static std::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;
|
|
|
|
}
|
|
|
|
|
2012-12-20 12:19:49 -05:00
|
|
|
bool operator < (const DistanceSortedActiveObject &other) const
|
2011-04-07 17:47:14 -04:00
|
|
|
{
|
|
|
|
return d < other.d;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
#endif
|