赞 | 0 |
VIP | 8 |
好人卡 | 27 |
积分 | 54 |
经验 | 41413 |
最后登录 | 2012-10-21 |
在线时间 | 833 小时 |
Lv4.逐梦者 弓箭手?剑兰
- 梦石
- 0
- 星屑
- 5419
- 在线时间
- 833 小时
- 注册时间
- 2010-11-17
- 帖子
- 1140
|
本帖最后由 一箭烂YiJL 于 2011-1-5 11:48 编辑
其实解释得不错了,只是没有详细说明调用其它东西是什么。
(就是$scene这全局变数,@Window_Command这种对象式的局部变量等等啦)
调用了公共事件就不用再开启开关(这个二选一,可是用公共事件可能会影响原本执行的公共事件哦~)
不过我提议一下,Scene_Leo的return_scene(函数)可以不用了。
这件东西好像不能用于多人的啊~我自己弄了一下(多人版哦~):- #==============================================================================
- # ** Scene_Menu
- #------------------------------------------------------------------------------
- # 這個類用來執行顯示ESC選單畫面的程式。
- #==============================================================================
- class Scene_Menu < Scene_Base
- #--------------------------------------------------------------------------
- # * 物件初始化
- # menu_index : 命令游標的起始位置
- #--------------------------------------------------------------------------
- def initialize(menu_index = 0)
- @menu_index = menu_index
- end
- #--------------------------------------------------------------------------
- # * 程式開始
- #--------------------------------------------------------------------------
- def start
- super
- create_menu_background
- create_command_window
- @gold_window = Window_Gold.new(0, 360)
- @status_window = Window_MenuStatus.new(160, 0)
- end
- #--------------------------------------------------------------------------
- # * 程式中止
- #--------------------------------------------------------------------------
- def terminate
- super
- dispose_menu_background
- @command_window.dispose
- @gold_window.dispose
- @status_window.dispose
- end
- #--------------------------------------------------------------------------
- # * 更新幀
- #--------------------------------------------------------------------------
- def update
- super
- update_menu_background
- @command_window.update
- @gold_window.update
- @status_window.update
- if @command_window.active
- update_command_selection
- elsif @status_window.active
- update_actor_selection
- end
- end
- #--------------------------------------------------------------------------
- # * 創建命令視窗
- #--------------------------------------------------------------------------
- def create_command_window
- s1 = Vocab::item
- s2 = Vocab::skill
- s3 = Vocab::equip
- s4 = Vocab::status
- s5 = Vocab::save
- s6 = Vocab::game_end
- s7 = "队友对话"
- @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6, s7])
- @command_window.index = @menu_index
- if $game_party.members.size == 0 # 如果無人在隊
- @command_window.draw_item(0, false) # 禁用[用品]
- @command_window.draw_item(1, false) # 禁用[技能]
- @command_window.draw_item(2, false) # 禁用[整備]
- @command_window.draw_item(3, false) # 禁用[狀態]
- end
- if $game_system.save_disabled # 如果禁止存檔
- @command_window.draw_item(4, false) # 禁用[存檔]
- end
- end
- #--------------------------------------------------------------------------
- # * 更新指令選擇輸入資訊
- #--------------------------------------------------------------------------
- def update_command_selection
- if Input.trigger?(Input::B)
- Sound.play_cancel
- $scene = Scene_Map.new
- elsif Input.trigger?(Input::C)
- if $game_party.members.size == 0 and @command_window.index < 4
- Sound.play_buzzer
- return
- elsif $game_system.save_disabled and @command_window.index == 4
- Sound.play_buzzer
- return
- end
- Sound.play_decision
- case @command_window.index
- when 0 # 用品
- $scene = Scene_Item.new
- when 1,2,3,6 # 技能,整備,狀態,对话
- start_actor_selection
- when 4 # 存檔
- $scene = Scene_File.new(true, false, false)
- when 5 # 結束遊戲
- $scene = Scene_End.new
- end
- end
- end
- #--------------------------------------------------------------------------
- # * 開始接收主角選擇指令輸入資訊
- #--------------------------------------------------------------------------
- def start_actor_selection
- @command_window.active = false
- @status_window.active = true
- if $game_party.last_actor_index < @status_window.item_max
- @status_window.index = $game_party.last_actor_index
- else
- @status_window.index = 0
- end
- end
- #--------------------------------------------------------------------------
- # * 停止接收主角選擇指令輸入資訊
- #--------------------------------------------------------------------------
- def end_actor_selection
- @command_window.active = true
- @status_window.active = false
- @status_window.index = -1
- end
- #--------------------------------------------------------------------------
- # * 更新主角選擇指令輸入資訊
- #--------------------------------------------------------------------------
- def update_actor_selection
- if Input.trigger?(Input::B)
- Sound.play_cancel
- end_actor_selection
- elsif Input.trigger?(Input::C)
- $game_party.last_actor_index = @status_window.index
- Sound.play_decision
- case @command_window.index
- when 1 # 技能
- $scene = Scene_Skill.new(@status_window.index)
- when 2 # 整備
- $scene = Scene_Equip.new(@status_window.index)
- when 3 # 狀態
- $scene = Scene_Status.new(@status_window.index)
- when 6 # 对话
- $scene = Scene_Map.new
- @actor = $game_party.members[@status_window.index]
- $game_switches[@actor.id] = true
- end
- end
- end
- end
复制代码 重点在92行和138~142里。
和你的用法差不多(设置在公共事件):
1.并行处理
2.对应角色编号设置公共事件开关编号
3.在公共事件最后要有关闭上述的开关(重要)
4.不用对应事件编号,只需对应开关编号(重要)
我后来补充了以下内容:
让我来在解释一下:
@actor = $game_party.members[@status_window.index]
这一句的$game_party.members[x]就是人物基本讯息。
用@status_window.index就是选择窗口的选择位置。
这句$game_switches[@actor.id] = true
的@actor.id代表着主角ID。
其它的夕阳你应该能够解释得来。
还有,我可能会在这一帖再出一个加强的。(用新场景的) |
评分
-
查看全部评分
|