minetest/src/guiInventoryMenu.h

169 lines
3.4 KiB
C
Raw Normal View History

2010-12-22 02:34:21 +01:00
/*
Minetest-c55
Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GUIINVENTORYMENU_HEADER
#define GUIINVENTORYMENU_HEADER
#include "common_irrlicht.h"
#include "inventory.h"
2010-12-22 15:30:23 +01:00
#include "utility.h"
2010-12-23 14:31:50 +01:00
#include "modalMenu.h"
2010-12-22 02:34:21 +01:00
class ITextureSource;
class InventoryContext;
class InventoryManager;
2011-02-14 16:41:49 +01:00
void drawInventoryItem(video::IVideoDriver *driver,
gui::IGUIFont *font,
2010-12-22 02:34:21 +01:00
InventoryItem *item, core::rect<s32> rect,
const core::rect<s32> *clip,
ITextureSource *tsrc);
2010-12-22 02:34:21 +01:00
2010-12-23 14:31:50 +01:00
class GUIInventoryMenu : public GUIModalMenu
2010-12-22 02:34:21 +01:00
{
2010-12-22 15:30:23 +01:00
struct ItemSpec
2010-12-22 02:34:21 +01:00
{
2010-12-22 15:30:23 +01:00
ItemSpec()
{
i = -1;
}
2011-04-04 14:13:19 +02:00
ItemSpec(const std::string &a_inventoryname,
const std::string &a_listname,
s32 a_i)
2010-12-22 15:30:23 +01:00
{
2011-04-04 14:13:19 +02:00
inventoryname = a_inventoryname;
listname = a_listname;
2010-12-22 15:30:23 +01:00
i = a_i;
}
bool isValid() const
{
return i != -1;
}
2011-04-04 14:13:19 +02:00
std::string inventoryname;
2010-12-22 15:30:23 +01:00
std::string listname;
s32 i;
};
struct ListDrawSpec
{
ListDrawSpec()
{
}
2011-04-04 14:13:19 +02:00
ListDrawSpec(const std::string &a_inventoryname,
const std::string &a_listname,
v2s32 a_pos, v2s32 a_geom)
2010-12-22 15:30:23 +01:00
{
2011-04-04 14:13:19 +02:00
inventoryname = a_inventoryname;
listname = a_listname;
2010-12-22 15:30:23 +01:00
pos = a_pos;
geom = a_geom;
}
2011-04-04 14:13:19 +02:00
std::string inventoryname;
2010-12-22 15:30:23 +01:00
std::string listname;
v2s32 pos;
v2s32 geom;
};
2010-12-22 02:34:21 +01:00
public:
2011-04-04 14:13:19 +02:00
struct DrawSpec
{
DrawSpec()
{
}
DrawSpec(const std::string &a_type,
const std::string &a_name,
const std::string &a_subname,
v2s32 a_pos,
v2s32 a_geom)
{
type = a_type;
name = a_name;
subname = a_subname;
pos = a_pos;
geom = a_geom;
}
std::string type;
std::string name;
std::string subname;
v2s32 pos;
v2s32 geom;
};
// See .cpp for format
static v2s16 makeDrawSpecArrayFromString(
core::array<GUIInventoryMenu::DrawSpec> &draw_spec,
const std::string &data,
const std::string &current_name);
2011-04-04 14:13:19 +02:00
2010-12-22 02:34:21 +01:00
GUIInventoryMenu(gui::IGUIEnvironment* env,
gui::IGUIElement* parent, s32 id,
2011-04-04 14:13:19 +02:00
IMenuManager *menumgr,
v2s16 menu_size,
InventoryContext *c,
InventoryManager *invmgr,
ITextureSource *tsrc
2011-04-04 14:13:19 +02:00
);
2010-12-22 02:34:21 +01:00
~GUIInventoryMenu();
void setDrawSpec(core::array<DrawSpec> &init_draw_spec)
{
m_init_draw_spec = init_draw_spec;
}
2010-12-25 15:04:51 +01:00
void removeChildren();
2010-12-22 02:34:21 +01:00
/*
Remove and re-add (or reposition) stuff
*/
2010-12-23 14:31:50 +01:00
void regenerateGui(v2u32 screensize);
2010-12-22 15:30:23 +01:00
ItemSpec getItemAtPos(v2s32 p) const;
void drawList(const ListDrawSpec &s, ITextureSource *tsrc);
2010-12-23 14:31:50 +01:00
void drawMenu();
2010-12-22 02:34:21 +01:00
bool OnEvent(const SEvent& event);
protected:
2010-12-22 15:30:23 +01:00
v2s32 getBasePos() const
{
return padding + AbsoluteRect.UpperLeftCorner;
}
2011-04-04 14:13:19 +02:00
v2s16 m_menu_size;
2010-12-22 15:30:23 +01:00
v2s32 padding;
v2s32 spacing;
v2s32 imgsize;
2011-04-04 14:13:19 +02:00
InventoryContext *m_c;
InventoryManager *m_invmgr;
ITextureSource *m_tsrc;
2010-12-22 15:30:23 +01:00
2011-04-04 14:13:19 +02:00
core::array<DrawSpec> m_init_draw_spec;
core::array<ListDrawSpec> m_draw_spec;
2010-12-22 15:30:23 +01:00
ItemSpec *m_selected_item;
2011-12-01 10:25:55 +01:00
v2s32 m_pointer;
2010-12-22 02:34:21 +01:00
};
#endif