Project1

标题: 修改版即时消息的几个问题 [打印本页]

作者: 个快快    时间: 2011-5-1 14:31
标题: 修改版即时消息的几个问题

  1.       @item_max = $a.size
  2.       elsif $a != nil and $a.size > Blue::Blue_max
  3.       @item_max = Blue::Blue_max
  4.     end  
  5.     if @item_max > 0
  6.       self.contents = Bitmap.new(width - 32, row_max * 16)
  7.       for i in 0...@item_max
  8.          draw_item(i)
  9.       end
  10.     end
  11.   end
  12.   def item_max
  13.     return @item_max
  14.   end  
  15.   #--------------------------------------------------------------------------
  16.   # ● 描绘项目
  17.   #     index : 项目编号
  18.   #--------------------------------------------------------------------------
  19.   def draw_item(index)
  20.     if $a.size < Blue::Blue_max + 1
  21.      item = $a[index]
  22.      else
  23.      item = $a[index + $a.size - Blue::Blue_max]
  24.     end
  25.     x = 0
  26.     y = index * 16
  27.     self.contents.font.size = 14
  28.     self.contents.font.color = Color.new(255, 128, 255, 255)
  29.     self.contents.draw_text(x + 6, y + 1, self.contents.text_size(item).width, 16, item, 0)
  30.     self.contents.font.color = normal_color
  31.     self.contents.draw_text(x + 5, y, self.contents.text_size(item).width, 16, item, 0)
  32.   end
  33.   #--------------------------------------
  34.   #  ● 刷新光标
  35.   #--------------------------------------
  36.   def update_cursor_rect
  37.     # 光标位置不满 0 的情况下
  38.     if @index < 0
  39.       self.cursor_rect.empty
  40.       return
  41.     end
  42.     # 获取当前的行
复制代码
求把字体改为默认,另外,怎么让文字显示在图片上面,而不是图片里?
作者: 星尘泪    时间: 2011-5-1 15:49
提示: 作者被禁止或删除 内容自动屏蔽




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