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

Project1

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

[已经过期] 【xp】帮忙改一下这个对话脚本

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
167 小时
注册时间
2011-5-29
帖子
191
跳转到指定楼层
1
发表于 2011-12-25 20:20:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 仲秋启明 于 2011-12-25 20:31 编辑

是rm游戏《卖车》里的脚本(可以在6r搜到,原来游戏里没问题,可以我一用到自己的工程中就会有问题...)

也可以qq联系我

我想求助的内容如下:

1.帮忙修正一下显示头像和半身像的问题,这个脚本里的不好用(用/字母的)。

2.帮忙修正一下显示文章时前面会多个空格(正方形的)然后就往后传了一个字的长度,每行都是这样。
  希望能去掉这个空格。


  1. class Game_Event < Game_Character
  2.   #===========================================================================
  3.   # 便于返回姓名和修改姓名
  4.   #===========================================================================
  5.   def name
  6.     return @event.name
  7.   end
  8.   def name=(na)
  9.     @event.name = na
  10.   end
  11. end
  12. #==============================================================================
  13. #
  14. #    呼出对话框 ver. 1.31 By パラ犬(日)
  15. #  来自 [url]http://rpg.para.s3p.net/[/url]
  16. #
  17. #  汉化修改 66RPG bbschat(2006.1.5)
  18. #    来自 [url]http://www.66RPG.com/[/url]
  19. #
  20. #    脚本更新:by KKME◎66RPG.com,2007年2月
  21. #
  22. #    脚本更新:by 绫晓露雪萌◎66RPG.com,2007年7月
  23. #
  24. #==============================================================================

  25. module FUKI

  26.   # 头像图片保存目录的设定
  27.   HEAD_PIC_DIR = "Graphics/Heads/"

  28.   # 是否显示尾部图标
  29.   TAIL_SHOW = true
  30.   
  31.   # Skin的设定
  32.   # 使用数据库默认窗口Skin情况下这里使用[""]
  33.   FUKI_SKIN_NAME = ""   # 呼出对话框用Skin
  34.   NAME_SKIN_NAME = ""   # 角色名字窗口用Skin
  35.   
  36.   # 字体大小
  37.   MES_FONT_SIZE = 16   # 呼出对话框
  38.   NAME_FONT_SIZE = 14   # 角色名字窗口
  39.   
  40.   # 字体颜色
  41.   #(设定为 Color.new(0, 0, 0, 0) 表示使用普通文字色)
  42.   FUKI_COLOR = Color.new(0, 0, 0, 255)  # 呼出对话框
  43.   NAME_COLOR = Color.new(0, 0, 0, 255)  # 角色名字窗口
  44.   
  45.   # 窗口透明度
  46.   # 如修改窗口透明度请同时修改尾部箭头图形内部的透明度
  47.   FUKI_OPACITY = 255    # 呼出对话框
  48.   MES_OPACITY = 255     # 默认信息窗口
  49.   NAME_OPACITY = 255    # 角色名字窗口
  50.   
  51.   # 角色名字窗口的相对位置
  52.   NAME_SHIFT_X = 0      # 横坐标
  53.   NAME_SHIFT_Y = 16     # 纵坐标
  54.   
  55.   # 窗口表示时是否根据画面大小自动检查窗口出现的位置,
  56.   # 自动改变位置( true / false )
  57.   # 设置成 true 在某些变态情况下可能出现箭头图标颠倒的问题 <- bbschat <= KKME
  58.   POS_FIX = true

  59.   # 在画面最边缘表示时的稍微挪动
  60.   # 使用圆形Skin的角和方框的角重合的情况下为 true
  61.   CORNER_SHIFT = false
  62.   SHIFT_PIXEL = 4   # true 时挪动的象素
  63.   
  64.   # 角色高度尺寸
  65.   CHARACTOR_HEIGHT = 48
  66.   # 呼出对话框的相对位置(纵坐标)
  67.   POP_SHIFT_TOP = 0         # 表示位置为上的时候
  68.   POP_SHIFT_UNDER = 0       # 表示位置为下的时候
  69.   
  70.   # 信息的表示速度(数字越小速度越快,0为瞬间表示)
  71.   # 游戏中 可随时用数字代入 $mes_speed 来改变消息表示速度。
  72.   MES_SPEED = 1

  73. end


  74. #==============================================================================
  75. # 初始化两个变量,不要动(by KKME◎66RPG.com)
  76. #==============================================================================
  77. $mes_name = ""
  78. $mes_id   = nil


  79. #==============================================================================
  80. # 方便用户同时设置2个常用参数而使用的函数
  81. #==============================================================================
  82. def chat(id = nil,name = "")
  83.   $mes_id = id
  84.   $mes_name = name
  85. end

  86. #==============================================================================
  87. # □ Game_Temp
  88. #==============================================================================

  89. class Game_Temp
  90.   attr_accessor  :namebmp              #保存头像图片的Hash表
  91.   alias initialize_fuki initialize
  92.   def initialize
  93.     initialize_fuki
  94.     # 如果不想使用角色名字直接作为头像文件名
  95.     # 可在这里重新设定角色名字与文件名的对应关系
  96.     @namebmp ={"白展堂"=>"老白","李大嘴"=>"大嘴"}
  97.   end
  98. end

  99. #==============================================================================
  100. # □ Window_Message
  101. #==============================================================================

  102. class Window_Message < Window_Selectable

  103.   #--------------------------------------------------------------------------
  104.   # ● 初始化状态
  105.   #--------------------------------------------------------------------------
  106.   def initialize
  107.     super(80, 304, 480, 160)
  108.     self.contents = Bitmap.new(width - 32, height - 32)
  109.     self.contents.font.color = text_color(0)
  110.     self.visible = false
  111.     self.z = 9998
  112.     @fade_in = false
  113.     @fade_out = false
  114.     @contents_showing = false
  115.     @cursor_width = 0
  116.     @kkme_name = ""
  117.     self.active = false
  118.     self.index = -1
  119.     @w = 0
  120.     @h = 0
  121.     @wait = 0
  122.     @dx = 0
  123.     @dy = 0
  124.     $mes_speed = FUKI::MES_SPEED

  125.     #------------------------
  126.     # ★ 特殊时期中断标志
  127.     #------------------------
  128.     @no_term_stop = false
  129.     @save_x = 0
  130.     @save_y = 0
  131.     @old_text_info = []
  132.   end
  133.   
  134.   #--------------------------------------------------------------------------
  135.   # ● 获取文字色
  136.   #     n : 文字色编号 (0~7)
  137.   #--------------------------------------------------------------------------
  138.   def text_color(n)
  139.     case n
  140.     when 0
  141.       return Color.new(0, 0, 0, 255)
  142.     when 1
  143.       return Color.new(150, 0 , 255, 255)
  144.     when 2
  145.       return Color.new(255, 0, 0 ,255)
  146.     when 3
  147.       return Color.new(128, 0, 0, 255)
  148.     when 4
  149.       return Color.new(128, 255, 255, 255)
  150.     when 5
  151.       return Color.new(150, 0, 255, 255)
  152.     when 6
  153.       return Color.new(255, 255, 128, 255)
  154.     when 7
  155.       return Color.new(192, 192, 192, 255)
  156.     else
  157.       normal_color
  158.     end
  159.   end
  160.   
  161.   #--------------------------------------------------------------------------
  162.   # ○ 决定窗口尺寸并生成窗口
  163.   #--------------------------------------------------------------------------
  164.   def refresh_create
  165.   
  166.     unless @no_term_stop
  167.       @pic_skin.dispose if @pic_skin != nil
  168.     end
  169.       @kkme_name = ""
  170.       begin
  171.         @kkme_name = $game_temp.message_text.split(":")[0] if $game_temp.message_text.split(":")[1] != nil
  172.         if @kkme_name != ""
  173.           jiajia = '\c[1]【' + @kkme_name + '】\c[0]'
  174.           $game_temp.message_text = jiajia + $game_temp.message_text[@kkme_name.size + 2,$game_temp.message_text.size]
  175.         else
  176.           $game_temp.message_text = '\c[0]' + $game_temp.message_text
  177.         end      
  178.       rescue
  179.       end
  180.     unless @no_term_stop
  181.       self.contents.clear
  182.       self.contents.font.color = Color.new(0, 0, 0, 255)
  183.       self.contents.font.size = FUKI::MES_FONT_SIZE
  184.       # 取得窗口尺寸
  185.       get_windowsize
  186.       w = @w + 32 + 8
  187.       h = @h * (self.contents.font.size + 6) + 26
  188.       # 生成呼出窗口   
  189.       # 生成角色名字窗口
  190.       set_fukidasi(self.x, self.y, w, h)
  191.       set_namewindow
  192.       pic_back
  193.     end
  194.     # 初始化信息表示使用的变量
  195.     @dx = @save_x # 0
  196.     @dy = @save_y # 0
  197.     @cursor_width = 0
  198.     @contents_drawing = true
  199.     update
  200.     # 瞬间表示的情况下
  201.     if $mes_speed == 0
  202.       # 循环信息描绘处理
  203.       while $game_temp.message_text != ""
  204.         draw_massage
  205.       end
  206.       draw_opt_text
  207.       @contents_showing_end = true
  208.       @contents_drawing = false
  209.     else
  210.       # 一个一个描绘文字
  211.       refresh_drawtext
  212.     end   
  213.   end
  214.   
  215.   #--------------------------------------------------------------------------
  216.   # ○ 一个一个描绘文字
  217.   #--------------------------------------------------------------------------
  218.   def refresh_drawtext
  219.     if $game_temp.message_text != nil
  220.       if @wait > 0
  221.         @wait -= 1
  222.       elsif @wait == 0
  223.         #$game_system.se_play($data_system.cursor_se)
  224.         # 描绘处理
  225.         draw_massage
  226.         @wait = $mes_speed
  227.       end
  228.     end
  229.     # 描绘结束
  230.     if $game_temp.message_text == ""
  231.       draw_opt_text
  232.       @contents_showing_end = true
  233.       @contents_drawing = false
  234.     end
  235.   end
  236.   
  237.   #--------------------------------------------------------------------------
  238.   # ○ 取得窗口尺寸
  239.   #--------------------------------------------------------------------------
  240.   def get_windowsize
  241.     x = y = 0
  242.     @h = @w = 0
  243.     @cursor_width = 0
  244.     # 有选择项的话,处理字的缩进
  245.     if $game_temp.choice_start == 0
  246.       x = 16
  247.     end
  248.     # 有等待显示的文字的情况下
  249.     if $game_temp.message_text != nil
  250.     text = $game_temp.message_text.clone
  251.       # 限制文字处理
  252.       begin
  253.         last_text = text.clone
  254.         text.gsub!(/\\[Vv]\[([0-9]+)\]/) { $game_variables[$1.to_i] }
  255.       end until text == last_text
  256.       text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  257.         $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  258.       end
  259.       # 为了方便、将 "\\\\" 变换为 "\000"
  260.       text.gsub!(/\\\\/) { "\000" }
  261.       # "\\C" 变为 "\001" 、"\\G" 变为 "\002"
  262.       text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001" }
  263.       text.gsub!(/\\[Gg]/) { "\002" }
  264.       # c 获取 1 个字 (如果不能取得文字就循环)
  265.       while ((c = text.slice!(/./m)) != nil)
  266.         # \\ 的情况下
  267.         if c == "\000"
  268.           # 还原为本来的文字
  269.           c = "\\"
  270.         end
  271.         # \C[n] 或者 \G 的情况下
  272.         if c == "\001" or c == "\002"
  273.           # 下面的文字
  274.           next
  275.         end
  276.         # 另起一行文字的情况下
  277.         if c == "\n"
  278.           # y 累加 1
  279.           y += 1
  280.           # 取得纵横尺寸
  281.           @h = y
  282.           @w = x > @w ? x : @w
  283.           if y >= $game_temp.choice_start
  284.             @w = x + 8 > @w ? x + 8 : @w
  285.           end
  286.           x = 0
  287.           # 移动到选择项的下一行
  288.           if y >= $game_temp.choice_start
  289.             x = 8
  290.           end
  291.           # 下面的文字
  292.           next
  293.         end
  294.         # x 为要描绘文字的宽度加法运算
  295.         x += self.contents.text_size(c).width
  296.       end
  297.     end
  298.     # 输入数值的情况
  299.     if $game_temp.num_input_variable_id > 0
  300.       digits_max = $game_temp.num_input_digits_max
  301.       number = $game_variables[$game_temp.num_input_variable_id]
  302.       @h += 1
  303.       x = digits_max * self.contents.font.size + 16
  304.       @w = x > @w ? x : @w
  305.     end
  306.   end
  307.   
  308.   #--------------------------------------------------------------------------
  309.   # ○ 描绘信息处理
  310.   #--------------------------------------------------------------------------
  311.   def draw_massage
  312.     # 有等待显示的文字的情况下
  313.     if $game_temp.message_text != nil or @old_text_info != nil
  314.       text = $game_temp.message_text
  315.       # 限制文字处理
  316.       begin
  317.         last_text = text.clone
  318.         text.gsub!(/\\[Vv]\[([0-9]+)\]/) { $game_variables[$1.to_i] }
  319.       end until text == last_text
  320.       text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  321.         $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  322.       end
  323.       # 为了方便、将 "\\\\" 变换为 "\000"
  324.       text.gsub!(/\\\\/) { "\000" }
  325.       # "\\C" 变为 "\001"、"\\G" 变为 "\002"
  326.       text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001[#{$1}]" }
  327.       text.gsub!(/\\[Gg]/) { "\002" }
  328.       # c 获取 1 个字
  329.       c = text.slice!(/./m)
  330.       # 选择项的情况
  331.       if @dy >= $game_temp.choice_start
  332.         # 处理字的缩进
  333.         @dx = 8
  334.         # 描绘文字
  335.         font_size = self.contents.font.size
  336.         self.contents.draw_text(4 + @dx, (font_size+5)*@dy, 40, 32, c)
  337.         # x 为要描绘文字宽度的加法运算
  338.         @dx += self.contents.text_size(c).width
  339.         # 循环
  340.         while ((c = text.slice!(/./m)) != "\n")
  341.           # 描绘文字
  342.           self.contents.draw_text(4 + @dx, (font_size+5)*@dy, 40, 32, c)
  343.           # x 为要描绘文字宽度的加法运算
  344.           @dx += self.contents.text_size(c).width
  345.         end
  346.         if c == "\n"
  347.           # 更新光标宽度
  348.           @cursor_width = [@cursor_width, @dx].max
  349.           # dy 累加 1
  350.           @dy += 1
  351.           @dx = 0
  352.         end
  353.         return
  354.       end
  355.       # \\ 的情况下
  356.       if c == "\000"
  357.         # 还原为本来的文字
  358.         c = "\\"
  359.       end
  360.       #\C[n] 的情况下
  361.       if c == "\001"
  362.         # 更改文字色
  363.         text.sub!(/\[([0-9]+)\]/, "")
  364.         color = $1.to_i
  365.         if color >= 0 and color <= 7
  366.           self.contents.font.color = text_color(color)
  367.         end
  368.       end
  369.       # \G 的情况下
  370.       if c == "\002"
  371.         # ★生成金钱窗口★
  372.         @contents_showing_end = true
  373.         @contents_drawing = false
  374.         terminate_messageX
  375.         @save_x = @dx
  376.         @save_y = @dy
  377.       end
  378.       # 另起一行文字的情况下
  379.       if c == "\n"
  380.         # dy 累加 1
  381.         @dy += 1
  382.         @dx = 0
  383.       end
  384.       # 描绘文字
  385.       
  386.       size_zy = 4 # 设定文字动态增大——别问我这么重要的参数为什么放在这里而不放在顶部,有特殊原因的。
  387.       
  388.       
  389.       unless @old_text_info == []
  390.         self.contents.fill_rect (4 + @old_text_info[0], (@old_text_info[2]+5-size_zy)*@old_text_info[1] - size_zy/2 ,@old_text_info[2],@old_text_info[2],Color.new(0,0,0,0))
  391.         col = self.contents.font.color.clone
  392.         self.contents.font.color = @old_text_info[3].clone
  393.         self.contents.font.size = @old_text_info[2] -= size_zy
  394.         self.contents.draw_text(4 + @old_text_info[0], (@old_text_info[2]+5 )*@old_text_info[1],@old_text_info[2],@old_text_info[2],@old_text_info[4])
  395.         self.contents.font.color = col
  396.         begin
  397.           Audio.se_play("Audio/se/"+@kkme_name,60,100)
  398.         rescue
  399.           begin
  400.             Audio.se_play("Audio/se/"+$mes_name,60,100)
  401.           rescue
  402.             Audio.se_play("Audio/se/001-system01",60,100)
  403.           end
  404.         end
  405.         @old_text_info = []
  406.       end
  407.       if c != nil
  408.         self.contents.font.size = FUKI::MES_FONT_SIZE
  409.         font_size = self.contents.font.size += size_zy
  410.         @old_text_info.push(@dx , @dy , font_size, self.contents.font.color.clone, c)
  411.         self.contents.draw_text(4+@dx, (font_size+5-size_zy )*@dy - size_zy/2, font_size, font_size, c)
  412.         self.contents.font.size -= size_zy
  413.         # dx 为要描绘文字的宽度加法运算
  414.         @dx += self.contents.text_size(c).width
  415.       end
  416.     end
  417.   end
  418.   
  419.   #--------------------------------------------------------------------------
  420.   # ○ 选择项和输入数值的情况下
  421.   #--------------------------------------------------------------------------
  422.   def draw_opt_text
  423.     # 选择项的情况下
  424.     if $game_temp.choice_max > 0
  425.       @item_max = $game_temp.choice_max
  426.       self.active = true
  427.       self.index = 0
  428.     end
  429.     # 输入数值的情况下
  430.     if $game_temp.num_input_variable_id > 0
  431.       digits_max = $game_temp.num_input_digits_max
  432.       number = $game_variables[$game_temp.num_input_variable_id]
  433.       @input_number_window = Window_InputNumber.new(digits_max)
  434.       @input_number_window.number = number
  435.       @input_number_window.x = self.x + 8
  436.       @input_number_window.y = self.y + $game_temp.num_input_start * 32
  437.     end
  438.   end
  439.   
  440.   def pic_back
  441.     @pic_skin.dispose if @pic_skin != nil
  442.     @pic_skin = Sprite.new
  443.     @pic_skin.opacity = 0 unless @no_term_stop
  444.     @pic_skin.bitmap = Bitmap.new(self.width + 32, self.height + 32)
  445.     @pic_skin.x = self.x + 2
  446.     @pic_skin.y = self.y + 2
  447.     @pic_skin.z = self.z
  448.     @pic_skin.bitmap.blt(0, 1, RPG::Cache.icon("message_左上"),  RPG::Cache.icon("message_左上").rect)
  449.     @pic_skin.bitmap.blt(self.width - 32, 1, RPG::Cache.icon("message_右上"),  RPG::Cache.icon("message_右上").rect)
  450.     @pic_skin.bitmap.blt(0, self.height - 31, RPG::Cache.icon("message_左下"),  RPG::Cache.icon("message_左下").rect)
  451.     @pic_skin.bitmap.blt(self.width - 32, self.height - 31, RPG::Cache.icon("message_右下"),  RPG::Cache.icon("message_右下").rect)
  452.     @pic_skin.bitmap.stretch_blt(Rect.new(0,33,32,self.height-64), RPG::Cache.icon("message_左"), RPG::Cache.icon("message_左").rect)
  453.     @pic_skin.bitmap.stretch_blt(Rect.new(self.width - 32,33,32,self.height-64), RPG::Cache.icon("message_右"), RPG::Cache.icon("message_右").rect)
  454.     @pic_skin.bitmap.stretch_blt(Rect.new(32,0,self.width-64,32), RPG::Cache.icon("message_上"), RPG::Cache.icon("message_上").rect)
  455.     @pic_skin.bitmap.stretch_blt(Rect.new(32,self.height-32,self.width-64,32), RPG::Cache.icon("message_下"), RPG::Cache.icon("message_下").rect)
  456.     @pic_skin.bitmap.stretch_blt(Rect.new(32,32,self.width-64,self.height-64), RPG::Cache.icon("message_中"), RPG::Cache.icon("message_中").rect)
  457.   end
  458.    
  459.   
  460.   #--------------------------------------------------------------------------
  461.   # ○ 设置呼出对话框
  462.   #--------------------------------------------------------------------------
  463.   def set_fukidasi(x, y, width, height)
  464.     begin
  465.       # 不显示暂停标志
  466.       self.pause = false
  467.       # 取得对话框位置
  468.       pos = get_fuki_pos(width, height)
  469.       x = pos[0]
  470.       y = pos[1]
  471.       skin = FUKI::FUKI_SKIN_NAME != "" ? FUKI::FUKI_SKIN_NAME : $game_system.windowskin_name
  472.       # 生成呼出对话框
  473.       self.windowskin = RPG::Cache.windowskin("")
  474.       self.x = x
  475.       self.y = y
  476.       self.height = height
  477.       self.width = width
  478.       #self.opacity = 0
  479.       
  480.       unless @no_term_stop
  481.         self.contents.dispose
  482.         self.contents = Bitmap.new(width - 32, height - 32)
  483.         self.back_opacity = FUKI::FUKI_OPACITY
  484.         self.contents.clear
  485.         self.contents.font.color = Color.new(0, 0, 0, 255)
  486.         self.contents.font.size = FUKI::MES_FONT_SIZE
  487.       end
  488.       # 描绘尾部图标
  489.       if $game_system.message_frame == 0
  490.         # 取得位置
  491.         tale_pos = get_tale_pos
  492.         @tale = Sprite.new
  493.         @tale.opacity = 255
  494.         # 是否显示尾部图标 <- bbschat
  495.         if FUKI::TAIL_SHOW == true
  496.           case @message_position
  497.             when 0  # 上
  498.               @tale.bitmap = RPG::Cache.icon("message_箭头")
  499.               @tale.x = tale_pos[0]
  500.               @tale.y = tale_pos[1]
  501.               @tale.z = self.z + 1
  502.             when 1  # 中
  503.               @tale.dispose
  504.               @tale = nil
  505.             when 2  # 下
  506.               @tale.bitmap = RPG::Cache.icon("message_箭头")
  507.               @tale.x = tale_pos[0]
  508.               @tale.y = tale_pos[1]
  509.               @tale.z = self.z + 1
  510.           end
  511.         end
  512.       end
  513.     rescue
  514.       del_fukidasi
  515.       reset_window(width, height)
  516.     end
  517.   end
  518.   #--------------------------------------------------------------------------
  519.   # ○ 新功能:根据输入文章计算呼出对话框的位置
  520.   #--------------------------------------------------------------------------
  521.   def get_character_KKME
  522.     if @kkme_name == "" or @kkme_name == nil
  523.       return nil
  524.     else
  525.       @kkme_name.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  526.         $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  527.       end
  528.       $mes_name = @kkme_name
  529.       for ev in $game_map.events.values
  530.         if ev.name == @kkme_name
  531.           return ev
  532.         end
  533.       end
  534.       for actor in $game_party.actors
  535.         if actor.name == @kkme_name
  536.           return $game_player
  537.         end
  538.       end
  539.       return nil
  540.     end
  541.   end
  542.    
  543.   
  544.   #--------------------------------------------------------------------------
  545.   # ○ 计算呼出对话框的位置
  546.   #--------------------------------------------------------------------------
  547.   def get_fuki_pos(width, height)
  548.    
  549.     # 取得角色
  550.     if $mes_id != nil
  551.       @character = get_character($mes_id)
  552.     else
  553.       @character = get_character_KKME
  554.     end
  555.    
  556.     if @character == nil
  557.       # 角色不存在的情况下使用默认信息框
  558.       del_fukidasi
  559.       reset_window(width, height)
  560.       return
  561.     end
  562.     # 处理坐标
  563.     x = ( @character.real_x - $game_map.display_x + 64 ) * 32 / 128 - (width / 2)
  564.     # 为尽量显示在画面内而移动横坐标
  565.     if x + width > 640
  566.       x = 640 - width
  567.     elsif x < 0
  568.       x = 0
  569.     end
  570.     # 决定窗口位置
  571.     case $game_system.message_position
  572.       when 0  # 上
  573.         y = (@character.real_y - $game_map.display_y + 64) * 32 / 128 - height - FUKI::CHARACTOR_HEIGHT + FUKI::POP_SHIFT_TOP        
  574.       when 1  # 中
  575.         y = (480 - height) / 2
  576.         x = (640 - width) / 2
  577.       when 2  # 下
  578.         y =  (@character.real_y - $game_map.display_y + 64) * 32 / 128 + 32 + FUKI::POP_SHIFT_UNDER
  579.     end
  580.     # 纪录文章显示位置
  581.     @message_position = $game_system.message_position
  582.     # 如果选择自动修正,则如果文章会显示到画面外则自动改变窗口的尺寸(高度)
  583.     if FUKI::POS_FIX
  584.       case @message_position
  585.         when 0  # 上
  586.           if y <= 0
  587.             @message_position = 2
  588.             y =  (@character.real_y - $game_map.display_y + 64) * 32 / 128 + 32 + FUKI::POP_SHIFT_UNDER
  589.           end
  590.         when 2  # 下
  591.           if y + height >= 480
  592.             @message_position = 0
  593.             y = (@character.real_y - $game_map.display_y + 64) * 32 / 128 - height - FUKI::CHARACTOR_HEIGHT + FUKI::POP_SHIFT_TOP
  594.           end
  595.       end
  596.     end
  597.     return [x,y]
  598.    
  599.   end
  600.   
  601.   #--------------------------------------------------------------------------
  602.   # ○ 计算尾部图标的位置
  603.   #--------------------------------------------------------------------------
  604.   def get_tale_pos   
  605.     case @message_position
  606.       when 0  # 上
  607.         # 处理坐标
  608.         x = ( @character.real_x - $game_map.display_x + 64 ) * 32 / 128 - 16
  609.         # 画面边缘的话则移动位置
  610.         if FUKI::CORNER_SHIFT
  611.           if x == 0
  612.             x = FUKI::SHIFT_PIXEL
  613.           elsif x == 640 - 32
  614.             x = 640 - 32 - FUKI::SHIFT_PIXEL
  615.           end
  616.         end
  617.         y = self.y + self.height - 16
  618.       when 1  # 中
  619.         x = nil
  620.         y = nil
  621.       when 2  # 下
  622.         # 处理坐标
  623.         x = ( @character.real_x - $game_map.display_x + 64 ) * 32 / 128 - 16
  624.         # 画面边缘的话则移动位置
  625.         if FUKI::CORNER_SHIFT
  626.           if x == 0
  627.             x = FUKI::SHIFT_PIXEL
  628.           elsif @tale.x == 640 - 32
  629.             x = 640 - 32 - FUKI::SHIFT_PIXEL
  630.           end
  631.         end
  632.         y = self.y - 16
  633.     end
  634.     return [x+10, y+16]  
  635.   end

  636.   #--------------------------------------------------------------------------
  637.   # ○ 计算名字窗口的位置
  638.   #--------------------------------------------------------------------------
  639.   def get_name_pos   
  640.     case @face_pic_txt
  641.       when 0  # 文字
  642.         x = self.x + FUKI::NAME_SHIFT_X
  643.         y = self.y - FUKI::NAME_FONT_SIZE - 16 + FUKI::NAME_SHIFT_Y
  644.       when 1  # 图片
  645.         if self.x >= @pic_width + 5
  646.           # 默认头像显示在对话框左边
  647.           x = self.x-@pic_width-5
  648.         else
  649.           # 对话框左边放不下时头像显示在右边
  650.           x = self.x + self.width
  651.         end
  652.         y = self.y+self.height/2 - (@pic_height + 5)/2
  653.       end

  654.     return [x,y]
  655.   end
  656.   
  657.   #--------------------------------------------------------------------------
  658.   # ○ 设置角色名字窗口
  659.   #--------------------------------------------------------------------------
  660.   def set_namewindow
  661.    
  662.     # $mes_name为空时不显示角色名字窗口
  663.     if $mes_name == nil or $mes_name == ""
  664.       return
  665.     else
  666.       # 设定变量
  667.       mes_name = $mes_name
  668.       skin = FUKI::NAME_SKIN_NAME != "" ? FUKI::NAME_SKIN_NAME : $game_system.windowskin_name
  669.       
  670.       #判断名称是否有对应的图片"Graphics/heads/" +
  671.       if $game_temp.namebmp[mes_name] == nil then
  672.         sFile = "Graphics/heads/" + mes_name + ".jpg"
  673.       else
  674.         sFile = "Graphics/heads/" + $game_temp.namebmp[mes_name] + ".jpg"
  675.       end
  676.       
  677.       #if FileTest.exist?(sFile) == true then
  678.       begin
  679.                
  680.         @face_pic_txt = 1                       #名字窗口使用头像<- bbschat
  681.         
  682.         # 生成头像
  683.         bmp = Bitmap.new(sFile)
  684.         @pic_width = bmp.width
  685.         @pic_height = bmp.height
  686.         
  687.         self.width += @pic_width
  688.         
  689.         if self.x >= @pic_width + 5
  690.           # 默认头像显示在对话框左边
  691.           name_x = self.x-@pic_width-5
  692.         else
  693.           # 对话框左边放不下时头像显示在右边
  694.           name_x = self.x + self.width
  695.         end
  696.         name_y = self.y+self.height/2 - (@pic_height + 5)/2

  697.         # 生成角色头像窗口
  698.         #@name_win = Window_Base.new(name_x, name_y, @pic_width + 5, @pic_height + 5)
  699.         #@name_win.windowskin = RPG::Cache.windowskin(skin)
  700.         #@name_win.opacity =0     
  701.         #@name_win.z = self.z + 1
  702.         @name_contents.dispose if @name_contents != nil
  703.         @name_contents = Sprite.new
  704.         @name_contents.x = self.x + self.width - bmp.width
  705.         @name_contents.y = name_y #- 7
  706.         @name_contents.bitmap = bmp
  707.         @name_contents.z = self.z + 3
  708.         @name_contents.opacity = 0
  709.         #self.width += 50
  710.         #@name_contents.z = @name_win.z + 2     #这个用了似乎效果不好<- bbschat
  711.         
  712.       rescue
  713.         @face_pic_txt = 0                        #名字窗口使用头像<- bbschat
  714.         
  715.         # 生成头像
  716.         bmp = Bitmap.new(1,1)
  717.         @pic_width = bmp.width
  718.         @pic_height = bmp.height
  719.         
  720.         self.width += @pic_width        
  721.         if self.x >= @pic_width + 5
  722.           # 默认头像显示在对话框左边
  723.           name_x = self.x-@pic_width-5
  724.         else
  725.           # 对话框左边放不下时头像显示在右边
  726.           name_x = self.x + self.width
  727.         end
  728.         name_y = self.y+self.height/2 - (@pic_height + 5)/2
  729.         
  730.         # 生成角色头像窗口
  731.         #@name_win = Window_Base.new(name_x, name_y, @pic_width + 5, @pic_height + 5)
  732.         #@name_win.windowskin = RPG::Cache.windowskin(skin)
  733.         #@name_win.opacity =0     
  734.         #@name_win.z = self.z + 1
  735.         @name_contents.dispose if @name_contents != nil
  736.         @name_contents = Sprite.new
  737.         @name_contents.x = self.x + self.width - bmp.width
  738.         @name_contents.y = name_y #- 7
  739.         @name_contents.bitmap = bmp
  740.         @name_contents.z = self.z + 3
  741.         @name_contents.opacity = 0
  742.       end
  743.     end

  744.   end
  745.   
  746.   #--------------------------------------------------------------------------
  747.   # ○ 释放呼出对话框和角色名字窗口
  748.   #--------------------------------------------------------------------------
  749.   def del_fukidasi
  750.     if @tale != nil
  751.       @tale.dispose
  752.       @tale = nil
  753.     end
  754.     if @name_win != nil
  755.       @name_win.dispose
  756.       @name_win = nil
  757.       @name_contents.dispose
  758.       @name_contents = nil
  759.     end
  760.     self.opacity = 0
  761.     self.x = 90
  762.     self.width = 460
  763.     self.height = 120
  764.     self.contents.dispose
  765.     self.contents = Bitmap.new(width - 32, height - 32)
  766.     self.pause = true
  767.   end
  768.   
  769.   #--------------------------------------------------------------------------
  770.   # ○ 取得角色
  771.   #     parameter : 参数
  772.   #--------------------------------------------------------------------------
  773.   def get_character(parameter)
  774.     # 参数分歧
  775.     case parameter
  776.     when -1  # 玩家
  777.       return $game_player
  778.     when 0   # 该事件
  779.       events = $game_map.events
  780.       return events == nil ? nil : events[$active_event_id]
  781.     else     # 特定事件
  782.       events = $game_map.events
  783.       return events == nil ? nil : events[parameter]
  784.     end
  785.   end
  786.   
  787.   #--------------------------------------------------------------------------
  788.   # ● 设定窗口位置和不透明度
  789.   #--------------------------------------------------------------------------
  790.   def reset_window(width = nil, height = nil)
  791.     if $game_temp.in_battle
  792.       self.y = 16
  793.     else
  794.       case $game_system.message_position
  795.       when 0  # 上
  796.         self.y = 16
  797.       when 1  # 中
  798.         if height != nil and width != nil
  799.           self.y = (480 - height) / 2 - 32
  800.           self.x = (640 - width) / 2
  801.           self.width = width
  802.           self.height = height
  803.           self.contents.dispose
  804.           self.contents = Bitmap.new(width - 32, height - 32)
  805.         else
  806.           self.y = 160
  807.         end
  808.       when 2  # 下
  809.         self.y = 304
  810.       end
  811.     end
  812.     #if $game_system.message_frame == 0
  813.       #self.opacity = 255
  814.     #else
  815.       self.opacity = 0
  816.     #end
  817.     self.back_opacity = FUKI::MES_OPACITY
  818.   end
  819.   
  820.   #--------------------------------------------------------------------------
  821.   # ● 刷新画面
  822.   #--------------------------------------------------------------------------
  823.   def update
  824.     super
  825.     #if @no_term_stop
  826.       #terminate_messageX      
  827.     #end
  828.   
  829.     # 呼出模式下跟随事件移动
  830.     if @tale != nil
  831.       pos = get_fuki_pos(self.width, self.height)
  832.       if pos != nil
  833.         self.x = pos[0]
  834.         self.y = pos[1]
  835.         tale_pos = get_tale_pos
  836.         @tale.x = self.x#tale_pos[0]
  837.         @tale.y = self.y + self.height - 4#tale_pos[1]
  838.       else
  839.         p "出错。出错推断于你没有设置chat(id,name)。对于有\g中断的对话,必须使用chat(id,name)来设置人物ID和名字"
  840.       end
  841.    
  842.       @pic_skin.x = self.x + 2
  843.       @pic_skin.y = self.y + 2
  844.       if @name_contents != nil and !@name_contents.disposed?
  845.       @name_contents.x = self.x + self.width - @name_contents.bitmap.width - 22
  846.       @name_contents.y = self.y  + self.height / 2 - @name_contents.bitmap.height / 2#- 6
  847.       end
  848.    
  849.       if @name_win != nil
  850.         name_pos = get_name_pos
  851.         @name_win.x = name_pos[0]
  852.         @name_win.y = name_pos[1]
  853.         case @face_pic_txt
  854.           when 0  # 文字
  855.             @name_contents.x = @name_win.x + 12
  856.             @name_contents.y = @name_win.y + 8
  857.           when 1  # 图片
  858.             @name_contents.x = @name_win.x + 2
  859.             @name_contents.y = @name_win.y + 2
  860.           end
  861.       end
  862.     end
  863.    
  864.     # 渐变的情况下
  865.     if @fade_in
  866.       #if @no_term_stop
  867.         #@fade_in = false
  868.         #return
  869.       #else        
  870.         self.contents_opacity += 24
  871.         @pic_skin.opacity += 20
  872.         if @name_win != nil
  873.           @name_win.opacity += 24
  874.         end
  875.         if @tale != nil
  876.           @name_contents.opacity += 24 if @name_contents != nil and !@name_contents.disposed?
  877.           @tale.opacity += 24
  878.         end
  879.         if @input_number_window != nil
  880.           @input_number_window.contents_opacity += 24
  881.         end
  882.         if self.contents_opacity == 255
  883.           @fade_in = false
  884.         end
  885.         return
  886.       #end
  887.     end
  888.     # 显示信息中的情况下
  889.     if @contents_drawing
  890.       refresh_drawtext
  891.       return
  892.     end
  893.     # 输入数值的情况下
  894.     if @input_number_window != nil
  895.       @input_number_window.update
  896.       # 确定
  897.       if Input.trigger?(Input::C)
  898.         $game_system.se_play($data_system.decision_se)
  899.         $game_variables[$game_temp.num_input_variable_id] =
  900.           @input_number_window.number
  901.         $game_map.need_refresh = true
  902.         # 释放输入数值窗口
  903.         @input_number_window.dispose
  904.         @input_number_window = nil
  905.         terminate_message
  906.       end
  907.       return
  908.     end
  909.     # 显示信息结束的情况下
  910.     if @contents_showing_end
  911.       # 不是显示选择项且不是呼出对话模式则显示暂停标志
  912.       if $game_temp.choice_max == 0 and @tale == nil
  913.         self.pause = true
  914.       else
  915.         self.pause = false
  916.       end
  917.       # 取消
  918.       if Input.trigger?(Input::B)
  919.         if $game_temp.choice_max > 0 and $game_temp.choice_cancel_type > 0
  920.           $game_system.se_play($data_system.cancel_se)
  921.           $game_temp.choice_proc.call($game_temp.choice_cancel_type - 1)
  922.           terminate_message
  923.         end
  924.       end
  925.       # 确定
  926.       if Input.trigger?(Input::C)
  927.         if $game_temp.choice_max > 0
  928.           $game_system.se_play($data_system.decision_se)
  929.           $game_temp.choice_proc.call(self.index)
  930.         end
  931.         terminate_message
  932.         # 释放呼出窗口
  933.         del_fukidasi
  934.       end
  935.       return
  936.     end
  937.     # 在渐变以外的状态下有等待显示的信息与选择项的场合
  938.     if @fade_out == false and $game_temp.message_text != nil
  939.       @contents_showing = true
  940.       $game_temp.message_window_showing = true
  941.       reset_window
  942.       refresh_create
  943.       if @no_term_stop
  944.         self.visible = true        
  945.       else
  946.         if @name_win != nil
  947.           @name_win.opacity = 0
  948.         end
  949.         if @tale != nil
  950.           @tale.opacity = 0
  951.         end
  952.         Graphics.frame_reset
  953.         self.visible = true
  954.         self.contents_opacity = 0
  955.         if @input_number_window != nil
  956.           @input_number_window.contents_opacity = 0
  957.         end
  958.         @fade_in = true
  959.       end
  960.       return
  961.     end
  962.    
  963.     # 没有可以显示的信息、但是窗口为可见的情况下
  964.     unless @no_term_stop
  965.       if self.visible
  966.         @fade_out = true
  967.         self.opacity -= 48
  968.         @name_contents.opacity -= 48 if @name_contents != nil and !@name_contents.disposed?
  969.         @pic_skin.opacity -= 48 if @pic_skin != nil and !@pic_skin.disposed?
  970.         if @name_win != nil
  971.           @name_win.opacity -= 48        
  972.         end
  973.         if @tale != nil
  974.           @tale.opacity -= 48 if @tale != nil and [email protected]?
  975.         end
  976.         if (@name_contents == nil) or @name_contents.disposed? or (@name_contents.opacity == 0)
  977.           self.visible = false
  978.           @name_contents.dispose if @name_contents != nil
  979.           @pic_skin.dispose
  980.           @fade_out = false
  981.           $game_temp.message_window_showing = false
  982.           del_fukidasi
  983.         end
  984.         return
  985.       end
  986.     else
  987.       $game_temp.message_window_showing = false   
  988.     end   
  989.   end
  990.   
  991.   #--------------------------------------------------------------------------
  992.   # ● 释放
  993.   #--------------------------------------------------------------------------
  994.   def dispose
  995.     terminate_message
  996.     $game_temp.message_window_showing = false
  997.     if @input_number_window != nil
  998.       @input_number_window.dispose
  999.     end
  1000.     super
  1001.   end
  1002.   
  1003.   #--------------------------------------------------------------------------
  1004.   # ● 信息结束处理
  1005.   #--------------------------------------------------------------------------
  1006.   def terminate_message
  1007.     self.active = false
  1008.     self.pause = false
  1009.     self.index = -1
  1010.     self.contents.clear
  1011.     # 清除显示中标志
  1012.     @contents_showing = false
  1013.     @contents_showing_end = false
  1014.     unless @kkme_name == "" or @kkme_name == nil
  1015.       $mes_name = ""
  1016.       @kkme_name = ""
  1017.     end
  1018.     # 呼叫信息调用
  1019.     if $game_temp.message_proc != nil
  1020.       $game_temp.message_proc.call
  1021.     end
  1022.     # 清除文章、选择项、输入数值的相关变量
  1023.     $game_temp.message_text = nil
  1024.     $game_temp.message_proc = nil
  1025.     $game_temp.choice_start = 99
  1026.     $game_temp.choice_max = 0
  1027.     $game_temp.choice_cancel_type = 0
  1028.     $game_temp.choice_proc = nil
  1029.     $game_temp.num_input_start = 99
  1030.     $game_temp.num_input_variable_id = 0
  1031.     $game_temp.num_input_digits_max = 0
  1032.     # 释放金钱窗口
  1033.     if @gold_window != nil
  1034.       @gold_window.dispose
  1035.       @gold_window = nil
  1036.     end
  1037.     @no_term_stop = false
  1038.     @save_x = 0
  1039.     @save_y = 0
  1040.   end

  1041.   #--------------------------------------------------------------------------
  1042.   # ● ★信息结束处理★
  1043.   #--------------------------------------------------------------------------
  1044.   def terminate_messageX
  1045.     self.active = false
  1046.     self.pause = false
  1047.     self.index = -1
  1048.     # 清除显示中标志
  1049.     @contents_showing = false
  1050.     @contents_showing_end = false
  1051.     # 呼叫信息调用
  1052.     if $game_temp.message_proc != nil
  1053.       $game_temp.message_proc.call
  1054.     end
  1055.     # 清除文章、选择项、输入数值的相关变量
  1056.     $game_temp.message_text = nil
  1057.     $game_temp.message_proc = nil
  1058.     @no_term_stop = true
  1059.   end
  1060.   
  1061.   def clear
  1062.     self.contents.clear   
  1063.     @save_x = 0
  1064.     @save_y = 0
  1065.   end
  1066.   #--------------------------------------------------------------------------
  1067.   # ● 刷新光标矩形
  1068.   #--------------------------------------------------------------------------
  1069.   def update_cursor_rect
  1070.     if @index >= 0
  1071.       n = $game_temp.choice_start + @index
  1072.       self.cursor_rect.set(8, n * (self.contents.font.size + 10), @cursor_width, 32)
  1073.     else
  1074.       self.cursor_rect.empty
  1075.     end
  1076.   end
  1077.   #--------------------------------------------------------------------------
  1078.   # ● 取得普通文字色
  1079.   #--------------------------------------------------------------------------
  1080.   def normal_color
  1081.     nil_color = Color.new(0,0,0,255)
  1082.     if FUKI::FUKI_COLOR != nil_color
  1083.       color = FUKI::FUKI_COLOR
  1084.     else
  1085.       color = super
  1086.     end
  1087.     return color
  1088.   end
  1089. end

  1090.   class Interpreter  
  1091.     def clearword
  1092.       $scene.message_window.clear
  1093.     end
  1094.   end
  1095.   
  1096.   class Scene_Map
  1097.     attr_accessor :message_window
  1098.   end
复制代码
[
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

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

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

GMT+8, 2024-11-24 07:17

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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