Project1

标题: 求一个简单的系统 [打印本页]

作者: 上贺茂润    时间: 2013-5-11 01:03
标题: 求一个简单的系统
求一个简单的VX系统,也就是战斗的时候光标移到某个人名字上会显示出人物的半身图(瞬间出现也好,能从屏幕的右边出现和退出更好),亲们有木有……
作者: 351323331    时间: 2013-5-12 13:18
http://rpg.blue/forum.php?mod=vi ... D610%26typeid%3D610
是这个帖子3楼那样的效果吗?
作者: 名雪    时间: 2013-5-13 19:14
本帖最后由 名雪 于 2013-5-14 12:48 编辑

战斗中显示脸图脚本:

==============================================================================
# ■ Window_BattleStatus
#------------------------------------------------------------------------------
#  显示战斗画面同伴状态的窗口。
#==============================================================================

class Window_BattleStatus < Window_Selectable
  #--------------------------------------------------------------------------
  # ● 初始化对像
  #--------------------------------------------------------------------------
  def initialize
    super(0, 0, 416, 128)
    self.contents.font.size = 18
    refresh
    self.active = false
  end
  #--------------------------------------------------------------------------
  # ● 释放
  #--------------------------------------------------------------------------
  def dispose
    super
  end
  #--------------------------------------------------------------------------
  # ● 刷新
  #--------------------------------------------------------------------------
  def refresh
    self.contents.clear
    @item_max = $game_party.members.size
    for i in 0...@item_max
      draw_item(i)
    end
    draw_6Rface(@index) if @index >= 0
  end
  #--------------------------------------------------------------------------
  # ● 描绘项目
  #     index : 项目编号
  #--------------------------------------------------------------------------
  def draw_item(index)
    rect = item_rect(index)
    rect.x += 4
    rect.width -= 8
    self.contents.clear_rect(rect)
    self.contents.font.color = normal_color
    actor = $game_party.members[index]
    draw_actor_name(actor, 124, rect.y + 2)
    begin_x = self.contents.text_size(actor.name).width + 4
    draw_actor_state(actor, begin_x, rect.y, 24)
    draw_actor_hp(actor, 230, rect.y, 65)
    draw_actor_mp(actor, 310, rect.y, 65)
  end
  #--------------------------------------------------------------------------
  # ● 描绘人物头像
  #     index : 项目编号
  #--------------------------------------------------------------------------
  def draw_6Rface(index)
    rect = Rect.new(0, 0, 96, 96)
    self.contents.clear_rect(rect)
    actor = $game_party.members[index]
    draw_actor_face(actor, 0, 0, 96)
  end  
  #--------------------------------------------------------------------------
  # ● 设置光标的位置
  #     index : 新的光标位置
  #--------------------------------------------------------------------------
  def index=(index)
    @index = index
    update_cursor
    refresh
  end
  #--------------------------------------------------------------------------
  # ● 获取项目描画矩形
  #     index : 项目编号
  #--------------------------------------------------------------------------
  def item_rect(index)
    rect = Rect.new(0, 0, 0, 0)
    rect.width = contents.width - 113
    rect.height = WLH
    rect.x = 113
    rect.y = index / @column_max * WLH
    return rect
  end  
  #--------------------------------------------------------------------------
  # ● 更新光标矩形
  #--------------------------------------------------------------------------
  def update_cursor
    if @index < 0                   # 光标位置不满 0 的情况下
      self.cursor_rect.empty        # 光标无效
    else                            # 光标位 0 以上的情况下
      row = @index / @column_max    # 获取当前的行
      if row < top_row              # 当前行被显示开头行前面的情况下
        self.top_row = row          # 从当前行向开头行滚动
      end
      if row > bottom_row           # 当前行被显示末尾行之后的情况下
        self.bottom_row = row       # 从当前行向末尾滚动
      end
      rect = item_rect(@index)      # 获取选择项的矩形
      rect.y -= self.oy             # 矩形滚动的位置加起来
      self.cursor_rect = rect       # 更新光标矩形
    end
  end
end
这个脚本如何?

作者: 上贺茂润    时间: 2013-5-14 23:02
名雪 发表于 2013-5-13 19:14
战斗中显示脸图脚本:

============================================================================== ...

试试看看,我再做一个小游戏,战斗的时候最好能显示出人物的图像
作者: 上贺茂润    时间: 2013-5-14 23:10
351323331 发表于 2013-5-12 13:18
http://rpg.blue/forum.php?mod=viewthread&tid=221918&extra=page%3D1%26filter%3Dtypeid%26typeid%3 ...

这个系统好像不太稳定,要改的东西太多了
作者: 上贺茂润    时间: 2013-5-14 23:14
名雪 发表于 2013-5-13 19:14
战斗中显示脸图脚本:

============================================================================== ...

很好用的脚本,我做好游戏之后邀请你测试呀




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