]> git.lizzy.rs Git - dragonfireclient.git/blob - src/content_cao.h
Switch back repository to dev-mode after 0.4.10 release.
[dragonfireclient.git] / src / content_cao.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 CONTENT_CAO_HEADER
21 #define CONTENT_CAO_HEADER
22
23 #include <map>
24 #include "irrlichttypes_extrabloated.h"
25 #include "content_object.h"
26 #include "clientobject.h"
27 #include "object_properties.h"
28 #include "itemgroup.h"
29
30 /*
31         SmoothTranslator
32 */
33
34 struct SmoothTranslator
35 {
36         v3f vect_old;
37         v3f vect_show;
38         v3f vect_aim;
39         f32 anim_counter;
40         f32 anim_time;
41         f32 anim_time_counter;
42         bool aim_is_end;
43
44         SmoothTranslator();
45
46         void init(v3f vect);
47
48         void sharpen();
49
50         void update(v3f vect_new, bool is_end_position=false, float update_interval=-1);
51
52         void translate(f32 dtime);
53
54         bool is_moving();
55 };
56
57 class GenericCAO : public ClientActiveObject
58 {
59 private:
60         // Only set at initialization
61         std::string m_name;
62         bool m_is_player;
63         bool m_is_local_player;
64         int m_id;
65         // Property-ish things
66         ObjectProperties m_prop;
67         //
68         scene::ISceneManager *m_smgr;
69         IrrlichtDevice *m_irr;
70         core::aabbox3d<f32> m_selection_box;
71         scene::IMeshSceneNode *m_meshnode;
72         scene::IAnimatedMeshSceneNode *m_animated_meshnode;
73         scene::IBillboardSceneNode *m_spritenode;
74         scene::ITextSceneNode* m_textnode;
75         v3f m_position;
76         v3f m_velocity;
77         v3f m_acceleration;
78         float m_yaw;
79         s16 m_hp;
80         SmoothTranslator pos_translator;
81         // Spritesheet/animation stuff
82         v2f m_tx_size;
83         v2s16 m_tx_basepos;
84         bool m_initial_tx_basepos_set;
85         bool m_tx_select_horiz_by_yawpitch;
86         v2s32 m_animation_range;
87         int m_animation_speed;
88         int m_animation_blend;
89         std::map<std::string, core::vector2d<v3f> > m_bone_position; // stores position and rotation for each bone name
90         std::string m_attachment_bone;
91         v3f m_attachment_position;
92         v3f m_attachment_rotation;
93         bool m_attached_to_local;
94         int m_anim_frame;
95         int m_anim_num_frames;
96         float m_anim_framelength;
97         float m_anim_timer;
98         ItemGroupList m_armor_groups;
99         float m_reset_textures_timer;
100         bool m_visuals_expired;
101         float m_step_distance_counter;
102         u8 m_last_light;
103         bool m_is_visible;
104
105         std::vector<u16> m_children;
106
107 public:
108         GenericCAO(IGameDef *gamedef, ClientEnvironment *env);
109
110         ~GenericCAO();
111
112         static ClientActiveObject* create(IGameDef *gamedef, ClientEnvironment *env)
113         {
114                 return new GenericCAO(gamedef, env);
115         }
116
117         inline u8 getType() const
118         {
119                 return ACTIVEOBJECT_TYPE_GENERIC;
120         }
121
122         void initialize(const std::string &data);
123
124         ClientActiveObject *getParent();
125
126         bool getCollisionBox(aabb3f *toset);
127
128         bool collideWithObjects();
129
130         core::aabbox3d<f32>* getSelectionBox();
131
132         v3f getPosition();
133
134         scene::IMeshSceneNode *getMeshSceneNode();
135
136         scene::IAnimatedMeshSceneNode *getAnimatedMeshSceneNode();
137
138         scene::IBillboardSceneNode *getSpriteSceneNode();
139
140         inline bool isPlayer() const
141         {
142                 return m_is_player;
143         }
144
145         inline bool isLocalPlayer() const
146         {
147                 return m_is_local_player;
148         }
149
150         inline bool isVisible() const
151         {
152                 return m_is_visible;
153         }
154
155         inline void setVisible(bool toset)
156         {
157                 m_is_visible = toset;
158         }
159
160         void setAttachments();
161
162         void removeFromScene(bool permanent);
163
164         void addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
165                         IrrlichtDevice *irr);
166
167         inline void expireVisuals()
168         {
169                 m_visuals_expired = true;
170         }
171
172         void updateLight(u8 light_at_pos);
173
174         v3s16 getLightPosition();
175
176         void updateNodePos();
177
178         void step(float dtime, ClientEnvironment *env);
179
180         void updateTexturePos();
181
182         void updateTextures(const std::string &mod);
183
184         void updateAnimation();
185
186         void updateBonePosition();
187
188         void updateAttachments();
189
190         void processMessage(const std::string &data);
191
192         bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL,
193                         float time_from_last_punch=1000000);
194
195         std::string debugInfoText();
196 };
197
198
199 #endif