Class: BattleUI::TrainerPartyBalls

Inherits:
UI::SpriteStack show all
Includes:
GoingInOut, MultiplePosition, UI
Defined in:
docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb

Overview

Object that display the Battle Party Balls of a trainer in Battle

Remaining Pokemon, Pokemon with status

Defined Under Namespace

Classes: BallSprite

Constant Summary collapse

BALL_X =

X coordinate of the first ball in the stack depending on the bank

[3, 7]
BALL_Y =

Y coordinate of the first ball in the stack depending on the bank

[-3, -3]
BALL_DELTA =

Delta X between each balls

14

Constants inherited from UI::SpriteStack

UI::SpriteStack::NO_INITIAL_IMAGE

Instance Attribute Summary collapse

Attributes inherited from UI::SpriteStack

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

Instance Method Summary collapse

Methods included from MultiplePosition

#enemy?

Methods included from GoingInOut

#go_in, #go_out, #in?, #out?

Methods inherited from UI::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_animation, #update_position, #visible, #visible=, #with_cache, #with_font, #with_surface, #z, #z=

Constructor Details

#initialize(viewport, scene, bank) ⇒ TrainerPartyBalls

Create a new Trainer Party Balls

Parameters:



862
863
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 862

def initialize(viewport, scene, bank)
end

Instance Attribute Details

#animation_handlerYuki::Animation::Handler{ Symbol => Yuki::Animation::TimedAnimation} (readonly)

Get the animation handler



848
849
850
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 848

def animation_handler
  @animation_handler
end

#bankInteger (readonly)

Get the bank of the party shown

Returns:

  • (Integer)


854
855
856
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 854

def bank
  @bank
end

#positionInteger (readonly)

Get the position

Returns:

  • (Integer)


851
852
853
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 851

def position
  @position
end

#sceneBattle::Scene (readonly)

Get the scene linked to this object

Returns:



857
858
859
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 857

def scene
  @scene
end

Instance Method Details

#done?Boolean

Tell if the UI has done displaying its animation

Returns:

  • (Boolean)


872
873
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 872

def done?
end

#refresh

Refresh the content of the bar



868
869
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 868

def refresh
end

#update

Update all the animation of this UI element



865
866
# File 'docs/01600_Alpha_25_Battle_Engine_00001_Battle_Scene.rb', line 865

def update
end