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

Project1

 找回密码
 注册会员
搜索
查看: 2610|回复: 3
打印 上一主题 下一主题

[已经解决] 关于物品菜单强化脚本

[复制链接]

Lv1.梦旅人

梦石
0
星屑
63
在线时间
211 小时
注册时间
2011-7-7
帖子
148
跳转到指定楼层
1
发表于 2012-10-24 15:17:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 1032103505 于 2012-10-31 00:06 编辑

我想问的是怎么让物品可以分配,到具体目录【(如物品类,分为,背包用,战斗用,炼金,食物,饮料,材料,书籍,宝物,任务)其中补HP和MP的分为战斗用】,也就是说让物品可以在自身的物品栏里面分类,请说出具体方法

点评

好歹先把脚本附上来  发表于 2012-10-24 20:05
签名被我吃了

Lv1.梦旅人

梦石
0
星屑
63
在线时间
211 小时
注册时间
2011-7-7
帖子
148
2
 楼主| 发表于 2012-10-24 20:15:55 | 只看该作者
  1. #==============================================================================
  2. #
  3. # ▼ Yanfly Engine Ace - Ace Item Menu v1.02
  4. # -- Last Updated: 2012.01.05
  5. # -- Level: Normal, Hard
  6. # -- Requires: n/a
  7. #
  8. #==============================================================================

  9. $imported = {} if $imported.nil?
  10. $imported["YEA-ItemMenu"] = true

  11. #==============================================================================
  12. # ▼ Updates
  13. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  14. # 2012.01.05 - Compatibility Update with Equip Dynamic Stats.
  15. # 2012.01.03 - Started Script and Finished.
  16. #            - Compatibility Update with Ace Menu Engine.
  17. #
  18. #==============================================================================
  19. # ▼ Introduction
  20. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  21. # The Ace Item Menu offers more item categorization control and a better layout
  22. # that simulatenously provides information regarding the items to the player,
  23. # while keeping a good amount of the item list visible on screen at once. The
  24. # script can also be customized to rearrange commands and categories.
  25. #
  26. #==============================================================================
  27. # ▼ Instructions
  28. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  29. # To install this script, open up your script editor and copy/paste this script
  30. # to an open slot below ▼ Materials/素材 but above ▼ Main. Remember to save.
  31. #
  32. # -----------------------------------------------------------------------------
  33. # Item Notetags - These notetags go in the item notebox in the database.
  34. # -----------------------------------------------------------------------------
  35. # <category: string>
  36. # Places this object into the item category for "string". Whenever the selected
  37. # category is highlighted in the Ace Item Menu command window, this object will
  38. # be included and shown in the item window.
  39. #
  40. # <image: string>
  41. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  42. # directory with the filename of "string" (without the extension) as the image
  43. # picture shown in the Ace Item Menu.
  44. #
  45. # -----------------------------------------------------------------------------
  46. # Weapon Notetags - These notetags go in the weapon notebox in the database.
  47. # -----------------------------------------------------------------------------
  48. # <category: string>
  49. # Places this object into the item category for "string". Whenever the selected
  50. # category is highlighted in the Ace Item Menu command window, this object will
  51. # be included and shown in the item window.
  52. #
  53. # <image: string>
  54. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  55. # directory with the filename of "string" (without the extension) as the image
  56. # picture shown in the Ace Item Menu.
  57. #
  58. # -----------------------------------------------------------------------------
  59. # Armour Notetags - These notetags go in the armour notebox in the database.
  60. # -----------------------------------------------------------------------------
  61. # <category: string>
  62. # Places this object into the item category for "string". Whenever the selected
  63. # category is highlighted in the Ace Item Menu command window, this object will
  64. # be included and shown in the item window.
  65. #
  66. # <image: string>
  67. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  68. # directory with the filename of "string" (without the extension) as the image
  69. # picture shown in the Ace Item Menu.
  70. #
  71. #==============================================================================
  72. # ▼ Compatibility
  73. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  74. # This script is made strictly for RPG Maker VX Ace. It is highly unlikely that
  75. # it will run with RPG Maker VX without adjusting.
  76. #
  77. #==============================================================================

  78. module YEA
  79.   module ITEM
  80.    
  81.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  82.     # - Item Command Settings -
  83.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  84.     # This array adjusts what options appear in the initial item command window
  85.     # before the items are split into separate categories. Add commands, remove
  86.     # commands, or rearrange them. Here's a list of which does what:
  87.     #
  88.     # -------------------------------------------------------------------------
  89.     # :command         Description
  90.     # -------------------------------------------------------------------------
  91.     # :item            Opens up the various item categories. Default.
  92.     # :weapon          Opens up the various weapon categories. Default.
  93.     # :armor           Opens up the various armour categories. Default.
  94.     # :key_item        Shows a list of the various key items. Default.
  95.     #
  96.     # :gogototori      Requires Kread-EX's Go Go Totori Synthesis.
  97.     #
  98.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  99.     COMMANDS =[
  100.       :item,         # Opens up the various item categories. Default.
  101.       :weapon,       # Opens up the various weapon categories. Default.
  102.       :armor,        # Opens up the various armour categories. Default.
  103.       :key_item,     # Shows a list of the various key items. Default.
  104.       :gogototori,   # Requires Kread-EX's Go Go Totori Synthesis.
  105.     # :custom1,      # Custom command 1.
  106.     # :custom2,      # Custom command 2.
  107.     ] # Do not remove this.
  108.    
  109.     #--------------------------------------------------------------------------
  110.     # - Item Custom Commands -
  111.     # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  112.     # For those who use scripts to that may produce unique effects for the item
  113.     # scene, use this hash to manage the custom commands for the Item Command
  114.     # Window. You can disable certain commands or prevent them from appearing
  115.     # by using switches. If you don't wish to bind them to a switch, set the
  116.     # proper switch to 0 for it to have no impact.
  117.     #--------------------------------------------------------------------------
  118.     CUSTOM_ITEM_COMMANDS ={
  119.     # :command => ["Display Name", EnableSwitch, ShowSwitch, Handler Method],
  120.       :gogototori => ["合成",            0,         0, :command_totori],
  121.       :custom1 => [ "自定義名稱",            0,          0, :command_name1],
  122.       :custom2 => [ "自定義文本",           13,          0, :command_name2],
  123.     } # Do not remove this.
  124.    
  125.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  126.     # - Item Type Settings -
  127.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  128.     # These arrays adjusts and shows the various item types shown for Items,
  129.     # Weapons, and Armours. Note that when using :category symbols, the
  130.     # specific category shown will be equal to the text used for the Display
  131.     # and the included item must contain a category equal to the Display name.
  132.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  133.     # This array contains the order for the Item categories.
  134.     ITEM_TYPES =[
  135.     # [  :symbol,   "Display"],
  136.      [   :field,     "背包内"], # Shows Menu-usable items.
  137.       [  :battle,    "战斗用"], # Shows Battle-usable items.
  138.       [:category,   "炼金"], # Categorized by <category: string>
  139.       [:category,   "食物"], # Categorized by <category: string>
  140.       [:category,   "饮料"], # Categorized by <category: string>
  141.       [:category,   "材料"], # Categorized by <category: string>
  142.       [:category,   "书籍"], # Categorized by <category: string>
  143.       [:category,"特别"], # Categorized by <category: string>
  144.       [:category,  "宝物"], # Shows all key items.
  145.       [     :all,       "所有物品"], # Shows all usable items.
  146.     ] # Do not remove this.
  147.    
  148.     # This array contains the order for the Weapon categories.
  149.     WEAPON_TYPES =[
  150.     # [  :symbol,   "Display"],
  151.       [   :types,  "单个武器"], # Lists all of the individual weapon types.
  152.       [     :all,       "所有武器"], # Shows all weapons.
  153.     ] # Do not remove this.
  154.    
  155.     # This array contains the order for the Armour categories.
  156.     ARMOUR_TYPES =[
  157.     # [  :symbol,   "Display"],
  158.       [   :slots,  "盔甲插槽"], # Lists all of the individual armour slots.
  159.       [   :types,  "装甲类型"], # Lists all of the individual armours types.
  160.       [     :all,       "所有装甲"], # Shows all armours.
  161.     ] # Do not remove this.
  162.    
  163.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  164.     # - Item Status Settings -
  165.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  166.     # The item status window displays information about the item in detail.
  167.     # Adjust the settings below to change the way the status window appears.
  168.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  169.     STATUS_FONT_SIZE = 20       # Font size used for status window.
  170.     MAX_ICONS_DRAWN  = 10       # Maximum number of icons drawn for states.
  171.    
  172.     # The following adjusts the vocabulary used for the status window. Each
  173.     # of the vocabulary settings are self explanatory.
  174.     VOCAB_STATUS ={
  175.       :empty      => "---",          # Text used when nothing is shown.
  176.       :hp_recover => "治疗伤兵",      # Text used for HP Recovery.
  177.       :mp_recover => "恢复魔法",      # Text used for MP Recovery.
  178.       :tp_recover => "恢复TP",      # Text used for TP Recovery.
  179.       :tp_gain    => "增加TP",      # Text used for TP Gain.
  180.       :applies    => "使用效果",      # Text used for applied states and buffs.
  181.       :removes    => "移除效果",      # Text used for removed states and buffs.
  182.     } # Do not remove this.
  183.    
  184.   end # ITEM
  185. end # YEA

  186. #==============================================================================
  187. # ▼ Editting anything past this point may potentially result in causing
  188. # computer damage, incontinence, explosion of user's head, coma, death, and/or
  189. # halitosis so edit at your own risk.
  190. #==============================================================================

  191. module YEA
  192.   module REGEXP
  193.   module BASEITEM
  194.    
  195.     CATEGORY = /<(?:CATEGORIES|category):[ ](.*)>/i
  196.     IMAGE    = /<(?:IMAGE|image):[ ](.*)>/i
  197.    
  198.   end # BASEITEM
  199.   end # REGEXP
  200. end # YEA

  201. #==============================================================================
  202. # ■ Numeric
  203. #==============================================================================

  204. class Numeric
  205.   
  206.   #--------------------------------------------------------------------------
  207.   # new method: group_digits
  208.   #--------------------------------------------------------------------------
  209.   unless $imported["YEA-CoreEngine"]
  210.   def group; return self.to_s; end
  211.   end # $imported["YEA-CoreEngine"]
  212.    
  213. end # Numeric

  214. #==============================================================================
  215. # ■ Vocab
  216. #==============================================================================

  217. module Vocab
  218.   
  219.   #--------------------------------------------------------------------------
  220.   # new method: self.item_status
  221.   #--------------------------------------------------------------------------
  222.   def self.item_status(type)
  223.     return YEA::ITEM::VOCAB_STATUS[type]
  224.   end
  225.   
  226. end # Vocab

  227. #==============================================================================
  228. # ■ DataManager
  229. #==============================================================================

  230. module DataManager
  231.   
  232.   #--------------------------------------------------------------------------
  233.   # alias method: load_database
  234.   #--------------------------------------------------------------------------
  235.   class <<self; alias load_database_aim load_database; end
  236.   def self.load_database
  237.     load_database_aim
  238.     load_notetags_aim
  239.   end
  240.   
  241.   #--------------------------------------------------------------------------
  242.   # new method: load_notetags_aim
  243.   #--------------------------------------------------------------------------
  244.   def self.load_notetags_aim
  245.     groups = [$data_items, $data_weapons, $data_armors]
  246.     for group in groups
  247.       for obj in group
  248.         next if obj.nil?
  249.         obj.load_notetags_aim
  250.       end
  251.     end
  252.   end
  253.   
  254. end # DataManager

  255. #==============================================================================
  256. # ■ RPG::BaseItem
  257. #==============================================================================

  258. class RPG::BaseItem
  259.   
  260.   #--------------------------------------------------------------------------
  261.   # public instance variables
  262.   #--------------------------------------------------------------------------
  263.   attr_accessor :category
  264.   attr_accessor :image
  265.   
  266.   #--------------------------------------------------------------------------
  267.   # common cache: load_notetags_aim
  268.   #--------------------------------------------------------------------------
  269.   def load_notetags_aim
  270.     @category = []
  271.     #---
  272.     self.note.split(/[\r\n]+/).each { |line|
  273.       case line
  274.       #---
  275.       when YEA::REGEXP::BASEITEM::CATEGORY
  276.         @category.push($1.upcase.to_s)
  277.       when YEA::REGEXP::BASEITEM::IMAGE
  278.         @image = $1.to_s
  279.       end
  280.     } # self.note.split
  281.     #---
  282.   end
  283.   
  284. end # RPG::BaseItem

  285. #==============================================================================
  286. # ■ Game_Temp
  287. #==============================================================================

  288. class Game_Temp
  289.   
  290.   #--------------------------------------------------------------------------
  291.   # public instance variables
  292.   #--------------------------------------------------------------------------
  293.   attr_accessor :scene_item_index
  294.   attr_accessor :scene_item_oy
  295.   
  296. end # Game_Temp

  297. #==============================================================================
  298. # ■ Window_ItemList
  299. #==============================================================================

  300. class Window_ItemList < Window_Selectable
  301.   
  302.   #--------------------------------------------------------------------------
  303.   # overwrite method: draw_item
  304.   #--------------------------------------------------------------------------
  305.   def draw_item(index)
  306.     item = @data[index]
  307.     return if item.nil?
  308.     rect = item_rect(index)
  309.     rect.width -= 4
  310.     draw_item_name(item, rect.x, rect.y, enable?(item), rect.width - 24)
  311.     draw_item_number(rect, item)
  312.   end
  313.   
  314. end # Window_ItemList

  315. #==============================================================================
  316. # ■ Window_ItemCommand
  317. #==============================================================================

  318. class Window_ItemCommand < Window_Command
  319.   
  320.   #--------------------------------------------------------------------------
  321.   # public instance variables
  322.   #--------------------------------------------------------------------------
  323.   attr_reader   :item_window
  324.   
  325.   #--------------------------------------------------------------------------
  326.   # initialize
  327.   #--------------------------------------------------------------------------
  328.   def initialize(x, y)
  329.     super(x, y)
  330.   end
  331.   
  332.   #--------------------------------------------------------------------------
  333.   # window_width
  334.   #--------------------------------------------------------------------------
  335.   def window_width; return 160; end
  336.   
  337.   #--------------------------------------------------------------------------
  338.   # visible_line_number
  339.   #--------------------------------------------------------------------------
  340.   def visible_line_number; return 4; end
  341.   
  342.   #--------------------------------------------------------------------------
  343.   # process_ok
  344.   #--------------------------------------------------------------------------
  345.   def process_ok
  346.     $game_temp.scene_item_index = index
  347.     $game_temp.scene_item_oy = self.oy
  348.     super
  349.   end
  350.   
  351.   #--------------------------------------------------------------------------
  352.   # make_command_list
  353.   #--------------------------------------------------------------------------
  354.   def make_command_list
  355.     for command in YEA::ITEM::COMMANDS
  356.       case command
  357.       #--- Default Commands ---
  358.       when :item
  359.         add_command(Vocab::item, :item)
  360.       when :weapon
  361.         add_command(Vocab::weapon, :weapon)
  362.       when :armor
  363.         add_command(Vocab::armor, :armor)
  364.       when :key_item
  365.         add_command(Vocab::key_item, :key_item)
  366.       #--- Imported ---
  367.       when :gogototori
  368.         next unless $imported["KRX-AlchemicSynthesis"]
  369.         process_custom_command(command)
  370.       #--- Custom Commands ---
  371.       else
  372.         process_custom_command(command)
  373.       end
  374.     end
  375.   end
  376.   
  377.   #--------------------------------------------------------------------------
  378.   # process_custom_command
  379.   #--------------------------------------------------------------------------
  380.   def process_custom_command(command)
  381.     return unless YEA::ITEM::CUSTOM_ITEM_COMMANDS.include?(command)
  382.     show = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][2]
  383.     continue = show <= 0 ? true : $game_switches[show]
  384.     return unless continue
  385.     text = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][0]
  386.     switch = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][1]
  387.     enabled = switch <= 0 ? true : $game_switches[switch]
  388.     add_command(text, command, enabled)
  389.   end
  390.   
  391.   #--------------------------------------------------------------------------
  392.   # update
  393.   #--------------------------------------------------------------------------
  394.   def update
  395.     super
  396.     return unless self.active
  397.     @item_window.category = current_symbol if @item_window
  398.   end
  399.   
  400.   #--------------------------------------------------------------------------
  401.   # item_window=
  402.   #--------------------------------------------------------------------------
  403.   def item_window=(item_window)
  404.     @item_window = item_window
  405.     update
  406.   end
  407.   
  408. end # Window_ItemCommand

  409. #==============================================================================
  410. # ■ Window_ItemType
  411. #==============================================================================

  412. class Window_ItemType < Window_Command
  413.   
  414.   #--------------------------------------------------------------------------
  415.   # public instance variables
  416.   #--------------------------------------------------------------------------
  417.   attr_reader   :item_window
  418.   
  419.   #--------------------------------------------------------------------------
  420.   # initialize
  421.   #--------------------------------------------------------------------------
  422.   def initialize(x, y)
  423.     super(x, y)
  424.     deactivate
  425.     @type = nil
  426.   end
  427.   
  428.   #--------------------------------------------------------------------------
  429.   # window_width
  430.   #--------------------------------------------------------------------------
  431.   def window_width; return 160; end
  432.   
  433.   #--------------------------------------------------------------------------
  434.   # visible_line_number
  435.   #--------------------------------------------------------------------------
  436.   def visible_line_number; return 4; end
  437.   
  438.   #--------------------------------------------------------------------------
  439.   # reveal
  440.   #--------------------------------------------------------------------------
  441.   def reveal(type)
  442.     @type = type
  443.     refresh
  444.     activate
  445.     select(0)
  446.   end
  447.   
  448.   #--------------------------------------------------------------------------
  449.   # make_command_list
  450.   #--------------------------------------------------------------------------
  451.   def make_command_list
  452.     return if @type.nil?
  453.     #---
  454.     case @type
  455.     when :item
  456.       commands = YEA::ITEM::ITEM_TYPES
  457.     when :weapon
  458.       commands = YEA::ITEM::WEAPON_TYPES
  459.     else
  460.       commands = YEA::ITEM::ARMOUR_TYPES
  461.     end
  462.     #---
  463.     for command in commands
  464.       case command[0]
  465.       #---
  466.       when :types
  467.         case @type
  468.         when :weapon
  469.           for i in 1...$data_system.weapon_types.size
  470.             name = $data_system.weapon_types[i]
  471.             add_command(name, :w_type, true, i)
  472.           end
  473.         else
  474.           for i in 1...$data_system.armor_types.size
  475.             name = $data_system.armor_types[i]
  476.             add_command(name, :a_type, true, i)
  477.           end
  478.         end
  479.       #---
  480.       when :slots
  481.         if $imported["YEA-AceEquipEngine"]
  482.           maximum = 1
  483.           for key in YEA::EQUIP::TYPES
  484.             maximum = [maximum, key[0]].max
  485.           end
  486.         else
  487.           maximum = 4
  488.         end
  489.         for i in 1..maximum
  490.           name = Vocab::etype(i)
  491.           add_command(name, :e_type, true, i) if name != ""
  492.         end
  493.       #---
  494.       else
  495.         add_command(command[1], command[0], true, @type)
  496.       end
  497.     end
  498.   end
  499.   
  500.   #--------------------------------------------------------------------------
  501.   # update
  502.   #--------------------------------------------------------------------------
  503.   def update
  504.     super
  505.     return unless self.active
  506.     @item_window.category = current_symbol if @item_window
  507.   end
  508.   
  509.   #--------------------------------------------------------------------------
  510.   # item_window=
  511.   #--------------------------------------------------------------------------
  512.   def item_window=(item_window)
  513.     @item_window = item_window
  514.     update
  515.   end
  516.   
  517. end # Window_ItemType

  518. #==============================================================================
  519. # ■ Window_ItemList
  520. #==============================================================================

  521. class Window_ItemList < Window_Selectable
  522.   
  523.   #--------------------------------------------------------------------------
  524.   # alias method: initialize
  525.   #--------------------------------------------------------------------------
  526.   alias window_itemlist_initialize_aim initialize
  527.   def initialize(dx, dy, dw, dh)
  528.     window_itemlist_initialize_aim(dx, dy, dw, dh)
  529.     @ext = :none
  530.     @name = ""
  531.   end
  532.   
  533.   #--------------------------------------------------------------------------
  534.   # alias method: category=
  535.   #--------------------------------------------------------------------------
  536.   alias window_itemlist_category_aim category=
  537.   def category=(category)
  538.     if @types_window.nil?
  539.       window_itemlist_category_aim(category)
  540.     else
  541.       return unless update_types?(category)
  542.       @category = category
  543.       if @types_window.active
  544.         @name = @types_window.current_data[:name]
  545.         @ext = @types_window.current_ext
  546.       end
  547.       refresh
  548.       self.oy = 0
  549.     end
  550.   end
  551.   
  552.   #--------------------------------------------------------------------------
  553.   # new method: update_types?
  554.   #--------------------------------------------------------------------------
  555.   def update_types?(category)
  556.     return true if @category != category
  557.     return false unless @types_window.active
  558.     if category == :category
  559.       return @name != @types_window.current_data[:name]
  560.     end
  561.     return @ext != @types_window.current_ext
  562.   end
  563.   
  564.   #--------------------------------------------------------------------------
  565.   # new method: types_window=
  566.   #--------------------------------------------------------------------------
  567.   def types_window=(window)
  568.     @types_window = window
  569.   end
  570.   
  571.   #--------------------------------------------------------------------------
  572.   # alias method: include?
  573.   #--------------------------------------------------------------------------
  574.   alias window_itemlist_include_aim include?
  575.   def include?(item)
  576.     if @types_window.nil?
  577.       return window_itemlist_include_aim(item)
  578.     else
  579.       return ace_item_menu_include?(item)
  580.     end
  581.   end
  582.   
  583.   #--------------------------------------------------------------------------
  584.   # new method: ace_item_menu_include?
  585.   #--------------------------------------------------------------------------
  586.   def ace_item_menu_include?(item)
  587.     case @category
  588.     #---
  589.     when :field
  590.       return false unless item.is_a?(RPG::Item)
  591.       return item.menu_ok?
  592.     when :battle
  593.       return false unless item.is_a?(RPG::Item)
  594.       return item.battle_ok?
  595.     #---
  596.     when :w_type
  597.       return false unless item.is_a?(RPG::Weapon)
  598.       return item.wtype_id == @types_window.current_ext
  599.     when :a_type
  600.       return false unless item.is_a?(RPG::Armor)
  601.       return item.atype_id == @types_window.current_ext
  602.     when :e_type
  603.       return false unless item.is_a?(RPG::Armor)
  604.       return item.etype_id == @types_window.current_ext
  605.     #---
  606.     when :all
  607.       case @types_window.current_ext
  608.       when :item
  609.         return item.is_a?(RPG::Item)
  610.       when :weapon
  611.         return item.is_a?(RPG::Weapon)
  612.       else
  613.         return item.is_a?(RPG::Armor)
  614.       end
  615.     #---
  616.     when :category
  617.       case @types_window.current_ext
  618.       when :item
  619.         return false unless item.is_a?(RPG::Item)
  620.       when :weapon
  621.         return false unless item.is_a?(RPG::Weapon)
  622.       else
  623.         return false unless item.is_a?(RPG::Armor)
  624.       end
  625.       return item.category.include?(@types_window.current_data[:name].upcase)
  626.     #---
  627.     else
  628.       return window_itemlist_include_aim(item)
  629.     end
  630.   end
  631.   
  632. end # Window_ItemList

  633. #==============================================================================
  634. # ■ Window_ItemStatus
  635. #==============================================================================

  636. class Window_ItemStatus < Window_Base
  637.   
  638.   #--------------------------------------------------------------------------
  639.   # initialize
  640.   #--------------------------------------------------------------------------
  641.   def initialize(dx, dy, item_window)
  642.     super(dx, dy, Graphics.width - dx, fitting_height(4))
  643.     @item_window = item_window
  644.     @item = nil
  645.     refresh
  646.   end
  647.   
  648.   #--------------------------------------------------------------------------
  649.   # update
  650.   #--------------------------------------------------------------------------
  651.   def update
  652.     super
  653.     update_item(@item_window.item)
  654.   end
  655.   
  656.   #--------------------------------------------------------------------------
  657.   # update_item
  658.   #--------------------------------------------------------------------------
  659.   def update_item(item)
  660.     return if @item == item
  661.     @item = item
  662.     refresh
  663.   end
  664.   
  665.   #--------------------------------------------------------------------------
  666.   # refresh
  667.   #--------------------------------------------------------------------------
  668.   def refresh
  669.     contents.clear
  670.     reset_font_settings
  671.     return draw_empty if @item.nil?
  672.     contents.font.size = YEA::ITEM::STATUS_FONT_SIZE
  673.     draw_item_image
  674.     draw_item_stats
  675.     draw_item_effects
  676.   end
  677.   
  678.   #--------------------------------------------------------------------------
  679.   # draw_empty
  680.   #--------------------------------------------------------------------------
  681.   def draw_empty
  682.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  683.     rect = Rect.new(1, 1, 94, 94)
  684.     contents.fill_rect(rect, colour)
  685.     dx = 96; dy = 0
  686.     dw = (contents.width - 96) / 2
  687.     for i in 0...8
  688.       draw_background_box(dx, dy, dw)
  689.       dx = dx >= 96 + dw ? 96 : 96 + dw
  690.       dy += line_height if dx == 96
  691.     end
  692.   end
  693.   
  694.   #--------------------------------------------------------------------------
  695.   # draw_background_box
  696.   #--------------------------------------------------------------------------
  697.   def draw_background_box(dx, dy, dw)
  698.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  699.     rect = Rect.new(dx+1, dy+1, dw-2, line_height-2)
  700.     contents.fill_rect(rect, colour)
  701.   end
  702.   
  703.   #--------------------------------------------------------------------------
  704.   # draw_item_image
  705.   #--------------------------------------------------------------------------
  706.   def draw_item_image
  707.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  708.     rect = Rect.new(1, 1, 94, 94)
  709.     contents.fill_rect(rect, colour)
  710.     if @item.image.nil?
  711.       icon_index = @item.icon_index
  712.       bitmap = Cache.system("Iconset")
  713.       rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
  714.       target = Rect.new(0, 0, 96, 96)
  715.       contents.stretch_blt(target, bitmap, rect)
  716.     else
  717.       bitmap = Cache.picture(@item.image)
  718.       contents.blt(0, 0, bitmap, bitmap.rect, 255)
  719.     end
  720.   end
  721.   
  722.   #--------------------------------------------------------------------------
  723.   # draw_item_stats
  724.   #--------------------------------------------------------------------------
  725.   def draw_item_stats
  726.     return unless @item.is_a?(RPG::Weapon) || @item.is_a?(RPG::Armor)
  727.     dx = 96; dy = 0
  728.     dw = (contents.width - 96) / 2
  729.     for i in 0...8
  730.       draw_equip_param(i, dx, dy, dw)
  731.       dx = dx >= 96 + dw ? 96 : 96 + dw
  732.       dy += line_height if dx == 96
  733.     end
  734.   end
  735.   
  736.   #--------------------------------------------------------------------------
  737.   # draw_equip_param
  738.   #--------------------------------------------------------------------------
  739.   def draw_equip_param(param_id, dx, dy, dw)
  740.     draw_background_box(dx, dy, dw)
  741.     change_color(system_color)
  742.     draw_text(dx+4, dy, dw-8, line_height, Vocab::param(param_id))
  743.     if $imported["YEA-EquipDynamicStats"]
  744.       draw_percentage_param(param_id, dx, dy, dw)
  745.     else
  746.       draw_set_param(param_id, dx, dy, dw)
  747.     end
  748.   end
  749.   
  750.   #--------------------------------------------------------------------------
  751.   # draw_percentage_param
  752.   #--------------------------------------------------------------------------
  753.   def draw_percentage_param(param_id, dx, dy, dw)
  754.     if @item.per_params[param_id] != 0 && @item.params[param_id] != 0
  755.       text = draw_set_param(param_id, dx, dy, dw)
  756.       dw -= text_size(text).width
  757.       draw_percent_param(param_id, dx, dy, dw)
  758.     elsif @item.per_params[param_id] != 0 && @item.params[param_id] == 0
  759.       draw_percent_param(param_id, dx, dy, dw)
  760.     else
  761.       draw_set_param(param_id, dx, dy, dw)
  762.     end
  763.   end
  764.   
  765.   #--------------------------------------------------------------------------
  766.   # draw_set_param
  767.   #--------------------------------------------------------------------------
  768.   def draw_set_param(param_id, dx, dy, dw)
  769.     value = @item.params[param_id]
  770.     if $imported["YEA-EquipDynamicStats"] && @item.var_params[param_id] > 0
  771.       value += $game_variables[@item.var_params[param_id]] rescue 0
  772.     end
  773.     change_color(param_change_color(value), value != 0)
  774.     text = value.group
  775.     text = "+" + text if value > 0
  776.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  777.     return text
  778.   end
  779.   
  780.   #--------------------------------------------------------------------------
  781.   # draw_percent_param
  782.   #--------------------------------------------------------------------------
  783.   def draw_percent_param(param_id, dx, dy, dw)
  784.     value = @item.per_params[param_id]
  785.     change_color(param_change_color(value))
  786.     text = (@item.per_params[param_id] * 100).to_i.group + "%"
  787.     text = "+" + text if @item.per_params[param_id] > 0
  788.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  789.     return text
  790.   end
  791.   
  792.   #--------------------------------------------------------------------------
  793.   # draw_item_effects
  794.   #--------------------------------------------------------------------------
  795.   def draw_item_effects
  796.     return unless @item.is_a?(RPG::Item)
  797.     dx = 96; dy = 0
  798.     dw = (contents.width - 96) / 2
  799.     draw_hp_recover(dx, dy + line_height * 0, dw)
  800.     draw_mp_recover(dx, dy + line_height * 1, dw)
  801.     draw_tp_recover(dx + dw, dy + line_height * 0, dw)
  802.     draw_tp_gain(dx + dw, dy + line_height * 1, dw)
  803.     dw = contents.width - 96
  804.     draw_applies(dx, dy + line_height * 2, dw)
  805.     draw_removes(dx, dy + line_height * 3, dw)
  806.   end
  807.   
  808.   #--------------------------------------------------------------------------
  809.   # draw_hp_recover
  810.   #--------------------------------------------------------------------------
  811.   def draw_hp_recover(dx, dy, dw)
  812.     draw_background_box(dx, dy, dw)
  813.     change_color(system_color)
  814.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:hp_recover))
  815.     per = 0
  816.     set = 0
  817.     for effect in @item.effects
  818.       next unless effect.code == 11
  819.       per += (effect.value1 * 100).to_i
  820.       set += effect.value2.to_i
  821.     end
  822.     if per != 0 && set != 0
  823.       change_color(param_change_color(set))
  824.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  825.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  826.       dw -= text_size(text).width
  827.       change_color(param_change_color(per))
  828.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  829.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  830.       return
  831.     elsif per != 0
  832.       change_color(param_change_color(per))
  833.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  834.     elsif set != 0
  835.       change_color(param_change_color(set))
  836.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  837.     else
  838.       change_color(normal_color, false)
  839.       text = Vocab::item_status(:empty)
  840.     end
  841.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  842.   end
  843.   
  844.   #--------------------------------------------------------------------------
  845.   # draw_mp_recover
  846.   #--------------------------------------------------------------------------
  847.   def draw_mp_recover(dx, dy, dw)
  848.     draw_background_box(dx, dy, dw)
  849.     change_color(system_color)
  850.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:mp_recover))
  851.     per = 0
  852.     set = 0
  853.     for effect in @item.effects
  854.       next unless effect.code == 12
  855.       per += (effect.value1 * 100).to_i
  856.       set += effect.value2.to_i
  857.     end
  858.     if per != 0 && set != 0
  859.       change_color(param_change_color(set))
  860.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  861.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  862.       dw -= text_size(text).width
  863.       change_color(param_change_color(per))
  864.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  865.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  866.       return
  867.     elsif per != 0
  868.       change_color(param_change_color(per))
  869.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  870.     elsif set != 0
  871.       change_color(param_change_color(set))
  872.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  873.     else
  874.       change_color(normal_color, false)
  875.       text = Vocab::item_status(:empty)
  876.     end
  877.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  878.   end
  879.   
  880.   #--------------------------------------------------------------------------
  881.   # draw_tp_recover
  882.   #--------------------------------------------------------------------------
  883.   def draw_tp_recover(dx, dy, dw)
  884.     draw_background_box(dx, dy, dw)
  885.     change_color(system_color)
  886.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:tp_recover))
  887.     set = 0
  888.     for effect in @item.effects
  889.       next unless effect.code == 13
  890.       set += effect.value1.to_i
  891.     end
  892.     if set != 0
  893.       change_color(param_change_color(set))
  894.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  895.     else
  896.       change_color(normal_color, false)
  897.       text = Vocab::item_status(:empty)
  898.     end
  899.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  900.   end
  901.   
  902.   #--------------------------------------------------------------------------
  903.   # draw_tp_gain
  904.   #--------------------------------------------------------------------------
  905.   def draw_tp_gain(dx, dy, dw)
  906.     draw_background_box(dx, dy, dw)
  907.     change_color(system_color)
  908.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:tp_gain))
  909.     set = @item.tp_gain
  910.     if set != 0
  911.       change_color(param_change_color(set))
  912.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  913.     else
  914.       change_color(normal_color, false)
  915.       text = Vocab::item_status(:empty)
  916.     end
  917.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  918.   end
  919.   
  920.   #--------------------------------------------------------------------------
  921.   # draw_applies
  922.   #--------------------------------------------------------------------------
  923.   def draw_applies(dx, dy, dw)
  924.     draw_background_box(dx, dy, dw)
  925.     change_color(system_color)
  926.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:applies))
  927.     icons = []
  928.     for effect in @item.effects
  929.       case effect.code
  930.       when 21
  931.         next unless effect.value1 > 0
  932.         next if $data_states[effect.value1].nil?
  933.         icons.push($data_states[effect.data_id].icon_index)
  934.       when 31
  935.         icons.push($game_actors[1].buff_icon_index(1, effect.data_id))
  936.       when 32
  937.         icons.push($game_actors[1].buff_icon_index(-1, effect.data_id))
  938.       end
  939.       icons.delete(0)
  940.       break if icons.size >= YEA::ITEM::MAX_ICONS_DRAWN
  941.     end
  942.     draw_icons(dx, dy, dw, icons)
  943.   end
  944.   
  945.   #--------------------------------------------------------------------------
  946.   # draw_removes
  947.   #--------------------------------------------------------------------------
  948.   def draw_removes(dx, dy, dw)
  949.     draw_background_box(dx, dy, dw)
  950.     change_color(system_color)
  951.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:removes))
  952.     icons = []
  953.     for effect in @item.effects
  954.       case effect.code
  955.       when 22
  956.         next unless effect.value1 > 0
  957.         next if $data_states[effect.value1].nil?
  958.         icons.push($data_states[effect.data_id].icon_index)
  959.       when 33
  960.         icons.push($game_actors[1].buff_icon_index(1, effect.data_id))
  961.       when 34
  962.         icons.push($game_actors[1].buff_icon_index(-1, effect.data_id))
  963.       end
  964.       icons.delete(0)
  965.       break if icons.size >= YEA::ITEM::MAX_ICONS_DRAWN
  966.     end
  967.     draw_icons(dx, dy, dw, icons)
  968.   end
  969.   
  970.   #--------------------------------------------------------------------------
  971.   # draw_icons
  972.   #--------------------------------------------------------------------------
  973.   def draw_icons(dx, dy, dw, icons)
  974.     dx += dw - 4
  975.     dx -= icons.size * 24
  976.     for icon_id in icons
  977.       draw_icon(icon_id, dx, dy)
  978.       dx += 24
  979.     end
  980.     if icons.size == 0
  981.       change_color(normal_color, false)
  982.       text = Vocab::item_status(:empty)
  983.       draw_text(4, dy, contents.width-8, line_height, text, 2)
  984.     end
  985.   end
  986.   
  987. end # Window_ItemStatus

  988. #==============================================================================
  989. # ■ Scene_Item
  990. #==============================================================================

  991. class Scene_Item < Scene_ItemBase
  992.   
  993.   #--------------------------------------------------------------------------
  994.   # alias method: start
  995.   #--------------------------------------------------------------------------
  996.   alias scene_item_start_aim start
  997.   def start
  998.     scene_item_start_aim
  999.     create_types_window
  1000.     create_status_window
  1001.     relocate_windows
  1002.   end
  1003.   
  1004.   #--------------------------------------------------------------------------
  1005.   # overwrite method: return_scene
  1006.   #--------------------------------------------------------------------------
  1007.   def return_scene
  1008.     $game_temp.scene_item_index = nil
  1009.     $game_temp.scene_item_oy = nil
  1010.     super
  1011.   end
  1012.   
  1013.   #--------------------------------------------------------------------------
  1014.   # overwrite method: create_category_window
  1015.   #--------------------------------------------------------------------------
  1016.   def create_category_window
  1017.     wy = @help_window.height
  1018.     @category_window = Window_ItemCommand.new(0, wy)
  1019.     @category_window.viewport = @viewport
  1020.     @category_window.help_window = @help_window
  1021.     @category_window.y = @help_window.height
  1022.     if !$game_temp.scene_item_index.nil?
  1023.       @category_window.select($game_temp.scene_item_index)
  1024.       @category_window.oy = $game_temp.scene_item_oy
  1025.     end
  1026.     $game_temp.scene_item_index = nil
  1027.     $game_temp.scene_item_oy = nil
  1028.     @category_window.set_handler(:ok, method(:on_category_ok))
  1029.     @category_window.set_handler(:cancel, method(:return_scene))
  1030.     @category_window.set_handler(:item, method(:open_types))
  1031.     @category_window.set_handler(:weapon, method(:open_types))
  1032.     @category_window.set_handler(:armor, method(:open_types))
  1033.     process_custom_item_commands
  1034.   end
  1035.   
  1036.   #--------------------------------------------------------------------------
  1037.   # new method: process_custom_item_commands
  1038.   #--------------------------------------------------------------------------
  1039.   def process_custom_item_commands
  1040.     for command in YEA::ITEM::COMMANDS
  1041.       next unless YEA::ITEM::CUSTOM_ITEM_COMMANDS.include?(command)
  1042.       called_method = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][3]
  1043.       @category_window.set_handler(command, method(called_method))
  1044.     end
  1045.   end
  1046.   
  1047.   #--------------------------------------------------------------------------
  1048.   # new method: create_types_window
  1049.   #--------------------------------------------------------------------------
  1050.   def create_types_window
  1051.     wy = @category_window.y
  1052.     @types_window = Window_ItemType.new(Graphics.width, wy)
  1053.     @types_window.viewport = @viewport
  1054.     @types_window.help_window = @help_window
  1055.     @types_window.y = @help_window.height
  1056.     @types_window.item_window = @item_window
  1057.     @item_window.types_window = @types_window
  1058.     @types_window.set_handler(:ok, method(:on_types_ok))
  1059.     @types_window.set_handler(:cancel, method(:on_types_cancel))
  1060.   end
  1061.   
  1062.   #--------------------------------------------------------------------------
  1063.   # new method: create_status_window
  1064.   #--------------------------------------------------------------------------
  1065.   def create_status_window
  1066.     wx = @category_window.width
  1067.     wy = @category_window.y
  1068.     @status_window = Window_ItemStatus.new(wx, wy, @item_window)
  1069.     @status_window.viewport = @viewport
  1070.   end
  1071.   
  1072.   #--------------------------------------------------------------------------
  1073.   # new method: relocate_windows
  1074.   #--------------------------------------------------------------------------
  1075.   def relocate_windows
  1076.     return unless $imported["YEA-AceMenuEngine"]
  1077.     case Menu.help_window_location
  1078.     when 0 # Top
  1079.       @help_window.y = 0
  1080.       @category_window.y = @help_window.height
  1081.       @item_window.y = @category_window.y + @category_window.height
  1082.     when 1 # Middle
  1083.       @category_window.y = 0
  1084.       @help_window.y = @category_window.height
  1085.       @item_window.y = @help_window.y + @help_window.height
  1086.     else # Bottom
  1087.       @category_window.y = 0
  1088.       @item_window.y = @category_window.height
  1089.       @help_window.y = @item_window.y + @item_window.height
  1090.     end
  1091.     @types_window.y = @category_window.y
  1092.     @status_window.y = @category_window.y
  1093.   end
  1094.   
  1095.   #--------------------------------------------------------------------------
  1096.   # new method: open_categories
  1097.   #--------------------------------------------------------------------------
  1098.   def open_types
  1099.     @category_window.x = Graphics.width
  1100.     @types_window.x = 0
  1101.     @types_window.reveal(@category_window.current_symbol)
  1102.   end
  1103.   
  1104.   #--------------------------------------------------------------------------
  1105.   # new method: on_types_ok
  1106.   #--------------------------------------------------------------------------
  1107.   def on_types_ok
  1108.     @item_window.activate
  1109.     @item_window.select_last
  1110.   end
  1111.   
  1112.   #--------------------------------------------------------------------------
  1113.   # new method: on_types_cancel
  1114.   #--------------------------------------------------------------------------
  1115.   def on_types_cancel
  1116.     @category_window.x = 0
  1117.     @category_window.activate
  1118.     @types_window.unselect
  1119.     @types_window.x = Graphics.width
  1120.   end
  1121.   
  1122.   #--------------------------------------------------------------------------
  1123.   # alias method: on_item_cancel
  1124.   #--------------------------------------------------------------------------
  1125.   alias scene_item_on_item_cancel_aim on_item_cancel
  1126.   def on_item_cancel
  1127.     if @types_window.x <= 0
  1128.       @item_window.unselect
  1129.       @types_window.activate
  1130.     else
  1131.       scene_item_on_item_cancel_aim
  1132.     end
  1133.   end
  1134.   
  1135.   #--------------------------------------------------------------------------
  1136.   # new method: command_totori
  1137.   #--------------------------------------------------------------------------
  1138.   def command_totori
  1139.     SceneManager.call(Scene_Alchemy)
  1140.   end
  1141.   
  1142.   #--------------------------------------------------------------------------
  1143.   # new method: command_name1
  1144.   #--------------------------------------------------------------------------
  1145.   def command_name1
  1146.     # Do nothing.
  1147.   end
  1148.   
  1149.   #--------------------------------------------------------------------------
  1150.   # new method: command_name2
  1151.   #--------------------------------------------------------------------------
  1152.   def command_name2
  1153.     # Do nothing.
  1154.   end
  1155.   
  1156. end # Scene_Item

  1157. #==============================================================================
  1158. #
  1159. # ▼ End of File
  1160. #
  1161. #==============================================================================
复制代码
签名被我吃了
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
63
在线时间
211 小时
注册时间
2011-7-7
帖子
148
3
 楼主| 发表于 2012-10-24 20:18:17 | 只看该作者
本帖最后由 1032103505 于 2012-10-24 20:19 编辑

脚本:
RUBY 代码复制
  1. #==============================================================================
  2. #
  3. # ▼ Yanfly Engine Ace - Ace Item Menu v1.02
  4. # -- Last Updated: 2012.01.05
  5. # -- Level: Normal, Hard
  6. # -- Requires: n/a
  7. #
  8. #==============================================================================
  9.  
  10. $imported = {} if $imported.nil?
  11. $imported["YEA-ItemMenu"] = true
  12.  
  13. #==============================================================================
  14. # ▼ Updates
  15. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  16. # 2012.01.05 - Compatibility Update with Equip Dynamic Stats.
  17. # 2012.01.03 - Started Script and Finished.
  18. #            - Compatibility Update with Ace Menu Engine.
  19. #
  20. #==============================================================================
  21. # ▼ Introduction
  22. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  23. # The Ace Item Menu offers more item categorization control and a better layout
  24. # that simulatenously provides information regarding the items to the player,
  25. # while keeping a good amount of the item list visible on screen at once. The
  26. # script can also be customized to rearrange commands and categories.
  27. #
  28. #==============================================================================
  29. # ▼ Instructions
  30. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  31. # To install this script, open up your script editor and copy/paste this script
  32. # to an open slot below ▼ Materials/素材 but above ▼ Main. Remember to save.
  33. #
  34. # -----------------------------------------------------------------------------
  35. # Item Notetags - These notetags go in the item notebox in the database.
  36. # -----------------------------------------------------------------------------
  37. # <category: string>
  38. # Places this object into the item category for "string". Whenever the selected
  39. # category is highlighted in the Ace Item Menu command window, this object will
  40. # be included and shown in the item window.
  41. #
  42. # <image: string>
  43. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  44. # directory with the filename of "string" (without the extension) as the image
  45. # picture shown in the Ace Item Menu.
  46. #
  47. # -----------------------------------------------------------------------------
  48. # Weapon Notetags - These notetags go in the weapon notebox in the database.
  49. # -----------------------------------------------------------------------------
  50. # <category: string>
  51. # Places this object into the item category for "string". Whenever the selected
  52. # category is highlighted in the Ace Item Menu command window, this object will
  53. # be included and shown in the item window.
  54. #
  55. # <image: string>
  56. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  57. # directory with the filename of "string" (without the extension) as the image
  58. # picture shown in the Ace Item Menu.
  59. #
  60. # -----------------------------------------------------------------------------
  61. # Armour Notetags - These notetags go in the armour notebox in the database.
  62. # -----------------------------------------------------------------------------
  63. # <category: string>
  64. # Places this object into the item category for "string". Whenever the selected
  65. # category is highlighted in the Ace Item Menu command window, this object will
  66. # be included and shown in the item window.
  67. #
  68. # <image: string>
  69. # Uses a picture from Graphics\Pictures\ of your RPG Maker VX Ace Project's
  70. # directory with the filename of "string" (without the extension) as the image
  71. # picture shown in the Ace Item Menu.
  72. #
  73. #==============================================================================
  74. # ▼ Compatibility
  75. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  76. # This script is made strictly for RPG Maker VX Ace. It is highly unlikely that
  77. # it will run with RPG Maker VX without adjusting.
  78. #
  79. #==============================================================================
  80.  
  81. module YEA
  82.   module ITEM
  83.  
  84.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  85.     # - Item Command Settings -
  86.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  87.     # This array adjusts what options appear in the initial item command window
  88.     # before the items are split into separate categories. Add commands, remove
  89.     # commands, or rearrange them. Here's a list of which does what:
  90.     #
  91.     # -------------------------------------------------------------------------
  92.     # :command         Description
  93.     # -------------------------------------------------------------------------
  94.     # :item            Opens up the various item categories. Default.
  95.     # :weapon          Opens up the various weapon categories. Default.
  96.     # :armor           Opens up the various armour categories. Default.
  97.     # :key_item        Shows a list of the various key items. Default.
  98.     #
  99.     # :gogototori      Requires Kread-EX's Go Go Totori Synthesis.
  100.     #
  101.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  102.     COMMANDS =[
  103.       :item,         # Opens up the various item categories. Default.
  104.       :weapon,       # Opens up the various weapon categories. Default.
  105.       :armor,        # Opens up the various armour categories. Default.
  106.       :key_item,     # Shows a list of the various key items. Default.
  107.       :gogototori,   # Requires Kread-EX's Go Go Totori Synthesis.
  108.     # :custom1,      # Custom command 1.
  109.     # :custom2,      # Custom command 2.
  110.     ] # Do not remove this.
  111.  
  112.     #--------------------------------------------------------------------------
  113.     # - Item Custom Commands -
  114.     # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  115.     # For those who use scripts to that may produce unique effects for the item
  116.     # scene, use this hash to manage the custom commands for the Item Command
  117.     # Window. You can disable certain commands or prevent them from appearing
  118.     # by using switches. If you don't wish to bind them to a switch, set the
  119.     # proper switch to 0 for it to have no impact.
  120.     #--------------------------------------------------------------------------
  121.     CUSTOM_ITEM_COMMANDS ={
  122.     # :command => ["Display Name", EnableSwitch, ShowSwitch, Handler Method],
  123.       :gogototori => ["合成",            0,         0, :command_totori],
  124.       :custom1 => [ "自定義名稱",            0,          0, :command_name1],
  125.       :custom2 => [ "自定義文本",           13,          0, :command_name2],
  126.     } # Do not remove this.
  127.  
  128.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  129.     # - Item Type Settings -
  130.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  131.     # These arrays adjusts and shows the various item types shown for Items,
  132.     # Weapons, and Armours. Note that when using :category symbols, the
  133.     # specific category shown will be equal to the text used for the Display
  134.     # and the included item must contain a category equal to the Display name.
  135.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  136.     # This array contains the order for the Item categories.
  137.     ITEM_TYPES =[
  138.     # [  :symbol,   "Display"],
  139.      [   :field,     "背包内"], # Shows Menu-usable items.
  140.       [  :battle,    "战斗用"], # Shows Battle-usable items.
  141.       [:category,   "炼金"], # Categorized by <category: string>
  142.       [:category,   "食物"], # Categorized by <category: string>
  143.       [:category,   "饮料"], # Categorized by <category: string>
  144.       [:category,   "材料"], # Categorized by <category: string>
  145.       [:category,   "书籍"], # Categorized by <category: string>
  146.       [:category,"特别"], # Categorized by <category: string>
  147.       [:category,  "宝物"], # Shows all key items.
  148.       [     :all,       "所有物品"], # Shows all usable items.
  149.     ] # Do not remove this.
  150.  
  151.     # This array contains the order for the Weapon categories.
  152.     WEAPON_TYPES =[
  153.     # [  :symbol,   "Display"],
  154.       [   :types,  "单个武器"], # Lists all of the individual weapon types.
  155.       [     :all,       "所有武器"], # Shows all weapons.
  156.     ] # Do not remove this.
  157.  
  158.     # This array contains the order for the Armour categories.
  159.     ARMOUR_TYPES =[
  160.     # [  :symbol,   "Display"],
  161.       [   :slots,  "盔甲插槽"], # Lists all of the individual armour slots.
  162.       [   :types,  "装甲类型"], # Lists all of the individual armours types.
  163.       [     :all,       "所有装甲"], # Shows all armours.
  164.     ] # Do not remove this.
  165.  
  166.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  167.     # - Item Status Settings -
  168.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  169.     # The item status window displays information about the item in detail.
  170.     # Adjust the settings below to change the way the status window appears.
  171.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  172.     STATUS_FONT_SIZE = 20       # Font size used for status window.
  173.     MAX_ICONS_DRAWN  = 10       # Maximum number of icons drawn for states.
  174.  
  175.     # The following adjusts the vocabulary used for the status window. Each
  176.     # of the vocabulary settings are self explanatory.
  177.     VOCAB_STATUS ={
  178.       :empty      => "---",          # Text used when nothing is shown.
  179.       :hp_recover => "治疗伤兵",      # Text used for HP Recovery.
  180.       :mp_recover => "恢复魔法",      # Text used for MP Recovery.
  181.       :tp_recover => "恢复TP",      # Text used for TP Recovery.
  182.       :tp_gain    => "增加TP",      # Text used for TP Gain.
  183.       :applies    => "使用效果",      # Text used for applied states and buffs.
  184.       :removes    => "移除效果",      # Text used for removed states and buffs.
  185.     } # Do not remove this.
  186.  
  187.   end # ITEM
  188. end # YEA
  189.  
  190. #==============================================================================
  191. # ▼ Editting anything past this point may potentially result in causing
  192. # computer damage, incontinence, explosion of user's head, coma, death, and/or
  193. # halitosis so edit at your own risk.
  194. #==============================================================================
  195.  
  196. module YEA
  197.   module REGEXP
  198.   module BASEITEM
  199.  
  200.     CATEGORY = /<(?:CATEGORIES|category):[ ](.*)>/i
  201.     IMAGE    = /<(?:IMAGE|image):[ ](.*)>/i
  202.  
  203.   end # BASEITEM
  204.   end # REGEXP
  205. end # YEA
  206.  
  207. #==============================================================================
  208. # ■ Numeric
  209. #==============================================================================
  210.  
  211. class Numeric
  212.  
  213.   #--------------------------------------------------------------------------
  214.   # new method: group_digits
  215.   #--------------------------------------------------------------------------
  216.   unless $imported["YEA-CoreEngine"]
  217.   def group; return self.to_s; end
  218.   end # $imported["YEA-CoreEngine"]
  219.  
  220. end # Numeric
  221.  
  222. #==============================================================================
  223. # ■ Vocab
  224. #==============================================================================
  225.  
  226. module Vocab
  227.  
  228.   #--------------------------------------------------------------------------
  229.   # new method: self.item_status
  230.   #--------------------------------------------------------------------------
  231.   def self.item_status(type)
  232.     return YEA::ITEM::VOCAB_STATUS[type]
  233.   end
  234.  
  235. end # Vocab
  236.  
  237. #==============================================================================
  238. # ■ DataManager
  239. #==============================================================================
  240.  
  241. module DataManager
  242.  
  243.   #--------------------------------------------------------------------------
  244.   # alias method: load_database
  245.   #--------------------------------------------------------------------------
  246.   class <<self; alias load_database_aim load_database; end
  247.   def self.load_database
  248.     load_database_aim
  249.     load_notetags_aim
  250.   end
  251.  
  252.   #--------------------------------------------------------------------------
  253.   # new method: load_notetags_aim
  254.   #--------------------------------------------------------------------------
  255.   def self.load_notetags_aim
  256.     groups = [$data_items, $data_weapons, $data_armors]
  257.     for group in groups
  258.       for obj in group
  259.         next if obj.nil?
  260.         obj.load_notetags_aim
  261.       end
  262.     end
  263.   end
  264.  
  265. end # DataManager
  266.  
  267. #==============================================================================
  268. # ■ RPG::BaseItem
  269. #==============================================================================
  270.  
  271. class RPG::BaseItem
  272.  
  273.   #--------------------------------------------------------------------------
  274.   # public instance variables
  275.   #--------------------------------------------------------------------------
  276.   attr_accessor :category
  277.   attr_accessor :image
  278.  
  279.   #--------------------------------------------------------------------------
  280.   # common cache: load_notetags_aim
  281.   #--------------------------------------------------------------------------
  282.   def load_notetags_aim
  283.     @category = []
  284.     #---
  285.     self.note.split(/[\r\n]+/).each { |line|
  286.       case line
  287.       #---
  288.       when YEA::REGEXP::BASEITEM::CATEGORY
  289.         @category.push($1.upcase.to_s)
  290.       when YEA::REGEXP::BASEITEM::IMAGE
  291.         @image = $1.to_s
  292.       end
  293.     } # self.note.split
  294.     #---
  295.   end
  296.  
  297. end # RPG::BaseItem
  298.  
  299. #==============================================================================
  300. # ■ Game_Temp
  301. #==============================================================================
  302.  
  303. class Game_Temp
  304.  
  305.   #--------------------------------------------------------------------------
  306.   # public instance variables
  307.   #--------------------------------------------------------------------------
  308.   attr_accessor :scene_item_index
  309.   attr_accessor :scene_item_oy
  310.  
  311. end # Game_Temp
  312.  
  313. #==============================================================================
  314. # ■ Window_ItemList
  315. #==============================================================================
  316.  
  317. class Window_ItemList < Window_Selectable
  318.  
  319.   #--------------------------------------------------------------------------
  320.   # overwrite method: draw_item
  321.   #--------------------------------------------------------------------------
  322.   def draw_item(index)
  323.     item = @data[index]
  324.     return if item.nil?
  325.     rect = item_rect(index)
  326.     rect.width -= 4
  327.     draw_item_name(item, rect.x, rect.y, enable?(item), rect.width - 24)
  328.     draw_item_number(rect, item)
  329.   end
  330.  
  331. end # Window_ItemList
  332.  
  333. #==============================================================================
  334. # ■ Window_ItemCommand
  335. #==============================================================================
  336.  
  337. class Window_ItemCommand < Window_Command
  338.  
  339.   #--------------------------------------------------------------------------
  340.   # public instance variables
  341.   #--------------------------------------------------------------------------
  342.   attr_reader   :item_window
  343.  
  344.   #--------------------------------------------------------------------------
  345.   # initialize
  346.   #--------------------------------------------------------------------------
  347.   def initialize(x, y)
  348.     super(x, y)
  349.   end
  350.  
  351.   #--------------------------------------------------------------------------
  352.   # window_width
  353.   #--------------------------------------------------------------------------
  354.   def window_width; return 160; end
  355.  
  356.   #--------------------------------------------------------------------------
  357.   # visible_line_number
  358.   #--------------------------------------------------------------------------
  359.   def visible_line_number; return 4; end
  360.  
  361.   #--------------------------------------------------------------------------
  362.   # process_ok
  363.   #--------------------------------------------------------------------------
  364.   def process_ok
  365.     $game_temp.scene_item_index = index
  366.     $game_temp.scene_item_oy = self.oy
  367.     super
  368.   end
  369.  
  370.   #--------------------------------------------------------------------------
  371.   # make_command_list
  372.   #--------------------------------------------------------------------------
  373.   def make_command_list
  374.     for command in YEA::ITEM::COMMANDS
  375.       case command
  376.       #--- Default Commands ---
  377.       when :item
  378.         add_command(Vocab::item, :item)
  379.       when :weapon
  380.         add_command(Vocab::weapon, :weapon)
  381.       when :armor
  382.         add_command(Vocab::armor, :armor)
  383.       when :key_item
  384.         add_command(Vocab::key_item, :key_item)
  385.       #--- Imported ---
  386.       when :gogototori
  387.         next unless $imported["KRX-AlchemicSynthesis"]
  388.         process_custom_command(command)
  389.       #--- Custom Commands ---
  390.       else
  391.         process_custom_command(command)
  392.       end
  393.     end
  394.   end
  395.  
  396.   #--------------------------------------------------------------------------
  397.   # process_custom_command
  398.   #--------------------------------------------------------------------------
  399.   def process_custom_command(command)
  400.     return unless YEA::ITEM::CUSTOM_ITEM_COMMANDS.include?(command)
  401.     show = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][2]
  402.     continue = show <= 0 ? true : $game_switches[show]
  403.     return unless continue
  404.     text = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][0]
  405.     switch = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][1]
  406.     enabled = switch <= 0 ? true : $game_switches[switch]
  407.     add_command(text, command, enabled)
  408.   end
  409.  
  410.   #--------------------------------------------------------------------------
  411.   # update
  412.   #--------------------------------------------------------------------------
  413.   def update
  414.     super
  415.     return unless self.active
  416.     @item_window.category = current_symbol if @item_window
  417.   end
  418.  
  419.   #--------------------------------------------------------------------------
  420.   # item_window=
  421.   #--------------------------------------------------------------------------
  422.   def item_window=(item_window)
  423.     @item_window = item_window
  424.     update
  425.   end
  426.  
  427. end # Window_ItemCommand
  428.  
  429. #==============================================================================
  430. # ■ Window_ItemType
  431. #==============================================================================
  432.  
  433. class Window_ItemType < Window_Command
  434.  
  435.   #--------------------------------------------------------------------------
  436.   # public instance variables
  437.   #--------------------------------------------------------------------------
  438.   attr_reader   :item_window
  439.  
  440.   #--------------------------------------------------------------------------
  441.   # initialize
  442.   #--------------------------------------------------------------------------
  443.   def initialize(x, y)
  444.     super(x, y)
  445.     deactivate
  446.     @type = nil
  447.   end
  448.  
  449.   #--------------------------------------------------------------------------
  450.   # window_width
  451.   #--------------------------------------------------------------------------
  452.   def window_width; return 160; end
  453.  
  454.   #--------------------------------------------------------------------------
  455.   # visible_line_number
  456.   #--------------------------------------------------------------------------
  457.   def visible_line_number; return 4; end
  458.  
  459.   #--------------------------------------------------------------------------
  460.   # reveal
  461.   #--------------------------------------------------------------------------
  462.   def reveal(type)
  463.     @type = type
  464.     refresh
  465.     activate
  466.     select(0)
  467.   end
  468.  
  469.   #--------------------------------------------------------------------------
  470.   # make_command_list
  471.   #--------------------------------------------------------------------------
  472.   def make_command_list
  473.     return if @type.nil?
  474.     #---
  475.     case @type
  476.     when :item
  477.       commands = YEA::ITEM::ITEM_TYPES
  478.     when :weapon
  479.       commands = YEA::ITEM::WEAPON_TYPES
  480.     else
  481.       commands = YEA::ITEM::ARMOUR_TYPES
  482.     end
  483.     #---
  484.     for command in commands
  485.       case command[0]
  486.       #---
  487.       when :types
  488.         case @type
  489.         when :weapon
  490.           for i in 1...$data_system.weapon_types.size
  491.             name = $data_system.weapon_types[i]
  492.             add_command(name, :w_type, true, i)
  493.           end
  494.         else
  495.           for i in 1...$data_system.armor_types.size
  496.             name = $data_system.armor_types[i]
  497.             add_command(name, :a_type, true, i)
  498.           end
  499.         end
  500.       #---
  501.       when :slots
  502.         if $imported["YEA-AceEquipEngine"]
  503.           maximum = 1
  504.           for key in YEA::EQUIP::TYPES
  505.             maximum = [maximum, key[0]].max
  506.           end
  507.         else
  508.           maximum = 4
  509.         end
  510.         for i in 1..maximum
  511.           name = Vocab::etype(i)
  512.           add_command(name, :e_type, true, i) if name != ""
  513.         end
  514.       #---
  515.       else
  516.         add_command(command[1], command[0], true, @type)
  517.       end
  518.     end
  519.   end
  520.  
  521.   #--------------------------------------------------------------------------
  522.   # update
  523.   #--------------------------------------------------------------------------
  524.   def update
  525.     super
  526.     return unless self.active
  527.     @item_window.category = current_symbol if @item_window
  528.   end
  529.  
  530.   #--------------------------------------------------------------------------
  531.   # item_window=
  532.   #--------------------------------------------------------------------------
  533.   def item_window=(item_window)
  534.     @item_window = item_window
  535.     update
  536.   end
  537.  
  538. end # Window_ItemType
  539.  
  540. #==============================================================================
  541. # ■ Window_ItemList
  542. #==============================================================================
  543.  
  544. class Window_ItemList < Window_Selectable
  545.  
  546.   #--------------------------------------------------------------------------
  547.   # alias method: initialize
  548.   #--------------------------------------------------------------------------
  549.   alias window_itemlist_initialize_aim initialize
  550.   def initialize(dx, dy, dw, dh)
  551.     window_itemlist_initialize_aim(dx, dy, dw, dh)
  552.     @ext = :none
  553.     @name = ""
  554.   end
  555.  
  556.   #--------------------------------------------------------------------------
  557.   # alias method: category=
  558.   #--------------------------------------------------------------------------
  559.   alias window_itemlist_category_aim category=
  560.   def category=(category)
  561.     if @types_window.nil?
  562.       window_itemlist_category_aim(category)
  563.     else
  564.       return unless update_types?(category)
  565.       @category = category
  566.       if @types_window.active
  567.         @name = @types_window.current_data[:name]
  568.         @ext = @types_window.current_ext
  569.       end
  570.       refresh
  571.       self.oy = 0
  572.     end
  573.   end
  574.  
  575.   #--------------------------------------------------------------------------
  576.   # new method: update_types?
  577.   #--------------------------------------------------------------------------
  578.   def update_types?(category)
  579.     return true if @category != category
  580.     return false unless @types_window.active
  581.     if category == :category
  582.       return @name != @types_window.current_data[:name]
  583.     end
  584.     return @ext != @types_window.current_ext
  585.   end
  586.  
  587.   #--------------------------------------------------------------------------
  588.   # new method: types_window=
  589.   #--------------------------------------------------------------------------
  590.   def types_window=(window)
  591.     @types_window = window
  592.   end
  593.  
  594.   #--------------------------------------------------------------------------
  595.   # alias method: include?
  596.   #--------------------------------------------------------------------------
  597.   alias window_itemlist_include_aim include?
  598.   def include?(item)
  599.     if @types_window.nil?
  600.       return window_itemlist_include_aim(item)
  601.     else
  602.       return ace_item_menu_include?(item)
  603.     end
  604.   end
  605.  
  606.   #--------------------------------------------------------------------------
  607.   # new method: ace_item_menu_include?
  608.   #--------------------------------------------------------------------------
  609.   def ace_item_menu_include?(item)
  610.     case @category
  611.     #---
  612.     when :field
  613.       return false unless item.is_a?(RPG::Item)
  614.       return item.menu_ok?
  615.     when :battle
  616.       return false unless item.is_a?(RPG::Item)
  617.       return item.battle_ok?
  618.     #---
  619.     when :w_type
  620.       return false unless item.is_a?(RPG::Weapon)
  621.       return item.wtype_id == @types_window.current_ext
  622.     when :a_type
  623.       return false unless item.is_a?(RPG::Armor)
  624.       return item.atype_id == @types_window.current_ext
  625.     when :e_type
  626.       return false unless item.is_a?(RPG::Armor)
  627.       return item.etype_id == @types_window.current_ext
  628.     #---
  629.     when :all
  630.       case @types_window.current_ext
  631.       when :item
  632.         return item.is_a?(RPG::Item)
  633.       when :weapon
  634.         return item.is_a?(RPG::Weapon)
  635.       else
  636.         return item.is_a?(RPG::Armor)
  637.       end
  638.     #---
  639.     when :category
  640.       case @types_window.current_ext
  641.       when :item
  642.         return false unless item.is_a?(RPG::Item)
  643.       when :weapon
  644.         return false unless item.is_a?(RPG::Weapon)
  645.       else
  646.         return false unless item.is_a?(RPG::Armor)
  647.       end
  648.       return item.category.include?(@types_window.current_data[:name].upcase)
  649.     #---
  650.     else
  651.       return window_itemlist_include_aim(item)
  652.     end
  653.   end
  654.  
  655. end # Window_ItemList
  656.  
  657. #==============================================================================
  658. # ■ Window_ItemStatus
  659. #==============================================================================
  660.  
  661. class Window_ItemStatus < Window_Base
  662.  
  663.   #--------------------------------------------------------------------------
  664.   # initialize
  665.   #--------------------------------------------------------------------------
  666.   def initialize(dx, dy, item_window)
  667.     super(dx, dy, Graphics.width - dx, fitting_height(4))
  668.     @item_window = item_window
  669.     @item = nil
  670.     refresh
  671.   end
  672.  
  673.   #--------------------------------------------------------------------------
  674.   # update
  675.   #--------------------------------------------------------------------------
  676.   def update
  677.     super
  678.     update_item(@item_window.item)
  679.   end
  680.  
  681.   #--------------------------------------------------------------------------
  682.   # update_item
  683.   #--------------------------------------------------------------------------
  684.   def update_item(item)
  685.     return if @item == item
  686.     @item = item
  687.     refresh
  688.   end
  689.  
  690.   #--------------------------------------------------------------------------
  691.   # refresh
  692.   #--------------------------------------------------------------------------
  693.   def refresh
  694.     contents.clear
  695.     reset_font_settings
  696.     return draw_empty if @item.nil?
  697.     contents.font.size = YEA::ITEM::STATUS_FONT_SIZE
  698.     draw_item_image
  699.     draw_item_stats
  700.     draw_item_effects
  701.   end
  702.  
  703.   #--------------------------------------------------------------------------
  704.   # draw_empty
  705.   #--------------------------------------------------------------------------
  706.   def draw_empty
  707.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  708.     rect = Rect.new(1, 1, 94, 94)
  709.     contents.fill_rect(rect, colour)
  710.     dx = 96; dy = 0
  711.     dw = (contents.width - 96) / 2
  712.     for i in 0...8
  713.       draw_background_box(dx, dy, dw)
  714.       dx = dx >= 96 + dw ? 96 : 96 + dw
  715.       dy += line_height if dx == 96
  716.     end
  717.   end
  718.  
  719.   #--------------------------------------------------------------------------
  720.   # draw_background_box
  721.   #--------------------------------------------------------------------------
  722.   def draw_background_box(dx, dy, dw)
  723.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  724.     rect = Rect.new(dx+1, dy+1, dw-2, line_height-2)
  725.     contents.fill_rect(rect, colour)
  726.   end
  727.  
  728.   #--------------------------------------------------------------------------
  729.   # draw_item_image
  730.   #--------------------------------------------------------------------------
  731.   def draw_item_image
  732.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  733.     rect = Rect.new(1, 1, 94, 94)
  734.     contents.fill_rect(rect, colour)
  735.     if @item.image.nil?
  736.       icon_index = @item.icon_index
  737.       bitmap = Cache.system("Iconset")
  738.       rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
  739.       target = Rect.new(0, 0, 96, 96)
  740.       contents.stretch_blt(target, bitmap, rect)
  741.     else
  742.       bitmap = Cache.picture(@item.image)
  743.       contents.blt(0, 0, bitmap, bitmap.rect, 255)
  744.     end
  745.   end
  746.  
  747.   #--------------------------------------------------------------------------
  748.   # draw_item_stats
  749.   #--------------------------------------------------------------------------
  750.   def draw_item_stats
  751.     return unless @item.is_a?(RPG::Weapon) || @item.is_a?(RPG::Armor)
  752.     dx = 96; dy = 0
  753.     dw = (contents.width - 96) / 2
  754.     for i in 0...8
  755.       draw_equip_param(i, dx, dy, dw)
  756.       dx = dx >= 96 + dw ? 96 : 96 + dw
  757.       dy += line_height if dx == 96
  758.     end
  759.   end
  760.  
  761.   #--------------------------------------------------------------------------
  762.   # draw_equip_param
  763.   #--------------------------------------------------------------------------
  764.   def draw_equip_param(param_id, dx, dy, dw)
  765.     draw_background_box(dx, dy, dw)
  766.     change_color(system_color)
  767.     draw_text(dx+4, dy, dw-8, line_height, Vocab::param(param_id))
  768.     if $imported["YEA-EquipDynamicStats"]
  769.       draw_percentage_param(param_id, dx, dy, dw)
  770.     else
  771.       draw_set_param(param_id, dx, dy, dw)
  772.     end
  773.   end
  774.  
  775.   #--------------------------------------------------------------------------
  776.   # draw_percentage_param
  777.   #--------------------------------------------------------------------------
  778.   def draw_percentage_param(param_id, dx, dy, dw)
  779.     if @item.per_params[param_id] != 0 && @item.params[param_id] != 0
  780.       text = draw_set_param(param_id, dx, dy, dw)
  781.       dw -= text_size(text).width
  782.       draw_percent_param(param_id, dx, dy, dw)
  783.     elsif @item.per_params[param_id] != 0 && @item.params[param_id] == 0
  784.       draw_percent_param(param_id, dx, dy, dw)
  785.     else
  786.       draw_set_param(param_id, dx, dy, dw)
  787.     end
  788.   end
  789.  
  790.   #--------------------------------------------------------------------------
  791.   # draw_set_param
  792.   #--------------------------------------------------------------------------
  793.   def draw_set_param(param_id, dx, dy, dw)
  794.     value = @item.params[param_id]
  795.     if $imported["YEA-EquipDynamicStats"] && @item.var_params[param_id] > 0
  796.       value += $game_variables[@item.var_params[param_id]] rescue 0
  797.     end
  798.     change_color(param_change_color(value), value != 0)
  799.     text = value.group
  800.     text = "+" + text if value > 0
  801.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  802.     return text
  803.   end
  804.  
  805.   #--------------------------------------------------------------------------
  806.   # draw_percent_param
  807.   #--------------------------------------------------------------------------
  808.   def draw_percent_param(param_id, dx, dy, dw)
  809.     value = @item.per_params[param_id]
  810.     change_color(param_change_color(value))
  811.     text = (@item.per_params[param_id] * 100).to_i.group + "%"
  812.     text = "+" + text if @item.per_params[param_id] > 0
  813.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  814.     return text
  815.   end
  816.  
  817.   #--------------------------------------------------------------------------
  818.   # draw_item_effects
  819.   #--------------------------------------------------------------------------
  820.   def draw_item_effects
  821.     return unless @item.is_a?(RPG::Item)
  822.     dx = 96; dy = 0
  823.     dw = (contents.width - 96) / 2
  824.     draw_hp_recover(dx, dy + line_height * 0, dw)
  825.     draw_mp_recover(dx, dy + line_height * 1, dw)
  826.     draw_tp_recover(dx + dw, dy + line_height * 0, dw)
  827.     draw_tp_gain(dx + dw, dy + line_height * 1, dw)
  828.     dw = contents.width - 96
  829.     draw_applies(dx, dy + line_height * 2, dw)
  830.     draw_removes(dx, dy + line_height * 3, dw)
  831.   end
  832.  
  833.   #--------------------------------------------------------------------------
  834.   # draw_hp_recover
  835.   #--------------------------------------------------------------------------
  836.   def draw_hp_recover(dx, dy, dw)
  837.     draw_background_box(dx, dy, dw)
  838.     change_color(system_color)
  839.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:hp_recover))
  840.     per = 0
  841.     set = 0
  842.     for effect in @item.effects
  843.       next unless effect.code == 11
  844.       per += (effect.value1 * 100).to_i
  845.       set += effect.value2.to_i
  846.     end
  847.     if per != 0 && set != 0
  848.       change_color(param_change_color(set))
  849.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  850.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  851.       dw -= text_size(text).width
  852.       change_color(param_change_color(per))
  853.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  854.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  855.       return
  856.     elsif per != 0
  857.       change_color(param_change_color(per))
  858.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  859.     elsif set != 0
  860.       change_color(param_change_color(set))
  861.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  862.     else
  863.       change_color(normal_color, false)
  864.       text = Vocab::item_status(:empty)
  865.     end
  866.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  867.   end
  868.  
  869.   #--------------------------------------------------------------------------
  870.   # draw_mp_recover
  871.   #--------------------------------------------------------------------------
  872.   def draw_mp_recover(dx, dy, dw)
  873.     draw_background_box(dx, dy, dw)
  874.     change_color(system_color)
  875.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:mp_recover))
  876.     per = 0
  877.     set = 0
  878.     for effect in @item.effects
  879.       next unless effect.code == 12
  880.       per += (effect.value1 * 100).to_i
  881.       set += effect.value2.to_i
  882.     end
  883.     if per != 0 && set != 0
  884.       change_color(param_change_color(set))
  885.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  886.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  887.       dw -= text_size(text).width
  888.       change_color(param_change_color(per))
  889.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  890.       draw_text(dx+4, dy, dw-8, line_height, text, 2)
  891.       return
  892.     elsif per != 0
  893.       change_color(param_change_color(per))
  894.       text = per > 0 ? sprintf("+%s%%", per.group) : sprintf("%s%%", per.group)
  895.     elsif set != 0
  896.       change_color(param_change_color(set))
  897.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  898.     else
  899.       change_color(normal_color, false)
  900.       text = Vocab::item_status(:empty)
  901.     end
  902.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  903.   end
  904.  
  905.   #--------------------------------------------------------------------------
  906.   # draw_tp_recover
  907.   #--------------------------------------------------------------------------
  908.   def draw_tp_recover(dx, dy, dw)
  909.     draw_background_box(dx, dy, dw)
  910.     change_color(system_color)
  911.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:tp_recover))
  912.     set = 0
  913.     for effect in @item.effects
  914.       next unless effect.code == 13
  915.       set += effect.value1.to_i
  916.     end
  917.     if set != 0
  918.       change_color(param_change_color(set))
  919.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  920.     else
  921.       change_color(normal_color, false)
  922.       text = Vocab::item_status(:empty)
  923.     end
  924.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  925.   end
  926.  
  927.   #--------------------------------------------------------------------------
  928.   # draw_tp_gain
  929.   #--------------------------------------------------------------------------
  930.   def draw_tp_gain(dx, dy, dw)
  931.     draw_background_box(dx, dy, dw)
  932.     change_color(system_color)
  933.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:tp_gain))
  934.     set = @item.tp_gain
  935.     if set != 0
  936.       change_color(param_change_color(set))
  937.       text = set > 0 ? sprintf("+%s", set.group) : set.group
  938.     else
  939.       change_color(normal_color, false)
  940.       text = Vocab::item_status(:empty)
  941.     end
  942.     draw_text(dx+4, dy, dw-8, line_height, text, 2)
  943.   end
  944.  
  945.   #--------------------------------------------------------------------------
  946.   # draw_applies
  947.   #--------------------------------------------------------------------------
  948.   def draw_applies(dx, dy, dw)
  949.     draw_background_box(dx, dy, dw)
  950.     change_color(system_color)
  951.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:applies))
  952.     icons = []
  953.     for effect in @item.effects
  954.       case effect.code
  955.       when 21
  956.         next unless effect.value1 > 0
  957.         next if $data_states[effect.value1].nil?
  958.         icons.push($data_states[effect.data_id].icon_index)
  959.       when 31
  960.         icons.push($game_actors[1].buff_icon_index(1, effect.data_id))
  961.       when 32
  962.         icons.push($game_actors[1].buff_icon_index(-1, effect.data_id))
  963.       end
  964.       icons.delete(0)
  965.       break if icons.size >= YEA::ITEM::MAX_ICONS_DRAWN
  966.     end
  967.     draw_icons(dx, dy, dw, icons)
  968.   end
  969.  
  970.   #--------------------------------------------------------------------------
  971.   # draw_removes
  972.   #--------------------------------------------------------------------------
  973.   def draw_removes(dx, dy, dw)
  974.     draw_background_box(dx, dy, dw)
  975.     change_color(system_color)
  976.     draw_text(dx+4, dy, dw-8, line_height, Vocab::item_status(:removes))
  977.     icons = []
  978.     for effect in @item.effects
  979.       case effect.code
  980.       when 22
  981.         next unless effect.value1 > 0
  982.         next if $data_states[effect.value1].nil?
  983.         icons.push($data_states[effect.data_id].icon_index)
  984.       when 33
  985.         icons.push($game_actors[1].buff_icon_index(1, effect.data_id))
  986.       when 34
  987.         icons.push($game_actors[1].buff_icon_index(-1, effect.data_id))
  988.       end
  989.       icons.delete(0)
  990.       break if icons.size >= YEA::ITEM::MAX_ICONS_DRAWN
  991.     end
  992.     draw_icons(dx, dy, dw, icons)
  993.   end
  994.  
  995.   #--------------------------------------------------------------------------
  996.   # draw_icons
  997.   #--------------------------------------------------------------------------
  998.   def draw_icons(dx, dy, dw, icons)
  999.     dx += dw - 4
  1000.     dx -= icons.size * 24
  1001.     for icon_id in icons
  1002.       draw_icon(icon_id, dx, dy)
  1003.       dx += 24
  1004.     end
  1005.     if icons.size == 0
  1006.       change_color(normal_color, false)
  1007.       text = Vocab::item_status(:empty)
  1008.       draw_text(4, dy, contents.width-8, line_height, text, 2)
  1009.     end
  1010.   end
  1011.  
  1012. end # Window_ItemStatus
  1013.  
  1014. #==============================================================================
  1015. # ■ Scene_Item
  1016. #==============================================================================
  1017.  
  1018. class Scene_Item < Scene_ItemBase
  1019.  
  1020.   #--------------------------------------------------------------------------
  1021.   # alias method: start
  1022.   #--------------------------------------------------------------------------
  1023.   alias scene_item_start_aim start
  1024.   def start
  1025.     scene_item_start_aim
  1026.     create_types_window
  1027.     create_status_window
  1028.     relocate_windows
  1029.   end
  1030.  
  1031.   #--------------------------------------------------------------------------
  1032.   # overwrite method: return_scene
  1033.   #--------------------------------------------------------------------------
  1034.   def return_scene
  1035.     $game_temp.scene_item_index = nil
  1036.     $game_temp.scene_item_oy = nil
  1037.     super
  1038.   end
  1039.  
  1040.   #--------------------------------------------------------------------------
  1041.   # overwrite method: create_category_window
  1042.   #--------------------------------------------------------------------------
  1043.   def create_category_window
  1044.     wy = @help_window.height
  1045.     @category_window = Window_ItemCommand.new(0, wy)
  1046.     @category_window.viewport = @viewport
  1047.     @category_window.help_window = @help_window
  1048.     @category_window.y = @help_window.height
  1049.     if !$game_temp.scene_item_index.nil?
  1050.       @category_window.select($game_temp.scene_item_index)
  1051.       @category_window.oy = $game_temp.scene_item_oy
  1052.     end
  1053.     $game_temp.scene_item_index = nil
  1054.     $game_temp.scene_item_oy = nil
  1055.     @category_window.set_handler(:ok, method(:on_category_ok))
  1056.     @category_window.set_handler(:cancel, method(:return_scene))
  1057.     @category_window.set_handler(:item, method(:open_types))
  1058.     @category_window.set_handler(:weapon, method(:open_types))
  1059.     @category_window.set_handler(:armor, method(:open_types))
  1060.     process_custom_item_commands
  1061.   end
  1062.  
  1063.   #--------------------------------------------------------------------------
  1064.   # new method: process_custom_item_commands
  1065.   #--------------------------------------------------------------------------
  1066.   def process_custom_item_commands
  1067.     for command in YEA::ITEM::COMMANDS
  1068.       next unless YEA::ITEM::CUSTOM_ITEM_COMMANDS.include?(command)
  1069.       called_method = YEA::ITEM::CUSTOM_ITEM_COMMANDS[command][3]
  1070.       @category_window.set_handler(command, method(called_method))
  1071.     end
  1072.   end
  1073.  
  1074.   #--------------------------------------------------------------------------
  1075.   # new method: create_types_window
  1076.   #--------------------------------------------------------------------------
  1077.   def create_types_window
  1078.     wy = @category_window.y
  1079.     @types_window = Window_ItemType.new(Graphics.width, wy)
  1080.     @types_window.viewport = @viewport
  1081.     @types_window.help_window = @help_window
  1082.     @types_window.y = @help_window.height
  1083.     @types_window.item_window = @item_window
  1084.     @item_window.types_window = @types_window
  1085.     @types_window.set_handler(:ok, method(:on_types_ok))
  1086.     @types_window.set_handler(:cancel, method(:on_types_cancel))
  1087.   end
  1088.  
  1089.   #--------------------------------------------------------------------------
  1090.   # new method: create_status_window
  1091.   #--------------------------------------------------------------------------
  1092.   def create_status_window
  1093.     wx = @category_window.width
  1094.     wy = @category_window.y
  1095.     @status_window = Window_ItemStatus.new(wx, wy, @item_window)
  1096.     @status_window.viewport = @viewport
  1097.   end
  1098.  
  1099.   #--------------------------------------------------------------------------
  1100.   # new method: relocate_windows
  1101.   #--------------------------------------------------------------------------
  1102.   def relocate_windows
  1103.     return unless $imported["YEA-AceMenuEngine"]
  1104.     case Menu.help_window_location
  1105.     when 0 # Top
  1106.       @help_window.y = 0
  1107.       @category_window.y = @help_window.height
  1108.       @item_window.y = @category_window.y + @category_window.height
  1109.     when 1 # Middle
  1110.       @category_window.y = 0
  1111.       @help_window.y = @category_window.height
  1112.       @item_window.y = @help_window.y + @help_window.height
  1113.     else # Bottom
  1114.       @category_window.y = 0
  1115.       @item_window.y = @category_window.height
  1116.       @help_window.y = @item_window.y + @item_window.height
  1117.     end
  1118.     @types_window.y = @category_window.y
  1119.     @status_window.y = @category_window.y
  1120.   end
  1121.  
  1122.   #--------------------------------------------------------------------------
  1123.   # new method: open_categories
  1124.   #--------------------------------------------------------------------------
  1125.   def open_types
  1126.     @category_window.x = Graphics.width
  1127.     @types_window.x = 0
  1128.     @types_window.reveal(@category_window.current_symbol)
  1129.   end
  1130.  
  1131.   #--------------------------------------------------------------------------
  1132.   # new method: on_types_ok
  1133.   #--------------------------------------------------------------------------
  1134.   def on_types_ok
  1135.     @item_window.activate
  1136.     @item_window.select_last
  1137.   end
  1138.  
  1139.   #--------------------------------------------------------------------------
  1140.   # new method: on_types_cancel
  1141.   #--------------------------------------------------------------------------
  1142.   def on_types_cancel
  1143.     @category_window.x = 0
  1144.     @category_window.activate
  1145.     @types_window.unselect
  1146.     @types_window.x = Graphics.width
  1147.   end
  1148.  
  1149.   #--------------------------------------------------------------------------
  1150.   # alias method: on_item_cancel
  1151.   #--------------------------------------------------------------------------
  1152.   alias scene_item_on_item_cancel_aim on_item_cancel
  1153.   def on_item_cancel
  1154.     if @types_window.x <= 0
  1155.       @item_window.unselect
  1156.       @types_window.activate
  1157.     else
  1158.       scene_item_on_item_cancel_aim
  1159.     end
  1160.   end
  1161.  
  1162.   #--------------------------------------------------------------------------
  1163.   # new method: command_totori
  1164.   #--------------------------------------------------------------------------
  1165.   def command_totori
  1166.     SceneManager.call(Scene_Alchemy)
  1167.   end
  1168.  
  1169.   #--------------------------------------------------------------------------
  1170.   # new method: command_name1
  1171.   #--------------------------------------------------------------------------
  1172.   def command_name1
  1173.     # Do nothing.
  1174.   end
  1175.  
  1176.   #--------------------------------------------------------------------------
  1177.   # new method: command_name2
  1178.   #--------------------------------------------------------------------------
  1179.   def command_name2
  1180.     # Do nothing.
  1181.   end
  1182.  
  1183. end # Scene_Item
  1184.  
  1185. #==============================================================================
  1186. #
  1187. # ▼ End of File
  1188. #
  1189. #==============================================================================
签名被我吃了
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
723
在线时间
530 小时
注册时间
2010-6-9
帖子
840
4
发表于 2012-10-24 23:56:50 | 只看该作者
<category: string>
想添加到什么,就拿什么替换String  放到该物品下。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2024-4-25 00:54

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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