2012-08-06 16:10:16 -04:00
|
|
|
|
|
|
|
// cWindow.h
|
|
|
|
|
|
|
|
// Interfaces to the cWindow class representing a UI window for a specific block
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
class cPlayer;
|
|
|
|
class cItem;
|
|
|
|
class cWindowOwner;
|
|
|
|
class cClientHandle;
|
2012-08-18 05:56:28 -04:00
|
|
|
class cPacket; // TODO: remove this
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
typedef std::list<cPlayer *> cPlayerList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-06 16:10:16 -04:00
|
|
|
/**
|
|
|
|
Represents a UI window (base class) for a specific block entity.
|
|
|
|
|
|
|
|
There is up to one instance of the class for each block entity
|
|
|
|
Each window has a list of players that are currently using it
|
|
|
|
When there's no player using a window, it is destroyed
|
|
|
|
*/
|
2012-06-14 09:06:06 -04:00
|
|
|
class cWindow
|
|
|
|
{
|
|
|
|
public:
|
2012-08-06 16:10:16 -04:00
|
|
|
enum WindowType
|
|
|
|
{
|
|
|
|
Inventory = -1, // This value is never actually sent to a client
|
|
|
|
Chest = 0,
|
|
|
|
Workbench = 1,
|
|
|
|
Furnace = 2,
|
|
|
|
Dispenser = 3,
|
|
|
|
Enchantment = 4,
|
|
|
|
Brewery = 5
|
|
|
|
};
|
|
|
|
|
|
|
|
cWindow(cWindowOwner * a_Owner, bool a_bInventoryVisible, WindowType a_WindowType, int a_WindowID);
|
2012-06-14 09:06:06 -04:00
|
|
|
~cWindow();
|
|
|
|
|
2012-08-19 07:51:17 -04:00
|
|
|
int GetWindowID(void) const { return m_WindowID; }
|
2012-08-06 16:10:16 -04:00
|
|
|
int GetWindowType(void) const { return m_WindowType; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-19 07:51:17 -04:00
|
|
|
cItem* GetSlots(void) const { return m_Slots; }
|
|
|
|
int GetNumSlots(void) const { return m_NumSlots; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cItem* GetSlot( int a_Slot );
|
|
|
|
|
|
|
|
cItem* GetDraggingItem( cPlayer * a_Player = 0 );
|
|
|
|
|
|
|
|
// a_Slots is an array of slots of size a_NumSlots
|
|
|
|
void SetSlots(cItem* a_Slots, int a_NumSlots) { m_Slots = a_Slots; m_NumSlots = a_NumSlots; }
|
|
|
|
|
|
|
|
bool IsInventoryVisible() { return m_bInventoryVisible; }
|
|
|
|
void SetInventoryVisible( bool a_bVisible ) { m_bInventoryVisible = a_bVisible; }
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
virtual void Clicked(
|
|
|
|
cPlayer & a_Player, int a_WindowID,
|
|
|
|
short a_SlotNum, bool a_IsRightClick, bool a_IsShiftPressed,
|
|
|
|
const cItem & a_HeldItem
|
|
|
|
);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
virtual void Open( cPlayer & a_Player );
|
|
|
|
virtual void Close( cPlayer & a_Player );
|
|
|
|
|
|
|
|
cWindowOwner* GetOwner() { return m_Owner; }
|
|
|
|
void SetOwner( cWindowOwner* a_Owner ) { m_Owner = a_Owner; }
|
|
|
|
|
2012-08-18 05:56:28 -04:00
|
|
|
void SendWholeWindow(cClientHandle * a_Client);
|
2012-06-14 09:06:06 -04:00
|
|
|
void BroadcastWholeWindow(void);
|
|
|
|
void Broadcast(const cPacket & a_Packet);
|
|
|
|
|
|
|
|
const AString & GetWindowTitle() const { return m_WindowTitle; }
|
|
|
|
void SetWindowTitle( const std::string & a_WindowTitle ) { m_WindowTitle = a_WindowTitle; }
|
|
|
|
|
2012-08-11 15:54:57 -04:00
|
|
|
void OwnerDestroyed(void);
|
|
|
|
|
|
|
|
/// Calls the callback safely for each player that has this window open; returns true if all players have been enumerated
|
|
|
|
bool ForEachPlayer(cItemCallback<cPlayer> & a_Callback);
|
|
|
|
|
|
|
|
/// Calls the callback safely for each client that has this window open; returns true if all clients have been enumerated
|
|
|
|
bool ForEachClient(cItemCallback<cClientHandle> & a_Callback);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
int m_WindowID;
|
|
|
|
int m_WindowType;
|
|
|
|
AString m_WindowTitle;
|
|
|
|
|
|
|
|
cWindowOwner * m_Owner;
|
|
|
|
|
|
|
|
cCriticalSection m_CS;
|
|
|
|
cPlayerList m_OpenedBy;
|
|
|
|
|
|
|
|
bool m_bInventoryVisible;
|
|
|
|
int m_NumSlots;
|
|
|
|
cItem * m_Slots;
|
|
|
|
cItem * m_DraggingItem;
|
|
|
|
bool m_IsDestroyed;
|
2011-10-03 14:41:19 -04:00
|
|
|
};
|