X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flocalplayer.h;h=16b66716da66e1874fdbee00690663b2ab8b9379;hb=718bcafd5174690a7731f9b04873e9a09f7a47b7;hp=8c3041c04b4ac40172baa7ddf0dd204299eeb5cb;hpb=7cd5eb4c77de9fda4946de7e1c2384d0c2a0253e;p=minetest.git diff --git a/src/localplayer.h b/src/localplayer.h index 8c3041c04..16b66716d 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -23,30 +23,32 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "player.h" #include -class ClientEnvironment; - +class Environment; +class GenericCAO; class ClientActiveObject; +enum LocalPlayerAnimations {NO_ANIM, WALK_ANIM, DIG_ANIM, WD_ANIM}; // no local animation, walking, digging, both + class LocalPlayer : public Player { public: - LocalPlayer(IGameDef *gamedef); + LocalPlayer(IGameDef *gamedef, const char *name); virtual ~LocalPlayer(); bool isLocal() const { return true; } - + ClientActiveObject *parent; bool isAttached; v3f overridePosition; - void move(f32 dtime, ClientEnvironment *env, f32 pos_max_d, + void move(f32 dtime, Environment *env, f32 pos_max_d); + void move(f32 dtime, Environment *env, f32 pos_max_d, std::list *collision_info); - void move(f32 dtime, ClientEnvironment *env, f32 pos_max_d); void applyControl(float dtime); @@ -60,6 +62,25 @@ class LocalPlayer : public Player unsigned int last_keyPressed; float camera_impact; + v3f eye_offset_first; + v3f eye_offset_third; + + int last_animation; + float last_animation_speed; + + std::string hotbar_image; + std::string hotbar_selected_image; + + video::SColor light_color; + + GenericCAO* getCAO() const { + return m_cao; + } + + void setCAO(GenericCAO* toset) { + assert( m_cao == NULL ); + m_cao = toset; + } private: // This is used for determining the sneaking range @@ -73,6 +94,8 @@ class LocalPlayer : public Player // Whether recalculation of the sneak node is needed bool m_need_to_get_new_sneak_node; bool m_can_jump; + + GenericCAO* m_cao; }; #endif