121 lines
4.8 KiB
Ruby
121 lines
4.8 KiB
Ruby
#==============================================================================
|
|
# ■ Window_SkillList
|
|
#------------------------------------------------------------------------------
|
|
# スキル画面で、使用できるスキルの一覧を表示するウィンドウです。
|
|
#==============================================================================
|
|
|
|
class Window_SkillList < Window_Selectable
|
|
#--------------------------------------------------------------------------
|
|
# ● オブジェクト初期化
|
|
#--------------------------------------------------------------------------
|
|
def initialize(x, y, width, height)
|
|
super
|
|
@actor = nil
|
|
@stype_id = 0
|
|
@data = []
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● アクターの設定
|
|
#--------------------------------------------------------------------------
|
|
def actor=(actor)
|
|
return if @actor == actor
|
|
@actor = actor
|
|
refresh
|
|
self.oy = 0
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルタイプ ID の設定
|
|
#--------------------------------------------------------------------------
|
|
def stype_id=(stype_id)
|
|
return if @stype_id == stype_id
|
|
@stype_id = stype_id
|
|
refresh
|
|
self.oy = 0
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● 桁数の取得
|
|
#--------------------------------------------------------------------------
|
|
def col_max
|
|
return 2
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● 項目数の取得
|
|
#--------------------------------------------------------------------------
|
|
def item_max
|
|
@data ? @data.size : 1
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルの取得
|
|
#--------------------------------------------------------------------------
|
|
def item
|
|
@data && index >= 0 ? @data[index] : nil
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● 選択項目の有効状態を取得
|
|
#--------------------------------------------------------------------------
|
|
def current_item_enabled?
|
|
enable?(@data[index])
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルをリストに含めるかどうか
|
|
#--------------------------------------------------------------------------
|
|
def include?(item)
|
|
item && item.stype_id == @stype_id
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルを許可状態で表示するかどうか
|
|
#--------------------------------------------------------------------------
|
|
def enable?(item)
|
|
@actor && @actor.usable?(item)
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルリストの作成
|
|
#--------------------------------------------------------------------------
|
|
def make_item_list
|
|
@data = @actor ? @actor.skills.select {|skill| include?(skill) } : []
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● 前回の選択位置を復帰
|
|
#--------------------------------------------------------------------------
|
|
def select_last
|
|
select(@data.index(@actor.last_skill.object) || 0)
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● 項目の描画
|
|
#--------------------------------------------------------------------------
|
|
def draw_item(index)
|
|
skill = @data[index]
|
|
if skill
|
|
rect = item_rect(index)
|
|
rect.width -= 4
|
|
draw_item_name(skill, rect.x, rect.y, enable?(skill))
|
|
draw_skill_cost(rect, skill)
|
|
end
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● スキルの使用コストを描画
|
|
#--------------------------------------------------------------------------
|
|
def draw_skill_cost(rect, skill)
|
|
if @actor.skill_tp_cost(skill) > 0
|
|
change_color(tp_cost_color, enable?(skill))
|
|
draw_text(rect, @actor.skill_tp_cost(skill), 2)
|
|
elsif @actor.skill_mp_cost(skill) > 0
|
|
change_color(mp_cost_color, enable?(skill))
|
|
draw_text(rect, @actor.skill_mp_cost(skill), 2)
|
|
end
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● ヘルプテキスト更新
|
|
#--------------------------------------------------------------------------
|
|
def update_help
|
|
@help_window.set_item(item)
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# ● リフレッシュ
|
|
#--------------------------------------------------------------------------
|
|
def refresh
|
|
make_item_list
|
|
create_contents
|
|
draw_all_items
|
|
end
|
|
end
|