设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

加入立绘后玩一会儿就自动退出游戏

查看数: 2493 | 评论数: 2 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2016-3-2 07:46

正文摘要:

RUBY 代码复制#==============================================================================# ■ Window_Character#-------------------------------------------------------------- ...

回复

金芒芒 发表于 2016-3-3 08:52:29
cinderelmini 发表于 2016-3-2 22:56

工程巨大感谢有你
cinderelmini 发表于 2016-3-2 22:56:44
本帖最后由 cinderelmini 于 2016-3-2 22:58 编辑
  1. #==============================================================================
  2. # ■ Window_Character
  3. #------------------------------------------------------------------------------
  4. #  角色索引窗口
  5. #==============================================================================

  6. class Window_Character < Window_Selectable
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #--------------------------------------------------------------------------
  10.   def initialize
  11.     super(0, 133, 800, 480)#(160, 84, 385, 480)
  12.     self.contents = Bitmap.new(width - 32, height - 32)
  13.     self.z += 10
  14.     self.opacity = HS::OPACITY
  15. #    self.contents.font.size = 20
  16.     @item_max = $game_party.actors.size
  17.    # @column_max = $game_party.actors.size
  18.     @column_max = 4
  19.     @old_index = self.index
  20.     refresh
  21.   end
  22.   #--------------------------------------------------------------------------
  23.   # ● 刷新
  24.   #--------------------------------------------------------------------------
  25.   def refresh
  26.     self.contents.clear
  27.     for i in 0...$game_party.actors.size
  28.       x = 130 + i % 4 * (53 + 32)  # 根据包裹坐标修改过来的
  29.       y = 44 +  i / 4 * 128
  30.       actor = $game_party.actors[i]
  31.       bitmap = Bitmap.new ("Graphics/Status/" + actor.id. to_s + "_h") #RPG::Cache.character(actor.character_name, actor.character_hue)
  32.       cw = bitmap.width
  33.       ch = bitmap.height
  34.       src_rect = Rect.new(0, 0, cw, ch + 50)
  35.       self.contents.blt(x - ch , y - cw/ 2, bitmap, src_rect)
  36.     end
  37.     draw_status
  38.     @old_index = self.index
  39.   end
  40.   
  41.   #--------------------------------------------------------------------------
  42.   # ● 描绘半身像
  43.   #--------------------------------------------------------------------------
  44.   def draw_status
  45.     actor = $game_party.actors[@index]
  46.     bitmap = Bitmap.new ("Graphics/Status/" + actor.id. to_s + "_b")
  47.     src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
  48.     self.contents.blt(365 , 0, bitmap, src_rect,200)
  49.   end
  50.   
  51.   #--------------------------------------------------------------------------
  52.   # ● 刷新光标矩形
  53.   #--------------------------------------------------------------------------
  54.   def update_cursor_rect
  55.     # 光标位置不满 0 的情况下
  56.     if @index <= - 1
  57.       self.cursor_rect.empty
  58.       return
  59.     end
  60.     # 获取当前的行
  61.     row = @index / @column_max
  62.     # 当前行被显示开头行前面的情况下
  63.     if row < self.top_row
  64.       # 从当前行向开头行滚动
  65.       self.top_row = row
  66.    end
  67.     # 当前行被显示末尾行之后的情况下
  68.     if row > self.top_row + (self.page_row_max - 1)
  69.       # 从当前行向末尾滚动
  70.       self.top_row = row - (self.page_row_max - 1)
  71.     end
  72.     # 计算光标的宽
  73.     cursor_width = 86
  74.     #cursor_width = 536 / (@column_max + 1) + 1  #光标大小
  75.     # 计算光标坐标

  76.     x = 1 + @index % @column_max * (cursor_width - 1) - 6#光标位置调节 覆盖31行
  77.     y = @index / @column_max * 128 - self.oy - 3
  78.     # 更新国标矩形
  79.     self.cursor_rect.set(x+14, y+3, cursor_width, 123)#(x, y, cursor_width, 32)
  80.    
  81.     refresh if @old_index != self.index
  82.   end

  83. end
复制代码

评分

参与人数 1梦石 +1 收起 理由
RyanBern + 1 认可答案

查看全部评分

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-12-3 06:27

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表