赞 | 0 |
VIP | 313 |
好人卡 | 0 |
积分 | 1 |
经验 | 6681 |
最后登录 | 2024-1-20 |
在线时间 | 66 小时 |
Lv1.梦旅人 蚂蚁卡卡
- 梦石
- 0
- 星屑
- 116
- 在线时间
- 66 小时
- 注册时间
- 2007-12-16
- 帖子
- 3081
|
- #==============================================================================
- # ■ Window_Command
- #------------------------------------------------------------------------------
- # 一般的命令选择行窗口。
- #==============================================================================
- class Window_Command1 < Window_Selectable
- #--------------------------------------------------------------------------
- # ● 初始化对像
- # width : 窗口的宽
- # commands : 命令字符串序列
- #--------------------------------------------------------------------------
- def initialize(width, commands)
- # 由命令的个数计算出窗口的高
- super(0, 0, 200,120)
- @item_max = commands.size
- @commands = commands
- self.contents = Bitmap.new(width ,32)
- refresh
- self.index = 0
-
- #@item_max = 0
- #@column_max = 1
- #@index = -1
-
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- for i in 0...@item_max
- draw_item(i, normal_color)
- end
- end
- #--------------------------------------------------------------------------
- # ● 描绘项目
- # index : 项目编号
- # color : 文字色
- #--------------------------------------------------------------------------
- def draw_item(index, color)
- self.contents.font.color = color
-
- rect = Rect.new(72*index, 3, 64 , 32)
-
-
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- self.contents.draw_text(rect, @commands[index])
- end
- #--------------------------------------------------------------------------
- # ● 项目无效化
- # index : 项目编号
- #--------------------------------------------------------------------------
- def disable_item(index)
- draw_item(index, disabled_color)
- end
- def row_max
- # 由项目数和列数计算出行数
- return 3#(@item_max + @column_max - 1) / @column_max
- end
- #--------------------------------------------------------------------------
- # ● 获取开头行
- #--------------------------------------------------------------------------
- def top_row
- # 将窗口内容的传送源 Y 坐标、1 行的高 32 等分
- return index*64#self.ox / 64
- end
- def top_row=(row)
- # row 未满 0 的场合更正为 0
- if row < 0
- row = 0
- end
-
- # row 超过 row_max - 1 的情况下更正为 row_max - 1
- if row > row_max - 1
- row = row_max - 1
- end
- # row 1 行高的 32 倍、窗口内容的传送源 Y 坐标
- if row >= 0
- self.ox = row * 64
- end
-
-
- end
-
-
- #--------------------------------------------------------------------------
- # ● 获取 1 页可以显示的行数
- #--------------------------------------------------------------------------
- def page_row_max
- # 窗口的高度,设置画面的高度减去 32 ,除以 1 行的高度 32
- return 2# (self.height - 32) / 32
- end
- #--------------------------------------------------------------------------
- # ● 获取 1 页可以显示的项目数
- #--------------------------------------------------------------------------
- def page_item_max
- # 将行数 page_row_max 乘上列数 @column_max
- return page_row_max * @column_max
- end
-
- def update_cursor_rect
- row = index
- if row <= self.top_row
- # 从当前行向开头行滚动
- self.top_row = row
- end
- # 当前行被显示末尾行之后的情况下
- if row > self.top_row + (self.page_row_max - 1)
- # 从当前行向末尾滚动
- self.top_row = row - (self.page_row_max - 1)
- end
-
-
- # 计算光标的宽
- cursor_width = 64#self.width / @column_max - 32
- # 计算光标坐标
- y = 1#@index % @column_max * (cursor_width + 32)
- x = 1#@index / @column_max * 65 - self.ox
- # 更新国标矩形
- self.cursor_rect.set(x, y, cursor_width, 32)
- end
- #--------------------------------------------------------------------------
- # ● 刷新画面
- #--------------------------------------------------------------------------
- def update
- super
- # 可以移动光标的情况下
- if self.active #and @item_max > 0 and @index >= 0
- # 方向键下被按下的情况下
- if Input.repeat?(Input::DOWN)
- # 列数不是 1 并且方向键的下的按下状态不是重复的情况、
- # 或光标位置在(项目数-列数)之前的情况下
- if (@column_max == 1 and Input.trigger?(Input::DOWN)) or
- @index < @item_max - @column_max
- # 光标向下移动
- $game_system.se_play($data_system.cursor_se)
- if @index < 2
- @index +=1
- else
- @index = 0
- end
- #(@index - @column_max + @item_max) % @item_max
- end
- end
- # 方向键上被按下的情况下
- if Input.repeat?(Input::UP)
- # 列数不是 1 并且方向键的下的按下状态不是重复的情况、
- # 或光标位置在列之后的情况下
- if (@column_max == 1 and Input.trigger?(Input::UP)) or
- @index >= @column_max
- # 光标向上移动
- $game_system.se_play($data_system.cursor_se)
-
-
- if @index > 0 and @column_max == 1
- @index -=1
- else
- @index = 2
- end
- #(@index + @column_max) % @item_max
- end
- end
- # 方向键右被按下的情况下
- if Input.repeat?(Input::RIGHT)
- # 列数为 2 以上并且、光标位置在(项目数 - 1)之前的情况下
- # if @column_max >= 2 and @index < @item_max - 1
- # 光标向右移动
- $game_system.se_play($data_system.cursor_se)
- if @index < 2
- @index +=1
- else
- @index = 0
- end
- #end
- end
- # 方向键左被按下的情况下
- if Input.repeat?(Input::LEFT)
- # 列数为 2 以上并且、光标位置在 0 之后的情况下
- #if @column_max >= 2 and @index > 0
- # 光标向左移动
- $game_system.se_play($data_system.cursor_se)
- if @index > 0
- @index -=1
- else
- @index = 2
- end
- #end
- end
- # R 键被按下的情况下
- if Input.repeat?(Input::R)
- # 显示的最后行在数据中最后行上方的情况下
- if self.top_row + (self.page_row_max - 1) < (self.row_max - 1)
- # 光标向后移动一页
- $game_system.se_play($data_system.cursor_se)
- @index = [@index + self.page_item_max, @item_max - 1].min
- self.top_row += self.page_row_max
- end
- end
- # L 键被按下的情况下
- if Input.repeat?(Input::L)
- # 显示的开头行在位置 0 之后的情况下
- if self.top_row > 0
- # 光标向前移动一页
- $game_system.se_play($data_system.cursor_se)
- @index = [@index - self.page_item_max, 0].max
- self.top_row -= self.page_row_max
- end
- end
- end
- # 刷新帮助文本 (update_help 定义了继承目标)
- if self.active and @help_window != nil
- update_help
- end
- # 刷新光标矩形
- update_cursor_rect
- end
- end
复制代码
放在Window_Command下面
放在Scene_Title1下面
先用默认脚本试试
三角掉过来了 是这样的意思吧? 系统信息:本贴获得楼主认可,66RPG感谢您的热情解答~ |
|