Auteur: Yukihiro matsumoto
#============================================
# ‘ Window_Help
#----------------------------------------------
# @XLβACeΜΰΎAAN^[ΜXe[^XΘΗπ¦·ιEBhEΕ·B
#============================================
class Window_Help < Window_Base
#------------------------------------------
# IuWFNgϊ»
#------------------------------------------
def initialize
super(0, 0, 640, 64)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = $fontface
self.contents.font.size = $fontsize
end
#------------------------------------------
# eLXgέθ
# text : EBhEΙ¦·ιΆρ
# align : ACg (0..Ά΅¦A1..΅¦A2..E΅¦)
#------------------------------------------
def set_text(text, align = 0)
# eLXgΖACgΜΘΖΰκϋͺOρΖαΑΔ’ικ
if text != @text or align != @align
# eLXgπΔ`ζ
self.contents.clear
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, self.width - 40, 32, text, align)
@text = text
@align = align
@actor = nil
end
self.visible = true
end
#------------------------------------------
# AN^[έθ
# actor : Xe[^Xπ¦·ιAN^[
#------------------------------------------
def set_actor(actor)
if actor != @actor
self.contents.clear
draw_actor_name(actor, 4, 0)
draw_actor_state(actor, 140, 0)
draw_actor_hp(actor, 284, 0)
draw_actor_sp(actor, 460, 0)
@actor = actor
@text = nil
self.visible = true
end
end
#------------------------------------------
# Gl~[έθ
# enemy : ΌOΖXe[gπ¦·ιGl~[
#------------------------------------------
def set_enemy(enemy)
text = enemy.name
state_text = make_battler_state_text(enemy, 112, false)
if state_text != ""
text += " " + state_text
end
set_text(text, 1)
end
end |
|