赞 | 0 |
VIP | 36 |
好人卡 | 0 |
积分 | 1 |
经验 | 2608 |
最后登录 | 2020-5-5 |
在线时间 | 52 小时 |
Lv1.梦旅人 敌敌畏
- 梦石
- 0
- 星屑
- 80
- 在线时间
- 52 小时
- 注册时间
- 2008-5-12
- 帖子
- 1748
|
3楼
楼主 |
发表于 2008-8-24 03:03:05
|
只看该作者
#==============================================================================
# ■ Window_Command
#------------------------------------------------------------------------------
# 一般的命令选择行窗口。
#==============================================================================
class Window_Command < Window_Selectable
#--------------------------------------------------------------------------
# ● 定义实例变量
#--------------------------------------------------------------------------
attr_reader :commands # 命令
#--------------------------------------------------------------------------
# ● 初始化对象
# width : 窗口宽
# commands : 命令字符串列表
# column_max : 行数 (2 以上横向选择)
# row_max : 列数 (0:与命令数一致)
# spacing : 项目横向的空白空间
#--------------------------------------------------------------------------
def initialize(width, commands, column_max = 1, row_max = 0, spacing = 32)
if row_max == 0
row_max = (commands.size + column_max - 1) / column_max
end
super(0, 0, width, row_max * WLH + 32, spacing)
@commands = commands
@item_max = commands.size
@column_max = column_max
refresh
self.index = 0
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
for i in 0...@item_max
draw_item(i)
end
end
#--------------------------------------------------------------------------
# ● 描绘项目
# index : 项目编号
# enabled : 有效标志。false 为半透明描绘。
#--------------------------------------------------------------------------
def draw_item(index, enabled = true)
rect = item_rect(index)
rect.x += 4
rect.width -= 8
self.contents.clear_rect(rect)
self.contents.font.color = normal_color
self.contents.font.color.alpha = enabled ? 255 : 128
self.contents.draw_text(rect, @commands[index])
end
end
好像没有..
|
|