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

Project1

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

[已经过期] 图片命令刷新后引发异常

 关闭 [复制链接]

Lv2.观梦者

梦石
0
星屑
558
在线时间
256 小时
注册时间
2010-8-25
帖子
371
跳转到指定楼层
1
发表于 2011-8-4 22:14:56 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
  1. #==============================================================================
  2. # ■ Window_Picture_Command
  3. #------------------------------------------------------------------------------
  4. =begin
  5. 该脚本是用图片做命令按钮,使用起来比较简单,脚本会自动判断位置。
  6. 使用方法:
  7. 与调用一般命令窗口一样!
  8. type描绘类型
  9. type = 1 只支持键盘
  10. type = 2 支持键盘+鼠标
  11. 如:先设定一个命令按钮图片以及坐标
  12. p1 = ["图片名",图片X坐标,图片Y坐标]
  13. 范例游戏里为
  14.     #################################################
  15.     s1 = ["新游戏",100,0]
  16.     s2 = ["继续游戏",200,150]
  17.     s3 = ["离开游戏",300,200]
  18.     @command_window = Window_Picture_Command.new([s1,s2,s3],type)
  19.     #################################################
  20.     这里的type的值就是刚才所支持的
  21.     type = 1 只支持键盘
  22.     type = 2 支持键盘+鼠标   
  23.     #################################################
  24.     s1 = ["新游戏",100,0]
  25.     s2 = ["继续游戏",200,150]
  26.     s3 = ["离开游戏",300,200]
  27.     @command_window = Window_Picture_Command.new([s1,s2,s3],2)
  28.     #################################################
  29.   大概就这样了,不明白看范例游戏吧。

  30. =end
  31. #==============================================================================
  32. class Window_Picture_Command < Window_Selectable
  33.   #--------------------------------------------------------------------------
  34.   # ● 初始化对像
  35.   #     width    : 窗口的宽
  36.   #     commands : 命令字符串序列
  37.   #--------------------------------------------------------------------------
  38.   def initialize(commands,type=1)
  39.     # 由命令的个数计算出窗口的高
  40.     super(0, 0, 640, 480)
  41.     @item_max = commands.size
  42.     @commands = commands
  43.     @dash = []
  44.     @sprite = []
  45.     @type = type
  46.     @move_index = self.index
  47.     self.opacity = 0
  48.     self.contents = Bitmap.new(width - 32, @item_max * 32)
  49.     refresh
  50.     self.index = 0
  51.   end
  52.   #--------------------------------------------------------------------------
  53.   # ● 刷新
  54.   #--------------------------------------------------------------------------
  55.   def refresh
  56.     self.contents.clear
  57.     for i in 0...@item_max
  58.       draw_picture_item(i, @type)
  59.     end
  60.   end
  61.   #--------------------------------------------------------------------------
  62.   # ● 释放
  63.   #--------------------------------------------------------------------------
  64.   def dispose
  65.     super
  66.     for index in @dash
  67.      if @sprite[index] != nil
  68.        @sprite[index].dispose
  69.        @sprite[index].bitmap.dispose
  70.      end
  71.     end
  72.   end  
  73.   #--------------------------------------------------------------------------
  74.   # ● 描绘图片项目
  75.   #     index : 项目编号
  76.   #     type  : 描绘类型
  77.   #     type = 1 只支持键盘
  78.   #     type = 2 双面支持
  79.   #--------------------------------------------------------------------------
  80.   def draw_picture_item(index, type)
  81.     @sprite[index] = Sprite.new
  82.     if @commands[index][0] == nil
  83.       p "图片名设置有误"
  84.     end
  85.     if @commands[index][1] == nil
  86.       p "图片X坐标设置有误"
  87.     end
  88.     if @commands[index][2] == nil
  89.       p "图片Y坐标设置有误"
  90.     end
  91.     bitmap = RPG::Cache.picture(@commands[index][0])
  92.     @sprite[index].bitmap = bitmap
  93.     @sprite[index].x = @commands[index][1]
  94.     @sprite[index].y = @commands[index][2]
  95.     @sprite[index].index = index
  96.     if @sprite[index].index != self.index
  97.       @sprite[index].color = Color.new(0,0,0,100)
  98.     else
  99.       @sprite[index].color = Color.new(0,0,0,0)
  100.     end
  101.     @dash.push(index)
  102.   end
  103.   #--------------------------------------------------------------------------
  104.   # ● 刷新图片项目
  105.   #--------------------------------------------------------------------------
  106.   def update_item
  107.     if Mouse.get_mouse_pos != nil
  108.     $mouse_x,$mouse_y = Mouse.get_mouse_pos
  109.     end
  110.     if @type == 2
  111.     for index in @dash
  112.      if @sprite[index] != nil
  113.       top_x = @sprite[index].x
  114.       top_y = @sprite[index].y
  115.       bottom_x = top_x + @sprite[index].bitmap.width
  116.       bottom_y = top_y + @sprite[index].bitmap.height
  117.       if ($mouse_x > top_x) and ($mouse_y > top_y) and
  118.            ($mouse_x < bottom_x) and ($mouse_y < bottom_y)
  119.            self.index = @sprite[index].index
  120.            if @move_index != self.index
  121.            Se.ok
  122.            @move_index = self.index
  123.          end
  124.       end
  125.       if @sprite[index].index != self.index
  126.         @sprite[index].color = Color.new(0,0,0,100)
  127.       else
  128.         @sprite[index].color = Color.new(0,0,0,0)
  129.       end
  130.     end
  131.     end
  132.     elsif @type == 1
  133.      for index in @dash
  134.         if @sprite[index].index != self.index
  135.          @sprite[index].color = Color.new(0,0,0,100)
  136.        else
  137.         @sprite[index].color = Color.new(0,0,0,0)
  138.        end
  139.      end  
  140.     end
  141.   end
  142.   #--------------------------------------------------------------------------
  143.   # ● 图片项目无效化
  144.   #     index : 项目编号
  145.   #--------------------------------------------------------------------------
  146.   def disable_item(index)
  147.     @sprite[index].color = Color.new(0,0,0,100)
  148.   end
  149.   #--------------------------------------------------------------------------
  150.   # ● 刷新
  151.   #--------------------------------------------------------------------------
  152.   alias window_picture_command_update update
  153.   def update
  154.     window_picture_command_update
  155.     update_item
  156.   end
  157.   #--------------------------------------------------------------------------
  158.   # ● 更新光标举行
  159.   #--------------------------------------------------------------------------
  160.   def update_cursor_rect
  161.     if @index < 0
  162.       self.cursor_rect.empty
  163.       return
  164.     end
  165.     row = @index / @column_max
  166.     if row < self.top_row
  167.       self.top_row = row
  168.     end
  169.     if row > self.top_row + (self.page_row_max - 1)
  170.       self.top_row = row - (self.page_row_max - 1)
  171.     end
  172.     cursor_width = self.width / @column_max - 32
  173.     x = @index % @column_max * (cursor_width + 32)
  174.     y = @index / @column_max * 32 - self.oy
  175.     self.cursor_rect.set(x+5000, y, cursor_width, 32)
  176.   end
  177. end
  178. #==============================================================================
  179. # ■ Se
  180. #------------------------------------------------------------------------------
  181. # ■ 音效模块
  182. #==============================================================================
  183. module Se
  184.   def self.ok
  185.     $game_system.se_play($data_system.cursor_se)
  186.   end
  187.   def self.no
  188.     $game_system.se_play($data_system.cancel_se)
  189.   end
  190. end
  191. #==============================================================================
  192. # ■ Sprite
  193. #------------------------------------------------------------------------------
  194. # ■ index 选择光标
  195. #==============================================================================
  196. class Sprite
  197.   attr_accessor :index
  198. end
复制代码
这是一个很久的脚本了,今天插入了一个工程。

按F12刷新后就~~~~~~~~

Lv1.梦旅人

虱子

梦石
0
星屑
121
在线时间
1782 小时
注册时间
2010-6-19
帖子
3597
2
发表于 2011-8-4 23:03:40 | 只看该作者
153行改成
  1.   alias window_picture_command_update update unless defined?(window_picture_command_update)
复制代码

点评

话说这个图片命令要什么鼠标脚本才能支持啊?我 的是四方向鼠标与寻路脚本,好像不能够用鼠标啊  发表于 2011-8-5 16:26

http://rpg.blue/thread-175056-1-2.html
PVZ型塔防物一个
http://rpg.blue/thread-155199-1-2.html
RMXP技术讨论区手动认可帖,得到答案请认可
回复

使用道具 举报

Lv2.观梦者

梦石
0
星屑
558
在线时间
256 小时
注册时间
2010-8-25
帖子
371
3
 楼主| 发表于 2011-8-5 16:28:50 | 只看该作者
Wind2010 发表于 2011-8-4 23:03
153行改成

还是这样啊

回复

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-26 18:32

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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