blob: 4e67446f898befa09ba8cb41efb8ed1c0f7d4bdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#pragma once
#include "StarPane.hpp"
#include "StarInventoryTypes.hpp"
#include "StarItemDescriptor.hpp"
#include "StarPlayerTech.hpp"
#include "StarGameTimers.hpp"
#include "StarContainerInteractor.hpp"
namespace Star {
STAR_CLASS(MainInterface);
STAR_CLASS(UniverseClient);
STAR_CLASS(Player);
STAR_CLASS(Item);
STAR_CLASS(ItemSlotWidget);
STAR_CLASS(ItemGridWidget);
STAR_CLASS(ImageWidget);
STAR_CLASS(Widget);
STAR_CLASS(InventoryPane);
class InventoryPane : public Pane {
public:
InventoryPane(MainInterface* parent, PlayerPtr player, ContainerInteractorPtr containerInteractor);
void displayed() override;
PanePtr createTooltip(Vec2I const& screenPosition) override;
bool giveContainerResult(ContainerResult result);
// update only item grids, to see if they have had their slots changed
// this is a little hacky and should probably be checked in the player inventory instead
void updateItems();
bool containsNewItems() const;
void clearChangedSlots();
protected:
virtual void update(float dt) override;
void selectTab(String const& selected);
private:
MainInterface* m_parent;
PlayerPtr m_player;
ContainerInteractorPtr m_containerInteractor;
bool m_expectingSwap;
InventorySlot m_containerSource;
GameTimer m_trashBurn;
ItemSlotWidgetPtr m_trashSlot;
Map<String, ItemGridWidgetPtr> m_itemGrids;
Map<String, String> m_tabButtonData;
Map<String, WidgetPtr> m_newItemMarkers;
String m_selectedTab;
StringList m_pickUpSounds;
StringList m_putDownSounds;
StringList m_someUpSounds;
StringList m_someDownSounds;
Maybe<ItemDescriptor> m_currentSwapSlotItem;
List<ImageWidgetPtr> m_disabledTechOverlays;
};
}
|