Project1

标题: 关于读档取消时的问题………… [打印本页]

作者: 化螺耕    时间: 2013-8-7 21:13
标题: 关于读档取消时的问题…………
如题,在Scene_Menu中加了一个读档的选项,但是发现每次读档取消时都直接返回标题画面,但是自己在Scene_Load中又不知道怎么改,是不是要加一个分歧,如果在标题画面中读档取消时就返回标题画面,否则返回菜单画面…………真心求教, 纯脚本盲一个
作者: 美丽晨露    时间: 2013-8-7 21:17
能附上脚本或者工程吗?
作者: myownroc    时间: 2013-8-7 21:37
你要做另外一个Scene_Load 取名为Scene_Load2(完全复制Scene_Load就好了),将第一行class Scene_Load < Scene_File改为
class Scene_Load2 < Scene_File
再将Scene_Menu 中的所有Scene_Load改为Scene_Load2
找到脚本Scene_Load2的56行(取消时的处理)里"切换到标题画面" 将$scene = Scene_Title.new 改为$scene = Scene_Menu.new
这样,标题画面中的读档用的是Scene_Load,取消时返回标题画面
菜单中读档是Scene_Load2,取消时返回到菜单
作者: 弗雷德    时间: 2013-8-7 21:55
一个全局开关/变量就可以搞定,根据场景更改变量的值,比如菜单为true 标题为false
根据这个开关/变量更改返回场景就可以了。 Project1.rar (191.02 KB, 下载次数: 28) 范例在这,全局搜索bearrpg
作者: 1587937102    时间: 2013-8-8 06:02
存档和读档都是一个脚本,试试把()里的flase和true重新排列一下(小提示,RM可以先点Game运行,再打开RM做实时修改)
作者: 1587937102    时间: 2013-8-8 06:04
还有,你到底用的是RM的哪个版本?我的是VX
作者: 1587937102    时间: 2013-8-8 06:07
忘了看标题了,你用
  1. #原作者:吾不知
  2. #使用方法:插在Main以上即可

  3. class Window_MenuCommand < Window_Command  
  4.   alias load_add_main_commands add_main_commands
  5.   def add_main_commands
  6.       load_add_main_commands
  7.       add_command("读档", :Load, main_commands_enabled)
  8.   end
  9. end   
  10. class Scene_Menu < Scene_MenuBase
  11.    alias load_create_command_window create_command_window
  12.    def create_command_window
  13.        load_create_command_window  
  14.        @command_window.set_handler(:Load,     method(:Load))
  15.    end
  16.    def Load
  17.        SceneManager.call(Scene_Load)
  18.    end
  19. end
复制代码
这个代码
作者: 化螺耕    时间: 2013-8-9 10:58
myownroc 发表于 2013-8-7 21:37
你要做另外一个Scene_Load 取名为Scene_Load2(完全复制Scene_Load就好了),将第一行class Scene_Load < Scen ...
  1. #==============================================================================
  2. # ■ Scene_Load
  3. #------------------------------------------------------------------------------
  4. #  处理读档画面的类。
  5. #==============================================================================

  6. class Scene_Load2 < Scene_File
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #--------------------------------------------------------------------------
  10.   def initialize
  11.     # 再生成临时对像
  12.     $game_temp = Game_Temp.new
  13.     # 选择存档时间最新的文件
  14.     $game_temp.last_file_index = 0
  15.     latest_time = Time.at(0)
  16.     for i in 0..3
  17.       filename = make_filename(i)
  18.       if FileTest.exist?(filename)
  19.         file = File.open(filename, "r")
  20.         if file.mtime > latest_time
  21.           latest_time = file.mtime
  22.           $game_temp.last_file_index = i
  23.         end
  24.         file.close
  25.       end
  26.     end
  27.     super("要载入哪个文件?")
  28.   end
  29.   #--------------------------------------------------------------------------
  30.   # ● 确定时的处理
  31.   #--------------------------------------------------------------------------
  32.   def on_decision(filename)
  33.     # 文件不存在的情况下
  34.     unless FileTest.exist?(filename)
  35.       # 演奏冻结 SE
  36.       $game_system.se_play($data_system.buzzer_se)
  37.       return
  38.     end
  39.     # 演奏读档 SE
  40.     $game_system.se_play($data_system.load_se)
  41.     # 写入存档数据
  42.     file = File.open(filename, "rb")
  43.     read_save_data(file)
  44.     file.close
  45.     # 还原 BGM、BGS
  46.     $game_system.bgm_play($game_system.playing_bgm)
  47.     $game_system.bgs_play($game_system.playing_bgs)
  48.     # 刷新地图 (执行并行事件)
  49.     $game_map.update
  50.     # 切换到地图画面
  51.     $scene = Scene_Map.new
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # ● 取消时的处理
  55.   #--------------------------------------------------------------------------
  56.   def on_cancel
  57.     # 演奏取消 SE
  58.     $game_system.se_play($data_system.cancel_se)
  59.     # 切换到标题画面
  60.     $scene = Scene_Menu.new
  61.   end
  62.   #--------------------------------------------------------------------------
  63.   # ● 读取存档数据
  64.   #     file : 读取用文件对像 (已经打开)
  65.   #--------------------------------------------------------------------------
  66.   def read_save_data(file)
  67.     # 读取描绘存档文件用的角色数据
  68.     characters = Marshal.load(file)
  69.     # 读取测量游戏时间用画面计数
  70.     Graphics.frame_count = Marshal.load(file)
  71.     # 读取各种游戏对像
  72.     $game_system        = Marshal.load(file)
  73.     $game_switches      = Marshal.load(file)
  74.     $game_variables     = Marshal.load(file)
  75.     $game_self_switches = Marshal.load(file)
  76.     $game_screen        = Marshal.load(file)
  77.     $game_actors        = Marshal.load(file)
  78.     $game_party         = Marshal.load(file)
  79.     $game_troop         = Marshal.load(file)
  80.     $game_map           = Marshal.load(file)
  81.     $game_player        = Marshal.load(file)
  82.     # 魔法编号与保存时有差异的情况下
  83.     # (加入编辑器的编辑过的数据)
  84.     if $game_system.magic_number != $data_system.magic_number
  85.       # 重新装载地图
  86.       $game_map.setup($game_map.map_id)
  87.       $game_player.center($game_player.x, $game_player.y)
  88.     end
  89.     # 刷新同伴成员
  90.     $game_party.refresh
  91.   end
  92. end
复制代码
为什么我出现了这种情况
作者: myownroc    时间: 2013-8-9 11:04
本帖最后由 myownroc 于 2013-8-9 11:11 编辑
化螺耕 发表于 2013-8-9 10:58
为什么我出现了这种情况


怎么可能第7行会有错,我都没事....给工程吧....

突然想起来,61行应该为$scene = Scene_iMenu.new(x)x是你菜单中读档选项的位置
但是这是不能解决第7行的错误

我做的确实没问题... Project1.rar (187.19 KB, 下载次数: 11)




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1