mkxp-sunshine/scripts/Main.rb
2017-03-03 16:53:16 -04:00

39 lines
1.1 KiB
Ruby

#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
at_exit do
Wallpaper.reset
save unless $game_switches[99] || ($game_system.map_interpreter.running? || !$scene.is_a?(Scene_Map))
end
begin
$console = Graphics.fullscreen
Graphics.frame_rate = 60
Font.default_size = 20
# Load persistent data
Persistent.load
# Prepare for transition
Graphics.freeze
$demo = false
$GDC = false
# Make scene object (title screen)
$scene = Scene_Title.new
Oneshot.allow_exit false
# Call main method as long as $scene is effective
while $scene != nil
$scene.main
end
# Fade out
Graphics.transition(20)
Oneshot.allow_exit true
rescue Errno::ENOENT
# Supplement Errno::ENOENT exception
# If unable to open file, display message and end
filename = $!.message.sub("No such file or directory - ", "")
print("Unable to find file #{filename}.")
end