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

Project1

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

[已经过期] 图片按钮脚本怎么用?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
105
在线时间
0 小时
注册时间
2010-8-11
帖子
2
跳转到指定楼层
1
发表于 2010-8-11 14:23:46 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
我用了这个
  1. #==============================================================================
  2. # ■ Window_Picture_Command
  3. #------------------------------------------------------------------------------
  4. =begin
  5. 注意,如果支持鼠标请配上鼠标脚本。
  6. 该脚本是用图片做命令按钮,使用起来比较简单,脚本会自动判断位置。
  7. 使用方法:
  8. 与调用一般命令窗口一样!
  9. type描绘类型
  10. type = 1 只支持键盘
  11. type = 2 支持键盘+鼠标
  12. 如:先设定一个命令按钮图片以及坐标
  13. p1 = ["图片名",图片X坐标,图片Y坐标]
  14. 范例游戏里为
  15.     #################################################
  16.     s1 = ["新游戏",100,0]
  17.     s2 = ["继续游戏",200,150]
  18.     s3 = ["离开游戏",300,200]
  19.     @command_window = Window_Picture_Command.new([s1,s2,s3],type)
  20.     #################################################
  21.     这里的type的值就是刚才所支持的
  22.     type = 1 只支持键盘
  23.     type = 2 支持键盘+鼠标   
  24.     #################################################
  25.     s1 = ["新游戏",100,0]
  26.     s2 = ["继续游戏",200,150]
  27.     s3 = ["离开游戏",300,200]
  28.     @command_window = Window_Picture_Command.new([s1,s2,s3],2)
  29.     #################################################
  30.   大概就这样了,不明白看范例游戏吧。
  31. 注意,如果支持鼠标请配上鼠标脚本。
  32. =end
  33. #==============================================================================
  34. class Window_Picture_Command < Window_Selectable
  35.   attr_accessor :active
  36.   #--------------------------------------------------------------------------
  37.   # ● 初始化对像
  38.   #     width    : 窗口的宽
  39.   #     commands : 命令字符串序列
  40.   #--------------------------------------------------------------------------
  41.   def initialize(commands,type=1)
  42.     # 由命令的个数计算出窗口的高
  43.     super(0, 0, 640, 480)
  44.     @item_max = commands.size
  45.     @commands = commands
  46.     @dash = []
  47.     @sprite = []
  48.     @active = true
  49.     @type = type
  50.     @move_index = self.index
  51.     self.opacity = 0
  52.     self.contents = Bitmap.new(width - 32, @item_max * 32)
  53.     refresh
  54.     self.index = 0
  55.   end
  56.   #--------------------------------------------------------------------------
  57.   # ● 刷新
  58.   #--------------------------------------------------------------------------
  59.   def refresh
  60.     self.contents.clear
  61.     for i in 0...@item_max
  62.       draw_picture_item(i, @type)
  63.     end
  64.   end
  65.   #--------------------------------------------------------------------------
  66.   # ● 释放
  67.   #--------------------------------------------------------------------------
  68.   def dispose
  69.     super
  70.     for index in @dash
  71.      if @sprite[index] != nil
  72.        @sprite[index].dispose
  73.        @sprite[index].bitmap.dispose
  74.      end
  75.     end
  76.   end  
  77.   #--------------------------------------------------------------------------
  78.   # ● 描绘图片项目
  79.   #     index : 项目编号
  80.   #     type  : 描绘类型
  81.   #     type = 1 只支持键盘
  82.   #     type = 2 双面支持
  83.   #--------------------------------------------------------------------------
  84.   def draw_picture_item(index, type)
  85.     @sprite[index] = Sprite.new
  86.     if @commands[index][0] == nil
  87.       p "图片名设置有误"
  88.     end
  89.     if @commands[index][1] == nil
  90.       p "图片X坐标设置有误"
  91.     end
  92.     if @commands[index][2] == nil
  93.       p "图片Y坐标设置有误"
  94.     end
  95.     bitmap = RPG::Cache.picture(@commands[index][0])
  96.     @sprite[index].bitmap = bitmap
  97.     @sprite[index].x = @commands[index][1]
  98.     @sprite[index].y = @commands[index][2]
  99.     @sprite[index].index = index
  100.     if @sprite[index].index != self.index
  101.       @sprite[index].color = Color.new(0,0,0,100)
  102.     else
  103.       @sprite[index].color = Color.new(0,0,0,0)
  104.     end
  105.     @dash.push(index)
  106.   end
  107.   #--------------------------------------------------------------------------
  108.   # ● 刷新图片项目
  109.   #--------------------------------------------------------------------------
  110.   def update_item
  111.     if Mouse.get_mouse_pos != nil
  112.     $mouse_x,$mouse_y = Mouse.get_mouse_pos
  113.     end
  114.     if @type == 2
  115.     for index in @dash
  116.      if @sprite[index] != nil
  117.       top_x = @sprite[index].x
  118.       top_y = @sprite[index].y
  119.       bottom_x = top_x + @sprite[index].bitmap.width
  120.       bottom_y = top_y + @sprite[index].bitmap.height
  121.       if ($mouse_x > top_x) and ($mouse_y > top_y) and
  122.            ($mouse_x < bottom_x) and ($mouse_y < bottom_y)
  123.            self.index = @sprite[index].index
  124.            if @move_index != self.index
  125.            Se.ok
  126.            @move_index = self.index
  127.          end
  128.       end
  129.       if @sprite[index].index != self.index
  130.         @sprite[index].color = Color.new(0,0,0,100)
  131.       else
  132.         @sprite[index].color = Color.new(0,0,0,0)
  133.       end
  134.     end
  135.     end
  136.     elsif @type == 1
  137.      for index in @dash
  138.         if @sprite[index].index != self.index
  139.          @sprite[index].color = Color.new(0,0,0,100)
  140.        else
  141.         @sprite[index].color = Color.new(0,0,0,0)
  142.        end
  143.      end  
  144.    end
  145.   end
  146.   #--------------------------------------------------------------------------
  147.   # ● 图片项目无效化
  148.   #     index : 项目编号
  149.   #--------------------------------------------------------------------------
  150.   def disable_item(index)
  151.     @sprite[index].color = Color.new(0,0,0,100)
  152.   end
  153.   #--------------------------------------------------------------------------
  154.   # ● 图片的显示读取
  155.   #--------------------------------------------------------------------------
  156.   def visible
  157.     for i in 0...@item_max
  158.       p @sprite[i].visible = visible
  159.     end
  160.   end
  161.   #--------------------------------------------------------------------------
  162.   # ● 图片的显示
  163.   #--------------------------------------------------------------------------
  164.   def visible=(visible)
  165.     for i in 0...@item_max
  166.       @sprite[i].visible = visible
  167.     end
  168.   end
  169.   #--------------------------------------------------------------------------
  170.   # ● 刷新
  171.   #--------------------------------------------------------------------------
  172.   alias window_picture_command_update update
  173.   def update
  174.     if @active == true
  175.     window_picture_command_update
  176.     update_item
  177.     end
  178.   end
  179.   #--------------------------------------------------------------------------
  180.   # ● 更新光标举行
  181.   #--------------------------------------------------------------------------
  182.   def update_cursor_rect
  183.     if @index < 0
  184.       self.cursor_rect.empty
  185.       return
  186.     end
  187.     row = @index / @column_max
  188.     if row < self.top_row
  189.       self.top_row = row
  190.     end
  191.     if row > self.top_row + (self.page_row_max - 1)
  192.       self.top_row = row - (self.page_row_max - 1)
  193.     end
  194.     cursor_width = self.width / @column_max - 32
  195.     x = @index % @column_max * (cursor_width + 32)
  196.     y = @index / @column_max * 32 - self.oy
  197.     self.cursor_rect.set(x+5000, y, cursor_width, 32)
  198.   end
  199. end
  200. #==============================================================================
  201. # ■ Se
  202. #------------------------------------------------------------------------------
  203. # ■ 音效模块
  204. #==============================================================================
  205. module Se
  206.   def self.ok
  207.     $game_system.se_play($data_system.cursor_se)
  208.   end
  209.   def self.no
  210.     $game_system.se_play($data_system.cancel_se)
  211.   end
  212. end
  213. #==============================================================================
  214. # ■ Sprite
  215. #------------------------------------------------------------------------------
  216. # ■ index 选择光标
  217. #==============================================================================
  218. class Sprite
  219.   attr_accessor :index
  220. end
复制代码
不会用谁能发个范例给我啊
谢谢

Lv1.梦旅人

梦石
0
星屑
105
在线时间
0 小时
注册时间
2010-8-11
帖子
2
2
 楼主| 发表于 2010-8-11 14:48:47 | 只看该作者
为什么没人
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
324
在线时间
890 小时
注册时间
2009-10-12
帖子
1829
3
发表于 2010-8-11 15:48:53 | 只看该作者
图片按钮是什么?好吃么?

拜托,那是鼠标图片相应………………搜索 图片响应
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-4-6 18:09

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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