]> git.lizzy.rs Git - dragonfireclient.git/blob - src/client/clientobject.h
Network: Send IEEE floats (#7768)
[dragonfireclient.git] / src / client / clientobject.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
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.
9
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.
14
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.
18 */
19
20 #pragma once
21
22 #include "irrlichttypes_extrabloated.h"
23 #include "activeobject.h"
24 #include <unordered_map>
25
26 class ClientEnvironment;
27 class ITextureSource;
28 class Client;
29 class IGameDef;
30 class LocalPlayer;
31 struct ItemStack;
32 class WieldMeshSceneNode;
33
34 class ClientActiveObject : public ActiveObject
35 {
36 public:
37         ClientActiveObject(u16 id, Client *client, ClientEnvironment *env);
38         virtual ~ClientActiveObject();
39
40         virtual void addToScene(ITextureSource *tsrc) {};
41         virtual void removeFromScene(bool permanent) {}
42         // 0 <= light_at_pos <= LIGHT_SUN
43         virtual void updateLight(u8 light_at_pos){}
44         virtual void updateLightNoCheck(u8 light_at_pos){}
45         virtual v3s16 getLightPosition(){return v3s16(0,0,0);}
46         virtual bool getCollisionBox(aabb3f *toset) const { return false; }
47         virtual bool getSelectionBox(aabb3f *toset) const { return false; }
48         virtual bool collideWithObjects() const { return false; }
49         virtual v3f getPosition(){ return v3f(0,0,0); }
50         virtual float getYaw() const { return 0; }
51         virtual scene::ISceneNode *getSceneNode() { return NULL; }
52         virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode() { return NULL; }
53         virtual bool isLocalPlayer() const {return false;}
54         virtual ClientActiveObject *getParent() const { return nullptr; };
55         virtual void setAttachments() {}
56         virtual bool doShowSelectionBox(){return true;}
57
58         // Step object in time
59         virtual void step(float dtime, ClientEnvironment *env){}
60
61         // Process a message sent by the server side object
62         virtual void processMessage(const std::string &data){}
63
64         virtual std::string infoText() {return "";}
65         virtual std::string debugInfoText() {return "";}
66
67         /*
68                 This takes the return value of
69                 ServerActiveObject::getClientInitializationData
70         */
71         virtual void initialize(const std::string &data){}
72
73         // Create a certain type of ClientActiveObject
74         static ClientActiveObject* create(ActiveObjectType type, Client *client,
75                         ClientEnvironment *env);
76
77         // If returns true, punch will not be sent to the server
78         virtual bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
79                         float time_from_last_punch=1000000)
80         { return false; }
81
82 protected:
83         // Used for creating objects based on type
84         typedef ClientActiveObject* (*Factory)(Client *client, ClientEnvironment *env);
85         static void registerType(u16 type, Factory f);
86         Client *m_client;
87         ClientEnvironment *m_env;
88 private:
89         // Used for creating objects based on type
90         static std::unordered_map<u16, Factory> m_types;
91 };
92
93 struct DistanceSortedActiveObject
94 {
95         ClientActiveObject *obj;
96         f32 d;
97
98         DistanceSortedActiveObject(ClientActiveObject *a_obj, f32 a_d)
99         {
100                 obj = a_obj;
101                 d = a_d;
102         }
103
104         bool operator < (const DistanceSortedActiveObject &other) const
105         {
106                 return d < other.d;
107         }
108 };