Project1

标题: 如何在地图左上角显示 地图名和 坐标XY [打印本页]

作者: Arose    时间: 2014-8-5 18:36
标题: 如何在地图左上角显示 地图名和 坐标XY
图样是个椭圆样的   效果图如图

QQ图片20140805183513.jpg (68.83 KB, 下载次数: 37)

QQ图片20140805183513.jpg

作者: taroxd    时间: 2014-8-5 19:35
本帖最后由 taroxd 于 2014-8-5 20:14 编辑

调坐标这种事情自己去干,在40~42行
23号开关开启时启用效果。开关ID在脚本第36行设置
默认效果如图:
@Cache  

RUBY 代码复制
  1. module Cache
  2.   @cache ||= {}
  3.   def self.ellipse(a, b, color)
  4.     key = [:ellipse, a, b, color]
  5.     unless include?(key)
  6.       @cache[key] = bitmap = Bitmap.new(2 * a, 2 * b)
  7.       0.step(2*Math::PI, 0.01) do |theta|
  8.         bitmap.set_pixel((a+a*Math.cos(theta)).to_i,
  9.           (b+b*Math.sin(theta)).to_i, color)
  10.       end
  11.     end
  12.     @cache[key]
  13.   end
  14. end
  15.  
  16. class Spriteset_Map
  17.   alias cs_20140805 create_shadow
  18.   def create_shadow
  19.     cs_20140805
  20.     @ellipse_sprite = Sprite.new
  21.     a, b, c = 50, 40, Color.new(255,0,0)
  22.     @ellipse_sprite.bitmap = Cache.ellipse(a,b,c).clone
  23.     @ellipse_sprite.bitmap.fill_rect(0, b, 2*a, 1, c)
  24.     @mapinfo_sprite = Sprite.new
  25.     @mapinfo_sprite.bitmap = Bitmap.new(2*a, 2*b)
  26.     @mapinfo_sprite.bitmap.font.size = 16
  27.     @ellipse_sprite.x = 10
  28.     @ellipse_sprite.y = 10
  29.     @mapinfo_sprite.x = 10
  30.     @mapinfo_sprite.y = 10
  31.   end
  32.  
  33.   alias us_20140805 update_shadow
  34.   def update_shadow
  35.     us_20140805
  36.     @mapinfo_sprite.visible = @ellipse_sprite.visible = $game_switches[23]
  37.     if @mapinfo_to_draw != mapinfo_to_draw
  38.       n, x, y = @mapinfo_to_draw = mapinfo_to_draw
  39.       text = "X:#{x} Y:#{y}"
  40.       b = @mapinfo_sprite.bitmap
  41.       b.clear
  42.       b.draw_text(0,20,b.width,20,n,1)
  43.       b.draw_text(0,40,b.width,20,text,1)
  44.     end
  45.   end
  46.  
  47.   alias ds_20140805 dispose_shadow
  48.   def dispose_shadow
  49.     ds_20140805
  50.     @ellipse_sprite.bitmap.dispose
  51.     @ellipse_sprite.dispose
  52.     @mapinfo_sprite.bitmap.dispose
  53.     @mapinfo_sprite.dispose
  54.   end
  55.  
  56.   def mapinfo_to_draw
  57.     [$game_map.display_name, $game_player.x, $game_player.y]
  58.   end
  59. end
      
作者: 余烬之中    时间: 2014-8-5 19:41
本帖最后由 余烬之中 于 2014-8-5 19:45 编辑

使用方法
把下面的脚本安装好,然后在Graphics/System下放一个图片 名字可以自己调整 默认为"Mapname"
脚本会用这个图片做背景 在上面绘制文字
可以设置一个键 当按下这个键的时候 会显示/隐藏地图名显示
图片示例

基本格式是这样:上面一块会居中描绘地图名 下面一块居中描绘坐标(以"(X, Y)"的形式)
中间的分隔线 宽度为2px
此外对图片的宽度、高度没有要求 推荐宽度在150左右 高度在60左右
你想要的椭圆就要你自己画了 毕竟我不知道你喜欢怎样的椭圆 画丑了你也不满意的
脚本





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