Auteur: Yukihiro matsumoto
#============================================
# ‘ Scene_Name
#----------------------------------------------
# @ΌOόΝζΚΜπs€NXΕ·B
#============================================
class Scene_Name
#------------------------------------------
# C
#------------------------------------------
def main
# AN^[πζΎ
@actor = $game_actors[$game_temp.name_actor_id]
# EBhEπμ¬
@edit_window = Window_NameEdit.new(@actor, $game_temp.name_max_char)
@input_window = Window_NameInput.new
# gWVΐs
Graphics.transition
# C[v
loop do
# Q[ζΚπXV
Graphics.update
# όΝξρπXV
Input.update
# t[XV
update
# ζΚͺΨθΦνΑ½η[vπf
if $scene != self
break
end
end
# gWVυ
Graphics.freeze
# EBhEππϊ
@edit_window.dispose
@input_window.dispose
end
#------------------------------------------
# t[XV
#------------------------------------------
def update
# EBhEπXV
@edit_window.update
@input_window.update
# B {^ͺ³κ½κ
if Input.repeat?(Input::B)
# J[Κuͺ 0 Μκ
if @edit_window.index == 0
return
end
# LZ SE πt
$game_system.se_play($data_system.cancel_se)
# Άπν
@edit_window.back
return
end
# C {^ͺ³κ½κ
if Input.trigger?(Input::C)
# J[Κuͺ [θ] Μκ
if @input_window.character == nil
# ΌOͺσΜκ
if @edit_window.name == ""
# ftHgΜΌOΙί·
@edit_window.restore_default
# ΌOͺσΜκ
if @edit_window.name == ""
# uU[ SE πt
$game_system.se_play($data_system.buzzer_se)
return
end
# θ SE πt
$game_system.se_play($data_system.decision_se)
return
end
# AN^[ΜΌOπΟX
@actor.name = @edit_window.name
# θ SE πt
$game_system.se_play($data_system.decision_se)
# }bvζΚΙΨθΦ¦
$scene = Scene_Map.new
return
end
# J[ΚuͺΕεΜκ
if @edit_window.index == $game_temp.name_max_char
# uU[ SE πt
$game_system.se_play($data_system.buzzer_se)
return
end
# ΆͺσΜκ
if @input_window.character == ""
# uU[ SE πt
$game_system.se_play($data_system.buzzer_se)
return
end
# θ SE πt
$game_system.se_play($data_system.decision_se)
# ΆπΗΑ
@edit_window.add(@input_window.character)
return
end
end
end |
|