设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

装备扩张后的显示问题

查看数: 1101 | 评论数: 2 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2011-8-24 12:40

正文摘要:

本帖最后由 pkboy9999 于 2011-8-24 12:44 编辑 我使用了装备扩张脚本把自己的装备增加到11种,但是进入角色状态显示的时候因为装备种类太多了有几件装备超出了窗口框显示不了【如图】,我想实现类似这个脚本的装 ...

回复

pkboy9999 发表于 2011-8-24 17:39:03
装备栏我没什么追求了,我是想状态栏可以像装备栏那样可以有个箭头,按上下来调整显示装备

点评

表示脚本无能...  发表于 2011-8-24 19:26
昔日辉煌灬 发表于 2011-8-24 12:55:15
装备栏的话加个脚本吧!
  1. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  2. #_/    ◆ 拡張装備画面 - KGC_ExtendedEquipScene ◆ VX ◆
  3. #_/    ◇ Last update : 2009/02/15 ◇
  4. #_/----------------------------------------------------------------------------
  5. #_/  機能を強化した装備画面を作成します。
  6. #_/============================================================================
  7. #_/ 【基本機能】≪ヘルプウィンドウ機能拡張≫ より下に導入してください。
  8. #_/ 【装備】≪スキル習得装備≫ より下に導入してください。
  9. #_/ 【装備】≪装備拡張≫ より上に導入してください。
  10. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

  11. $data_system = load_data("Data/System.rvdata") if $data_system == nil

  12. #==============================================================================
  13. # ★ カスタマイズ項目 - Customize BEGIN ★
  14. #==============================================================================

  15. module KGC
  16. module ExtendedEquipScene
  17.   # ◆ パラメータ名
  18.   VOCAB_PARAM = {
  19.     :hit => "命中率",        # 命中率
  20.     :eva => "回避率",        # 回避率
  21.     :cri => "クリティカル",  # クリティカル率
  22.   }  # ← この } は消さないこと!

  23.   # ◆ 装備変更時に表示するパラメータ
  24.   #  表示したい順に , で区切って記入。
  25.   #  :maxhp .. 最大 HP
  26.   #  :maxmp .. 最大 MP
  27.   #  :atk   .. 攻撃力
  28.   #  :def   .. 防御力
  29.   #  :spi   .. 精神力
  30.   #  :agi   .. 敏捷性
  31.   #  :hit   .. 命中率
  32.   #  :eva   .. 回避率
  33.   #  :cri   .. クリティカル率
  34.   EQUIP_PARAMS = [ :atk, :def, :spi, :agi, :hit, :eva, :cri ]

  35.   # ◆ 拡張装備コマンドを使用する
  36.   #  true  : 「最強装備」「すべて外す」コマンドを使用可能
  37.   #  false : 装備変更のみ
  38.   USE_COMMAND_WINDOW = true
  39.   # ◆ 装備画面のコマンド名
  40.   COMMANDS = [
  41.     "装備変更",    # 装備変更
  42.     "最強装備",    # 最強装備
  43.     "すべて外す",  # すべて外す
  44.   ]  # ← この ] は消さないこと!
  45.   # ◆ 装備画面コマンドのヘルプ
  46.   COMMAND_HELP = [
  47.     "装備を変更します。",            # 装備変更
  48.     "最も強力な武具を装備します。",  # 最強装備
  49.     "すべての武具を外します。",      # すべて外す
  50.   ]  # ← この ] は消さないこと!

  51.   # ◆ 最強装備を行わない装備種別
  52.   #  最強装備から除外する装備種別を記述。
  53.   #  -1..武器  0..盾  1..頭  2..身体  3..装飾品  4~..≪装備拡張≫ で定義
  54.   IGNORE_STRONGEST_KIND = [3, 5]

  55.   # ◆ 最強武器選択時のパラメータ優先順位
  56.   #  優先順位の高い順に , で区切って記入。
  57.   #  :atk .. 攻撃力
  58.   #  :def .. 防御力
  59.   #  :spi .. 精神力
  60.   #  :agi .. 敏捷性
  61.   STRONGEST_WEAPON_PARAM_ORDER = [ :atk, :spi, :agi, :def ]
  62.   # ◆ 最強防具選択時のパラメータ優先順位
  63.   #  指定方法は武器と同じ。
  64.   STRONGEST_ARMOR_PARAM_ORDER  = [ :def, :spi, :agi, :atk ]

  65.   # ◆ AP ウィンドウを使用する
  66.   #  true  : 使用する
  67.   #  false : 使用しない
  68.   #  ≪スキル習得装備≫ 併用時のみ有効。
  69.   SHOW_AP_WINDOW    = true
  70.   # ◆ AP ウィンドウに表示するスキル数
  71.   #  多くしすぎすると表示がバグります。
  72.   #  (4 以下を推奨)
  73.   AP_WINDOW_SKILLS  = 4
  74.   # ◆ AP ウィンドウの習得スキル名のキャプション
  75.   AP_WINDOW_CAPTION = "習得#{Vocab.skill}"
  76.   # ◆ AP ウィンドウの表示切り替えボタン
  77.   #  このボタンを押すと、AP ウィンドウの表示/非表示が切り替わる。
  78.   AP_WINDOW_BUTTON  = Input::X
  79. end
  80. end

  81. #==============================================================================
  82. # ☆ カスタマイズ項目 終了 - Customize END ☆
  83. #==============================================================================

  84. $imported = {} if $imported == nil
  85. $imported["ExtendedEquipScene"] = true

  86. module KGC::ExtendedEquipScene
  87.   # パラメータ取得用 Proc
  88.   GET_PARAM_PROC = {
  89.     :atk => Proc.new { |n| n.atk },
  90.     :def => Proc.new { |n| n.def },
  91.     :spi => Proc.new { |n| n.spi },
  92.     :agi => Proc.new { |n| n.agi },
  93.   }
  94.   # 最強アイテム用構造体
  95.   StrongestItem = Struct.new("StrongestItem", :index, :item)
  96. end

  97. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  98. #==============================================================================
  99. # ■ Vocab
  100. #==============================================================================

  101. module Vocab
  102.   # 命中率
  103.   def self.hit
  104.     return KGC::ExtendedEquipScene::VOCAB_PARAM[:hit]
  105.   end

  106.   # 回避率
  107.   def self.eva
  108.     return KGC::ExtendedEquipScene::VOCAB_PARAM[:eva]
  109.   end

  110.   # クリティカル率
  111.   def self.cri
  112.     return KGC::ExtendedEquipScene::VOCAB_PARAM[:cri]
  113.   end
  114. end

  115. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  116. #==============================================================================
  117. # □ Window_ExtendedEquipCommand
  118. #------------------------------------------------------------------------------
  119. #   拡張装備画面で、実行する操作を選択するウィンドウです。
  120. #==============================================================================

  121. class Window_ExtendedEquipCommand < Window_Command
  122.   #--------------------------------------------------------------------------
  123.   # ● オブジェクト初期化
  124.   #--------------------------------------------------------------------------
  125.   def initialize
  126.     super(160, KGC::ExtendedEquipScene::COMMANDS)
  127.     self.active = false
  128.     self.z = 1000
  129.   end
  130.   #--------------------------------------------------------------------------
  131.   # ● ヘルプウィンドウの更新
  132.   #--------------------------------------------------------------------------
  133.   def update_help
  134.     @help_window.set_text(KGC::ExtendedEquipScene::COMMAND_HELP[self.index])
  135.   end
  136. end

  137. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  138. #==============================================================================
  139. # □ Window_EquipBaseInfo
  140. #------------------------------------------------------------------------------
  141. #   装備画面で、アクターの基本情報を表示するウィンドウです。
  142. #==============================================================================

  143. class Window_EquipBaseInfo < Window_Base
  144.   #--------------------------------------------------------------------------
  145.   # ● オブジェクト初期化
  146.   #     x     : ウィンドウの X 座標
  147.   #     y     : ウィンドウの Y 座標
  148.   #     actor : アクター
  149.   #--------------------------------------------------------------------------
  150.   def initialize(x, y, actor)
  151.     super(x, y, Graphics.width / 2, WLH + 32)
  152.     @actor = actor
  153.     refresh
  154.   end
  155.   #--------------------------------------------------------------------------
  156.   # ● リフレッシュ
  157.   #--------------------------------------------------------------------------
  158.   def refresh
  159.     self.contents.clear
  160.     draw_actor_name(@actor, 0, 0)
  161.     # EP 制を使用する場合は EP を描画
  162.     if $imported["EquipExtension"] && KGC::EquipExtension::USE_EP_SYSTEM
  163.       draw_actor_ep(@actor, 116, 0, Graphics.width / 2 - 148)
  164.     end
  165.   end
  166. end

  167. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  168. #==============================================================================
  169. # ■ Window_Equip
  170. #==============================================================================

  171. class Window_Equip < Window_Selectable

  172.   unless KGC::ExtendedEquipScene::USE_COMMAND_WINDOW

  173.   #--------------------------------------------------------------------------
  174.   # ● カーソルを 1 ページ後ろに移動
  175.   #--------------------------------------------------------------------------
  176.   def cursor_pagedown
  177.     return if Input.repeat?(Input::R)
  178.     super
  179.   end
  180.   #--------------------------------------------------------------------------
  181.   # ● カーソルを 1 ページ前に移動
  182.   #--------------------------------------------------------------------------
  183.   def cursor_pageup
  184.     return if Input.repeat?(Input::L)
  185.     super
  186.   end

  187.   end  # <-- unless KGC::ExtendedEquipScene::USE_COMMAND_WINDOW

  188.   #--------------------------------------------------------------------------
  189.   # ● フレーム更新
  190.   #--------------------------------------------------------------------------
  191.   def update
  192.     super
  193.     return unless self.active

  194.     if Input.repeat?(Input::RIGHT)
  195.       Sound.play_cursor
  196.       cursor_pagedown
  197.     elsif Input.repeat?(Input::LEFT)
  198.       Sound.play_cursor
  199.       cursor_pageup
  200.     end
  201.   end
  202. end

  203. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  204. #==============================================================================
  205. # ■ Window_EquipItem
  206. #==============================================================================

  207. class Window_EquipItem < Window_Item
  208.   #--------------------------------------------------------------------------
  209.   # ● オブジェクト初期化
  210.   #     x          : ウィンドウの X 座標
  211.   #     y          : ウィンドウの Y 座標
  212.   #     width      : ウィンドウの幅
  213.   #     height     : ウィンドウの高さ
  214.   #     actor      : アクター
  215.   #     equip_type : 装備部位
  216.   #--------------------------------------------------------------------------
  217.   alias initialize_KGC_ExtendedEquipScene initialize
  218.   def initialize(x, y, width, height, actor, equip_type)
  219.     width = Graphics.width / 2

  220.     initialize_KGC_ExtendedEquipScene(x, y, width, height, actor, equip_type)

  221.     @column_max = 1
  222.     refresh
  223.   end
  224.   #--------------------------------------------------------------------------
  225.   # ● リフレッシュ
  226.   #--------------------------------------------------------------------------
  227.   unless method_defined?(:refresh_KGC_ExtendedEquipScene)
  228.     alias refresh_KGC_ExtendedEquipScene refresh
  229.   end
  230.   def refresh
  231.     return if @column_max == 2  # 無駄な描画はしない

  232.     refresh_KGC_ExtendedEquipScene
  233.   end
  234. end

  235. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  236. #==============================================================================
  237. # □ Window_ExtendedEquipStatus
  238. #------------------------------------------------------------------------------
  239. #   拡張装備画面で、アクターの能力値変化を表示するウィンドウです。
  240. #==============================================================================

  241. class Window_ExtendedEquipStatus < Window_EquipStatus
  242.   #--------------------------------------------------------------------------
  243.   # ○ 公開インスタンス変数
  244.   #--------------------------------------------------------------------------
  245.   attr_writer   :equip_type               # 装備タイプ
  246.   #--------------------------------------------------------------------------
  247.   # ● オブジェクト初期化
  248.   #     x     : ウィンドウの X 座標
  249.   #     y     : ウィンドウの Y 座標
  250.   #     actor : アクター
  251.   #--------------------------------------------------------------------------
  252.   def initialize(x, y, actor)
  253.     @equip_type = -1
  254.     @caption_cache = nil
  255.     super(x, y, actor)
  256.     @new_item = nil
  257.     @new_param = {}
  258.     refresh
  259.   end
  260.   #--------------------------------------------------------------------------
  261.   # ● 解放
  262.   #--------------------------------------------------------------------------
  263.   def dispose
  264.     super
  265.     @caption_cache.dispose if @caption_cache != nil
  266.   end
  267.   #--------------------------------------------------------------------------
  268.   # ● ウィンドウ内容の作成
  269.   #--------------------------------------------------------------------------
  270.   def create_contents
  271.     self.contents.dispose
  272.     self.contents = Bitmap.new(Graphics.width / 2 - 32, height - 32)
  273.   end
  274.   #--------------------------------------------------------------------------
  275.   # ● リフレッシュ
  276.   #--------------------------------------------------------------------------
  277.   def refresh
  278.     return if @equip_type < 0

  279.     if @caption_cache == nil
  280.       create_cache
  281.     else
  282.       self.contents.clear
  283.       self.contents.blt(0, 0, @caption_cache, @caption_cache.rect)
  284.     end
  285.     draw_item_name(@actor.equips[@equip_type], 0, 0)
  286.     draw_item_name(@new_item, 24, WLH)
  287.     KGC::ExtendedEquipScene::EQUIP_PARAMS.each_with_index { |param, i|
  288.       draw_parameter(0, WLH * (i + 2), param)
  289.     }
  290.   end
  291.   #--------------------------------------------------------------------------
  292.   # ○ キャッシュ生成
  293.   #--------------------------------------------------------------------------
  294.   def create_cache
  295.     create_contents

  296.     self.contents.font.color = system_color
  297.     self.contents.draw_text(0, WLH, 20, WLH, "→")
  298.     # パラメータ描画
  299.     KGC::ExtendedEquipScene::EQUIP_PARAMS.each_with_index { |param, i|
  300.       draw_parameter_name(0, WLH * (i + 2), param)
  301.     }

  302.     @caption_cache = Bitmap.new(self.contents.width, self.contents.height)
  303.     @caption_cache.blt(0, 0, self.contents, self.contents.rect)
  304.   end
  305.   #--------------------------------------------------------------------------
  306.   # ○ 能力値名の描画
  307.   #     x    : 描画先 X 座標
  308.   #     y    : 描画先 Y 座標
  309.   #     type : 能力値の種類
  310.   #--------------------------------------------------------------------------
  311.   def draw_parameter_name(x, y, type)
  312.     case type
  313.     when :maxhp
  314.       name = Vocab.hp
  315.     when :maxmp
  316.       name = Vocab.mp
  317.     when :atk
  318.       name = Vocab.atk
  319.     when :def
  320.       name = Vocab.def
  321.     when :spi
  322.       name = Vocab.spi
  323.     when :agi
  324.       name = Vocab.agi
  325.     when :hit
  326.       name = Vocab.hit
  327.     when :eva
  328.       name = Vocab.eva
  329.     when :cri
  330.       name = Vocab.cri
  331.     end
  332.     self.contents.font.color = system_color
  333.     self.contents.draw_text(x + 4, y, 96, WLH, name)
  334.     self.contents.font.color = system_color
  335.     self.contents.draw_text(x + 156, y, 20, WLH, "→", 1)
  336.   end
  337.   #--------------------------------------------------------------------------
  338.   # ● 装備変更後の能力値設定
  339.   #     new_param : 装備変更後のパラメータの配列
  340.   #     new_item  : 変更後の装備
  341.   #--------------------------------------------------------------------------
  342.   def set_new_parameters(new_param, new_item)
  343.     changed = false
  344.     # パラメータ変化判定
  345.     KGC::ExtendedEquipScene::EQUIP_PARAMS.each { |k|
  346.       if @new_param[k] != new_param[k]
  347.         changed = true
  348.         break
  349.       end
  350.     }
  351.     changed |= (@new_item != new_item)

  352.     if changed
  353.       @new_item = new_item
  354.       @new_param = new_param
  355.       refresh
  356.     end
  357.   end
  358.   #--------------------------------------------------------------------------
  359.   # ● 能力値の描画
  360.   #     x    : 描画先 X 座標
  361.   #     y    : 描画先 Y 座標
  362.   #     type : 能力値の種類
  363.   #--------------------------------------------------------------------------
  364.   def draw_parameter(x, y, type)
  365.     case type
  366.     when :maxhp
  367.       value = @actor.maxhp
  368.     when :maxmp
  369.       value = @actor.maxmp
  370.     when :atk
  371.       value = @actor.atk
  372.     when :def
  373.       value = @actor.def
  374.     when :spi
  375.       value = @actor.spi
  376.     when :agi
  377.       value = @actor.agi
  378.     when :hit
  379.       value = @actor.hit
  380.     when :eva
  381.       value = @actor.eva
  382.     when :cri
  383.       value = @actor.cri
  384.     end
  385.     new_value = @new_param[type]
  386.     self.contents.font.color = normal_color
  387.     self.contents.draw_text(x + 106, y, 48, WLH, value, 2)
  388.     if new_value != nil
  389.       self.contents.font.color = new_parameter_color(value, new_value)
  390.       self.contents.draw_text(x + 176, y, 48, WLH, new_value, 2)
  391.     end
  392.   end
  393. end

  394. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  395. #==============================================================================
  396. # □ Window_ExtendedEquipAPViewer
  397. #------------------------------------------------------------------------------
  398. #   拡張装備画面で、習得スキルを表示するウィンドウです。
  399. #==============================================================================

  400. if $imported["EquipLearnSkill"]
  401. class Window_ExtendedEquipAPViewer < Window_APViewer
  402.   #--------------------------------------------------------------------------
  403.   # ● 公開インスタンス変数
  404.   #--------------------------------------------------------------------------
  405.   attr_reader   :item                     # 表示対象のアイテム
  406.   #--------------------------------------------------------------------------
  407.   # ● オブジェクト初期化
  408.   #     x      : ウィンドウの X 座標
  409.   #     y      : ウィンドウの Y 座標
  410.   #     width  : ウィンドウの幅
  411.   #     height : ウィンドウの高さ
  412.   #     actor  : アクター
  413.   #--------------------------------------------------------------------------
  414.   def initialize(x, y, width, height, actor)
  415.     @item = nil
  416.     super
  417.     self.index  = -1
  418.     self.active = false
  419.   end
  420.   #--------------------------------------------------------------------------
  421.   # ○ アイテム設定
  422.   #--------------------------------------------------------------------------
  423.   def item=(new_item)
  424.     @item = new_item
  425.     refresh
  426.   end
  427.   #--------------------------------------------------------------------------
  428.   # ○ リフレッシュ
  429.   #--------------------------------------------------------------------------
  430.   def refresh
  431.     @data = []
  432.     @can_gain_ap_skills = @actor.can_gain_ap_skills
  433.     @equipment_skills = @actor.equipment_skills(true)

  434.     skills = (@item == nil ? [] : @item.learn_skills)
  435.     skills.each { |i|
  436.       @data << $data_skills[i]
  437.     }
  438.     @item_max = @data.size
  439.     create_contents
  440.     draw_caption
  441.     @item_max.times { |i| draw_item(i) }
  442.   end
  443.   #--------------------------------------------------------------------------
  444.   # ○ キャプションを描画
  445.   #--------------------------------------------------------------------------
  446.   def draw_caption
  447.     self.contents.font.color = system_color
  448.     self.contents.draw_text(0, 0, width - 96, WLH,
  449.       KGC::ExtendedEquipScene::AP_WINDOW_CAPTION, 1)
  450.     self.contents.draw_text(width - 96, 0, 64, WLH, Vocab.ap, 1)
  451.     self.contents.font.color = normal_color
  452.   end
  453.   #--------------------------------------------------------------------------
  454.   # ○ スキルをマスク表示するかどうか
  455.   #     skill : スキル
  456.   #--------------------------------------------------------------------------
  457.   def mask?(skill)
  458.     return false
  459.   end
  460.   #--------------------------------------------------------------------------
  461.   # ○ 項目の描画
  462.   #     index : 項目番号
  463.   #--------------------------------------------------------------------------
  464.   def draw_item(index)
  465.     rect = item_rect(index)
  466.     rect.y += WLH
  467.     self.contents.clear_rect(rect)
  468.     skill = @data[index]
  469.     if skill != nil
  470.       draw_item_name(skill, rect.x, rect.y)
  471.       if skill.need_ap > 0
  472.         if @actor.ap_full?(skill) || @actor.skill_learn?(skill)
  473.           # マスター
  474.           text = Vocab.full_ap_skill
  475.         else
  476.           # AP 蓄積中
  477.           text = sprintf("%4d/%4d", @actor.skill_ap(skill.id), skill.need_ap)
  478.         end
  479.       end
  480.       # AP を描画
  481.       rect.x = rect.width - 80
  482.       rect.width = 80
  483.       self.contents.font.color = normal_color
  484.       self.contents.draw_text(rect, text, 2)
  485.     end
  486.   end
  487. end
  488. end  # <-- if $imported["EquipLearnSkill"]

  489. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  490. #==============================================================================
  491. # ■ Scene_Equip
  492. #==============================================================================

  493. class Scene_Equip < Scene_Base
  494.   #--------------------------------------------------------------------------
  495.   # ○ 定数
  496.   #--------------------------------------------------------------------------
  497.   STANDARD_WIDTH  = Graphics.width / 2
  498.   ANIMATION_SPPED = 8
  499.   #--------------------------------------------------------------------------
  500.   # ● 開始処理
  501.   #--------------------------------------------------------------------------
  502.   alias start_KGC_ExtendedEquipScene start
  503.   def start
  504.     start_KGC_ExtendedEquipScene

  505.     # ステータスウィンドウを作り直す
  506.     @status_window.dispose
  507.     @status_window = Window_ExtendedEquipStatus.new(0, 0, @actor)

  508.     create_command_window

  509.     @last_item = RPG::Weapon.new
  510.     @base_info_window = Window_EquipBaseInfo.new(
  511.       0, @help_window.height, @actor)

  512.     if $imported["EquipLearnSkill"] && KGC::ExtendedEquipScene::SHOW_AP_WINDOW
  513.       @ap_window = Window_ExtendedEquipAPViewer.new(0, 0, 64, 64, @actor)
  514.     end

  515.     adjust_window_for_extended_equiop_scene
  516.     Graphics.frame_reset
  517.   end
  518.   #--------------------------------------------------------------------------
  519.   # ○ ウィンドウの座標・サイズを拡張装備画面向けに調整
  520.   #--------------------------------------------------------------------------
  521.   def adjust_window_for_extended_equiop_scene
  522.     @base_info_window.width = @equip_window.width

  523.     @equip_window.x = 0
  524.     @equip_window.y = @base_info_window.y + @base_info_window.height
  525.     @equip_window.height = Graphics.height - @equip_window.y
  526.     @equip_window.active = false
  527.     @equip_window.z = 100

  528.     @status_window.x = 0
  529.     @status_window.y = @equip_window.y
  530.     @status_window.width   = STANDARD_WIDTH
  531.     @status_window.height  = @equip_window.height
  532.     @status_window.visible = false
  533.     @status_window.z = 100

  534.     @item_windows.each { |window|
  535.       window.x = @equip_window.width
  536.       window.y = @help_window.height
  537.       window.z = 50
  538.       window.height = Graphics.height - @help_window.height
  539.     }

  540.     if @ap_window != nil
  541.       @ap_window.width = @item_windows[0].width
  542.       @ap_window.height =
  543.         (KGC::ExtendedEquipScene::AP_WINDOW_SKILLS + 1) * Window_Base::WLH + 32
  544.       @ap_window.x = @equip_window.width
  545.       @ap_window.y = Graphics.height - @ap_window.height
  546.       @ap_window.z = @item_windows[0].z + 10
  547.       @ap_window.refresh
  548.     end

  549.     # コマンドウィンドウ不使用の場合
  550.     unless KGC::ExtendedEquipScene::USE_COMMAND_WINDOW
  551.       @command_window.visible = false
  552.       @command_window.active  = false
  553.       @equip_window.active    = true
  554.       @equip_window.call_update_help
  555.     end
  556.   end
  557.   #--------------------------------------------------------------------------
  558.   # ○ コマンドウィンドウの作成
  559.   #--------------------------------------------------------------------------
  560.   def create_command_window
  561.     @command_window = Window_ExtendedEquipCommand.new
  562.     @command_window.active = true
  563.     @command_window.x = (Graphics.width  - @command_window.width)  / 2
  564.     @command_window.y = (Graphics.height - @command_window.height) / 2
  565.     @command_window.help_window = @help_window

  566.     # 装備固定なら「最強装備」「すべて外す」を無効化
  567.     if @actor.fix_equipment
  568.       @command_window.draw_item(1, false)
  569.       @command_window.draw_item(2, false)
  570.     end
  571.   end
  572.   #--------------------------------------------------------------------------
  573.   # ● 終了処理
  574.   #--------------------------------------------------------------------------
  575.   alias terminate_KGC_ExtendedEquipScene terminate
  576.   def terminate
  577.     terminate_KGC_ExtendedEquipScene

  578.     @command_window.dispose
  579.     @base_info_window.dispose
  580.     @ap_window.dispose if @ap_window != nil
  581.   end
  582.   #--------------------------------------------------------------------------
  583.   # ○ ウィンドウをリフレッシュ
  584.   #--------------------------------------------------------------------------
  585.   def refresh_window
  586.     @base_info_window.refresh
  587.     @equip_window.refresh
  588.     @status_window.refresh
  589.     @item_windows.each { |window| window.refresh }
  590.     @ap_window.refresh if @ap_window != nil
  591.     Graphics.frame_reset
  592.   end
  593.   #--------------------------------------------------------------------------
  594.   # ● フレーム更新
  595.   #--------------------------------------------------------------------------
  596.   alias update_KGC_ExtendedEquipScene update
  597.   def update
  598.     update_command_window
  599.     if @command_window.active
  600.       update_KGC_ExtendedEquipScene
  601.       update_command_selection
  602.     else
  603.       update_KGC_ExtendedEquipScene
  604.       update_ap_window
  605.     end
  606.   end
  607.   #--------------------------------------------------------------------------
  608.   # ○ コマンドウィンドウの更新
  609.   #--------------------------------------------------------------------------
  610.   def update_command_window
  611.     @command_window.update
  612.   end
  613.   #--------------------------------------------------------------------------
  614.   # ● ステータスウィンドウの更新
  615.   #--------------------------------------------------------------------------
  616.   def update_status_window
  617.     @base_info_window.update
  618.     @status_window.update

  619.     if @command_window.active || @equip_window.active
  620.       @status_window.set_new_parameters({}, nil)
  621.     elsif @item_window.active
  622.       return if @last_item == @item_window.item

  623.       @last_item = @item_window.item
  624.       temp_actor = Marshal.load(Marshal.dump(@actor))
  625.       temp_actor.change_equip(@equip_window.index, @item_window.item, true)
  626.       param = {
  627.         :maxhp => temp_actor.maxhp,
  628.         :maxmp => temp_actor.maxmp,
  629.         :atk   => temp_actor.atk,
  630.         :def   => temp_actor.def,
  631.         :spi   => temp_actor.spi,
  632.         :agi   => temp_actor.agi,
  633.         :hit   => temp_actor.hit,
  634.         :eva   => temp_actor.eva,
  635.         :cri   => temp_actor.cri,
  636.       }
  637.       @status_window.equip_type = @equip_window.index
  638.       @status_window.set_new_parameters(param, @last_item)
  639.       Graphics.frame_reset
  640.     end
  641.   end
  642.   #--------------------------------------------------------------------------
  643.   # ○ AP ウィンドウの更新
  644.   #--------------------------------------------------------------------------
  645.   def update_ap_window
  646.     return if @ap_window == nil

  647.     # 表示/非表示切り替え
  648.     button = KGC::ExtendedEquipScene::AP_WINDOW_BUTTON
  649.     if button != nil && Input.trigger?(button)
  650.       Sound.play_decision
  651.       if @ap_window.openness == 255
  652.         @ap_window.close
  653.       else
  654.         @ap_window.open
  655.       end
  656.     end

  657.     # 表示内容更新
  658.     @ap_window.update
  659.     new_item = (@equip_window.active ? @equip_window.item : @item_window.item)
  660.     @ap_window.item = new_item if @ap_window.item != new_item

  661.     # 位置更新
  662.     ay     = @ap_window.y
  663.     ayb    = @ap_window.y + @ap_window.height  # AP window: Bottom
  664.     cy     = @item_window.y + 16
  665.     cy    += @item_window.cursor_rect.y if @item_window.active
  666.     cyb    = cy + Window_Base::WLH             # Cursor rect: Bottom
  667.     bottom = (ay != @item_window.y)
  668.     if bottom
  669.       # 下で被る
  670.       @ap_window.y = @item_window.y if ay < cyb
  671.     else
  672.       # 上で被る
  673.       @ap_window.y = Graphics.height - @ap_window.height if cy < ayb
  674.     end
  675.   end
  676.   #--------------------------------------------------------------------------
  677.   # ○ コマンド選択の更新
  678.   #--------------------------------------------------------------------------
  679.   def update_command_selection
  680.     update_window_position_for_equip_selection
  681.     if Input.trigger?(Input::B)
  682.       Sound.play_cancel
  683.       return_scene
  684.     elsif Input.trigger?(Input::R)
  685.       Sound.play_cursor
  686.       next_actor
  687.     elsif Input.trigger?(Input::L)
  688.       Sound.play_cursor
  689.       prev_actor
  690.     elsif Input.trigger?(Input::C)
  691.       case @command_window.index
  692.       when 0  # 装備変更
  693.         Sound.play_decision
  694.         # 装備部位ウィンドウに切り替え
  695.         @equip_window.active   = true
  696.         @command_window.active = false
  697.         @command_window.close
  698.       when 1  # 最強装備
  699.         if @actor.fix_equipment
  700.           Sound.play_buzzer
  701.           return
  702.         end
  703.         Sound.play_equip
  704.         process_equip_strongest
  705.       when 2  # すべて外す
  706.         if @actor.fix_equipment
  707.           Sound.play_buzzer
  708.           return
  709.         end
  710.         Sound.play_equip
  711.         process_remove_all
  712.       end
  713.     end
  714.   end
  715.   #--------------------------------------------------------------------------
  716.   # ● 装備部位選択の更新
  717.   #--------------------------------------------------------------------------
  718.   alias update_equip_selection_KGC_ExtendedEquipScene update_equip_selection
  719.   def update_equip_selection
  720.     update_window_position_for_equip_selection
  721.     if Input.trigger?(Input::A)
  722.       if @actor.fix_equipment
  723.         Sound.play_buzzer
  724.         return
  725.       end
  726.       # 選択している装備品を外す
  727.       Sound.play_equip
  728.       @actor.change_equip(@equip_window.index, nil)
  729.       refresh_window
  730.     elsif Input.trigger?(Input::B)
  731.       Sound.play_cancel
  732.       if KGC::ExtendedEquipScene::USE_COMMAND_WINDOW
  733.         show_command_window
  734.       else
  735.         # コマンドウィンドウ不使用なら終了
  736.         return_scene
  737.       end
  738.       return
  739.     elsif Input.trigger?(Input::R)
  740.       unless KGC::ExtendedEquipScene::USE_COMMAND_WINDOW
  741.         # コマンドウィンドウ不使用時のみ切り替え
  742.         Sound.play_cursor
  743.         next_actor
  744.         return
  745.       end
  746.     elsif Input.trigger?(Input::L)
  747.       unless KGC::ExtendedEquipScene::USE_COMMAND_WINDOW
  748.         # コマンドウィンドウ不使用時のみ切り替え
  749.         Sound.play_cursor
  750.         prev_actor
  751.         return
  752.       end
  753.     elsif Input.trigger?(Input::C)
  754.       # 前回のアイテムをダミーにする
  755.       @last_item = RPG::Weapon.new
  756.     end

  757.     update_equip_selection_KGC_ExtendedEquipScene
  758.   end
  759.   #--------------------------------------------------------------------------
  760.   # ○ コマンドウィンドウに切り替え
  761.   #--------------------------------------------------------------------------
  762.   def show_command_window
  763.     @equip_window.active   = false
  764.     @command_window.active = true
  765.     @command_window.open
  766.   end
  767.   #--------------------------------------------------------------------------
  768.   # ● アイテム選択の更新
  769.   #--------------------------------------------------------------------------
  770.   alias update_item_selection_KGC_ExtendedEquipScene update_item_selection
  771.   def update_item_selection
  772.     update_window_position_for_item_selection

  773.     update_item_selection_KGC_ExtendedEquipScene

  774.     if Input.trigger?(Input::C)
  775.       @base_info_window.refresh
  776.     end
  777.   end
  778.   #--------------------------------------------------------------------------
  779.   # ○ ウィンドウ位置の更新 (装備部位選択)
  780.   #--------------------------------------------------------------------------
  781.   def update_window_position_for_equip_selection
  782.     return if @item_window.x == @equip_window.width

  783.     @base_info_window.width = @equip_window.width
  784.     @item_window.x = [@item_window.x + ANIMATION_SPPED, @equip_window.width].min
  785.     if @ap_window != nil
  786.       @ap_window.x = @item_window.x
  787.     end
  788.     @equip_window.visible  = true
  789.     @status_window.visible = false
  790.   end
  791.   #--------------------------------------------------------------------------
  792.   # ○ ウィンドウ位置の更新 (アイテム選択)
  793.   #--------------------------------------------------------------------------
  794.   def update_window_position_for_item_selection
  795.     return if @item_window.x == STANDARD_WIDTH

  796.     @base_info_window.width = STANDARD_WIDTH
  797.     @item_window.x = [@item_window.x - ANIMATION_SPPED, STANDARD_WIDTH].max
  798.     if @ap_window != nil
  799.       @ap_window.x = @item_window.x
  800.     end
  801.     @equip_window.visible  = false
  802.     @status_window.visible = true
  803.   end
  804.   #--------------------------------------------------------------------------
  805.   # ○ 最強装備の処理
  806.   #--------------------------------------------------------------------------
  807.   def process_equip_strongest
  808.     # 以前のパラメータを保存
  809.     last_hp = @actor.hp
  810.     last_mp = @actor.mp
  811.     # 最強装備対象の種別を取得
  812.     types = [-1]
  813.     types += ($imported["EquipExtension"] ? @actor.equip_type : [0, 1, 2, 3])
  814.     ignore_types   = KGC::ExtendedEquipScene::IGNORE_STRONGEST_KIND.clone
  815.     judged_indices = []
  816.     weapon_range   = 0..(@actor.two_swords_style ? 1 : 0)

  817.     # 装備対象の武具をすべて外す
  818.     types.each_with_index { |t, i|
  819.       @actor.change_equip(i, nil) unless ignore_types.include?(t)
  820.     }

  821.     # 最強武器装備
  822.     weapon_range.each { |i|
  823.       judged_indices << i
  824.       # 1本目が両手持ちの場合は2本目を装備しない
  825.       if @actor.two_swords_style
  826.         weapon = @actor.weapons[0]
  827.         next if weapon != nil && weapon.two_handed
  828.       end
  829.       weapon = get_strongest_weapon(i)
  830.       @actor.change_equip(i, weapon) if weapon != nil
  831.     }

  832.     # 両手持ち武器を持っている場合は盾 (防具1) を装備しない
  833.     weapon = @actor.weapons[0]
  834.     if weapon != nil && weapon.two_handed
  835.       judged_indices |= [1]
  836.     end

  837.     # 最強防具装備
  838.     exist = true
  839.     while exist
  840.       strongest = get_strongest_armor(types, ignore_types, judged_indices)
  841.       if strongest != nil
  842.         @actor.change_equip(strongest.index, strongest.item)
  843.         judged_indices << strongest.index
  844.       else
  845.         exist = false
  846.       end
  847.     end

  848.     # 以前のパラメータを復元
  849.     @actor.hp = last_hp
  850.     @actor.mp = last_mp

  851.     refresh_window
  852.   end
  853.   #--------------------------------------------------------------------------
  854.   # ○ 最も強力な武器を取得
  855.   #     equip_type : 装備部位
  856.   #    該当するアイテムがなければ nil を返す。
  857.   #--------------------------------------------------------------------------
  858.   def get_strongest_weapon(equip_type)
  859.     # 装備可能な武器を取得
  860.     equips = $game_party.items.find_all { |item|
  861.       valid = item.is_a?(RPG::Weapon) && @actor.equippable?(item)
  862.       if valid && $imported["EquipExtension"]
  863.         valid = @actor.ep_condition_clear?(equip_type, item)
  864.       end
  865.       valid
  866.     }
  867.     return nil if equips.empty?

  868.     param_order = KGC::ExtendedEquipScene::STRONGEST_WEAPON_PARAM_ORDER
  869.     return get_strongest_item(equips, param_order)
  870.   end
  871.   #--------------------------------------------------------------------------
  872.   # ○ 最も強力なアイテムを取得
  873.   #     equips      : 装備品リスト
  874.   #     param_order : パラメータ優先順位
  875.   #--------------------------------------------------------------------------
  876.   def get_strongest_item(equips, param_order)
  877.     result = []
  878.     param_order.each { |param|
  879.       # パラメータ順にソート
  880.       get_proc = KGC::ExtendedEquipScene::GET_PARAM_PROC[param]
  881.       equips   = equips.sort_by { |item| -get_proc.call(item) }
  882.       # 最もパラメータが高いアイテムを取得
  883.       highest = equips[0]
  884.       result  = equips.find_all { |item|
  885.         get_proc.call(highest) == get_proc.call(item)
  886.       }
  887.       # 候補が1つに絞れたら終了
  888.       break if result.size == 1
  889.       equips = result.clone
  890.     }

  891.     # 最も ID が大きいアイテムを取得
  892.     return (result.sort_by { |v| -v.id })[0]
  893.   end
  894.   #--------------------------------------------------------------------------
  895.   # ○ 最も強力な防具を取得 (StrongestItem)
  896.   #     types          : 装備部位リスト
  897.   #     ignore_types   : 無視する部位リスト
  898.   #     judged_indices : 判定済み部位番号リスト
  899.   #    該当するアイテムがなければ nil を返す。
  900.   #--------------------------------------------------------------------------
  901.   def get_strongest_armor(types, ignore_types, judged_indices)
  902.     # 装備可能な防具を取得
  903.     equips = $game_party.items.find_all { |item|
  904.       item.is_a?(RPG::Armor) &&
  905.         !ignore_types.include?(item.kind) &&
  906.         @actor.equippable?(item)
  907.     }
  908.     return nil if equips.empty?

  909.     param_order = KGC::ExtendedEquipScene::STRONGEST_ARMOR_PARAM_ORDER

  910.     # 最強防具を探す
  911.     until equips.empty?
  912.       armor = get_strongest_item(equips, param_order)
  913.       types.each_with_index { |t, i|
  914.         next if judged_indices.include?(i)
  915.         next if armor.kind != t
  916.         if $imported["EquipExtension"]
  917.           next unless @actor.ep_condition_clear?(i, armor)
  918.         end
  919.         return KGC::ExtendedEquipScene::StrongestItem.new(i, armor)
  920.       }
  921.       equips.delete(armor)
  922.     end
  923.     return nil
  924.   end
  925.   #--------------------------------------------------------------------------
  926.   # ○ すべて外す処理
  927.   #--------------------------------------------------------------------------
  928.   def process_remove_all
  929.     type_max = ($imported["EquipExtension"] ? @actor.equip_type.size : 4) + 1
  930.     type_max.times { |i| @actor.change_equip(i, nil) }
  931.     refresh_window
  932.   end
  933. end
复制代码
不过状态栏就要重新排版了

点评

没看到你点评,刚刚才找到解决方法- - 不过现在状态栏的显示很让我纠结啊  发表于 2011-8-25 00:19
60行 IGNORE_STRONGEST_KIND = [3, 5] 是最强武器 不包括的装备  发表于 2011-8-24 19:28
这个脚本和我作品里面的装备扩张脚本有点bug,我选择最强装备的时候,腰部和两个装饰品装备不上- -  发表于 2011-8-24 18:25
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2025-1-10 12:12

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表