Project1

标题: 脚本怎么出错啦? [打印本页]

作者: 许俊兴    时间: 2014-9-14 10:02
标题: 脚本怎么出错啦?
  1. #==============================================================================
  2. # ** Cache
  3. #------------------------------------------------------------------------------
  4. #  這個模組先載入每個圖像素材[圖檔]並建立 Bitmap 物件,然後預留之。
  5. #  為了節省載入時間並節省記憶體,這個模組將已經建成的 Bitmap 物件載入至內部
  6. #  HASH 表, 並允許程式在需要重複調用相同的圖檔的時候能夠返回事先存在的物件。
  7. #==============================================================================

  8. module Cache
  9.   #--------------------------------------------------------------------------
  10.   # * 獲取動畫膠片圖檔
  11.   #     filename : 圖檔名
  12.   #     hue      : 偏色度[色調]
  13.   #--------------------------------------------------------------------------
  14.   def self.animation(filename, hue)
  15.     load_bitmap("Graphics/Animations/", filename, hue)
  16.   end
  17.   #--------------------------------------------------------------------------
  18.   # * 獲取參戰者圖檔
  19.   #     filename : 圖檔名
  20.   #     hue      : 偏色度[色調]
  21.   #--------------------------------------------------------------------------
  22.   def self.battler(filename, hue)
  23.     load_bitmap("Graphics/Battlers/", filename, hue)
  24.   end
  25.   #--------------------------------------------------------------------------
  26.   # * 獲取人物特徵圖檔
  27.   #     filename : 圖檔名
  28.   #--------------------------------------------------------------------------
  29.   def self.character(filename)
  30.     load_bitmap("Graphics/Characters/", filename)
  31.   end
  32.   #--------------------------------------------------------------------------
  33.   # * 獲取頭像圖檔
  34.   #     filename : 圖檔名
  35.   #--------------------------------------------------------------------------
  36.   def self.face(filename)
  37.     load_bitmap("Graphics/Faces/", filename)
  38.   end
  39.   #--------------------------------------------------------------------------
  40.   # * 獲取遠景圖檔
  41.   #     filename : 圖檔名
  42.   #--------------------------------------------------------------------------
  43.   def self.parallax(filename)
  44.     load_bitmap("Graphics/Parallaxes/", filename)
  45.   end
  46.   #--------------------------------------------------------------------------
  47.   # * 獲取圖片檔案[供“顯示圖片……”事件指令調用]
  48.   #     filename : 圖檔名
  49.   #--------------------------------------------------------------------------
  50.   def self.picture(filename)
  51.     load_bitmap("Graphics/Pictures/", filename)
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # * 獲取系統介面圖檔
  55.   #     filename : 圖檔名
  56.   #--------------------------------------------------------------------------
  57.   def self.system(filename)
  58.     load_bitmap("Graphics/System/", filename)
  59.   end
  60.   #--------------------------------------------------------------------------
  61.   # * 清空緩存
  62.   #--------------------------------------------------------------------------
  63.   def self.clear
  64.     [url=home.php?mod=space&uid=341345]@Cache[/url] = {} if @cache == nil
  65.     @cache.clear
  66.     GC.start
  67.   end
  68.   #--------------------------------------------------------------------------
  69.   # * 載入圖檔
  70.   #--------------------------------------------------------------------------
  71.   def self.load_bitmap(folder_name, filename, hue = 0)
  72.     @cache = {} if @cache == nil
  73.     path = folder_name + filename
  74.     if not @cache.include?(path) or @cache[path].disposed?
  75.       if filename.empty?
  76.         @cache[path] = Bitmap.new(32, 32)
  77.       else
  78.         @cache[path] = Bitmap.new(path)
  79.       end
  80.     end
  81.     if hue == 0
  82.       return @cache[path]
  83.     else
  84.       key = [path, hue]
  85.       if not @cache.include?(key) or @cache[key].disposed?
  86.         @cache[key] = @cache[path].clone
  87.         @cache[key].hue_change(hue)
  88.       end
  89.       return @cache[key]
  90.     end
  91.   end
  92. end
复制代码
cache出错啦,怎么回事?
作者: VIPArcher    时间: 2014-9-14 12:06
65行有论坛艾特BUG
有可能是你调用的地方出错了。
作者: 喵呜喵5    时间: 2014-9-14 13:26
本帖最后由 喵呜喵5 于 2014-9-14 13:28 编辑

请无视本楼…………

看错区了
作者: 许俊兴    时间: 2014-9-14 15:21
额,我去掉了鼠标脚本后就好了。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1