]> git.lizzy.rs Git - dragonfireclient.git/blob - src/gui/guiItemImage.cpp
Fix hash implementation for SerializedBlockCache
[dragonfireclient.git] / src / gui / guiItemImage.cpp
1 /*
2 Minetest
3 Copyright (C) 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 #include "guiItemImage.h"
21 #include "client/client.h"
22
23 GUIItemImage::GUIItemImage(gui::IGUIEnvironment *env, gui::IGUIElement *parent,
24         s32 id, const core::rect<s32> &rectangle, const std::string &item_name,
25         gui::IGUIFont *font, Client *client) :
26         gui::IGUIElement(gui::EGUIET_ELEMENT, env, parent, id, rectangle),
27         m_item_name(item_name), m_font(font), m_client(client), m_label(core::stringw())
28 {
29 }
30
31 void GUIItemImage::draw()
32 {
33         if (!IsVisible)
34                 return;
35
36         if (!m_client) {
37                 IGUIElement::draw();
38                 return;
39         }
40
41         IItemDefManager *idef = m_client->idef();
42         ItemStack item;
43         item.deSerialize(m_item_name, idef);
44         // Viewport rectangle on screen
45         core::rect<s32> rect = core::rect<s32>(AbsoluteRect);
46         drawItemStack(Environment->getVideoDriver(), m_font, item, rect,
47                         &AbsoluteClippingRect, m_client, IT_ROT_NONE);
48         video::SColor color(255, 255, 255, 255);
49         m_font->draw(m_label, rect, color, true, true, &AbsoluteClippingRect);
50
51         IGUIElement::draw();
52 }