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

Project1

 找回密码
 注册会员
搜索
查看: 2071|回复: 1
打印 上一主题 下一主题

[已经过期] 敌人数值代入变量+地图显示血条

 关闭 [复制链接]
头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
18 小时
注册时间
2011-7-2
帖子
11
跳转到指定楼层
1
发表于 2011-7-5 13:28:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
提示: 作者被禁止或删除 内容自动屏蔽

Lv1.梦旅人

梦石
0
星屑
229
在线时间
596 小时
注册时间
2010-6-21
帖子
1218
2
发表于 2011-7-5 14:05:58 | 只看该作者
  1. class Window_HPSPonMap < Window_Base
  2.   #--------------------------------------------------------------------------
  3.   # ●初始化
  4.   #--------------------------------------------------------------------------
  5.   def initialize
  6.     #super(0,0,180,120)#窗口的大小和位置,这个位置是显示血条用的。
  7.     super(0,0,640,480)#如果不是显示血条而是其他东西,请用这个。
  8.     HPSPonMap_initialize("黑体")
  9.     self.opacity = 0#这个是窗口的不透明度,调成255窗口就会在地图上显示。
  10.   end
  11.   #--------------------------------------------------------------------------
  12.   # ●更新
  13.   #--------------------------------------------------------------------------
  14.   def update
  15.     self.contents.clear
  16.     #以下为自定义的内容,其实就是窗口里的东西,请自行调整(东西越多越容易影响速度!)。
  17.     actor = $game_party.actors[0]#队伍里的第一位角色(因为为了防止卡机,最好只显示一人的。)
  18.     #draw_hp_bar(actor,0,20)#画血条
  19.     #draw_sp_bar(actor,0,40)#画气条
  20.     draw_actor_name(actor,0,0)#画角色名字
  21.     draw_actor_hp(actor,0,20)#画角色HP
  22.     draw_actor_sp(actor,0,40)#画角色SP
  23.     draw_actor_exp(actor,0,60)#EXP条  
  24.     draw_actor_state(actor,80,0)#显示角色状态
  25.     draw_actor_level(actor,0,400)#显示角色等级
  26.     self.contents.font.color = Color.new(153,0,0,255)#调整字体颜色,按RGB格式,最后一个是色彩强度
  27.     #self.contents.draw_text(0, 60, 180, 32, load_data("Data/MapInfos.rxdata")[$game_map.map_id].name)#显示当前地图名
  28.     #self.contents.font.color = Color.new(255,100,100,255)
  29.     #self.contents.draw_text(0, 80, 180, 32, "角色的X坐标:" + $game_player.x.to_s)#显示角色的地图X坐标
  30.     #self.contents.font.color = Color.new(100,255,100,255)
  31.     #self.contents.draw_text(0, 100, 180, 32, "角色的Y坐标:" + $game_player.y.to_s)#显示角色的地图Y坐标
  32.     #如果要显示变量,请按以下格式。
  33.     #self.contents.draw_text(X的值, Y的值, 180, 32, $game_variables[变量编号].to_s)
  34.     self.contents.draw_text(480, 0, 180, 32, $game_variables[30].to_s)
  35.   end
  36. end
复制代码
还需要修改Window_map
  1. #==============================================================================
  2. # ■ Window_Base
  3. #------------------------------------------------------------------------------
  4. #  游戏中全部窗口的超级类。
  5. #==============================================================================

  6. class Window_Base < Window
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #     x      : 窗口的 X 坐标
  10.   #     y      : 窗口的 Y 坐标
  11.   #     width  : 窗口的宽
  12.   #     height : 窗口的宽
  13.   #--------------------------------------------------------------------------
  14.   def initialize(x, y, width, height)
  15.     super()
  16.     @windowskin_name = $game_system.windowskin_name
  17.     self.windowskin = RPG::Cache.windowskin(@windowskin_name)
  18.     self.x = x
  19.     self.y = y
  20.     self.width = width
  21.     self.height = height
  22.     self.z = 100
  23.   end
  24.   #--------------------------------------------------------------------------
  25.   # ● 释放
  26.   #--------------------------------------------------------------------------
  27.   def dispose
  28.     # 如果窗口的内容已经被设置就被释放
  29.     if self.contents != nil
  30.       self.contents.dispose
  31.     end
  32.     super
  33.   end
  34.   #--------------------------------------------------------------------------
  35.   # ● 获取文字色
  36.   #     n : 文字色编号 (0~7)
  37.   #--------------------------------------------------------------------------
  38.   def text_color(n)
  39.     case n
  40.     when 0
  41.       return Color.new(255, 255, 255, 255)
  42.     when 1
  43.       return Color.new(128, 128, 255, 255)
  44.     when 2
  45.       return Color.new(255, 128, 128, 255)
  46.     when 3
  47.       return Color.new(128, 255, 128, 255)
  48.     when 4
  49.       return Color.new(128, 255, 255, 255)
  50.     when 5
  51.       return Color.new(255, 128, 255, 255)
  52.     when 6
  53.       return Color.new(255, 255, 128, 255)
  54.     when 7
  55.       return Color.new(192, 192, 192, 255)
  56.     else
  57.       normal_color
  58.     end
  59.   end
  60.   #--------------------------------------------------------------------------
  61.   # ● 获取普通文字色
  62.   #--------------------------------------------------------------------------
  63.   def normal_color
  64.     return Color.new(255, 255, 255, 255)
  65.   end
  66.   #--------------------------------------------------------------------------
  67.   # ● 获取无效文字色
  68.   #--------------------------------------------------------------------------
  69.   def disabled_color
  70.     return Color.new(255, 255, 255, 128)
  71.   end
  72.   #--------------------------------------------------------------------------
  73.   # ● 获取系统文字色
  74.   #--------------------------------------------------------------------------
  75.   def system_color
  76.     return Color.new(192, 224, 255, 255)
  77.   end
  78.   #--------------------------------------------------------------------------
  79.   # ● 获取危机文字色
  80.   #--------------------------------------------------------------------------
  81.   def crisis_color
  82.     return Color.new(255, 255, 64, 255)
  83.   end
  84.   #--------------------------------------------------------------------------
  85.   # ● 获取战斗不能文字色
  86.   #--------------------------------------------------------------------------
  87.   def knockout_color
  88.     return Color.new(255, 64, 0)
  89.   end
  90.   #--------------------------------------------------------------------------
  91.   # ● 刷新画面
  92.   #--------------------------------------------------------------------------
  93.   def update
  94.     super
  95.     # 如果窗口的外关被变更了、再设置
  96.     if $game_system.windowskin_name != @windowskin_name
  97.       @windowskin_name = $game_system.windowskin_name
  98.       self.windowskin = RPG::Cache.windowskin(@windowskin_name)
  99.     end
  100.   end
  101.   #--------------------------------------------------------------------------
  102.   # ● 图形的描绘
  103.   #     actor : 角色
  104.   #     x     : 描画目标 X 坐标
  105.   #     y     : 描画目标 Y 坐标
  106.   #--------------------------------------------------------------------------
  107.   def draw_actor_graphic(actor, x, y)
  108.     bitmap = RPG::Cache.character(actor.character_name, actor.character_hue)
  109.     cw = bitmap.width / 4
  110.     ch = bitmap.height / 4
  111.     src_rect = Rect.new(0, 0, cw, ch)
  112.     self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
  113.   end
  114.   #--------------------------------------------------------------------------
  115.   # ● 名称的描绘
  116.   #     actor : 角色
  117.   #     x     : 描画目标 X 坐标
  118.   #     y     : 描画目标 Y 坐标
  119.   #--------------------------------------------------------------------------
  120.   def draw_actor_name(actor, x, y)
  121.     self.contents.font.color = normal_color
  122.     self.contents.draw_text(x, y, 120, 32, actor.name)
  123.   end
  124.   #--------------------------------------------------------------------------
  125.   # ● 职业的描绘
  126.   #     actor : 角色
  127.   #     x     : 描画目标 X 坐标
  128.   #     y     : 描画目标 Y 坐标
  129.   #--------------------------------------------------------------------------
  130.   def draw_actor_class(actor, x, y)
  131.     self.contents.font.color = normal_color
  132.     self.contents.draw_text(x, y, 236, 32, actor.class_name)
  133.   end
  134.   #--------------------------------------------------------------------------
  135.   # ● 水平的描画
  136.   #     actor : 角色
  137.   #     x     : 描画目标 X 坐标
  138.   #     y     : 描画目标 Y 坐标
  139.   #--------------------------------------------------------------------------
  140.   def draw_actor_level(actor, x, y)
  141.     self.contents.font.color = system_color
  142.     self.contents.draw_text(x, y, 32, 32, "Lv")
  143.     self.contents.font.color = normal_color
  144.     self.contents.draw_text(x + 32, y, 24, 32, actor.level.to_s, 2)
  145.   end
  146.   #--------------------------------------------------------------------------
  147.   # ● 生辰成描绘用状态字符串
  148.   #     actor       : 角色
  149.   #     width       : 描画目标的宽度
  150.   #     need_normal : [正常] 是否为必须 (true / false)
  151.   #--------------------------------------------------------------------------
  152.   def make_battler_state_text(battler, width, need_normal)
  153.     # 获取括号的宽
  154.     brackets_width = self.contents.text_size("[]").width
  155.     # 生成状态名字符串
  156.     text = ""
  157.     for i in battler.states
  158.       if $data_states[i].rating >= 1
  159.         if text == ""
  160.           text = $data_states[i].name
  161.         else
  162.           new_text = text + "/" + $data_states[i].name
  163.           text_width = self.contents.text_size(new_text).width
  164.           if text_width > width - brackets_width
  165.             break
  166.           end
  167.           text = new_text
  168.         end
  169.       end
  170.     end
  171.     # 状态名空的字符串是 "[正常]" 的情况下
  172.     if text == ""
  173.       if need_normal
  174.         text = "[正常]"
  175.       end
  176.     else
  177.       # 加上括号
  178.       text = "[" + text + "]"
  179.     end
  180.     # 返回完成后的文字类
  181.     return text
  182.   end
  183.   #--------------------------------------------------------------------------
  184.   # ● 描绘状态
  185.   #     actor : 角色
  186.   #     x     : 描画目标 X 坐标
  187.   #     y     : 描画目标 Y 坐标
  188.   #     width : 描画目标的宽
  189.   #--------------------------------------------------------------------------
  190.   def draw_actor_state(actor, x, y, width = 120)
  191.     text = make_battler_state_text(actor, width, true)
  192.     self.contents.font.color = actor.hp == 0 ? knockout_color : normal_color
  193.     self.contents.draw_text(x, y, width, 32, text)
  194.   end
  195.   #--------------------------------------------------------------------------
  196.   # ● 描画 EXP
  197.   #     actor : 角色
  198.   #     x     : 描画目标 X 坐标
  199.   #     y     : 描画目标 Y 坐标
  200.   #--------------------------------------------------------------------------
  201.   def draw_actor_exp(actor, x, y)
  202.     #self.contents.font.color = system_color
  203.     #self.contents.draw_text(x, y, 24, 32, "E")
  204.     #self.contents.font.color = normal_color
  205.     #self.contents.draw_text(x + 24, y, 84, 32, actor.exp_s, 2)
  206.     #self.contents.draw_text(x + 108, y, 12, 32, "/", 1)
  207.     #self.contents.draw_text(x + 120, y, 84, 32, actor.next_exp_s)
  208.   end
  209.   
  210.   #--------------------------------------------------------------------------
  211.   # ● 描绘 HP
  212.   #     actor : 角色
  213.   #     x     : 描画目标 X 坐标
  214.   #     y     : 描画目标 Y 坐标
  215.   #     width : 描画目标的宽
  216.   #--------------------------------------------------------------------------
  217.   def draw_actor_hp(actor, x, y, width = 144)
  218.     # 描绘字符串 "HP"
  219.     self.contents.font.color = system_color
  220.     self.contents.draw_text(x, y, 32, 32, $data_system.words.hp)
  221.     # 计算描绘 MaxHP 所需的空间
  222.     if width - 32 >= 108
  223.       hp_x = x + width - 108
  224.       flag = true
  225.     elsif width - 32 >= 48
  226.       hp_x = x + width - 48
  227.       flag = false
  228.     end
  229.     # 描绘 HP
  230.     self.contents.font.color = actor.hp == 0 ? knockout_color :
  231.       actor.hp <= actor.maxhp / 4 ? crisis_color : normal_color
  232.     self.contents.draw_text(hp_x, y, 48, 32, actor.hp.to_s, 2)
  233.     # 描绘 MaxHP
  234.     if flag
  235.       self.contents.font.color = normal_color
  236.       self.contents.draw_text(hp_x + 48, y, 12, 32, "/", 1)
  237.       self.contents.draw_text(hp_x + 60, y, 48, 32, actor.maxhp.to_s)
  238.     end
  239.   end
  240.   #--------------------------------------------------------------------------
  241.   # ● 描绘 SP
  242.   #     actor : 角色
  243.   #     x     : 描画目标 X 坐标
  244.   #     y     : 描画目标 Y 坐标
  245.   #     width : 描画目标的宽
  246.   #--------------------------------------------------------------------------
  247.   def draw_actor_sp(actor, x, y, width = 144)
  248.     # 描绘字符串 "SP"
  249.     self.contents.font.color = system_color
  250.     self.contents.draw_text(x, y, 32, 32, $data_system.words.sp)
  251.     # 计算描绘 MaxSP 所需的空间
  252.     if width - 32 >= 108
  253.       sp_x = x + width - 108
  254.       flag = true
  255.     elsif width - 32 >= 48
  256.       sp_x = x + width - 48
  257.       flag = false
  258.     end
  259.     # 描绘 SP
  260.     self.contents.font.color = actor.sp == 0 ? knockout_color :
  261.       actor.sp <= actor.maxsp / 4 ? crisis_color : normal_color
  262.     self.contents.draw_text(sp_x, y, 48, 32, actor.sp.to_s, 2)
  263.     # 描绘 MaxSP
  264.     if flag
  265.       self.contents.font.color = normal_color
  266.       self.contents.draw_text(sp_x + 48, y, 12, 32, "/", 1)
  267.       self.contents.draw_text(sp_x + 60, y, 48, 32, actor.maxsp.to_s)
  268.     end
  269.   end
  270.   #--------------------------------------------------------------------------
  271.   # ● 描绘能力值
  272.   #     actor : 角色
  273.   #     x     : 描画目标 X 坐标
  274.   #     y     : 描画目标 Y 坐标
  275.   #     type  : 能力值种类 (0~6)
  276.   #--------------------------------------------------------------------------
  277.   def draw_actor_parameter(actor, x, y, type)
  278.     case type
  279.     when 0
  280.       parameter_name = $data_system.words.atk
  281.       parameter_value = actor.atk
  282.     when 1
  283.       parameter_name = $data_system.words.pdef
  284.       parameter_value = actor.pdef
  285.     when 2
  286.       parameter_name = $data_system.words.mdef
  287.       parameter_value = actor.mdef
  288.     when 3
  289.       parameter_name = $data_system.words.str
  290.       parameter_value = actor.str
  291.     when 4
  292.       parameter_name = $data_system.words.dex
  293.       parameter_value = actor.dex
  294.     when 5
  295.       parameter_name = $data_system.words.agi
  296.       parameter_value = actor.agi
  297.     when 6
  298.       parameter_name = $data_system.words.int
  299.       parameter_value = actor.int
  300.     end
  301.     self.contents.font.color = system_color
  302.     self.contents.draw_text(x, y, 120, 32, parameter_name)
  303.     self.contents.font.color = normal_color
  304.     self.contents.draw_text(x + 120, y, 36, 32, parameter_value.to_s, 2)
  305.   end
  306.   #--------------------------------------------------------------------------
  307.   # ● 描绘物品名
  308.   #     item : 物品
  309.   #     x    : 描画目标 X 坐标
  310.   #     y    : 描画目标 Y 坐标
  311.   #--------------------------------------------------------------------------
  312.   def draw_item_name(item, x, y)
  313.     if item == nil
  314.       return
  315.     end
  316.     bitmap = RPG::Cache.icon(item.icon_name)
  317.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24))
  318.     self.contents.font.color = normal_color
  319.     self.contents.draw_text(x + 28, y, 212, 32, item.name)
  320.   end
  321.   ###########################################################################
  322.   #--------------------------------------------------------------------------
  323.   # 新的窗口for地图上的HP和SP条
  324.   #--------------------------------------------------------------------------
  325.   def HPSPonMap_initialize(font=0,size=20)
  326.     font = "黑体" if font == 0
  327.     self.contents = Bitmap.new(self.width-32,self.height-32)
  328.     self.contents.font.name = font
  329.     self.contents.font.size = size
  330.   end
  331.   #--------------------------------------------------------------------------
  332.   # 画HP条
  333.   # 设计byLE,颜色渐变法by樱雅在土(没这个就很难画出渐变色)
  334.   #--------------------------------------------------------------------------
  335.   def draw_hp_bar(actor,x,y)
  336.     width = 40
  337.     black = Color.new(0,0,0,200)
  338.     black2 = Color.new(0,0,0,100)
  339.     #RP颜色计算法
  340.     val = 255 * ((actor.hp*100)/actor.maxhp)
  341.     green = 0 + val/100
  342.     val2 = 255 * ((actor.hp*100)/actor.maxhp)
  343.     red2 = 255 - val2/100
  344.     green2 = 0 + val2/100
  345.     startcolor = Color.new(red2,green2,0,150)
  346.     endcolor = Color.new(255,green,0,150)
  347.     w = width * actor.hp / actor.maxhp
  348.     #黑色倒影
  349.     draw_line(x+4, y+18, x+width+4, y+18, black, 7, black2)
  350.     #画血条(横板渐变色,颜色变化法由樱雅在土提供)
  351.     draw_line(x, y+14, x+w, y+14, startcolor, 7, endcolor)
  352.     #写上HP两个大字,顺便表示HP的数值。
  353.     self.contents.font.color = system_color
  354.     self.contents.draw_text(x, y, 32, 32, $data_system.words.hp)
  355.     end
  356.   #--------------------------------------------------------------------------
  357.   # 画SP条
  358.   # 设计byLE,颜色渐变法by樱雅在土(没这个就很难画出渐变色)
  359.   #--------------------------------------------------------------------------
  360.   def draw_sp_bar(actor,x,y)
  361.     width = 40
  362.     black = Color.new(0,0,0,200)
  363.     black2 = Color.new(0,0,0,100)
  364.     startcolor = Color.new(0,0,255,150)
  365.     endcolor = Color.new(0,255,255,150)
  366.     w = width * actor.sp / actor.maxsp
  367.     #黑色倒影
  368.     draw_line(x+4, y+18, x+width+4, y+18, black, 7, black2)
  369.     #画气条(横板渐变色,颜色变化法由樱雅在土提供)
  370.     draw_line(x, y+14, x+w, y+14, startcolor, 7, endcolor)
  371.     #写上SP两个大字,顺便表示SP的数值。
  372.     self.contents.font.color = system_color
  373.     self.contents.draw_text(x, y, 32, 32, $data_system.words.sp)
  374.     end
  375.   #--------------------------------------------------------------------------
  376.   # ● ライン描画 by 桜雅 在土
  377.   #--------------------------------------------------------------------------
  378.   def draw_line(start_x, start_y, end_x, end_y, start_color, width = 1, end_color = start_color)
  379.     # 描写距離の計算。大きめに直角時の長さ。
  380.     distance = (start_x - end_x).abs + (start_y - end_y).abs
  381.     # 描写開始
  382.     if end_color == start_color
  383.       for i in 1..distance
  384.         x = (start_x + 1.0 * (end_x - start_x) * i / distance).to_i
  385.         y = (start_y + 1.0 * (end_y - start_y) * i / distance).to_i
  386.         if width == 1
  387.           self.contents.set_pixel(x, y, start_color)
  388.         else
  389.           self.contents.fill_rect(x, y, width, width, start_color)
  390.         end
  391.       end
  392.     else
  393.       for i in 1..distance
  394.         x = (start_x + 1.0 * (end_x - start_x) * i / distance).to_i
  395.         y = (start_y + 1.0 * (end_y - start_y) * i / distance).to_i
  396.         r = start_color.red * (distance-i)/distance + end_color.red * i/distance
  397.         g = start_color.green * (distance-i)/distance + end_color.green * i/distance
  398.         b = start_color.blue * (distance-i)/distance + end_color.blue * i/distance
  399.         a = start_color.alpha * (distance-i)/distance + end_color.alpha * i/distance
  400.         if width == 1
  401.           self.contents.set_pixel(x, y, Color.new(r, g, b, a))
  402.         else
  403.           self.contents.fill_rect(x, y, width, width, Color.new(r, g, b, a))
  404.         end
  405.       end
  406.     end
  407.   end
  408.   ###########################################################################
  409. end
复制代码
在Scene_map中添加刷新就行了
另外不知道你的Scene_map有没有改过所以不发了

评分

参与人数 1星屑 +200 梦石 +2 收起 理由
「旅」 + 200 + 2 正确回答,恭喜你获得由66RPG提供的精美好.

查看全部评分

如果我是一个美工就好啦!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

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

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

GMT+8, 2024-11-26 08:56

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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