class Rosegold::EnchantmentMenu

Overview

Enchantment table menu — 2 slots: item(0), lapis(1).

Defined in:

rosegold/inventory/menus/enchantment_menu.cr

Constructors

Instance Method Summary

Instance methods inherited from class Rosegold::ContainerMenu

[](index : Int32) : Rosegold::Slot [], []=(index : Int32, slot : Rosegold::Slot) []=, allow_modification?(slot_index : Int32) : Bool allow_modification?, close close, container_size : Int32 container_size, container_slots : Array(Rosegold::WindowSlot) container_slots, get_slot_max_stack_size(slot_index : Int32, item_slot : Rosegold::Slot) : Int32 get_slot_max_stack_size, handle_close handle_close, hotbar_slot_index(hotbar_nr : Int32) : Int32 hotbar_slot_index, hotbar_window_slots : Array(Rosegold::WindowSlot) hotbar_window_slots, inventory_slots : Array(Rosegold::WindowSlot) inventory_slots, may_pickup?(slot_index : Int32) : Bool may_pickup?, may_place?(slot_index : Int32, item_slot : Rosegold::Slot) : Bool may_place?, menu_id : UInt8 menu_id, offhand_slot_index : Int32 offhand_slot_index, player_inventory_start : Int32 player_inventory_start, quick_move_stack(slot_index : Int32) : Rosegold::Slot quick_move_stack, total_slots : Int32 total_slots

Constructor methods inherited from class Rosegold::ContainerMenu

new(client : Client, id : UInt8, title : Chat, container_size : Int32) new

Instance methods inherited from class Rosegold::Menu

[](index : Int32) : Rosegold::Slot [], []=(index : Int32, slot : Rosegold::Slot) []=, allow_modification?(slot_index : Int32) : Bool allow_modification?, can_stack?(slot1 : Rosegold::Slot, slot2 : Rosegold::Slot) : Bool can_stack?, check_and_fix_desync check_and_fix_desync, close close, container_slots : Array(Rosegold::WindowSlot) container_slots, content : Array(Rosegold::WindowSlot) content, copy_slot(slot : Rosegold::Slot) : Rosegold::Slot copy_slot, cursor : Rosegold::Slot cursor, cursor=(cursor : Rosegold::Slot) cursor=, get_max_stack_size(item_slot : Rosegold::Slot) : Int32 get_max_stack_size, get_slot_max_stack_size(slot_index : Int32, item_slot : Rosegold::Slot) : Int32 get_slot_max_stack_size, handle_close handle_close, hotbar : Array(Rosegold::WindowSlot) hotbar, hotbar_slot_index(hotbar_nr : Int32) : Int32 hotbar_slot_index, hotbar_slots : Array(Rosegold::Slot) hotbar_slots, hotbar_window_slots : Array(Rosegold::WindowSlot) hotbar_window_slots, id : UInt8 id, inventory : Array(Rosegold::WindowSlot) inventory, inventory_slots : Array(Rosegold::WindowSlot) inventory_slots, main_hand : Rosegold::Slot main_hand, main_inventory_slots : Array(Rosegold::Slot) main_inventory_slots, may_pickup?(slot_index : Int32) : Bool may_pickup?, may_place?(slot_index : Int32, item_slot : Rosegold::Slot) : Bool may_place?, menu_id : UInt8 menu_id, move_item_stack_to(source_index : Int32, target_start : Int32, target_end : Int32, reverse : Bool = false) : Bool move_item_stack_to, offhand_slot_index : Int32 offhand_slot_index, perform_cursor_drop_operation(button : Int32) perform_cursor_drop_operation, perform_drop_operation(slot_index : Int32, button : Int32) perform_drop_operation, perform_hotbar_swap(slot_index : Int32, button : Int32) perform_hotbar_swap, perform_offhand_swap_operation(slot_index : Int32) perform_offhand_swap_operation, perform_regular_click(slot_index : Int32, button : Int32) perform_regular_click, perform_shift_click(slot_index : Int32) perform_shift_click, player_inventory_slots : Array(Rosegold::Slot) player_inventory_slots, player_inventory_start : Int32 player_inventory_start, player_window_slots : Array(Rosegold::WindowSlot) player_window_slots, quick_move_stack(slot_index : Int32) : Rosegold::Slot quick_move_stack, safe_insert(target_slot_index : Int32, cursor_slot : Rosegold::Slot, amount : Int32) safe_insert, safe_take(source_slot_index : Int32, amount : Int32) safe_take, same_item_same_components?(slot1 : Rosegold::Slot, slot2 : Rosegold::Slot) : Bool same_item_same_components?, send_click(slot_index : Int32, button : Int32, click_type)
send_click(slot_index : Int32, operation : ClickOperation)
send_click
, slots : Array(Rosegold::WindowSlot) slots, slots=(new_slots : Array(Rosegold::WindowSlot)) slots=, slots_match?(slot1 : Rosegold::Slot, slot2 : Rosegold::Slot) : Bool slots_match?, state_id : UInt32 state_id, state_id=(state_id : UInt32) state_id=, swap_hotbar(hotbar_nr, slot : Rosegold::WindowSlot)
swap_hotbar(hotbar_nr, slot_number)
swap_hotbar
, to_s(io) to_s, total_slots : Int32 total_slots, update_all_slots(slots : Array(Rosegold::Slot), cursor : Rosegold::Slot, packet_state_id : UInt32) update_all_slots, update_slot(index : Int32, slot : Rosegold::Slot, packet_state_id : UInt32) update_slot

Constructor methods inherited from class Rosegold::Menu

new(client : Rosegold::Client, player_inventory : Rosegold::PlayerInventory) new

Constructor Detail

def self.new(client : Client, id : UInt8, title : Chat) #

[View source]

Instance Method Detail

def get_slot_max_stack_size(slot_index : Int32, item_slot : Rosegold::Slot) : Int32 #

[View source]
def item : Rosegold::Slot #

[View source]
def lapis : Rosegold::Slot #

[View source]
def may_place?(slot_index : Int32, item_slot : Rosegold::Slot) : Bool #
Description copied from class Rosegold::ContainerMenu

Slot validation


[View source]
def quick_move_stack(slot_index : Int32) : Rosegold::Slot #
Description copied from class Rosegold::ContainerMenu

Shift-click routing (each menu subclass defines where items move)


[View source]