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

Project1

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

[已经解决] 装备开发系统 没有物品 选卖出时 出错

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
139 小时
注册时间
2013-1-30
帖子
65
跳转到指定楼层
1
发表于 2014-1-22 16:39:25 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 575539640 于 2014-1-22 16:41 编辑

为什么装备开发系统,在身上没有东西的时候,选择空白出现选项,然后选择卖出,会出现错误

http://rpg.blue/thread-296539-1-1.html







愁死我了。。。。

Lv1.梦旅人

梦石
0
星屑
50
在线时间
121 小时
注册时间
2013-9-19
帖子
163
2
发表于 2014-1-24 16:10:35 | 只看该作者
  1. module Equipplus
  2.   CODE ={
  3.     11 => "属性抗性",
  4.     12 => "弱化抗性",
  5.     13 => "状态抗性",
  6.     14 => "状态免疫",
  7.     21 => "基本能力",
  8.     22 => "附加能力",
  9.     23 => "独有能力",
  10.     31 => "攻击附带属性",
  11.     32 => "攻击附带状态",
  12.     33 => "修正攻击速度",
  13.     34 => "添加攻击次数",
  14.     41 => "添加技能类型",
  15.     42 => "禁用技能类型",
  16.     43 => "添加技能",
  17.     44 => "禁用技能",
  18.     51 => "可装备武器类型",
  19.     52 => "可装备护甲类型",
  20.     53 => "固定装备",
  21.     54 => "禁用装备",
  22.     55 => "装备风格",
  23.     61 => "添加行动次数",
  24.     62 => "特殊标志",
  25.     63 => "消失效果",
  26.     64 => "队伍能力"}
  27.   #特殊标志
  28.   FLAG ={
  29.                 0 => "自动战斗",
  30.                 1 => "擅长防御",
  31.                 2 => "保护弱者",
  32.                 3 => "特技专注"}
  33.   #普通能力
  34.         PARAM ={
  35.                 0 => "血量上限",
  36.                 1 => "魔力上限",
  37.                 2 => "物理破坏力",
  38.                 3 => "物理防御力",
  39.                 4 => "魔法破坏力",
  40.                 5 => "魔法防御力",
  41.                 6 => "灵巧值",
  42.                 7 => "幸运值"}
  43.   #添加能力
  44.         XPARAM ={
  45.                 0 => "攻击率:",
  46.                 1 => "闪避率:",
  47.                 2 => "暴击率:",
  48.                 3 => "保护率:",
  49.                 4 => "魔力抵消率:",
  50.                 5 => "魔力克制率:",
  51.                 6 => "物理反击率:",
  52.                 7 => "伤口愈合率:",
  53.                 8 => "魔力产生率:",
  54.                 9 => "怒气攻心率:"}
  55.   #特殊能力
  56.         SPARAM ={
  57.                 0 => "受到攻击率",
  58.                 1 => "防御效果率",
  59.                 2 => "恢复效果率",
  60.                 3 => "药理知识",
  61.                 4 => "魔法熟练度",
  62.                 5 => "怒气释放率",
  63.                 6 => "物理攻击伤害加成",
  64.                 7 => "魔法攻击伤害加成",
  65.                 8 => "洞察能力",
  66.                 9 => "领悟能力"}
  67.         @队伍能力 ={
  68.                 0 => "霸气外露",
  69.                 1 => "随机遇敌无效",
  70.                 2 => "很高的警惕性",
  71.                 3 => "善于隐藏自己",
  72.                 4 => "财神附体",
  73.                 5 => "幸运女神"}
  74.   def self.equiphelpready
  75.     @状态 = {}
  76.     @武器类型 = {}
  77.     @防具类型 = {}
  78.     @属性 = {}
  79.     $data_states.each{|x| @状态[x.id] = x.name if x != nil}
  80.     elements = $data_system.elements
  81.     weapon_types = $data_system.weapon_types
  82.     armor_types = $data_system.armor_types
  83.     elements.each_with_index{|x,y| @属性[y] = x if x != ""}
  84.     weapon_types.each_with_index{|x,y| @武器类型[y] = x if x != ""}
  85.     armor_types.each_with_index{|x,y| @防具类型[y] = x if x != ""}
  86.   end
  87.   def self.getequiphelp(equip)
  88.     help = ""
  89.     param = []
  90.     equip.params.each_with_index{|x,y| param.push([PARAM[y],x])}
  91.     param = param.select{|x| x[1] != 0}
  92.     param.each{|x| help += x[0] + ":" + x[1].to_int.to_s + "\n"}
  93.     features = equip.features
  94.     features.select{|x| x.code == 55}.each{|x| help += CODE[x.code] + ":双持武器" + "\n"}
  95.     features.select{|x| x.code == 11}.each{|x| help += CODE[x.code] + ":" + @属性[x.data_id] + "*" + x.value.to_s + "\n"}
  96.     features.select{|x| x.code == 12}.each{|x| help += CODE[x.code] + ":" + PARAM[x.data_id] + "*" + x.value.to_s + "\n"}
  97.     features.select{|x| x.code == 13}.each{|x| help += CODE[x.code] + ":" + @状态[x.data_id] + "*" + x.value.to_s + "\n"}
  98.     features.select{|x| x.code == 14}.each{|x| help += CODE[x.code] + ":" + @状态[x.data_id] + "\n"}
  99.     features.select{|x| x.code == 31}.each{|x| help += CODE[x.code] + ":" + @属性[x.data_id] + "\n"}
  100.     features.select{|x| x.code == 32}.each{|x| help += CODE[x.code] + ":" + @状态[x.data_id] + "+" + x.value.to_s + "\n"}
  101.     features.select{|x| x.code == 33}.each{|x| help += CODE[x.code] + ":" + x.value.to_s + "\n"}
  102.     features.select{|x| x.code == 34}.each{|x| help += CODE[x.code] + ":" + x.value.to_s + "\n"}
  103.     features.select{|x| x.code == 41}.each{|x| help += CODE[x.code] + ":" + (x.data_id == 1 ? "特技" : "魔法")  + "\n"}
  104.     features.select{|x| x.code == 42}.each{|x| help += CODE[x.code] + ":" + (x.data_id == 1 ? "特技" : "魔法")  + "\n"}
  105.     features.select{|x| x.code == 43}.each{|x| help += CODE[x.code] + ":" + $data_skills[x.data_id].name  + "\n"}
  106.     features.select{|x| x.code == 44}.each{|x| help += CODE[x.code] + ":" + $data_skills[x.data_id].name  + "\n"}
  107.     features.select{|x| x.code == 51}.each{|x| help += CODE[x.code] + ":" + @武器类型[x.data_id]  + "\n"}
  108.     features.select{|x| x.code == 52}.each{|x| help += CODE[x.code] + ":" + @防具类型[x.data_id]  + "\n"}
  109.     features.select{|x| x.code == 61}.each{|x| help += CODE[x.code] + ":" + x.value.to_s  + "\n"}
  110.     features.select{|x| x.code == 62}.each{|x| help += CODE[x.code] + ":" + FLAG[x.data_id]  + "\n"}
  111.     features.select{|x| x.code == 64}.each{|x| help += CODE[x.code] + ":" + @队伍能力[x.data_id]  + "\n"}
  112.     featuresparam = []
  113.     featuresparam.push features.select{|x| x.code == 21}
  114.     featuresparam.push features.select{|x| x.code == 22}
  115.     featuresparam.push features.select{|x| x.code == 23}
  116.     featuresparam[0].each{|x| help += PARAM[x.data_id] + "*" + x.value.to_s + "\n"}
  117.     featuresparam[1].each{|x| help += XPARAM[x.data_id] + x.value.to_s + "\n"}
  118.     featuresparam[2].each{|x| help += SPARAM[x.data_id] + "*" + x.value.to_s + "\n"}
  119.     help
  120.   end
  121.   def self.getline(text,maxtext)
  122.     xtext = []
  123.     line = 0
  124.     text.each_line{|x| xtext.push x.sub(/\n/){}}
  125.     xtext.each{|x| x.size % maxtext != 0 ? line += x.size / maxtext + 1 : line += x.size / maxtext}
  126.     line
  127.   end
  128. end
  129. #==============================================================================
  130. # ■ Window_Help
  131. #------------------------------------------------------------------------------
  132. #  显示特技和物品等的说明、以及角色状态的窗口
  133. #==============================================================================

  134. class Window_Help2 < Window_Base
  135.   #--------------------------------------------------------------------------
  136.   # ● 初始化对象
  137.   #--------------------------------------------------------------------------
  138.   def initialize(line_number = 0)
  139.     super(0, 0, 210, 0)
  140.     self.z = 150
  141.     contents.font.size = 14
  142.     hide
  143.   end
  144.   #--------------------------------------------------------------------------
  145.   # ● 设置内容
  146.   #--------------------------------------------------------------------------
  147.   def set_text(text)
  148.       @text = text
  149.       refresh
  150.   end
  151.   #--------------------------------------------------------------------------
  152.   # ● 清除
  153.   #--------------------------------------------------------------------------
  154.   def clear
  155.     set_text("")
  156.   end
  157.   #--------------------------------------------------------------------------
  158.   # ● 更新帮助位置
  159.   #--------------------------------------------------------------------------
  160.   def uppos(index,rect,window)
  161.     self.height = fitting_height2(Equipplus.getline(@xtext,13))
  162.     create_contents
  163.     contents.font.size = 15
  164.     rect.x -= window.ox
  165.     rect.y -= window.oy
  166.     ax = rect.x + rect.width + 10
  167.     ax = rect.x - self.width + 10 if ax + self.width > window.width + 10
  168.     ax += window.x
  169.     ax = 0 if ax < 0
  170.     ay = rect.y + rect.height
  171.     ay = rect.y - self.height if ay + self.height > window.height
  172.     ay += window.y
  173.     ay = 0 if ay < 0
  174.     self.x = ax
  175.     self.y = ay
  176.     set_text(@xtext)
  177.     show
  178.   end
  179.   #--------------------------------------------------------------------------
  180.   # ● 设置物品
  181.   #     item : 技能、物品等
  182.   #--------------------------------------------------------------------------
  183.   def set_item(item)
  184.     if item == nil
  185.       set_text("")
  186.       return
  187.     end
  188.     @xtext = ""
  189.     @xtext = "名称:" + item.name + "\n"
  190.     @xtext += "介绍:" + item.description + "\n"
  191.     @xtext += "价格:" + item.price.to_s + "\n" if item.is_a?(RPG::EquipItem) || item.is_a?(RPG::Item)
  192.     @xtext += "持有:" + $game_party.item_number(item).to_s + "\n" if item.is_a?(RPG::EquipItem) || item.is_a?(RPG::Item)
  193.     @xtext += Equipplus.getequiphelp(item) if item.is_a?(RPG::EquipItem)
  194.     @xtext = @xtext[0,@text.size - 2] if @xtext[@xtext.size - 2,2] == "\n"
  195.   end
  196.   #--------------------------------------------------------------------------
  197.   # ● 刷新
  198.   #--------------------------------------------------------------------------
  199.   def refresh
  200.     contents.clear
  201.     hide if @text == ""
  202.     draw_text_ex(4, 0, @text,width,40,false)
  203.   end
  204. end
  205. class Window_Base < Window
  206.   #--------------------------------------------------------------------------
  207.   # ● 计算窗口显示指定行数时的应用高度2*************************
  208.   #--------------------------------------------------------------------------
  209.   def fitting_height2(line_number)
  210.     line_number * contents.font.size + standard_padding * 2
  211.   end
  212. # draw_text_ex的增强,使其可以自动换行  原作者:叶子 修改:wyongcan
  213.   #--------------------------------------------------------------------------
  214.   # ● 绘制带有控制符的文本内容
  215.   #   如果传递了width参数的话,会自动换行
  216.   #--------------------------------------------------------------------------
  217.   def draw_text_ex(x, y, text, width = nil,textwidth = nil,normalfont = true)
  218.     reset_font_settings if normalfont == true
  219.     text = convert_escape_characters(text)
  220.     pos = {:x => x, :y => y, :new_x => x, :height => calc_line_height(text)}
  221.     if width != nil
  222.       pos[:height] = contents.font.size
  223.       pos[:width] = width
  224.       pos[:textwidth] = textwidth
  225.     end
  226.     process_character(text.slice!(0, 1), text, pos) until text.empty?
  227.   end
  228.   #--------------------------------------------------------------------------
  229.   # ● 文字的处理
  230.   #     c    : 文字
  231.   #     text : 绘制处理中的字符串缓存(字符串可能会被修改)
  232.   #     pos  : 绘制位置 {:x, :y, :new_x, :height}
  233.   #--------------------------------------------------------------------------
  234.   def process_character(c, text, pos)
  235.     case c
  236.     when "\r"   # 回车
  237.       return
  238.     when "\n"   # 换行
  239.       process_new_line(text, pos)
  240.     when "\f"   # 翻页
  241.       process_new_page(text, pos)
  242.     when "\e"   # 控制符
  243.       process_escape_character(obtain_escape_code(text), text, pos)
  244.     else        # 普通文字
  245.       pos[:textwidth] == nil ? text_width = text_size(c).width : text_width = pos[:textwidth]
  246.       if pos[:width] != nil && pos[:x] - pos[:new_x] + text_width > pos[:width]
  247.         process_new_line(text, pos)
  248.       end
  249.       process_normal_character(c, pos)
  250.     end
  251.   end
  252. end

  253. class Window_ItemList < Window_Selectable
  254.   #--------------------------------------------------------------------------
  255.   # ● 更新帮助内容
  256.   #--------------------------------------------------------------------------
  257.   def update_help
  258.     @help_window.set_item(item)
  259.     @help_window.uppos(index,item_rect(index),self) if index != -1 && item != nil
  260.   end
  261. end

  262. class Window_SkillList < Window_Selectable
  263.   #--------------------------------------------------------------------------
  264.   # ● 更新帮助内容
  265.   #--------------------------------------------------------------------------
  266.   def update_help
  267.     @help_window.set_item(item)
  268.     @help_window.uppos(index,item_rect(index),self) if index != -1 && item != nil
  269.   end
  270. end

  271. class Window_ShopBuy < Window_Selectable
  272.   #--------------------------------------------------------------------------
  273.   # ● 更新帮助内容
  274.   #--------------------------------------------------------------------------
  275.   def update_help
  276.     @help_window.set_item(item) if @help_window
  277.     @help_window.uppos(index,item_rect(index),self) if index != -1 && item != nil && @help_window
  278.     @status_window.item = item if @status_window
  279.   end
  280. end

  281. class Window_EquipSlot < Window_Selectable
  282.   #--------------------------------------------------------------------------
  283.   # ● 更新帮助内容
  284.   #--------------------------------------------------------------------------
  285.   def update_help
  286.     super
  287.     @help_window.set_item(item) if @help_window
  288.     @help_window.uppos(index,item_rect(index),self) if index != -1 && item != nil && @help_window
  289.     @status_window.set_temp_actor(nil) if @status_window
  290.   end
  291. end

  292. class Scene_Shop < Scene_MenuBase
  293.         alias on_sell_ok_old on_sell_ok
  294.         def on_sell_ok
  295.                 on_sell_ok_old
  296.                 @help_window.hide
  297.         end
  298.         alias on_buy_ok_old on_buy_ok
  299.         def on_buy_ok
  300.                 on_buy_ok_old
  301.                 @help_window.hide
  302.         end
  303.         alias on_number_ok_old on_number_ok
  304.         def on_number_ok
  305.                 on_number_ok_old
  306.     @help_window.refresh
  307.                 @help_window.show
  308.         end
  309.         alias on_number_cancel_old on_number_cancel
  310.         def on_number_cancel
  311.                 on_number_cancel_old
  312.     @help_window.refresh
  313.                 @help_window.show
  314.         end
  315. end

  316. class Scene_Title < Scene_Base
  317.   alias start_old start
  318.   def start
  319.     start_old
  320.     Equipplus.equiphelpready
  321.   end
  322. end

  323. class Scene_ItemBase < Scene_MenuBase
  324.         alias old_on_actor_cancel on_actor_cancel
  325.   def on_actor_cancel
  326.     old_on_actor_cancel
  327.         @help_window.refresh
  328.   end
  329.         alias old_on_actor_ok on_actor_ok
  330.   def on_actor_ok
  331.     old_on_actor_ok
  332.         @help_window.refresh
  333.   end
  334. end

  335. class Window_Base < Window
  336.         alias old_process_new_line process_new_line
  337.         def process_new_line(text, pos)
  338.     old_process_new_line(text, pos)
  339.                 pos[:height] = contents.font.size if pos[:width] != nil
  340.         end
  341. end

  342. class Scene_MenuBase < Scene_Base
  343.   def create_help_window
  344.     @help_window = Window_Help2.new
  345.     @help_window.viewport = @viewport
  346.   end
  347. end
  348. class Scene_Battle < Scene_Base
  349.   def create_help_window
  350.     @help_window = Window_Help2.new
  351.     @help_window.visible = false
  352.   end
  353. end
  354. #==============================================================================
  355. # ■ Scene_Item
  356. #------------------------------------------------------------------------------
  357. #  选项重新定义
  358. #==============================================================================
  359. class Window_ItemCommand < Window_Command
  360.   #--------------------------------------------------------------------------
  361.   # ● 添加指令
  362.   #     color     : 指令字体颜色
  363.   #     icon_index: 指令图标
  364.   #     name      : 指令名称
  365.   #     symbol    : 对应的符号
  366.   #     enabled   : 有效状态的标志
  367.   #     ext       : 任意的扩展数据
  368.   #--------------------------------------------------------------------------
  369.   def add_command(name, symbol, enabled = true, color = Color.new(255,255,255) ,icon_index = 0 ,ext = nil)
  370.     @list.push({:color=>color, :icon_index=>icon_index, :name=>name, :symbol=>symbol, :enabled=>enabled, :ext=>ext})
  371.   end
  372.   #--------------------------------------------------------------------------
  373.   # ● 获取指令字体颜色
  374.   #--------------------------------------------------------------------------
  375.   def command_color(index)
  376.     @list[index][:color]
  377.   end
  378.   #--------------------------------------------------------------------------
  379.   # ● 获取指令图标
  380.   #--------------------------------------------------------------------------
  381.   def command_icon_index(index)
  382.     @list[index][:icon_index]
  383.   end
  384.   def draw_text_in_rect(rect, str,icon_index,enabled = true, align = 0)
  385.     draw_icon(icon_index, rect.x, rect.y, enabled)
  386.     if icon_index > 0
  387.       draw_text(rect.x + 24, rect.y, rect.width - 28, line_height,str)
  388.     else
  389.       draw_text(rect.x, rect.y, rect.width - 8, line_height,str)
  390.     end
  391.   end
  392.   #--------------------------------------------------------------------------
  393.   # ● 绘制项目
  394.   #--------------------------------------------------------------------------
  395.   def draw_item(index)
  396.     change_color(command_color(index), command_enabled?(index))
  397.     draw_text_in_rect(item_rect_for_text(index), command_name(index),command_icon_index(index))   
  398.   end
  399. end
  400. #==============================================================================
  401. # ■ Window_ItemCommand
  402. #------------------------------------------------------------------------------
  403. #  物品画面中,显示装备选项的窗口。
  404. #==============================================================================
  405. class Window_ItemCommand < Window_Command
  406.   #--------------------------------------------------------------------------
  407.   # ● 初始化对象
  408.   #--------------------------------------------------------------------------
  409.   def initialize(item)
  410.     @item = item
  411.     super(0,0)
  412.   end
  413.   #--------------------------------------------------------------------------
  414.   # ● 获取窗口的宽度
  415.   #--------------------------------------------------------------------------
  416.   def window_width
  417.     return 160
  418.   end
  419.   #--------------------------------------------------------------------------
  420.   # ● 获取列数
  421.   #--------------------------------------------------------------------------
  422.   def visible_line_number
  423.     return 4
  424.   end
  425.   def enable?
  426.     $game_party.usable?(@item)
  427.   end
  428.   #--------------------------------------------------------------------------
  429.   # ● 生成指令列表
  430.   #--------------------------------------------------------------------------
  431.   def make_command_list
  432.     add_command("使用物品",   :use_item   , enable?,Color.new(11,168,3)   ,121)
  433.     add_command("卖出物品",   :sell_item  , enable?   ,Color.new(252,236,15) ,361)
  434.     add_command("丢弃物品",   :giveup_item, enable?   ,Color.new(242,119,14) ,227)
  435.     add_command("取消",       :cancel     , true   ,Color.new(173,164,156))
  436.   end
  437.   #--------------------------------------------------------------------------
  438.   # ● 更新帮助位置
  439.   #--------------------------------------------------------------------------
  440.   def uppos(index,rect,window)
  441.     create_contents
  442.     clear_command_list
  443.     make_command_list
  444.     rect.x -= window.ox
  445.     rect.y -= window.oy
  446.     ax = rect.x + rect.width + 10
  447.     ax = rect.x - self.width + 10 if ax + self.width > window.width + 10
  448.     ax += window.x
  449.     ax = 0 if ax < 0
  450.     ay = rect.y + rect.height
  451.     ay = rect.y - self.height if ay + self.height > window.height
  452.     ay += window.y
  453.     ay = 0 if ay < 0
  454.     self.x = ax
  455.     self.y = ay
  456.     refresh
  457.     show
  458.   end
  459.   
  460. end
  461. #==============================================================================
  462. # ■ Window_ItemCategory
  463. #------------------------------------------------------------------------------
  464. #  物品画面和商店画面中,显示装备、所持物品等项目列表的窗口。
  465. #==============================================================================
  466. class Window_New_ItemCategory < Window_Command
  467.   #--------------------------------------------------------------------------
  468.   # ● 定义实例变量
  469.   #--------------------------------------------------------------------------
  470.   attr_reader   :item_window
  471.   #--------------------------------------------------------------------------
  472.   # ● 初始化对象
  473.   #--------------------------------------------------------------------------
  474.   def initialize
  475.     super(0,72)
  476.   end
  477.   #--------------------------------------------------------------------------
  478.   # ● 获取窗口的宽度
  479.   #--------------------------------------------------------------------------
  480.   def window_width
  481.     return 168
  482.   end
  483.   #--------------------------------------------------------------------------
  484.   # ● 获取窗口的高度
  485.   #--------------------------------------------------------------------------
  486.   def window_height
  487.     return Graphics.height - 72
  488.   end
  489.   #--------------------------------------------------------------------------
  490.   # ● 更新画面
  491.   #--------------------------------------------------------------------------
  492.   def update
  493.     super
  494.     @item_window.category = current_symbol if @item_window
  495.   end
  496.   #--------------------------------------------------------------------------
  497.   # ● 生成指令列表
  498.   #--------------------------------------------------------------------------
  499.   def make_command_list
  500.     add_command("全部道具",     :none)
  501.     add_command("全部物品",     :item)
  502.     add_command("全部武器",   :weapon)
  503.     add_command("全部防具",   :armor)
  504.     add_command("消耗品",       :use_item)
  505.     for i in 0 ... $kind_of_item.size
  506.     add_command($kind_of_item[i],("kind_"+i.to_s).to_sym)
  507.     end
  508.     add_command(Vocab::key_item, :key_item)
  509.   end
  510.   #--------------------------------------------------------------------------
  511.   # ● 设置物品窗口
  512.   #--------------------------------------------------------------------------
  513.   def item_window=(item_window)
  514.     @item_window = item_window
  515.     update
  516.   end
  517. end
  518. #==============================================================================
  519. # ■ Window_ItemList
  520. #------------------------------------------------------------------------------
  521. #  物品画面中,显示持有物品的窗口。
  522. #==============================================================================
  523. class Window_ItemList2 < Window_ItemList
  524.   #--------------------------------------------------------------------------
  525.   # ● 初始化对象
  526.   #--------------------------------------------------------------------------
  527.   def initialize(x, y, width, height)
  528.     super
  529.     @category = :none
  530.     @data = []
  531.   end
  532.   #--------------------------------------------------------------------------
  533.   # ● 获取列数
  534.   #--------------------------------------------------------------------------
  535.   def col_max
  536.     return 12
  537.   end
  538.   #--------------------------------------------------------------------------
  539.   # ● 项目间隔
  540.   #--------------------------------------------------------------------------
  541.   def spacing
  542.     return 4
  543.   end
  544.   #--------------------------------------------------------------------------
  545.   # ● 获取选择项目的有效状态
  546.   #--------------------------------------------------------------------------
  547.   def current_item_enabled?
  548.     true
  549.   end
  550.   #--------------------------------------------------------------------------
  551.   # ● 查询列表中是否含有此物品
  552.   #--------------------------------------------------------------------------
  553.   def include?(item)
  554.     case @category
  555.     when :none
  556.       true if item
  557.     when :item
  558.       item.is_a?(RPG::Item) && !item.key_item?
  559.     when :use_item
  560.       item.is_a?(RPG::Item) && !item.key_item? && item.consumable
  561.     when :weapon
  562.       item.is_a?(RPG::Weapon)
  563.     when :armor
  564.       item.is_a?(RPG::Armor)
  565.     when :key_item
  566.       item.is_a?(RPG::Item) && item.key_item?
  567.     else
  568.       if item.is_a?(RPG::Item)
  569.         a = @category.to_s[5,2]
  570.         return true if item.class_id == a.to_i
  571.       else
  572.         false
  573.       end
  574.     end
  575.   end
  576.   #--------------------------------------------------------------------------
  577.   # ● 生成物品列表
  578.   #--------------------------------------------------------------------------
  579.   def make_item_list
  580.     @data = $game_party.all_items.select {|item| include?(item) }
  581.     @data.push(nil) if include?(nil)
  582.   end
  583.   #--------------------------------------------------------------------------
  584.   # ● 绘制项目
  585.   #--------------------------------------------------------------------------
  586.   def draw_item(index)
  587.     item = @data[index]
  588.     if item
  589.       rect = item_rect(index)
  590.       rect.width -= 4
  591.       draw_icon(item.icon_index, rect.x, rect.y, enable?(item))
  592.     end
  593.   end
  594. end
  595. #==============================================================================
  596. # ■ Window_Control_Number
  597. #------------------------------------------------------------------------------
  598. #  物品选择数量画面
  599. #==============================================================================
  600. class Window_Control_Number < Window_ShopNumber
  601.   #--------------------------------------------------------------------------
  602.   # ● 定义实例变量
  603.   #--------------------------------------------------------------------------
  604.   attr_reader   :number                   # 数量
  605.   #--------------------------------------------------------------------------
  606.   # ● 初始化
  607.   #--------------------------------------------------------------------------
  608.   def initialize(x,y,w,h)
  609.     @window_w = w
  610.     super(x,y,h)
  611.   end
  612.   #--------------------------------------------------------------------------
  613.   # ● 获取窗口的宽度
  614.   #--------------------------------------------------------------------------
  615.   def window_width
  616.     return @window_w
  617.   end
  618.   #--------------------------------------------------------------------------
  619.   # ● 计算窗口内容的宽度
  620.   #--------------------------------------------------------------------------
  621.   def contents_width
  622.     width - standard_padding * 2
  623.   end
  624.   #--------------------------------------------------------------------------
  625.   # ● 刷新
  626.   #--------------------------------------------------------------------------
  627.   def refresh
  628.     contents.clear
  629.     draw_item_name(@item, 4, 0)
  630.     draw_number
  631.     draw_total_price
  632.   end
  633.   #--------------------------------------------------------------------------
  634.   # ● 绘制数量
  635.   #--------------------------------------------------------------------------
  636.   def draw_number
  637.     change_color(normal_color) # x = cursor_x - 28
  638.     draw_text(4, fitting_height(1)-12, 22, line_height, "×")
  639.     draw_text(32, fitting_height(1)-12, cursor_width - 4, line_height, @number, 2)
  640.   end
  641.   #--------------------------------------------------------------------------
  642.   # ● 绘制总价
  643.   #--------------------------------------------------------------------------
  644.   def draw_total_price
  645.     width = contents_width - 60
  646.     draw_currency_value(@price * @number, @currency_unit, 4, price_y + 8, width)
  647.   end
  648.   #--------------------------------------------------------------------------
  649.   # ● 更新光标
  650.   #--------------------------------------------------------------------------
  651.   def update_cursor
  652.     cursor_rect.set(32, fitting_height(1)-12, cursor_width - 4, line_height)
  653.   end
  654. end
  655. #==============================================================================
  656. # ■ Scene_Item
  657. #------------------------------------------------------------------------------
  658. #  物品画面
  659. #==============================================================================
  660. class Scene_Item < Scene_ItemBase
  661.   #--------------------------------------------------------------------------
  662.   # ● 开始处理
  663.   #--------------------------------------------------------------------------
  664.   def start
  665.     super
  666.     @control_kind = :none
  667.     create_help_window
  668.     create_category_window
  669.     create_item_window
  670.     create_item_logo
  671.   end
  672.   #--------------------------------------------------------------------------
  673.   # ● 生成Logo
  674.   #--------------------------------------------------------------------------
  675.   def create_item_logo
  676.     @logo_window = Window_Base.new(0,0,@category_window.width,Graphics.height - @category_window.height)
  677.     @logo_window.draw_icon(264,4,0)
  678.     @logo_window.draw_text(28,0,@logo_window.width - 28,@logo_window.line_height,"我的包裹")
  679.     @logo_window.make_font_smaller
  680.     @logo_window.draw_text(4,26,@logo_window.width - 4,@logo_window.line_height,"道具数:"+$game_party.all_items.size.to_s)
  681.     @logo_window.make_font_bigger
  682.     @logo_window.viewport = @viewport
  683.   end
  684.   #--------------------------------------------------------------------------
  685.   # ● 刷新Logo
  686.   #--------------------------------------------------------------------------
  687.   def refresh_item_logo
  688.     @logo_window.contents.clear
  689.     @logo_window.draw_icon(264,4,0)
  690.     @logo_window.draw_text(28,0,@logo_window.width - 28,@logo_window.line_height,"我的包裹")
  691.     @logo_window.make_font_smaller
  692.     @logo_window.draw_text(4,26,@logo_window.width - 4,@logo_window.line_height,"道具数:"+$game_party.all_items.size.to_s)
  693.     @logo_window.make_font_bigger
  694.     @logo_window.viewport = @viewport
  695.   end
  696.   #--------------------------------------------------------------------------
  697.   # ● 生成控制数量
  698.   #--------------------------------------------------------------------------
  699.   def create_item_control_amount
  700.     x = 145
  701.     y = 140
  702.     w = Graphics.width - x * 2
  703.     h = Graphics.height - y * 2
  704.     @control_amount = Window_Control_Number.new(x,y,w,h)
  705.     @control_amount.viewport = @viewport
  706.     @control_amount.set_handler(:ok,   method(:on_item_control))
  707.     @control_amount.set_handler(:cancel,   method(:back_to_choose_item))
  708.   end
  709.   #--------------------------------------------------------------------------
  710.   # ● 生成物品控制窗口
  711.   #--------------------------------------------------------------------------
  712.   def create_item_control
  713.     @item_control = Window_ItemCommand.new(item)
  714.     @item_control.viewport = @viewport
  715.     @item_control.set_handler(:use_item,   method(:on_item_use))
  716.     @item_control.set_handler(:sell_item,  method(:sell_item))
  717.     @item_control.set_handler(:giveup_item,method(:giveup_item))
  718.     @item_control.set_handler(:cancel,     method(:back_to_choose_item))
  719.   end
  720.   #--------------------------------------------------------------------------
  721.   # ● 生成物品分类窗口
  722.   #--------------------------------------------------------------------------
  723.   def create_category_window
  724.     @category_window = Window_New_ItemCategory.new
  725.     @category_window.viewport = @viewport
  726.     @category_window.help_window = @help_window
  727.     @category_window.set_handler(:ok,     method(:on_category_ok))
  728.     @category_window.set_handler(:cancel, method(:return_scene))
  729.     @category_window.activate
  730.   end
  731.   #--------------------------------------------------------------------------
  732.   # ● 生成物品窗口
  733.   #--------------------------------------------------------------------------
  734.   def create_item_window
  735.     @item_window = Window_ItemList2.new(@category_window.width, 0, Graphics.width - @category_window.width, Graphics.height)
  736.     @item_window.help_window = @help_window
  737.     @item_window.viewport = @viewport
  738.     @item_window.set_handler(:ok,     method(:on_item_ok))
  739.     @item_window.set_handler(:cancel, method(:on_item_cancel))
  740.     @category_window.item_window = @item_window
  741.     @item_window.refresh
  742.   end
  743.   #--------------------------------------------------------------------------
  744.   # ● 分类“确定”
  745.   #--------------------------------------------------------------------------
  746.   def on_category_ok
  747.     @item_window.activate
  748.     @item_window.select_last
  749.   end
  750.   #--------------------------------------------------------------------------
  751.   # ● 物品“确定”
  752.   #--------------------------------------------------------------------------
  753.   def on_item_ok
  754.     @help_window.hide
  755.     create_item_control
  756.     @item_control.uppos(@item_window.index,@item_window.item_rect(@item_window.index),@item_window)
  757.     @item_control.activate
  758.   end
  759.   #--------------------------------------------------------------------------
  760.   # ● 返回选择物品
  761.   #--------------------------------------------------------------------------
  762.   def back_to_choose_item
  763.     @control_amount.hide if @control_amount
  764.     @item_control.hide
  765.     @item_window.activate
  766.   end
  767.   #--------------------------------------------------------------------------
  768.   # ● 物品“取消”
  769.   #--------------------------------------------------------------------------
  770.   def on_item_cancel
  771.     @item_window.unselect
  772.     @category_window.activate
  773.   end
  774.   #--------------------------------------------------------------------------
  775.   # ● 播放使用物品声效
  776.   #--------------------------------------------------------------------------
  777.   def play_se_for_item
  778.     Sound.play_use_item
  779.   end
  780.   #--------------------------------------------------------------------------
  781.   # ● 卖出物品(选择数量)
  782.   #--------------------------------------------------------------------------
  783.   def sell_item
  784.     create_item_control_amount
  785.     @control_amount.set(item, max_sell, selling_price, currency_unit)
  786.     @control_amount.activate
  787.     @control_kind = :sell
  788.   end
  789.   #--------------------------------------------------------------------------
  790.   # ● 丢弃物品(选择数量)
  791.   #--------------------------------------------------------------------------
  792.   def giveup_item
  793.     create_item_control_amount
  794.     @control_amount.set(item, max_sell, 0, currency_unit)
  795.     @control_amount.activate
  796.     @control_kind = :giveup
  797.   end
  798.   #--------------------------------------------------------------------------
  799.   # ● 结束选择数量
  800.   #--------------------------------------------------------------------------
  801.   def on_item_control
  802.     case @control_kind
  803.     when :sell
  804.       do_sell(@control_amount.number)
  805.     when :giveup
  806.       do_giveup(@control_amount.number)
  807.     end
  808.     refresh_item_logo
  809.     @item_window.refresh
  810.     back_to_choose_item
  811.   end
  812.   #--------------------------------------------------------------------------
  813.   # ● 执行卖出
  814.   #--------------------------------------------------------------------------
  815.   def do_sell(number)
  816.     $game_party.gain_gold(number * selling_price)
  817.     $game_party.lose_item(item, number)
  818.   end
  819.   #--------------------------------------------------------------------------
  820.   # ● 执行丢弃
  821.   #--------------------------------------------------------------------------
  822.   def do_giveup(number)
  823.     $game_party.lose_item(item, number)
  824.   end
  825.   #--------------------------------------------------------------------------
  826.   # ● 获取货币单位
  827.   #--------------------------------------------------------------------------
  828.   def currency_unit
  829.     Vocab::currency_unit
  830.   end
  831.   #--------------------------------------------------------------------------
  832.   # ● 获取可以卖出的最大值
  833.   #--------------------------------------------------------------------------
  834.   def max_sell
  835.     $game_party.item_number(item)
  836.   end
  837.   #--------------------------------------------------------------------------
  838.   # ● 获取卖出价格
  839.   #--------------------------------------------------------------------------
  840.   def selling_price
  841.     item.price / 2
  842.   end
  843.   #--------------------------------------------------------------------------
  844.   # ● 使用物品(选择角色)
  845.   #--------------------------------------------------------------------------
  846.   def on_item_use
  847.     @item_control.hide
  848.     $game_party.last_item.object = item
  849.     determine_item
  850.   end
  851.   #--------------------------------------------------------------------------
  852.   # ● 使用物品
  853.   #--------------------------------------------------------------------------
  854.   def use_item
  855.     super
  856.     @item_window.redraw_current_item
  857.     refresh_item_logo
  858.   end
  859. end
复制代码

评分

参与人数 1星屑 +66 收起 理由
熊喵酱 + 66 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
121 小时
注册时间
2013-9-19
帖子
163
3
发表于 2014-1-24 16:14:16 | 只看该作者
只改动了一丁点,443,444行是关于卖出物品和丢弃物品的,后面原来没有enable?,导致还能在没有物品的情况下执行这2个操作的bug,第442行使用物品没有这个bug,
是因为有enable?判断是否可以执行指令。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
121 小时
注册时间
2013-9-19
帖子
163
4
发表于 2014-1-24 16:15:16 | 只看该作者
我在443,444加了enable?,测试没问题了。

评分

参与人数 1星屑 -50 收起 理由
熊喵酱 -50 請編輯 不要用這種方式刷分

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
139 小时
注册时间
2013-1-30
帖子
65
5
 楼主| 发表于 2014-1-24 21:48:03 | 只看该作者
shabi 发表于 2014-1-24 16:15
我在443,444加了enable?,测试没问题了。

十分感谢,果然改了之后就没问题了~
愁死我了。。。。
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-4-30 00:22

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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