]> git.lizzy.rs Git - dragonfireclient.git/blob - src/clientobject.h
Fix typo in lua_api.txt
[dragonfireclient.git] / src / 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 #ifndef CLIENTOBJECT_HEADER
21 #define CLIENTOBJECT_HEADER
22
23 #include "irrlichttypes_extrabloated.h"
24 #include "activeobject.h"
25 #include <map>
26
27 /*
28
29 Some planning
30 -------------
31
32 * Client receives a network packet with information of added objects
33   in it
34 * Client supplies the information to its ClientEnvironment
35 * The environment adds the specified objects to itself
36
37 */
38
39 class ClientEnvironment;
40 class ITextureSource;
41 class IGameDef;
42 class LocalPlayer;
43 struct ItemStack;
44
45 class ClientActiveObject : public ActiveObject
46 {
47 public:
48         ClientActiveObject(u16 id, IGameDef *gamedef, ClientEnvironment *env);
49         virtual ~ClientActiveObject();
50
51         virtual void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
52                         IrrlichtDevice *irr){}
53         virtual void removeFromScene(bool permanent){}
54         // 0 <= light_at_pos <= LIGHT_SUN
55         virtual void updateLight(u8 light_at_pos){}
56         virtual v3s16 getLightPosition(){return v3s16(0,0,0);}
57         virtual core::aabbox3d<f32>* getSelectionBox(){return NULL;}
58         virtual core::aabbox3d<f32>* getCollisionBox(){return NULL;}
59         virtual bool collideWithObjects(){return false;}
60         virtual v3f getPosition(){return v3f(0,0,0);}
61         virtual scene::IMeshSceneNode *getMeshSceneNode(){return NULL;}
62         virtual scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode(){return NULL;}
63         virtual scene::IBillboardSceneNode *getSpriteSceneNode(){return NULL;}
64         virtual bool isPlayer(){return false;}
65         virtual bool isLocalPlayer(){return false;}
66         virtual void setAttachments(){}
67         virtual bool doShowSelectionBox(){return true;}
68         
69         // Step object in time
70         virtual void step(float dtime, ClientEnvironment *env){}
71         
72         // Process a message sent by the server side object
73         virtual void processMessage(const std::string &data){}
74
75         virtual std::string infoText() {return "";}
76         virtual std::string debugInfoText() {return "";}
77         
78         /*
79                 This takes the return value of
80                 ServerActiveObject::getClientInitializationData
81         */
82         virtual void initialize(const std::string &data){}
83         
84         // Create a certain type of ClientActiveObject
85         static ClientActiveObject* create(u8 type, IGameDef *gamedef,
86                         ClientEnvironment *env);
87
88         // If returns true, punch will not be sent to the server
89         virtual bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
90                         float time_from_last_punch=1000000)
91         { return false; }
92
93 protected:
94         // Used for creating objects based on type
95         typedef ClientActiveObject* (*Factory)(IGameDef *gamedef, ClientEnvironment *env);
96         static void registerType(u16 type, Factory f);
97         IGameDef *m_gamedef;
98         ClientEnvironment *m_env;
99 private:
100         // Used for creating objects based on type
101         static std::map<u16, Factory> m_types;
102 };
103
104 struct DistanceSortedActiveObject
105 {
106         ClientActiveObject *obj;
107         f32 d;
108
109         DistanceSortedActiveObject(ClientActiveObject *a_obj, f32 a_d)
110         {
111                 obj = a_obj;
112                 d = a_d;
113         }
114
115         bool operator < (const DistanceSortedActiveObject &other) const
116         {
117                 return d < other.d;
118         }
119 };
120
121 #endif
122