~Site
Accueil
Forum
Admin

~Base de scripts
Scripts de base
Scripts Menu
Scripts Combat
Scripts Systθme
Scripts Modifiιs

Scripts de Base
Game_Temp
Game_System
Game_Switches
Game_Variables
Game_SelfSwitches
Game_Screen
Game_Picture
Game_Battler 1
Game_Battler 2
Game_Battler 3
Game_BattleAction
Game_Actor
Game_Enemy
Game_Actors
Game_Party
Game_Troop
Game_Map
Game_CommonEvent
Game_Character 1
Game_Character 2
Game_Character 3
Game_Event
Game_Player
Sprite_Character
Sprite_Battler
Sprite_Picture
Sprite_Timer
Spriteset_Map
Spriteset_Battle
Window_Base
Window_Selectable
Window_Command
Window_Help
Window_Gold
Window_PlayTime
Window_Steps
Window_MenuStatus
Window_Item
Window_Skill
Window_SkillStatus
Window_Target
Window_EquipLeft
Window_EquipRight
Window_EquipItem
Window_Status
Window_SaveFile
Window_ShopCommand
Window_ShopBuy
Window_ShopSell
Window_ShopNumber
Window_ShopStatus
Window_NameEdit
Window_NameInput
Window_InputNumber
Window_Message
Window_PartyCommand
Window_BattleStatus
Window_BattleResult
Window_DebugLeft
Window_DebugRight
Window_Dataset
Arrow_Base
Arrow_Enemy
Arrow_Actor
Interpreter 1
Interpreter 2
Interpreter 3
Interpreter 4
Interpreter 5
Interpreter 6
Interpreter 7
Scene_Title
Scene_Map
Scene_Menu
Scene_Item
Scene_Skill
Scene_Equip
Scene_Status
Scene_File
Scene_Save
Scene_Load
Scene_End
Scene_Battle 1
Scene_Battle 2
Scene_Battle 3
Scene_Battle 4
Scene_Shop
Scene_Name
Scene_Gameover
Scene_Debug
Main


Scene_Name ::: postι le 2006-02-16 @ 10:28:00
Auteur: Yukihiro matsumoto

#============================================
# ‘ Scene_Name
#----------------------------------------------
# @–Ό‘O“ό—Ν‰ζ–ʂ̏ˆ—‚πs‚€ƒNƒ‰ƒX‚Ε‚·B
#============================================

class Scene_Name
#------------------------------------------
# œ ƒƒCƒ“ˆ—
#------------------------------------------
def main
# ƒAƒNƒ^[‚πŽζ“Ύ
@actor = $game_actors[$game_temp.name_actor_id]
# ƒEƒBƒ“ƒhƒE‚πμ¬
@edit_window = Window_NameEdit.new(@actor, $game_temp.name_max_char)
@input_window = Window_NameInput.new
# ƒgƒ‰ƒ“ƒWƒVƒ‡ƒ“Žΐs
Graphics.transition
# ƒƒCƒ“ƒ‹[ƒv
loop do
# ƒQ[ƒ€‰ζ–Κ‚πXV
Graphics.update
# “ό—͏ξ•ρ‚πXV
Input.update
# ƒtƒŒ[ƒ€XV
update
# ‰ζ–Κ‚ͺΨ‚θ‘Φ‚ν‚Α‚½‚烋[ƒv‚π’†’f
if $scene != self
break
end
end
# ƒgƒ‰ƒ“ƒWƒVƒ‡ƒ“€”υ
Graphics.freeze
# ƒEƒBƒ“ƒhƒE‚π‰π•ϊ
@edit_window.dispose
@input_window.dispose
end
#------------------------------------------
# œ ƒtƒŒ[ƒ€XV
#------------------------------------------
def update
# ƒEƒBƒ“ƒhƒE‚πXV
@edit_window.update
@input_window.update
# B ƒ{ƒ^ƒ“‚ͺ‰Ÿ‚³‚κ‚½κ‡
if Input.repeat?(Input::B)
# ƒJ[ƒƒ‹ˆΚ’u‚ͺ 0 ‚̏ꍇ
if @edit_window.index == 0
return
end
# ƒLƒƒƒ“ƒZƒ‹ 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 == ""
# ƒfƒtƒHƒ‹ƒg‚Μ–Ό‘O‚Ι–ί‚·
@edit_window.restore_default
# –Ό‘O‚ͺ‹σ‚̏ꍇ
if @edit_window.name == ""
# ƒuƒU[ SE ‚π‰‰‘t
$game_system.se_play($data_system.buzzer_se)
return
end
# Œˆ’θ SE ‚π‰‰‘t
$game_system.se_play($data_system.decision_se)
return
end
# ƒAƒNƒ^[‚Μ–Ό‘O‚π•ΟX
@actor.name = @edit_window.name
# Œˆ’θ SE ‚π‰‰‘t
$game_system.se_play($data_system.decision_se)
# ƒ}ƒbƒv‰ζ–ʂɐ؂θ‘Φ‚¦
$scene = Scene_Map.new
return
end
# ƒJ[ƒƒ‹ˆΚ’u‚ͺΕ‘ε‚̏ꍇ
if @edit_window.index == $game_temp.name_max_char
# ƒuƒU[ SE ‚π‰‰‘t
$game_system.se_play($data_system.buzzer_se)
return
end
# •ΆŽš‚ͺ‹σ‚̏ꍇ
if @input_window.character == ""
# ƒuƒU[ 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
Design By RaZ © Watery Build 2005