mirror of
https://github.com/minetest/minetest.git
synced 2024-11-11 02:03:46 +01:00
clientobject.h: Fix code-style
This commit is contained in:
parent
9543b84970
commit
96762af3ce
@ -39,54 +39,53 @@ public:
|
|||||||
ClientActiveObject(u16 id, Client *client, ClientEnvironment *env);
|
ClientActiveObject(u16 id, Client *client, ClientEnvironment *env);
|
||||||
virtual ~ClientActiveObject();
|
virtual ~ClientActiveObject();
|
||||||
|
|
||||||
virtual void addToScene(ITextureSource *tsrc) {};
|
virtual void addToScene(ITextureSource *tsrc) {}
|
||||||
virtual void removeFromScene(bool permanent) {}
|
virtual void removeFromScene(bool permanent) {}
|
||||||
// 0 <= light_at_pos <= LIGHT_SUN
|
// 0 <= light_at_pos <= LIGHT_SUN
|
||||||
virtual void updateLight(u8 light_at_pos){}
|
virtual void updateLight(u8 light_at_pos) {}
|
||||||
virtual void updateLightNoCheck(u8 light_at_pos){}
|
virtual void updateLightNoCheck(u8 light_at_pos) {}
|
||||||
virtual v3s16 getLightPosition(){return v3s16(0,0,0);}
|
virtual v3s16 getLightPosition() { return v3s16(0, 0, 0); }
|
||||||
virtual bool getCollisionBox(aabb3f *toset) const { return false; }
|
virtual bool getCollisionBox(aabb3f *toset) const { return false; }
|
||||||
virtual bool getSelectionBox(aabb3f *toset) const { return false; }
|
virtual bool getSelectionBox(aabb3f *toset) const { return false; }
|
||||||
virtual bool collideWithObjects() const { return false; }
|
virtual bool collideWithObjects() const { return false; }
|
||||||
virtual const v3f getPosition() const { return v3f(0.0f); }
|
virtual const v3f getPosition() const { return v3f(0.0f); }
|
||||||
virtual scene::ISceneNode *getSceneNode() { return NULL; }
|
virtual scene::ISceneNode *getSceneNode() { return NULL; }
|
||||||
virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode() { return NULL; }
|
virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode() { return NULL; }
|
||||||
virtual bool isLocalPlayer() const {return false;}
|
virtual bool isLocalPlayer() const { return false; }
|
||||||
|
|
||||||
virtual ClientActiveObject *getParent() const { return nullptr; };
|
virtual ClientActiveObject *getParent() const { return nullptr; };
|
||||||
virtual const std::unordered_set<int> &getAttachmentChildIds() const
|
virtual const std::unordered_set<int> &getAttachmentChildIds() const
|
||||||
{ static std::unordered_set<int> rv; return rv; }
|
{ static std::unordered_set<int> rv; return rv; }
|
||||||
virtual void updateAttachments() {};
|
virtual void updateAttachments() {};
|
||||||
|
|
||||||
virtual bool doShowSelectionBox(){return true;}
|
virtual bool doShowSelectionBox() { return true; }
|
||||||
|
|
||||||
// Step object in time
|
// Step object in time
|
||||||
virtual void step(float dtime, ClientEnvironment *env){}
|
virtual void step(float dtime, ClientEnvironment *env) {}
|
||||||
|
|
||||||
// Process a message sent by the server side object
|
// Process a message sent by the server side object
|
||||||
virtual void processMessage(const std::string &data){}
|
virtual void processMessage(const std::string &data) {}
|
||||||
|
|
||||||
virtual std::string infoText() {return "";}
|
virtual std::string infoText() { return ""; }
|
||||||
virtual std::string debugInfoText() {return "";}
|
virtual std::string debugInfoText() { return ""; }
|
||||||
|
|
||||||
/*
|
/*
|
||||||
This takes the return value of
|
This takes the return value of
|
||||||
ServerActiveObject::getClientInitializationData
|
ServerActiveObject::getClientInitializationData
|
||||||
*/
|
*/
|
||||||
virtual void initialize(const std::string &data){}
|
virtual void initialize(const std::string &data) {}
|
||||||
|
|
||||||
// Create a certain type of ClientActiveObject
|
// Create a certain type of ClientActiveObject
|
||||||
static ClientActiveObject* create(ActiveObjectType type, Client *client,
|
static ClientActiveObject *create(ActiveObjectType type, Client *client,
|
||||||
ClientEnvironment *env);
|
ClientEnvironment *env);
|
||||||
|
|
||||||
// If returns true, punch will not be sent to the server
|
// If returns true, punch will not be sent to the server
|
||||||
virtual bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
|
virtual bool directReportPunch(v3f dir, const ItemStack *punchitem = nullptr,
|
||||||
float time_from_last_punch=1000000)
|
float time_from_last_punch = 1000000) { return false; }
|
||||||
{ return false; }
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Used for creating objects based on type
|
// Used for creating objects based on type
|
||||||
typedef ClientActiveObject* (*Factory)(Client *client, ClientEnvironment *env);
|
typedef ClientActiveObject *(*Factory)(Client *client, ClientEnvironment *env);
|
||||||
static void registerType(u16 type, Factory f);
|
static void registerType(u16 type, Factory f);
|
||||||
Client *m_client;
|
Client *m_client;
|
||||||
ClientEnvironment *m_env;
|
ClientEnvironment *m_env;
|
||||||
|
Loading…
Reference in New Issue
Block a user