diff options
| author | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
|---|---|---|
| committer | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
| commit | b691c43c44ff180d10e7d4a9afc83b98551ff586 (patch) | |
| tree | 3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.World/BrewingStandMenu.h | |
| parent | def8cb415354ac390b7e89052a50605285f1aca9 (diff) | |
Initial commit
Diffstat (limited to 'Minecraft.World/BrewingStandMenu.h')
| -rw-r--r-- | Minecraft.World/BrewingStandMenu.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/Minecraft.World/BrewingStandMenu.h b/Minecraft.World/BrewingStandMenu.h new file mode 100644 index 00000000..1f8d705d --- /dev/null +++ b/Minecraft.World/BrewingStandMenu.h @@ -0,0 +1,65 @@ +#pragma once + +#include "AbstractContainerMenu.h" +#include "Slot.h" + +class BrewingStandTileEntity; +class Inventory; +class Player; +class Container; + +class BrewingStandMenu : public AbstractContainerMenu +{ + // 4J Stu - Made public so that we can access these from the XUI menus +public: + static const int INGREDIENT_SLOT = 3; + static const int BOTTLE_SLOT_START = 0; + static const int BOTTLE_SLOT_END = 2; + static const int INV_SLOT_START = INGREDIENT_SLOT + 1; + static const int INV_SLOT_END = INV_SLOT_START + 9 * 3; + static const int USE_ROW_SLOT_START = INV_SLOT_END; + static const int USE_ROW_SLOT_END = USE_ROW_SLOT_START + 9; + +private: + shared_ptr<BrewingStandTileEntity> brewingStand; + Slot *ingredientSlot; + +public: + BrewingStandMenu(shared_ptr<Inventory> inventory, shared_ptr<BrewingStandTileEntity> brewingStand); + +private: + int tc; + +public: + virtual void addSlotListener(ContainerListener *listener); + virtual void broadcastChanges(); + virtual void setData(int id, int value); + virtual bool stillValid(shared_ptr<Player> player); + virtual shared_ptr<ItemInstance> quickMoveStack(shared_ptr<Player> player, int slotIndex); + +private: + class PotionSlot : public Slot + { + private: + shared_ptr<Player> player; + + public: + PotionSlot(shared_ptr<Player> player, shared_ptr<Container> container, int slot, int x, int y); + + virtual bool mayPlace(shared_ptr<ItemInstance> item); + virtual int getMaxStackSize(); + virtual void onTake(shared_ptr<Player> player, shared_ptr<ItemInstance> carried); + static bool mayPlaceItem(shared_ptr<ItemInstance> item); + virtual bool mayCombine(shared_ptr<ItemInstance> item); // 4J Added + }; + + class IngredientsSlot : public Slot + { + public: + IngredientsSlot(shared_ptr<Container> container, int slot, int x, int y); + + virtual bool mayPlace(shared_ptr<ItemInstance> item); + virtual int getMaxStackSize(); + virtual bool mayCombine(shared_ptr<ItemInstance> item); // 4J Added + }; +};
\ No newline at end of file |
