Project1

标题: 有没办法使战斗图标菜单支持鼠标 [打印本页]

作者: flzt5354    时间: 2009-9-3 21:49
标题: 有没办法使战斗图标菜单支持鼠标
本帖最后由 flzt5354 于 2009-9-6 21:50 编辑

就像石焚刃暖那样- -
我实在不知道他修改了哪来..
无法提取出来
  1. #==============================================================================
  2. # ■ 菜单图标化
  3. #------------------------------------------------------------------------------
  4. #  战斗菜单改成了仙剑的模样
  5. #   By whbm
  6. #==============================================================================

  7. module Momo_IconCommand
  8.   # 图标名称设定
  9.   ATTACK_ICON_NAME = "Attack" # 攻撃
  10.   SKILL_ICON_NAME = "Skill"   # 特技
  11.   GUARD_ICON_NAME = "Guard"  # 防御
  12.   ITEM_ICON_NAME = "Thing"     # 物品
  13.   # X坐标修正
  14.   X_PLUS = -320
  15.   # Y坐标修正
  16.   Y_PLUS = -100
  17.   # 选择时图标的动作
  18.   # 0:静止 1:放大
  19.   SELECT_TYPE = 0
  20.   # 闪烁时光芒的颜色
  21.   FLASH_COLOR = Color.new(255, 255, 255, 128)
  22.   # 闪烁时间
  23.   FLASH_DURATION = 10
  24.   # 闪烁间隔
  25.   FLASH_INTERVAL = 20
  26.   # 是否写出文字的名称
  27.   COM_NAME_DROW = false
  28.   # 文字名称是否移动
  29.   COM_NAME_MOVE = true
  30.   # 文字内容
  31.   ATTACK_NAME = "攻击"    # 攻击
  32.   SKILL_NAME = "特技"   # 特技
  33.   GUARD_NAME = "防御"     # 防御
  34.   ITEM_NAME = "物品"  # 物品
  35.   # 文字颜色
  36.   COM_NAME_COLOR = Color.new(255, 255, 255, 255)
  37.   # 文字坐标修正
  38.   COM_NAME_X_PLUS = 0
  39.   COM_NAME_Y_PLUS = 0
  40. end

  41. class Window_CommandIcon < Window_Selectable
  42.   attr_accessor :last_index
  43.   #--------------------------------------------------------------------------
  44.   # ● オブジェクト初期化
  45.   #--------------------------------------------------------------------------
  46.   def initialize(x, y, commands)
  47.     super(x, y, 37, 37)
  48.     # ウィンドウスキンに空文字列を指定してウィンドウを描画しないようにする
  49.     self.windowskin = RPG::Cache.windowskin("")
  50.     @item_max = commands.size
  51.     @commands = commands
  52.     @column_max = commands.size
  53.     @index = 0
  54.     @last_index = nil
  55.     @name_sprite = nil
  56.     @sprite = []
  57.     refresh
  58.   end
  59.   def dispose
  60.     super
  61.     for sprite in @sprite
  62.       sprite.dispose unless sprite.nil?
  63.     end
  64.     @name_sprite.dispose unless @name_sprite.nil?
  65.   end
  66.   #--------------------------------------------------------------------------
  67.   # ● リフレッシュ
  68.   #--------------------------------------------------------------------------
  69.   def refresh
  70.     @name_sprite.dispose unless @name_sprite.nil?
  71.     for sprite in @sprite
  72.       sprite.dispose unless sprite.nil?
  73.     end
  74.     @name_sprite = nil
  75.     draw_com_name if Momo_IconCommand::COM_NAME_DROW
  76.     @sprite = []
  77.     for i in 0...@item_max
  78.       draw_item(i)
  79.     end
  80.   end
  81.   #--------------------------------------------------------------------------
  82.   # ● 項目の描画
  83.   #--------------------------------------------------------------------------
  84.   def draw_item(index)
  85.     @sprite[index] = Sprite_Icon.new(nil, @commands[index])
  86.     @sprite[index].z = self.z + 1
  87.   end
  88.   def draw_com_name
  89.     @name_sprite = Sprite_Comm_Name.new(nil, get_com_name)
  90.   end
  91.   # 更新
  92.   def update
  93.     super
  94.     icon_update
  95.     com_name_update if Momo_IconCommand::COM_NAME_DROW
  96.     if move_index?
  97.       @last_index = self.index
  98.     end
  99.   end
  100.   # アイコンの更新
  101.   def icon_update
  102.     qx = 25
  103.     qy = 405
  104.     for i in [email protected]
  105.       @sprite[i].active = (self.index == i)
  106.       @sprite[0].x = 24 +qx
  107.       @sprite[0].y = 0 +qy
  108.       @sprite[1].x = 0 + qx
  109.       @sprite[1].y = 25 + qy
  110.       @sprite[2].x = 24 + qx
  111.       @sprite[2].y = 49 + qy
  112.       @sprite[3].x = 49 + qx
  113.       @sprite[3].y = 25 + qy
  114.       #@sprite[i].x = self.x + i * 56
  115.       #@sprite[i].y = self.y + 0
  116.       @sprite[i].z = (self.index == i) ? self.z + 2 : self.z + 1
  117.       @sprite[i].visible = self.visible
  118.       @sprite[i].update
  119.     end
  120.   end
  121.   # コマンドネームの更新
  122.   def com_name_update
  123.     if move_index?
  124.       @name_sprite.name = get_com_name
  125.     end
  126.     @name_sprite.x = self.x - 12 + Momo_IconCommand::COM_NAME_X_PLUS
  127.     @name_sprite.y = self.y - 40 + Momo_IconCommand::COM_NAME_Y_PLUS
  128.     @name_sprite.z = self.z + 1
  129.     @name_sprite.active = self.active
  130.     @name_sprite.visible = self.visible
  131.     @name_sprite.update
  132.   end
  133.   def get_com_name
  134.     make_name_set if @name_set.nil?
  135.     name = @name_set[self.index]
  136.     name = "" if name.nil?
  137.     return name
  138.   end
  139.   def make_name_set
  140.     @name_set = []
  141.     @name_set[0] = Momo_IconCommand::ATTACK_NAME
  142.     @name_set[1] = Momo_IconCommand::SKILL_NAME
  143.     @name_set[2] = Momo_IconCommand::GUARD_NAME
  144.     @name_set[3] = Momo_IconCommand::ITEM_NAME
  145.   end
  146.   def move_index?
  147.     return self.index != @last_index
  148.   end
  149.   def need_reset
  150.     @name_sprite.need_reset = true if Momo_IconCommand::COM_NAME_DROW
  151.   end
  152. end

  153. # アイコン用スプライト
  154. class Sprite_Icon < Sprite
  155.   attr_accessor :active
  156.   attr_accessor :icon_name
  157.   #--------------------------------------------------------------------------
  158.   # ● オブジェクト初期化
  159.   #--------------------------------------------------------------------------
  160.   def initialize(viewport, icon_name)
  161.     super(viewport)
  162.     @icon_name = icon_name
  163.     @last_icon = @icon_name
  164.     @count = 0
  165.     self.bitmap = RPG::Cache.icon(@icon_name)
  166.     self.ox = self.bitmap.width / 2
  167.     self.oy = self.bitmap.height / 2
  168.     @active = false
  169.   end
  170.   #--------------------------------------------------------------------------
  171.   # ● 解放
  172.   #--------------------------------------------------------------------------
  173.   def dispose
  174.     if self.bitmap != nil
  175.       self.bitmap.dispose
  176.     end
  177.     super
  178.   end
  179.   #--------------------------------------------------------------------------
  180.   # ● フレーム更新
  181.   #--------------------------------------------------------------------------
  182.   def update
  183.     super
  184.     if @icon_name != @last_icon
  185.       @last_icon = @icon_name
  186.       self.bitmap = RPG::Cache.icon(@icon_name)
  187.     end
  188.     if @active
  189.       @count += 1
  190.       case Momo_IconCommand::SELECT_TYPE
  191.       when 0
  192.         icon_flash
  193.       when 1
  194.         icon_zoom
  195.       end
  196.       @count = 0 if @count == 20
  197.     else
  198.       icon_reset
  199.     end
  200.   end
  201.   def icon_flash
  202.     if @count % Momo_IconCommand::FLASH_INTERVAL == 0 or @count == 1
  203.       self.flash(Momo_IconCommand::FLASH_COLOR, Momo_IconCommand::FLASH_DURATION)
  204.     end
  205.   end
  206.   def icon_zoom
  207.     case @count
  208.     when 1..10
  209.       zoom = 1.0 + @count / 10.0
  210.     when 11..20
  211.       zoom = 2.0 - (@count - 10) / 10.0
  212.     end
  213.     self.zoom_x = zoom
  214.     self.zoom_y = zoom
  215.   end
  216.   def icon_reset
  217.     @count = 0
  218.     self.zoom_x = 1.0
  219.     self.zoom_y = 1.0
  220.   end
  221. end

  222. # コマンドネーム用スプライト
  223. class Sprite_Comm_Name < Sprite
  224.   attr_accessor :active
  225.   attr_accessor :name
  226.   attr_accessor :need_reset
  227.   #--------------------------------------------------------------------------
  228.   # ● オブジェクト初期化
  229.   #--------------------------------------------------------------------------
  230.   def initialize(viewport, name)
  231.     super(viewport)
  232.     @name = name
  233.     @last_name = nil
  234.     @count = 0
  235.     @x_plus = 0
  236.     @opa_plus = 0
  237.     @need_reset = false
  238.     @active = false
  239.     self.bitmap = Bitmap.new(160, 32)
  240.   end
  241.   #--------------------------------------------------------------------------
  242.   # ● 解放
  243.   #--------------------------------------------------------------------------
  244.   def dispose
  245.     if self.bitmap != nil
  246.       self.bitmap.dispose
  247.     end
  248.     super
  249.   end
  250.   #--------------------------------------------------------------------------
  251.   # ● フレーム更新
  252.   #--------------------------------------------------------------------------
  253.   def update
  254.     super
  255.     if @active
  256.       if need_reset?
  257.         @need_reset = false
  258.         @last_name = @name
  259.         text_reset
  260.       end
  261.       move_text if Momo_IconCommand::COM_NAME_MOVE
  262.     end
  263.   end
  264.   def move_text
  265.     @count += 1
  266.     @x_plus = [@count * 8, 80].min
  267.     self.y = 0
  268.     self.x = self.x - 300 - @x_plus
  269.     self.opacity = @count * 25
  270.   end
  271.   def text_reset
  272.     @count = 0
  273.     @x_plus = 0
  274.     self.bitmap.clear
  275.     self.bitmap.font.color = Momo_IconCommand::COM_NAME_COLOR
  276.     self.bitmap.draw_text(0, 0, 160, 32, @name)
  277.   end
  278.   def need_reset?
  279.     return (@name != @last_name or @need_reset)
  280.   end
  281. end

  282. class Scene_Battle
  283.   #--------------------------------------------------------------------------
  284.   # ● プレバトルフェーズ開始
  285.   #--------------------------------------------------------------------------
  286.   alias scene_battle_icon_command_start_phase1 start_phase1
  287.   def start_phase1
  288.     com1 = Momo_IconCommand::ATTACK_ICON_NAME
  289.     com2 = Momo_IconCommand::SKILL_ICON_NAME
  290.     com3 = Momo_IconCommand::GUARD_ICON_NAME
  291.     com4 = Momo_IconCommand::ITEM_ICON_NAME
  292.     @actor_command_window = Window_CommandIcon.new(0, 0, [com1, com2, com3, com4])
  293.     @actor_command_window.y = 160
  294.     @actor_command_window.back_opacity = 160
  295.     $fff = 0
  296.     @actor_command_window.active = false
  297. #    @actor_command_window.visible = false
  298.     @actor_command_window.update
  299.     scene_battle_icon_command_start_phase1
  300.   end
  301.   #--------------------------------------------------------------------------
  302.   # ● アクターコマンドウィンドウのセットアップ
  303.   #--------------------------------------------------------------------------
  304.   alias scene_battle_icon_command_phase3_setup_command_window phase3_setup_command_window
  305.   def phase3_setup_command_window
  306.     scene_battle_icon_command_phase3_setup_command_window
  307.     # アクターコマンドウィンドウの位置を設定
  308.     @actor_command_window.x = command_window_actor_x(@actor_index)
  309.     @actor_command_window.y = command_window_actor_y(@actor_index)
  310.     @actor_command_window.need_reset
  311.   end
  312.   def command_window_actor_x(index)
  313.     $game_party.actors[index].screen_x + Momo_IconCommand::X_PLUS
  314.   end
  315.   def command_window_actor_y(index)
  316.     $game_party.actors[index].screen_y + Momo_IconCommand::Y_PLUS
  317.   end
  318. end
复制代码

作者: well    时间: 2009-9-4 07:14
http://rpg.blue/viewthread.php?t ... B%E8%8F%9C%E5%8D%95
作者: flzt5354    时间: 2009-9-5 18:42
........战斗的图片响应怎么搞
作者: well    时间: 2009-9-6 06:08
本帖最后由 well 于 2009-9-6 06:09 编辑

假设你用的是全鼠标操作脚本
唔,我也是半通不通,全靠瞎猜。
实际上是补充个鼠标的刷新吧。
那么在phase3(scene_battle3)里找找命令窗口刷新判断的部分,前面加上判断鼠标位置的部分,就是那个鼠标响应图片里的

  1. mouse_x, mouse_y = Mouse.get_mouse_pos
  2. if mouse_x > 0 and mouse_x < 320 and
  3. mouse_y > 200 and mouse_y < 480
  4.   @actor_command_window.index = 1
  5. end
复制代码
坐标范围改成图标菜单里各图标的范围。然后根据经过图标位置不同换.index。自己找找吧。然后是按C键判断的部分,可能是 case @actor_command_window.index
  1. if Input.trigger?(Input:C) 改成 if Mouse.trigger?(Mouse::LEFT)
复制代码
大概这样。

有句话叫做:大胆假设,小心求证……
作者: flzt5354    时间: 2009-9-6 12:08
本帖最后由 flzt5354 于 2009-9-6 12:13 编辑

问题是..这个是用公共事件激活的..我下载的御灵剑看过..
他公共事件没这东东0 0

御灵剑脚本.rar

2.09 MB, 下载次数: 477


作者: well    时间: 2009-9-6 12:24
……我写的东西里面并没有涉及到公共事件不是么……
我没有做过有关鼠标的东西。也没有下过那个范例。
放在并行处理公共事件里是为了在地图上同步刷新(其实我也不太清楚并行处理的定义)。代码的含义则是
如果 鼠标在某一坐标区域内(按钮)并且鼠标左键按下,执行相应功能的公共事件。
那么把这堆东西挪到战斗scene里也是同样的道理呀。
你不打算试验一下吗?
或者你发个工程上来让我试着改?
作者: flzt5354    时间: 2009-9-6 12:28
本帖最后由 flzt5354 于 2009-9-6 12:54 编辑

好吧
工程下载
主要是不会改= =
-----------------
怎样,成功不?
作者: flzt5354    时间: 2009-9-6 17:42

作者: flzt5354    时间: 2009-9-6 21:50
自己研究出来了- -
作者: well    时间: 2009-9-7 04:56
这样最好了。
顺便说下我试验的结果。由于LZ的过程中没有带那个图标化脚本,直接复制本贴中脚本到main前。换了icon为默认素材中的icon。
在update_phase3_basic_command里加上了如之前思路所述的脚本。坐标调整了一下。能够实现鼠标移动到相应图标上,图标闪烁(即@actor_command_window.index实时改变)。
但是改Mouse.trigger?(Mouse::LEFT)失败,也就是左键单击无反应。
重新看过范例附带的鼠标系统后,在判断坐标的if里加入Mouse.click_unlock,如果希望点击其他地方都无反应的话,就加个else Mouse.click_lock
貌似解决。
既然LZ已解决。那么就这样吧。
作者: flzt5354    时间: 2009-9-7 18:40
那个还是谢谢你了~~目前研究逃跑按钮
作者: dbshy    时间: 2009-9-7 19:28
well说的很对
判断图片鼠标响应,关键就是在刷新时判断鼠标的坐标与bitmap的关系
比如这个,就是在刷新window_command时,判断范围




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