Class: UI::MiningGame::Tool_Buttons

Inherits:
SpriteStack show all
Defined in:
docs/01450_Systems_08001_Mining_Game.rb

Overview

Class that describes the buttons that let the player choose his tool

Constant Summary collapse

COORD_Y_2_TOOLS =

Coordinates in no dynamite mode

[0, 80]
COORD_Y_3_TOOLS =

Coordinates in dynamite mode

[0, 64, 128]
TOOL_FILENAME =

Symbols of the tools

['pickaxe', 'mace', 'dynamite']

Constants inherited from SpriteStack

SpriteStack::NO_INITIAL_IMAGE

Instance Attribute Summary collapse

Attributes inherited from SpriteStack

#animated, #data, #moving, #stack, #viewport, #x, #y

Instance Method Summary collapse

Methods inherited from SpriteStack

#[], #add_background, #add_line, #add_text, #anime, #anime_delta_set, #dispose, #each, #execute_anime, #move, #move_to, #opacity, #opacity=, #push, #push_sprite, #set_origin, #set_position, #simple_mouse_in?, #size, #stop_animation, #translate_mouse_coords, #update, #update_animation, #update_position, #visible, #visible=, #with_cache, #with_font, #with_surface, #z, #z=

Constructor Details

#initialize(viewport) ⇒ Tool_Buttons

Create the tool buttons

Parameters:

  • viewport (Viewport)

    the viewport of the scene



631
632
# File 'docs/01450_Systems_08001_Mining_Game.rb', line 631

def initialize(viewport)
end

Instance Attribute Details

#animationYuki::Animation::TimedAnimation

Returns the animation played when selecting a button.

Returns:



628
629
630
# File 'docs/01450_Systems_08001_Mining_Game.rb', line 628

def animation
  @animation
end

#buttonsArray<SpriteSheet>

Returns the array containing each button.

Returns:

  • (Array<SpriteSheet>)

    the array containing each button



626
627
628
# File 'docs/01450_Systems_08001_Mining_Game.rb', line 626

def buttons
  @buttons
end

#indexInteger

Returns the currently selected button.

Returns:

  • (Integer)

    the currently selected button



624
625
626
# File 'docs/01450_Systems_08001_Mining_Game.rb', line 624

def index
  @index
end

Instance Method Details

#change_buttons_state(index) ⇒ Symbol

Change the state of each button depending on the one that is hit

Parameters:

  • index (Integer)

    the index of the hitted button

Returns:

  • (Symbol)

    the symbol of the new tool to use



636
637
# File 'docs/01450_Systems_08001_Mining_Game.rb', line 636

def change_buttons_state(index)
end