赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 22188 |
最后登录 | 2024-6-24 |
在线时间 | 73 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 97
- 在线时间
- 73 小时
- 注册时间
- 2008-7-5
- 帖子
- 509
|
6楼
楼主 |
发表于 2008-10-19 16:29:15
|
只看该作者
既然没有人回答,那么看看这个脚本吧,能不能改成音效的,请版主不要判断成连帖,本人需要。
#==============================================================================
# 缺少位图时游戏继续进行
#------------------------------------------------------------------------------
# 只能判断当前工程素材文件夹里的位图情况,RTP不行.
# 不想要提示就把44行删掉
#==============================================================================
module Cache
#--------------------------------------------------------------------------
# ● 读取位图
#--------------------------------------------------------------------------
def self.load_bitmap(folder_name, filename, hue = 0)
@cache = {} if @cache == nil
path = folder_name + filename
if not @cache.include?(path) or @cache[path].disposed?
if filename.empty?
@cache[path] = Bitmap.new(32, 32)
else
make_debug_bitmap(folder_name, filename)
end
end
if hue == 0
return @cache[path]
else
key = [path, hue]
if not @cache.include?(key) or @cache[key].disposed?
@cache[key] = @cache[path].clone
@cache[key].hue_change(hue)
end
return @cache[key]
end
end
#--------------------------------------------------------------------------
# ● 位图debug
#--------------------------------------------------------------------------
def self.make_debug_bitmap(folder_name, filename)
result = []
file = Dir.entries(folder_name)
file.delete(".");file.delete("..")
file.each {|i| result.push(i.split(/\./)[0])}
path = folder_name + filename
if result.include? filename
@cache[path] = Bitmap.new(path)
else
print "#{folder_name} 文件夹没有 #{filename} 文件。"
@cache[path] = Bitmap.new(32, 32)
end
end
end |
|