aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_node.cpp
Commit message (Expand)AuthorAge
* Paramtype2: Add missing type CPT2_GLASSLIKE_LIQUID_LEVELparamat2017-03-30
* Add hardware node coloring. Includes:Dániel Juhász2017-01-23
* Make plantlike drawtype more funAuke Kok2016-08-26
* Nodebox: Allow nodeboxes to "connect"Auke Kok2016-03-12
* Add new ContentParamType2 "CPT2_DEGROTATE"est312015-10-04
* Push error handler afresh each time lua_pcall is usedKahrl2015-08-27
* Improve Script CPP API diagnosticskwolekr2015-08-05
* Replace instances of std::map<std::string, std::string> with StringMapkwolekr2015-05-19
* Add meshnode drawtype.RealBadAngel2014-10-18
* Fix object reference pushing functions when called from coroutinesShadowNinja2014-10-07
* Add optional framed glasslike drawtypeBlockMen2014-10-02
* Add firelike drawtypeTriBlade92014-09-21
* Only push the Lua error handler onceShadowNinja2014-04-27
* Pass pointed_thing to on_punch and minetest.register_on_punchnode callbacksShadowNinja2014-01-23
* Pass a errfunc to lua_pcall to get a tracebackShadowNinja2013-11-15
* Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenuKahrl2013-08-14
* Weather supportproller2013-07-27
* Leveled nodeboxproller2013-07-13
* Move scriptapi to separate folder (by sapier)sapier2013-05-25
span class="hl opt">; class ITextureSource; class Inventory; class InventoryList; class LocalPlayer; struct ItemStack; class Hud { public: video::IVideoDriver *driver; scene::ISceneManager *smgr; gui::IGUIEnvironment *guienv; Client *client; LocalPlayer *player; Inventory *inventory; ITextureSource *tsrc; video::SColor crosshair_argb; video::SColor selectionbox_argb; bool use_crosshair_image = false; std::string hotbar_image = ""; bool use_hotbar_image = false; std::string hotbar_selected_image = ""; bool use_hotbar_selected_image = false; Hud(gui::IGUIEnvironment *guienv, Client *client, LocalPlayer *player, Inventory *inventory); ~Hud(); void drawHotbar(u16 playeritem); void resizeHotbar(); void drawCrosshair(); void drawSelectionMesh(); void updateSelectionMesh(const v3s16 &camera_offset); std::vector<aabb3f> *getSelectionBoxes() { return &m_selection_boxes; } void setSelectionPos(const v3f &pos, const v3s16 &camera_offset); v3f getSelectionPos() const { return m_selection_pos; } void setSelectionMeshColor(const video::SColor &color) { m_selection_mesh_color = color; } void setSelectedFaceNormal(const v3f &face_normal) { m_selected_face_normal = face_normal; } void drawLuaElements(const v3s16 &camera_offset); private: void drawStatbar(v2s32 pos, u16 corner, u16 drawdir, const std::string &texture, s32 count, v2s32 offset, v2s32 size = v2s32()); void drawItems(v2s32 upperleftpos, v2s32 screen_offset, s32 itemcount, s32 inv_offset, InventoryList *mainlist, u16 selectitem, u16 direction); void drawItem(const ItemStack &item, const core::rect<s32> &rect, bool selected); float m_hud_scaling; // cached minetest setting v3s16 m_camera_offset; v2u32 m_screensize; v2s32 m_displaycenter; s32 m_hotbar_imagesize; // Takes hud_scaling into account, updated by resizeHotbar() s32 m_padding; // Takes hud_scaling into account, updated by resizeHotbar() video::SColor hbar_colors[4]; std::vector<aabb3f> m_selection_boxes; std::vector<aabb3f> m_halo_boxes; v3f m_selection_pos; v3f m_selection_pos_with_offset; scene::IMesh *m_selection_mesh = nullptr; video::SColor m_selection_mesh_color; v3f m_selected_face_normal; video::SMaterial m_selection_material; enum { HIGHLIGHT_BOX, HIGHLIGHT_HALO, HIGHLIGHT_NONE } m_mode; }; enum ItemRotationKind { IT_ROT_SELECTED, IT_ROT_HOVERED, IT_ROT_DRAGGED, IT_ROT_NONE, // Must be last, also serves as number }; void drawItemStack(video::IVideoDriver *driver, gui::IGUIFont *font, const ItemStack &item, const core::rect<s32> &rect, const core::rect<s32> *clip, Client *client, ItemRotationKind rotation_kind); #endif