赞 | 2 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 4954 |
最后登录 | 2024-3-18 |
在线时间 | 54 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 81
- 在线时间
- 54 小时
- 注册时间
- 2008-12-24
- 帖子
- 345
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 kula1900 于 2009-7-29 19:18 编辑
#================================================================
# ■ Window_Command_双行窗口系列_光标美化合体版
#------------------------------------------------------------------------------
# 作者:陈凌枫の名:kula1900整合
#================================================================
class Window_Command < Window_Selectable
#--------------------------------------------------------------------------
# ● 初始化对像
# width : 窗口的宽
# commands : 命令字符串序列
#--------------------------------------------------------------------------
def initialize(width, commands, column = 1, size = 22)
@size = size
row = commands.size / column
size += 10
@size_no = size
super(0, 0, width, row * @size_no + 32)
@item_max = commands.size
@commands = commands
@row = row
@width_txt = (width - @size_no)/column
@height = @item_max/column
@height *= @size_no
self.contents = Bitmap.new(width - 32, @height)
self.visible = true
@item = []
self.index = 0
@column_max = column
@old = 0
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
for i in 0...@item_max
if i != self.index
draw_item_dis(i)
else
draw_item_active(i, @item)
end
end
end
#--------------------------------------------------------------------------
# ● 未选中项目描绘
# index : 项目编号
# color : 文字色
#--------------------------------------------------------------------------
def draw_item_dis(index)
row_index = index / @column_max
i = index
i %= @column_max
rect = Rect.new(i * @width_txt, @size_no * row_index , @width_txt - 8, @size_no)
self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
self.contents.font.color = Color.new(0,0,0,255)
self.contents.font.size = @size - 2
self.contents.draw_text(i * @width_txt, @size_no * row_index + 1, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt, @size_no * row_index - 1, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt - 1, @size_no * row_index, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt + 1, @size_no * row_index, @width_txt, @size_no, @commands[index])
self.contents.font.color = disabled_color
self.contents.draw_text(rect, @commands[index])
end
#--------------------------------------------------------------------------
# ● 选中项目描绘
# index : 项目编号
# type : 是否无效化
#--------------------------------------------------------------------------
def draw_item_active(index, type)
i = index
i %= @column_max
row_index = index / @column_max
rect = Rect.new(i * @width_txt, @size_no * row_index, @width_txt - 8, @size_no)
self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
# 此处定义被选中且未被无效化得文字色--上色
self.contents.font.color = Color.new(255, 255, 255, 120)
self.contents.font.size = @size
self.contents.draw_text(i * @width_txt, @size_no * row_index + 1, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt, @size_no * row_index - 1, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt - 1, @size_no * row_index, @width_txt, @size_no, @commands[index])
self.contents.draw_text(i * @width_txt + 1, @size_no * row_index, @width_txt, @size_no, @commands[index])
self.contents.font.color = disabled_color
self.contents.draw_text(rect, @commands[index])
if type == 1
self.contents.font.color = disabled_color
else
# 此处定义被选中且未被无效化得文字色--底色
self.contents.font.color = Color.new(255, 255, 255, 255)
end
self.contents.draw_text(i * @width_txt - 1, @size_no * row_index, @width_txt, @size_no, @commands[index])
end
#--------------------------------------------------------------------------
# ● 项目无效化
# index : 项目编号
#--------------------------------------------------------------------------
def disable_item(index)
@item[index] = 1
end
#--------------------------------------------------------------------------
# ● 刷新方法更新
#--------------------------------------------------------------------------
def update
super
#——这里使用的刷新方法比直接refresh节约很多内存
if self.index != @old
@old = self.index
refresh
end
end
def update_cursor_rect
self.cursor_rect.empty
end
end
# 生成命令脚本
size = 字daxiao@command_window = Window_Command.new(width, commands, column = 1, size = 22)
|
|