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

Project1

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

[已经解决] 请问有没有可能不使用对话加强脚本实现对话逐字显示?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
47 小时
注册时间
2010-8-1
帖子
231
跳转到指定楼层
1
发表于 2010-8-14 19:27:16 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 seasoneast 于 2010-8-14 23:26 编辑

嗯,就是使用RMXP默认的脚本,但是能不能做一些修改只实现对话逐字显示这一个效果呢……?

Lv1.梦旅人

梦石
0
星屑
50
在线时间
31 小时
注册时间
2009-7-6
帖子
107
13
发表于 2010-8-15 09:00:40 | 只看该作者
7L第五段脚本的“audio”多了一个“u”

点评

谢谢指正!突然发现播放SE放在Graphics.update的上面比较好.  发表于 2010-8-16 12:04
我叫“竹笋
:①
回复 支持 反对

使用道具 举报

Lv2.观梦者

无节操

梦石
0
星屑
607
在线时间
795 小时
注册时间
2009-2-6
帖子
3939

开拓者贵宾

12
发表于 2010-8-15 02:14:39 | 只看该作者
本帖最后由 moy 于 2010-8-15 02:16 编辑
并不是对话加强就是fuki,有默认版本的对话加强,而且加强的功能比fuki要多得多。顺便附带个别的:
...
越前リョーマ 发表于 2010-8-14 22:09


这个脚本的完整版....应该是...或者是之前的版本...不太清楚,没有标明版本号..
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================

  4. #——说明

  5. #默认为一个字一个字的方式,如果需要一次全部显示,
  6. #请在游戏中使用脚本:$game_system.typing = true
  7.       
  8. #默认对话字没有声音,如果需要声音,
  9. #请在游戏中使用脚本:$game_system.soundname_on_speak = "这里输入文件名"
  10.   #我唯一一个见过“胡乱配音”的游戏是天使帝国2代,该游戏说话的时候每个字符随机发一个外星语音

  11. # 其他在对话中可以使用的功能:
  12.   
  13. # \n[1]:显示1号角色的姓名

  14. # \name[李逍遥]:显示一个“李逍遥”方框,表示说话人姓名

  15. # \p[1]:对话框出现在1号事件的上方
  16. # \p[0]:主人公上方出现对话框
  17. #——————————————————使用\p功能后可以自动调整对话框大小

  18. # \\:显示"\"这个符号

  19. # \v[1] :显示变量1

  20. # \v[a1] :显示防具1

  21. # \v[w1] :显示武器1

  22. # \v[i1] :显示物品1

  23. # \v[s1] :显示特技1

  24. # \c[1-8]:更改颜色

  25. # \g:显示金钱窗口

  26. # \a[SE文件名]:对话的时候播放SE

  27. # \s[1-19]:更改弹字的速度

  28. # \.   :停顿一刹那(1、2帧)
  29. # \|   :停顿片刻(20帧)

  30. # \>   :文字不用打字方式
  31. # \<   :文字使用打字方式

  32. # \!   :等待玩家按回车再继续
  33. # \~   :文字直接消失

  34. # \I   :下一行从这个位置开始

  35. # \o[123]:文字透明度改为123,模拟将死之人(汗)

  36. # \h[12]:改用12号字

  37. # \b[50]:空50象素

  38. # \K[今天天气不错]:在出现“今天天气不错”这几个字的时候播放$game_system.soundname_on_speak设置的音效

  39. # \L[001]:在左边显示图片“Graphics/battlers/66rpg_001_h.png”
  40. # \R[001]:在右边显示图片“Graphics/battlers/66rpg_001_h.png”

  41. # \Lk:清除左边的图像
  42. # \Rk:清除右边的图像

  43. #==============================================================================
  44. # ■ Game_System
  45. #------------------------------------------------------------------------------
  46. #  处理系统附属数据的类。也可执行诸如 BGM 管理之类的功能。本类的实例请参考
  47. # $game_system 。
  48. #==============================================================================

  49. class Game_System
  50.   attr_accessor :typing
  51.   attr_accessor :soundname_on_speak
  52.   alias carol3_ini initialize
  53.   def initialize
  54.     carol3_ini
  55.     @typing = true
  56.     @soundname_on_speak = nil
  57.   end
  58. end
  59. $加密 = true
  60. #==============================================================================
  61. # ■ Window_Message
  62. #------------------------------------------------------------------------------
  63. class Window_Message < Window_Selectable
  64.   Player_Name = 'pn' # 代表主角名字的字符
  65.   Size = 18
  66.   #--------------------------------------------------------------------------
  67.   # ● 初始化状态
  68.   #--------------------------------------------------------------------------
  69.   def initialize
  70.     super(80, 304, 480, 160)
  71.     self.contents = Bitmap.new(width - 32, height - 32)
  72.     self.visible = false
  73.     self.z = 9998
  74.     @fade_in = false
  75.     @fade_out = false
  76.     @contents_showing = false
  77.     @cursor_width = 0
  78.     self.active = false
  79.     self.index = -1
  80.     if $game_system.soundname_on_speak == nil then
  81.       $game_system.soundname_on_speak = ""
  82.     end
  83.     @opacity_text_buf = Bitmap.new(32, 32)
  84.   end
  85.   #--------------------------------------------------------------------------
  86.   # ● 释放
  87.   #--------------------------------------------------------------------------
  88.   def dispose
  89.     terminate_message
  90.     $game_temp.message_window_showing = false
  91.     if @input_number_window != nil
  92.       @input_number_window.dispose
  93.     end
  94.     super
  95.   end
  96.   #--------------------------------------------------------------------------
  97.   # ● 处理信息结束
  98.   #--------------------------------------------------------------------------
  99.   def terminate_message
  100.     $refresh["mess"] = false
  101.     self.active = false
  102.     self.pause = false
  103.     self.index = -1
  104.     self.contents.clear
  105.     # 清除显示中标志
  106.     @contents_showing = false
  107.     # 呼叫信息调用
  108.     if $game_temp.message_proc != nil
  109.       $game_temp.message_proc.call
  110.     end
  111.     # 清除文章、选择项、输入数值的相关变量
  112.     $game_temp.message_text = nil
  113.     $game_temp.message_proc = nil
  114.     $game_temp.choice_start = 99
  115.     $game_temp.choice_max = 0
  116.     $game_temp.choice_cancel_type = 0
  117.     $game_temp.choice_proc = nil
  118.     $game_temp.num_input_start = 99
  119.     $game_temp.num_input_variable_id = 0
  120.     $game_temp.num_input_digits_max = 0
  121.     # 开放金钱窗口
  122.     if @gold_window != nil
  123.       @gold_window.dispose
  124.       @gold_window = nil
  125.     end
  126.     if @name_window_text != nil
  127.       @name_window_text.dispose
  128.       @name_window_text = nil
  129.     end
  130.     if @right_picture != nil and @right_keep == true
  131.       @right_picture.dispose
  132.     end   
  133.     if @left_picture != nil and @left_keep == true
  134.       @left_picture.dispose
  135.     end
  136.     if @bar != nil
  137.       @bar.dispose
  138.     end
  139.   end
  140.   def refresh
  141.     $refresh["mess"] = true
  142.     # 初期化
  143.     self.contents.clear
  144.     self.contents.font.color = normal_color
  145.     self.contents.font.size = Size#Font.default_size
  146.     @x = @y = @max_x = @max_y = @indent = @lines = 0
  147.     @left_keep = @right_keep = false
  148.     @face_indent = 0
  149.     @opacity = 255
  150.     @cursor_width = 0
  151.     @write_speed = 0
  152.     @write_wait = 0
  153.     @mid_stop = false
  154.     @face_file = nil
  155.     @popchar = -2
  156.     if $game_temp.choice_start == 0
  157.       @x = 8
  158.     end
  159.     if $game_temp.message_text != nil
  160.       @now_text = $game_temp.message_text
  161.       #——头像设置
  162.       if (/\\[Ff]\[(.+?)\]/.match(@now_text))!=nil then
  163.         @face_file = $1 + ".png"
  164.         @x = @face_indent = 128
  165.         if FileTest.exist?("Graphics/Pictures/" + $1 + ".png")
  166.           self.contents.blt(16, 16, RPG::Cache.picture(@face_file), Rect.new(0, 0, 96, 96))
  167.         end
  168.         @now_text.gsub!(/\\[Ff]\[(.*?)\]/) { "" }
  169.       end
  170.       #——左半身像设置
  171.       if (/\\[Ll]\[(.+?)\]/.match(@now_text))!=nil then
  172.         @face = $1
  173.         if $加密 == true
  174.           if @left_picture != nil
  175.             @left_picture.dispose
  176.           end
  177.           @left_picture = Sprite.new
  178.           @left_picture.bitmap = Bitmap.new("Graphics/Faces/#{@face}")
  179.           @left_picture.y = 480-@left_picture.bitmap.height
  180.           @left_picture.x = 0
  181.           @left_picture.mirror = true
  182.           @x = @face_indent = @left_picture.bitmap.width
  183.           @left_keep = true
  184.           @now_text.gsub!(/\\[Ll]\[(.*?)\]/) { "" }
  185.         else         
  186.           if FileTest.exist?("Graphics/Faces/#{@face}")
  187.             if @left_picture != nil
  188.               @left_picture.dispose
  189.             end
  190.             @left_picture = Sprite.new
  191.             @left_picture.bitmap = Bitmap.new("Graphics/Faces/#{@face}")
  192.             @left_picture.y = 480-@left_picture.bitmap.height
  193.             @left_picture.x = 0
  194.             @left_picture.mirror = true
  195.             @now_text.gsub!(/\\[Ll]\[(.*?)\]/) { "" }
  196.           end
  197.         end        
  198.       end
  199.       #——右半身像设置
  200.       if (/\\[Rr]\[(.+?)\]/.match(@now_text))!=nil then
  201.         @face = $1
  202.         if $加密 == true
  203.           if @right_picture != nil
  204.             @right_picture.dispose
  205.           end
  206.           @right_picture = Sprite.new
  207.           @right_picture.bitmap = Bitmap.new("Graphics/Faces/#{@face}")
  208.           @right_picture.y = 480-@right_picture.bitmap.height
  209.           @right_picture.x = 640-@right_picture.bitmap.width
  210.           @right_keep = true
  211.           @now_text.gsub!(/\\[Rr]\[(.*?)\]/) { "" }
  212.         else
  213.           if FileTest.exist?("Graphics/Faces/#{@face}")
  214.             if @right_picture != nil
  215.               @right_picture.dispose
  216.             end
  217.             @right_picture = Sprite.new
  218.             @right_picture.bitmap = Bitmap.new("Graphics/Faces/#{@face}")
  219.             @right_picture.y = 480-@right_picture.bitmap.height
  220.             @right_picture.x = 640-@right_picture.bitmap.width
  221.             @now_text.gsub!(/\\[Rr]\[(.*?)\]/) { "" }
  222.           end
  223.         end
  224.       end
  225.       if (/\\[Rr]k/.match(@now_text)) != nil
  226.         @right_keep = true
  227.         @now_text.sub!(/\\[Rr]k/) { "" }
  228.       end
  229.       if (/\\[Ll]k/.match(@now_text)) != nil
  230.         @left_keep = true
  231.         @now_text.sub!(/\\[Ll]k/) { "" }
  232.       end
  233.       # 显示人物姓名
  234.       name_window_set = false
  235.       if (/\\[Nn]ame\[(.+?)\]/.match(@now_text)) != nil
  236.         name_window_set = true
  237.         name_text = $1
  238.         @now_text.sub!(/\\[Nn]ame\[(.*?)\]/) { "" }
  239.       end
  240.       
  241.       # 文字位置的判定
  242.       if (/\\[Pp]\[([-1,0-9]+)\]/.match(@now_text))!=nil then
  243.         @popchar = $1.to_i
  244.         if @popchar == -1
  245.           @x = @indent = 48
  246.           @y = 4
  247.         end
  248.         @now_text.gsub!(/\\[Pp]\[([-1,0-9]+)\]/) { "" }
  249.       end
  250.       
  251.       # 开始
  252.       begin
  253.         last_text = @now_text.clone
  254.         @now_text.gsub!(/\\[Vv]\[([IiWwAaSs]?)([0-9]+)\]/) { convart_value($1, $2.to_i) }
  255.       end until @now_text == last_text
  256.       @now_text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  257.       $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  258.     end
  259.     @now_text.gsub!(/\\\\/) { "\000" }
  260.     @now_text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001[#{$1}]" }
  261.     @now_text.gsub!(/\\[Gg]/) { "\002" }
  262.     @now_text.gsub!(/\\[Ss]\[([0-9]+)\]/) { "\003[#{$1}]" }
  263.     @now_text.gsub!(/\\[Aa]\[(.*?)\]/) { "\004[#{$1}]" }
  264.     @now_text.gsub!(/\\[.]/) { "\005" }
  265.     @now_text.gsub!(/\\[|]/) { "\006" }

  266.     @now_text.gsub!(/\\[>]/) { "\016" }
  267.     @now_text.gsub!(/\\[<]/) { "\017" }
  268.     @now_text.gsub!(/\\[!]/) { "\020" }
  269.     @now_text.gsub!(/\\[~]/) { "\021" }
  270.    
  271.     @now_text.gsub!(/\\[Ii]/) { "\023" }
  272.     @now_text.gsub!(/\\[Oo]\[([0-9]+)\]/) { "\024[#{$1}]" }
  273.     @now_text.gsub!(/\\[Hh]\[([0-9]+)\]/) { "\025[#{$1}]" }
  274.     @now_text.gsub!(/\\[Bb]\[([0-9]+)\]/) { "\026[#{$1}]" }
  275.     @now_text.gsub!(/\\[Kk]\[(.*?)\]/) { "\027[#{$1}]" }
  276.     if @popchar >= 0
  277.       @text_save = @now_text.clone
  278.       @max_x = 0
  279.       @max_y = 4
  280.       for i in 0..3
  281.         line = @now_text.split(/\n/)[3-i]
  282.         @max_y -= 1 if line == nil and @max_y <= 4-i
  283.         next if line == nil
  284.         contents.font.size = Size
  285.         cx = contents.text_size(line).width
  286.         @max_x = cx if cx > @max_x
  287.       end
  288.       if @right_picture != nil and !@right_picture.disposed?
  289.         self.width = @max_x + 48 + @face_indent + @right_picture.bitmap.width
  290.       else
  291.         self.width = @max_x + 48 + @face_indent
  292.       end
  293.       if $game_temp.num_input_variable_id > 0
  294.         self.height = (@max_y - 1) * 20 + 96 + 8
  295.       else
  296.         self.height = (@max_y - 1) * 20 + 64
  297.       end
  298.     else
  299.       @max_x = self.width - 32 - @face_indent
  300.     end
  301.     reset_window
  302.       if name_window_set
  303.         off_x = 0
  304.         off_y = -40
  305.         space = 2
  306.         x = self.x + off_x - space / 2
  307.         y = self.y + off_y - space / 2
  308.         w = self.contents.text_size(name_text).width + 26 + space
  309.         h = 40 + space
  310.         x = self.x + off_x + 4
  311.         y = self.y + off_y
  312.         if name_text == Player_Name
  313.           name_text = $game_actors[1].name
  314.         end
  315.         @name_window_text = Air_Text.new(self.x + @face_indent+4+8, self.y+16, name_text)
  316.         @name_window_text.z = self.z + 2
  317.         @bar = Sprite.new
  318.         @bar.bitmap = Bitmap.new(self.width,self.height)
  319.         @bar.x = self.x
  320.         @bar.y = self.y
  321.         @bar.z = self.z + 2
  322.         @bar.bitmap.fill_rect(8,16,self.width-16,24,Color.new(120,180,250,80))
  323.       end
  324.     end
  325.     reset_window
  326.     if $game_temp.choice_max > 0
  327.       @item_max = $game_temp.choice_max
  328.       self.active = true
  329.       self.index = 0
  330.     end
  331.     if $game_temp.num_input_variable_id > 0
  332.       digits_max = $game_temp.num_input_digits_max
  333.       number = $game_variables[$game_temp.num_input_variable_id]
  334.       @input_number_window = Window_InputNumber.new(digits_max)
  335.       @input_number_window.number = number
  336.       @input_number_window.x = self.x + @face_indent
  337.       @input_number_window.y = self.y + $game_temp.num_input_start * 32
  338.     end
  339.   end
  340.   #--------------------------------------------------------------------------
  341.   # ● 更新
  342.   #--------------------------------------------------------------------------
  343.   def update
  344.     super
  345.     if @fade_in
  346.       self.contents_opacity += 24
  347.       if @input_number_window != nil
  348.         @input_number_window.contents_opacity += 24
  349.       end
  350.       if self.contents_opacity == 255
  351.         @fade_in = false
  352.       end
  353.       return
  354.     end
  355.     @now_text = nil if @now_text == ""
  356.     if @now_text != nil and @mid_stop == false
  357.       if @write_wait > 0
  358.         @write_wait -= 1
  359.         return
  360.       end
  361.       text_not_skip = $game_system.typing
  362.       while true
  363.         @max_x = @x if @max_x < @x
  364.         @max_y = @y if @max_y < @y
  365.         if (c = @now_text.slice!(/./m)) != nil
  366.           if c == "\000"
  367.             c = "\\"
  368.           end
  369.           if c == "\001"
  370.             @now_text.sub!(/\[([0-9]+)\]/, "")
  371.             color = $1.to_i
  372.             if color >= 0 and color <= 7
  373.               self.contents.font.color = text_color(color)
  374.             end
  375.             c = ""
  376.           end
  377.           if c == "\002"
  378.             if @gold_window == nil and @popchar <= 0
  379.               @gold_window = Window_Gold.new
  380.               @gold_window.x = 560 - @gold_window.width
  381.               if $game_temp.in_battle
  382.                 @gold_window.y = 192
  383.               else
  384.                 @gold_window.y = self.y >= 128 ? 32 : 384
  385.               end
  386.               @gold_window.opacity = self.opacity
  387.               @gold_window.back_opacity = self.back_opacity
  388.             end
  389.             c = ""
  390.           end
  391.           if c == "\003"
  392.             @now_text.sub!(/\[([0-9]+)\]/, "")
  393.             speed = $1.to_i
  394.             if speed >= 0 and speed <= 19
  395.               @write_speed = speed
  396.             end
  397.             c = ""
  398.           end
  399.           if c == "\004"
  400.             @now_text.sub!(/\[(.*?)\]/, "")
  401.             buftxt = $1.dup.to_s
  402.             if buftxt.match(/\//) == nil and buftxt != "" then
  403.               $game_system.soundname_on_speak = "Audio/SE/" + buftxt
  404.             else
  405.               $game_system.soundname_on_speak = buftxt.dup
  406.             end
  407.             c = ""
  408.           elsif c == "\004"
  409.             c = ""
  410.           end
  411.           if c == "\005"
  412.             @write_wait += 5
  413.             c = ""
  414.           end
  415.           if c == "\006"
  416.             @write_wait += 20
  417.             c = ""
  418.           end
  419.           if c == "\016"
  420.             text_not_skip = false
  421.             c = ""
  422.           end
  423.           if c == "\017"
  424.             text_not_skip = true
  425.             c = ""
  426.           end
  427.           if c == "\020"
  428.             @mid_stop = true
  429.             c = ""
  430.           end
  431.           if c == "\021"
  432.             terminate_message
  433.             return
  434.           end
  435.           if c == "\023"
  436.             @indent = @x
  437.             c = ""
  438.           end
  439.           if c == "\024"
  440.             @now_text.sub!(/\[([0-9]+)\]/, "")
  441.             @opacity = $1.to_i
  442.             c = ""
  443.           end
  444.           if c == "\025"
  445.             @now_text.sub!(/\[([0-9]+)\]/, "")
  446.             self.contents.font.size = [[$1.to_i, 6].max, 32].min
  447.             c = ""
  448.           end
  449.           if c == "\026"
  450.             @now_text.sub!(/\[([0-9]+)\]/, "")
  451.             @x += $1.to_i
  452.             c = ""
  453.           end
  454.           if c == "\027"
  455.             @now_text.sub!(/\[(.*?)\]/, "")
  456.             @x += ruby_draw_text(self.contents, @x, @y * line_height + (line_height - self.contents.font.size), $1, @opacity)
  457.             if $game_system.soundname_on_speak != ""
  458.               Audio.se_play($game_system.soundname_on_speak)
  459.             end
  460.             c = ""
  461.           end
  462.           if c == "\030"
  463.             @now_text.sub!(/\[(.*?)\]/, "")
  464.             self.contents.blt(@x , @y * line_height + 8, RPG::Cache.icon($1), Rect.new(0, 0, 24, 24))
  465.            if $game_system.soundname_on_speak != ""
  466.               Audio.se_play($game_system.soundname_on_speak)
  467.             end
  468.             @x += 24
  469.             c = ""
  470.           end
  471.           if c == "\n"
  472.             if @lines >= $game_temp.choice_start
  473.               @cursor_width = [@cursor_width, @max_x - @face_indent].max
  474.             end
  475.             @lines += 1
  476.             @y += 1
  477.             @x = 0 + @indent + @face_indent
  478.             if @lines >= $game_temp.choice_start
  479.               @x = 8 + @indent + @face_indent
  480.             end
  481.             c = ""
  482.           end
  483.           if c != ""
  484.             # 文字描画
  485.             self.contents.font.size = Size
  486.             @x += opacity_draw_text(self.contents, @x, 8+@y * line_height + (line_height - self.contents.font.size), c, @opacity)
  487.             if $game_system.soundname_on_speak != "" then
  488.             Audio.se_play($game_system.soundname_on_speak)
  489.             end
  490.           end
  491.           if Input.press?(Input::B)
  492.             text_not_skip = false
  493.           end
  494.         else
  495.           text_not_skip = true
  496.           break
  497.         end
  498.         # 終了判定
  499.         if text_not_skip
  500.           break
  501.         end
  502.       end
  503.       @write_wait += @write_speed
  504.       return
  505.     end
  506.     if @input_number_window != nil
  507.       @input_number_window.update
  508.       # 決定
  509.       if Input.trigger?(Input::C)
  510.         $game_system.se_play($data_system.decision_se)
  511.         $game_variables[$game_temp.num_input_variable_id] =
  512.         @input_number_window.number
  513.         $game_map.need_refresh = true
  514.         @input_number_window.dispose
  515.         @input_number_window = nil
  516.         terminate_message
  517.       end
  518.       return
  519.     end
  520.     if @contents_showing
  521.       if $game_temp.choice_max == 0
  522.         self.pause = true
  523.       end
  524.       # 取消
  525.       if Input.trigger?(Input::B)
  526.         if $game_temp.choice_max > 0 and $game_temp.choice_cancel_type > 0
  527.           $game_system.se_play($data_system.cancel_se)
  528.           $game_temp.choice_proc.call($game_temp.choice_cancel_type - 1)
  529.           terminate_message
  530.         end
  531.       end
  532.       # 決定
  533.       if Input.trigger?(Input::C)
  534.         if $game_temp.choice_max > 0
  535.           $game_system.se_play($data_system.decision_se)
  536.           $game_temp.choice_proc.call(self.index)
  537.         end
  538.         if @mid_stop
  539.           @mid_stop = false
  540.           return
  541.         else
  542.           terminate_message
  543.         end
  544.       end
  545.       return
  546.     end
  547.     if @fade_out == false and $game_temp.message_text != nil
  548.       @contents_showing = true
  549.       $game_temp.message_window_showing = true
  550.       refresh
  551.       Graphics.frame_reset
  552.       self.visible = true
  553.       self.contents_opacity = 0
  554.     if @input_number_window != nil
  555.       @input_number_window.contents_opacity = 0
  556.     end
  557.       @fade_in = true
  558.       return
  559.     end
  560.     if self.visible
  561.       @fade_out = true
  562.       self.opacity -= 48
  563.       if self.opacity == 0
  564.         self.visible = false
  565.         @fade_out = false
  566.         $game_temp.message_window_showing = false
  567.       end
  568.       return
  569.     end
  570.   end
  571.   #--------------------------------------------------------------------------
  572.   # ● 获得字符
  573.   #--------------------------------------------------------------------------
  574.   def get_character(parameter)
  575.     case parameter
  576.     when 0
  577.       return $game_player
  578.     else
  579.       events = $game_map.events
  580.       return events == nil ? nil : events[parameter]
  581.     end
  582.   end
  583.   #--------------------------------------------------------------------------
  584.   # ● ウィンドウの位置と不透明度の設定
  585.   #--------------------------------------------------------------------------
  586.   def reset_window
  587.     # 判定
  588.     if @popchar >= 0
  589.       events = $game_map.events
  590.       if events != nil
  591.         character = get_character(@popchar)
  592.         x = [[character.screen_x - 0 - self.width / 2, 4].max, 636 - self.width].min
  593.         y = [[character.screen_y - 48 - self.height, 4].max, 476 - self.height].min
  594.         self.x = x
  595.         self.y = y
  596.         if @left_picture != nil and !@left_picture.disposed?
  597.           @left_picture.x = x+8
  598.           @left_picture.y = y - @left_picture.bitmap.height + self.height - 8
  599.           @left_picture.z += self.z
  600.         end
  601.         if @right_picture != nil and !@right_picture.disposed?
  602.           @right_picture.x = x+self.width-@right_picture.bitmap.width-8
  603.           @right_picture.y = y - @right_picture.bitmap.height + self.height - 8
  604.           @right_picture.z += self.z
  605.         end
  606.       end
  607.     elsif @popchar == -1
  608.       self.x = -4
  609.       self.y = -4
  610.       self.width = 648
  611.       self.height = 488
  612.     else
  613.       if $game_temp.in_battle
  614.         self.y = 16
  615.       else
  616.         case $game_system.message_position
  617.         when 0 # 上
  618.           self.y = 16
  619.         when 1 # 中
  620.           self.y = 160
  621.         when 2 # 下
  622.           self.y = 304
  623.         end
  624.         self.x = 320-self.width/2#80
  625.         if @face_file == nil
  626.           self.width = 480*0.8
  627.         else
  628.           self.width = 600
  629.           self.x -= 60
  630.         end
  631.         self.height = 160*0.8
  632.       end
  633.     end
  634.     self.contents = Bitmap.new(self.width - 32, self.height - 32)
  635.     if @face_file != nil
  636.       self.contents.blt(16, 16, RPG::Cache.picture(@face_file), Rect.new(0, 0, 96, 96))
  637.     end
  638.     if @popchar == -1
  639.       self.opacity = 255
  640.       self.back_opacity = 0
  641.     elsif $game_system.message_frame == 0
  642.       self.opacity = 255
  643.       self.back_opacity = 200
  644.     else
  645.       self.opacity = 0
  646.       self.back_opacity = 200
  647.     end
  648.   end
  649.   #--------------------------------------------------------------------------
  650.   # ● line_height
  651.   #--------------------------------------------------------------------------
  652.   # 返回値:行高
  653.   #--------------------------------------------------------------------------
  654.   def line_height
  655.     return 20
  656.     if self.contents.font.size >= 20 and self.contents.font.size <= 24
  657.       return 20
  658.     else
  659.       return self.contents.font.size * 15 / 10
  660.     end
  661.   end
  662.   #--------------------------------------------------------------------------
  663.   # ● 透過文字描画
  664.   #--------------------------------------------------------------------------
  665.   # target :描画対象。Bitmapクラスを指定。
  666.   # x :x座標
  667.   # y :y座標
  668.   # str  :描画文字列
  669.   # opacity:透過率(0~255)
  670.   # 返回値 :文字幅(@x増加値)。
  671.   #--------------------------------------------------------------------------
  672.   def opacity_draw_text(target, x, y, str,opacity)
  673.     height = target.font.size
  674.     width = target.text_size(str).width
  675.     opacity = [[opacity, 0].max, 255].min
  676.     if opacity == 255
  677.       target.draw_text(x, y, width, height, str)
  678.       return width
  679.     else
  680.       if @opacity_text_buf.width < width or @opacity_text_buf.height < height
  681.         @opacity_text_buf.dispose
  682.         @opacity_text_buf = Bitmap.new(width, height)
  683.       else
  684.         @opacity_text_buf.clear
  685.       end
  686.       @opacity_text_buf.font.size = target.font.size
  687.       @opacity_text_buf.draw_text(0, 0, width, height, str)
  688.       target.blt(x, y, @opacity_text_buf, Rect.new(0, 0, width, height), opacity)
  689.     return width
  690.     end
  691.   end
  692.   def ruby_draw_text(target, x, y, str,opacity)
  693.     sizeback = target.font.size
  694.     target.font.size * 3 / 2 > 32 ? rubysize = 32 - target.font.size : rubysize = target.font.size / 2
  695.     rubysize = [rubysize, 6].max
  696.    
  697.     opacity = [[opacity, 0].max, 255].min
  698.     split_s = str.split(/,/)
  699.    
  700.     split_s[0] == nil ? split_s[0] = "" : nil
  701.     split_s[1] == nil ? split_s[1] = "" : nil
  702.    
  703.     height = sizeback + rubysize
  704.     width = target.text_size(split_s[0]).width
  705.    
  706.     target.font.size = rubysize
  707.     ruby_width = target.text_size(split_s[1]).width
  708.     target.font.size = sizeback
  709.    
  710.     buf_width = [target.text_size(split_s[0]).width, ruby_width].max
  711.    
  712.     width - ruby_width != 0 ? sub_x = (width - ruby_width) / 2 : sub_x = 0
  713.    
  714.     if opacity == 255
  715.       target.font.size = rubysize
  716.       target.draw_text(x + sub_x, y - target.font.size, target.text_size(split_s[1]).width, target.font.size, split_s[1])
  717.       target.font.size = sizeback
  718.       target.draw_text(x, y, width, target.font.size, split_s[0])
  719.       return width
  720.     else
  721.       if @opacity_text_buf.width < buf_width or @opacity_text_buf.height < height
  722.         @opacity_text_buf.dispose
  723.         @opacity_text_buf = Bitmap.new(buf_width, height)
  724.       else
  725.         @opacity_text_buf.clear
  726.       end
  727.       @opacity_text_buf.font.size = rubysize
  728.       @opacity_text_buf.draw_text(0 , 0, buf_width, rubysize, split_s[1], 1)
  729.       @opacity_text_buf.font.size = sizeback
  730.       @opacity_text_buf.draw_text(0 , rubysize, buf_width, sizeback, split_s[0], 1)
  731.       if sub_x >= 0
  732.         target.blt(x, y - rubysize, @opacity_text_buf, Rect.new(0, 0, buf_width, height), opacity)
  733.       else
  734.         target.blt(x + sub_x, y - rubysize, @opacity_text_buf, Rect.new(0, 0, buf_width, height), opacity)
  735.       end
  736.       return width
  737.     end
  738.   end
  739.   #--------------------------------------------------------------------------
  740.   # ● \V 变换
  741.   #--------------------------------------------------------------------------
  742.   def convart_value(option, index)
  743.     option == nil ? option = "" : nil
  744.     option.downcase!
  745.     case option
  746.       when "i"
  747.         unless $data_items[index].name == nil
  748.           r = sprintf("\030[%s]%s", $data_items[index].icon_name, $data_items[index].name)
  749.         end
  750.       when "w"
  751.         unless $data_weapons[index].name == nil
  752.           r = sprintf("\030[%s]%s", $data_weapons[index].icon_name, $data_weapons[index].name)
  753.         end
  754.       when "a"
  755.         unless $data_armors[index].name == nil
  756.           r = sprintf("\030[%s]%s", $data_armors[index].icon_name, $data_armors[index].name)
  757.         end
  758.       when "s"
  759.         unless $data_skills[index].name == nil
  760.           r = sprintf("\030[%s]%s", $data_skills[index].icon_name, $data_skills[index].name)
  761.         end
  762.       else
  763.       r = $game_variables[index]
  764.     end
  765.     r == nil ? r = "" : nil
  766.     return r
  767.   end
  768.   #--------------------------------------------------------------------------
  769.   # ● 解放
  770.   #--------------------------------------------------------------------------
  771.   def dispose
  772.     terminate_message
  773.     if @gaiji_cache != nil
  774.       unless @gaiji_cache.disposed?
  775.         @gaiji_cache.dispose
  776.       end
  777.     end
  778.     unless @opacity_text_buf.disposed?
  779.       @opacity_text_buf.dispose
  780.     end
  781.     $game_temp.message_window_showing = false
  782.     if @input_number_window != nil
  783.       @input_number_window.dispose
  784.     end
  785.     super
  786.   end
  787.   #--------------------------------------------------------------------------
  788.   # ● 矩形更新
  789.   #--------------------------------------------------------------------------
  790.   def update_cursor_rect
  791.     if @index >= 0
  792.       n = $game_temp.choice_start + @index
  793.       self.cursor_rect.set(4 + @indent + @face_indent, n * 20 + 10, @cursor_width, 20)
  794.     else
  795.       self.cursor_rect.empty
  796.     end
  797.   end
  798. end
  799. #==============================================================================
  800. # ■ Window_Frame (枠だけで中身の無いウィンドウ)
  801. #==============================================================================
  802. class Window_Frame < Window_Base
  803.   #--------------------------------------------------------------------------
  804.   # ● オブジェクト初期化
  805.   #--------------------------------------------------------------------------
  806.   def initialize(x, y, width, height)
  807.     super(x, y, width, height)
  808.     self.contents = nil
  809.     self.back_opacity = 200
  810.   end
  811.   #--------------------------------------------------------------------------
  812.   # ● 解放
  813.   #--------------------------------------------------------------------------
  814.   def dispose
  815.     super
  816.     end
  817.   end
  818. #==============================================================================
  819. # ■ Air_Text (何も無いところに文字描写 = 枠の無い瞬間表示メッセージウィンドウ)
  820. #==============================================================================
  821. class Air_Text < Window_Base
  822.   #--------------------------------------------------------------------------
  823.   # ● オブジェクト初期化
  824.   #--------------------------------------------------------------------------
  825.   def initialize(x, y, designate_text)
  826.     super(x-16, y-16, 32 + designate_text.size * 12, 56)
  827.     self.opacity = 0
  828.     self.back_opacity = 0
  829.     self.contents = Bitmap.new(self.width - 32, self.height - 32)
  830.     self.contents.font.size = 20
  831.     w = self.contents.width
  832.     h = self.contents.height
  833.     self.contents.draw_text(0, 0, w, h, designate_text)
  834.   end
  835.   #--------------------------------------------------------------------------
  836.   # ● 解放
  837.   #--------------------------------------------------------------------------
  838.   def dispose
  839.     self.contents.clear
  840.     super
  841.   end
  842. end

  843. #==============================================================================
  844. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  845. #==============================================================================
复制代码

评分

参与人数 1星屑 +240 收起 理由
「旅」 + 240 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
6870
在线时间
1666 小时
注册时间
2008-10-29
帖子
6710

贵宾

11
发表于 2010-8-15 01:54:25 | 只看该作者
IamI  发表于 昨天 21:37
这方法……OTL,不会引起旁边打酱油的事件的卡死么

在执行 refresh 整个过程中.
其他的游戏数据并没有被更新.
可能会受到影响的地图事件.也就是 计时器 了...
别的应该不会有什么影响...











你知道得太多了

回复 支持 反对

使用道具 举报

Lv3.寻梦者 (暗夜天使)

名侦探小柯

梦石
0
星屑
3309
在线时间
3620 小时
注册时间
2006-9-6
帖子
37400

开拓者贵宾第3届短篇游戏大赛主流游戏组亚军第5届短篇游戏比赛亚军

10
发表于 2010-8-14 22:57:29 | 只看该作者
我也觉得那最后一行很不顺眼……
用这个吧:http://rpg.blue/forum.php?mod=vi ... D%E5%8A%A0%E5%BC%BA
我附带的那个。

评分

参与人数 1星屑 +240 收起 理由
「旅」 + 240 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
466
在线时间
828 小时
注册时间
2009-5-31
帖子
88
9
发表于 2010-8-14 22:41:18 | 只看该作者
总是提示最后一行出错啊{:4_83:}
回复 支持 反对

使用道具 举报

Lv3.寻梦者 (暗夜天使)

名侦探小柯

梦石
0
星屑
3309
在线时间
3620 小时
注册时间
2006-9-6
帖子
37400

开拓者贵宾第3届短篇游戏大赛主流游戏组亚军第5届短篇游戏比赛亚军

8
发表于 2010-8-14 22:09:45 | 只看该作者
并不是对话加强就是fuki,有默认版本的对话加强,而且加强的功能比fuki要多得多。
  1. # ————————————————————————————————————
  2. # 本脚本来自www.66rpg.com,转载请保留此信息
  3. # ————————————————————————————————————
  4. #——说明
  5. #默认为一个字一个字的方式,如果需要一次全部显示,
  6. #请在游戏中使用脚本:$game_system.typing = true
  7. # 其他在对话中可以使用的功能:

  8. # \n[1]:显示1号角色的姓名
  9. # \name[李逍遥]:显示一个“李逍遥”方框,表示说话人姓名
  10. # \name[\n[1]]:显示1号主角的姓名方框
  11. # \p[1]:对话框出现在1号事件的上方
  12. # \p[0]:主人公上方出现对话框
  13. # ——————————————————使用\p功能后可以自动调整对话框大小
  14. # \>   :文字不用打字方式
  15. # \<   :文字使用打字方式
  16. # \\:显示"\"这个符号
  17. # \c[1-8]:更改颜色
  18. # \g:显示金钱窗口
  19. # \t: 显示游戏时间窗口
  20. # \v[7]:显示7号变量的值
  21. # \v[a7]:显示7号防具的名称
  22. # \v[s7]:显示7号特技的名称
  23. # \v[w7]:显示7号武器的名称
  24. # \v[i7]:显示7号道具的名称
  25. # \I   :下一行从这个位置开始
  26. # \o[123]:文字透明度改为123,模拟将死之人(汗)
  27. # \h[12]:改用12号字
  28. # \b[50]:空50象素
  29. # \L[001]:在左边显示图片“Graphics/battlers/66rpg_001_h.png”
  30. # \R[001]:在右边显示图片“Graphics/battlers/66rpg_001_h.png”
  31. # \Lk:清除左边的图像
  32. # \Rk:清除右边的图像
  33. # \A:头像及姓名框靠左排列
  34. # \a:头像及姓名框靠右排列
  35. # \M[60]:等待60帧文字直接消失
  36. # \MS[1-8]:更改文字背景颜色
  37. # \ME:恢复文字背景颜色
  38. #颜色自定义设定范围0-255
  39. #使用方法:在文章前输入如下脚本定义颜色
  40. #          $color0 = 数值
  41. #          $color1 = 数值
  42. #          $color2 = 数值
  43. #\name参数的颜色自定义设定范围0-255
  44. #使用方法:在文章前输入如下脚本定义颜色
  45. #          $ncolor0 = 数值
  46. #          $ncolor1 = 数值
  47. #          $ncolor2 = 数值
  48. # \!   :等待玩家按回车再继续
  49. #$speed :文字的打字速度设置用的,数字越大速度越慢。

  50. #============================
  51. class Game_System
  52. attr_accessor :typing
  53. alias carol3_ini initialize
  54. def initialize
  55. carol3_ini
  56. @typing = true
  57. end
  58. end
  59. #=================================#==============================================================================
  60. # ■ Window_Message
  61. #------------------------------------------------------------------------------
  62. class Window_Message < Window_Selectable
  63.   #颜色自定义用的全局变量定义
  64.   $color0 = 255
  65.   $color1 = 255
  66.   $color2 = 255
  67.   #颜色自定义用的全局变量定义

  68.   #说话速度设置用的全局变量

  69.   $speed = 1

  70. #--------------------------------------------------------------------------
  71. # ● 初始化状态
  72. #--------------------------------------------------------------------------
  73. def initialize
  74.   super(80, 304, 480, 160)
  75.   self.contents = Bitmap.new(width - 32, height - 32)
  76.   self.visible = false
  77.   self.z = 9998
  78.   @fade_in = false
  79.   @fade_out = false
  80.   @contents_showing = false
  81.   @cursor_width = 0
  82. # Start
  83.   @bflag = false
  84. # End
  85.   @autoclosetime = -1
  86.   self.active = false
  87.   self.index = -1
  88.   @opacity_text_buf = Bitmap.new(32, 32)
  89. end
  90. #--------------------------------------------------------------------------
  91. # ● 释放
  92. #--------------------------------------------------------------------------
  93. def dispose
  94.   terminate_message
  95.   $game_temp.message_window_showing = false
  96.   if @input_number_window != nil
  97.     @input_number_window.dispose
  98.   end
  99.   super
  100. end
  101. #--------------------------------------------------------------------------
  102. # ● 处理信息结束
  103. #--------------------------------------------------------------------------
  104. def terminate_message
  105.   self.active = false
  106.   self.pause = false
  107.   self.index = -1
  108.   self.contents.clear
  109.   # 清除显示中标志
  110.   @contents_showing = false
  111.   # 呼叫信息调用
  112.   if $game_temp.message_proc != nil
  113.     $game_temp.message_proc.call
  114.   end
  115.   # 清除文章、选择项、输入数值的相关变量
  116.   $game_temp.message_text = nil
  117.   $game_temp.message_proc = nil
  118.   $game_temp.choice_start = 99
  119.   $game_temp.choice_max = 0
  120.   $game_temp.choice_cancel_type = 0
  121.   $game_temp.choice_proc = nil
  122.   $game_temp.num_input_start = 99
  123.   $game_temp.num_input_variable_id = 0
  124.   $game_temp.num_input_digits_max = 0
  125.   # 开放金钱窗口
  126.   if @gold_window != nil
  127.     @gold_window.dispose
  128.     @gold_window = nil
  129.   end
  130. #Start
  131.   # ピクチャ廃棄処理
  132.   begin
  133. #      if @spgra.disposed? == false
  134.       @spgra.dispose
  135. #      end
  136. #      if @backgraphic.disposed? == false
  137.       @backgraphic.dispose
  138. #      end
  139.   rescue
  140. #      print "ピクチャが読み込めていません!"
  141.   end
  142. #End
  143.   # 开放时间窗口
  144.   if @playtime_window != nil
  145.     @playtime_window.dispose
  146.     @playtime_window = nil
  147.   end
  148.   if @name_window_frame != nil
  149.     @name_window_frame.dispose
  150.     @name_window_frame = nil
  151.   end
  152.   if @name_window_text != nil
  153.     @name_window_text.dispose
  154.     @name_window_text = nil
  155.   end
  156.   if @right_picture != nil and @right_keep == true
  157.     @right_picture.dispose
  158.   end   
  159.   if @left_picture != nil and @left_keep == true
  160.     @left_picture.dispose
  161.   end
  162.   @face_bitmap = nil
  163. end
  164. def refresh
  165.   # 初期化
  166.   self.contents.clear
  167.   self.contents.font.color = normal_color
  168.   self.contents.font.size = Font.default_size
  169.   @x = @y = @max_x = @max_y = @indent = @lines = 0
  170.   @left_keep = @right_keep = false
  171.   @face_indent = 0
  172.   @opacity = 255
  173.   @cursor_width = 0
  174.   @autoclosetime = -1
  175.   @write_speed = $speed
  176.   @write_wait = 0
  177.   @mid_stop = false
  178.   face = nil
  179.   @popchar = -2
  180.   @alignment = true
  181.   if $game_temp.choice_start == 0
  182.     @x = 8
  183.   end
  184.   if $game_temp.message_text != nil
  185.     @now_text = $game_temp.message_text
  186.     #——对齐设置
  187.     if (/\\([Aa])/.match(@now_text))!=nil then
  188.       if $1 == "A"
  189.         @alignment = true
  190.       else
  191.         @alignment = false
  192.       end
  193.       @now_text.gsub!(/\\([Aa])/) { "" }
  194.     end
  195.     #——头像设置
  196.      if (/\\([Ff])\[(.+?)\]/.match(@now_text))!=nil then
  197.        @face = $2 + "_f.png"
  198.        if $1 == "f" and $game_actors[$2.to_i] != nil
  199.          @face = $game_actors[$2.to_i].battler_name + "_f.png"
  200.        end
  201.        if FileTest.exist?("Graphics/Pictures/#{@face}")
  202.          @face_bitmap = Bitmap.new("Graphics/Pictures/#{@face}")
  203.          if @alignment
  204.            @x = @face_indent = 128
  205.            self.contents.blt(16, 16, @face_bitmap, Rect.new(0, 0, 96, 96))
  206.          else
  207.            self.contents.blt(self.contents.width - 112, 16, @face_bitmap,
  208.              Rect.new(0, 0, 96, 96))
  209.          end
  210.        else
  211.          @face = nil
  212.          @face_bitmap = nil
  213.        end
  214.        @now_text.gsub!(/\\([Ff])\[(.*?)\]/) { "" }
  215.      end
  216.     #——左半身像设置
  217.     if (/\\[Ll]\[(.+?)\]/.match(@now_text))!=nil then
  218.       @face = "66rpg_" + $1 + "_h.png"
  219.       if $加密 == true
  220.         if @left_picture != nil
  221.           @left_picture.dispose
  222.         end
  223.         @left_picture = Sprite.new
  224.         @left_picture.bitmap = Bitmap.new("Graphics/battlers/#{@face}")
  225.         @left_picture.y = 480-@left_picture.bitmap.height
  226.         @left_picture.x = 0
  227.         @left_picture.mirror = true
  228.         @now_text.gsub!(/\\[Ll]\[(.*?)\]/) { "" }
  229.       else         
  230.         if FileTest.exist?("Graphics/battlers/#{@face}")
  231.           if @left_picture != nil
  232.             @left_picture.dispose
  233.           end
  234.           @left_picture = Sprite.new
  235.           @left_picture.bitmap = Bitmap.new("Graphics/battlers/#{@face}")
  236.           @left_picture.y = 480-@left_picture.bitmap.height
  237.           @left_picture.x = 0
  238.           @left_picture.mirror = true
  239.           @now_text.gsub!(/\\[Ll]\[(.*?)\]/) { "" }
  240.         end
  241.       end      
  242.     end
  243.     #——右半身像设置
  244.     if (/\\[Rr]\[(.+?)\]/.match(@now_text))!=nil then
  245.       @face = "66rpg_" + $1 + "_h.png"
  246.       if $加密 == true
  247.         if @right_picture != nil
  248.           @right_picture.dispose
  249.         end
  250.         @right_picture = Sprite.new
  251.         @right_picture.bitmap = Bitmap.new("Graphics/battlers/#{@face}")
  252.         @right_picture.y = 480-@right_picture.bitmap.height
  253.         @right_picture.x = 640-@right_picture.bitmap.width
  254.         @now_text.gsub!(/\\[Rr]\[(.*?)\]/) { "" }
  255.       else
  256.         if FileTest.exist?("Graphics/battlers/#{@face}")
  257.           if @right_picture != nil
  258.             @right_picture.dispose
  259.           end
  260.           @right_picture = Sprite.new
  261.           @right_picture.bitmap = Bitmap.new("Graphics/battlers/#{@face}")
  262.           @right_picture.y = 480-@right_picture.bitmap.height
  263.           @right_picture.x = 640-@right_picture.bitmap.width
  264.           @now_text.gsub!(/\\[Rr]\[(.*?)\]/) { "" }
  265.         end
  266.       end
  267.     end
  268.     if (/\\[Rr]k/.match(@now_text)) != nil
  269.       @right_keep = true
  270.       @now_text.sub!(/\\[Rr]k/) { "" }
  271.     end
  272.     if (/\\[Ll]k/.match(@now_text)) != nil
  273.       @left_keep = true
  274.       @now_text.sub!(/\\[Ll]k/) { "" }
  275.     end
  276.     # 替换人物姓名
  277.     @now_text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  278.       $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  279.     end
  280.     # 显示人物姓名
  281.     name_window_set = false
  282.     if (/\\[Nn][Aa][Mm][Ee](.*?)\[(.+?)\]/.match(@now_text)) != nil
  283.       name_window_set = true
  284.       name_text = $2
  285.       @now_text.sub!(/\\[Nn][Aa][Mm][Ee](.*?)\[(.*?)\]/) { "" }
  286.     end
  287.     # 文字位置的判定
  288.     if (/\\[Pp]\[([-1,0-9]+)\]/.match(@now_text))!=nil then
  289.       @popchar = $1.to_i
  290.       if @popchar == -1
  291.         @x = @indent = 48
  292.         @y = 4
  293.       end
  294.       @now_text.gsub!(/\\[Pp]\[([-1,0-9]+)\]/) { "" }
  295.     end
  296.    
  297.     # 开始
  298.     begin
  299.       last_text = @now_text.clone
  300.       @now_text.gsub!(/\\[Vv]\[([IiWwAaSs]?)([0-9]+)\]/) { convart_value($1, $2.to_i) }
  301.     end until @now_text == last_text
  302.   @now_text.gsub!(/\\\\/) { "\000" }
  303.   @now_text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001[#{$1}]" }
  304.   @now_text.gsub!(/\\[Gg]/) { "\002" }
  305.   @now_text.gsub!(/\\[Tt]/) { "\004" }
  306.   @now_text.gsub!(/\\[Mm]\[([0-9]+)\]/) { "\050[#{$1}]" }
  307.   @now_text.gsub!(/\\[Ii]/) { "\023" }
  308.   @now_text.gsub!(/\\[Oo]\[([0-9]+)\]/) { "\024[#{$1}]" }
  309.   @now_text.gsub!(/\\[Hh]\[([0-9]+)\]/) { "\025[#{$1}]" }
  310.   @now_text.gsub!(/\\[Bb]\[([0-9]+)\]/) { "\026[#{$1}]" }
  311.   @now_text.gsub!(/\\[Dd]\[([0-9]+)\]/) { "\027[#{$1}]" }
  312.   @now_text.gsub!(/\\[!]/) { "\020" }
  313. @now_text.gsub!(/\\[>]/) { "\016" }
  314. @now_text.gsub!(/\\[<]/) { "\017" }

  315. # Start
  316. # ◎
  317.     # "\\MS" を "\052" に、 "\\ME" を "\053" に変更
  318.     @now_text.gsub!(/\\[Mm][Ss]\[([0-9]+)\]/) { "\052[#{$1}]" }
  319.     @now_text.gsub!(/\\[Mm][Ee]/) { "\053" }
  320. # ◎
  321. # End

  322.   if @popchar >= 0
  323.     @text_save = @now_text.clone
  324.     @max_x = 0
  325.     @max_y = 4
  326.     for i in 0..3
  327.       line = @now_text.split(/\n/)[3-i]
  328.       @max_y -= 1 if line == nil and @max_y <= 4-i
  329.       next if line == nil
  330.       cx = contents.text_size(line).width
  331.       @max_x = cx if cx > @max_x
  332.     end
  333.     self.width = @max_x + 48 + @face_indent
  334.     self.height = (@max_y - 1) * 32 + 64
  335.   else
  336.     @max_x = self.width - 32 - @face_indent
  337.   end
  338.   reset_window
  339.     if name_window_set
  340.       off_x = 0
  341.       off_y = -40
  342.       space = 2
  343.       w = self.contents.text_size(name_text).width + 26 + space
  344.       x = @alignment ? self.x + off_x - space / 2 : self.x + off_x - space / 2 + self.width - w
  345.       y = self.y + off_y - space / 2
  346.       h = 40 + space
  347.       @name_window_frame = Window_Frame.new(x, y, w, h)
  348.       @name_window_frame.z = self.z + 1
  349.       x = @alignment ? self.x + off_x - space / 2 + 4 : self.x + off_x - space / 2 + 4 + self.width - w
  350.       y = self.y + off_y - space / 2
  351.       @name_window_text = Air_Text.new(x+4, y+6, name_text)
  352.       @name_window_text.z = self.z + 2
  353.     end
  354.   end
  355.   reset_window
  356.   if $game_temp.choice_max > 0
  357.     @item_max = $game_temp.choice_max
  358.     self.active = true
  359.     self.index = 0
  360.   end
  361.   if $game_temp.num_input_variable_id > 0
  362.     digits_max = $game_temp.num_input_digits_max
  363.     number = $game_variables[$game_temp.num_input_variable_id]
  364.     @input_number_window = Window_InputNumber.new(digits_max)
  365.     @input_number_window.number = number
  366.     @input_number_window.x = self.x + 8
  367.     @input_number_window.y = self.y + $game_temp.num_input_start * 32
  368.   end
  369. end
  370. #--------------------------------------------------------------------------
  371. # ● 更新
  372. #--------------------------------------------------------------------------
  373. def update
  374.   super


  375.     #颜色自定义设定范围0-255
  376.     self.contents.font.color = Color.new($color0, $color1, $color2)
  377.     #颜色自定义设定范围0-255
  378.    
  379.    
  380.     if @autoclosetime == 0
  381.     @autoclosetime = -1
  382.     terminate_message
  383. end
  384.   if @autoclosetime >= 1
  385.     @autoclosetime -= 1
  386.   end
  387.   if @fade_in
  388.     self.contents_opacity += 24
  389.     if @input_number_window != nil
  390.       @input_number_window.contents_opacity += 24
  391.     end
  392.     if self.contents_opacity == 255
  393.       @fade_in = false
  394.     end
  395.     return
  396.   end
  397.   @now_text = nil if @now_text == ""

  398.   if @now_text != nil and @mid_stop == false
  399.     if @write_wait > 0
  400.       @write_wait -= 1
  401.       return
  402.     end
  403.     text_not_skip = $game_system.typing
  404.     while true
  405.       @max_x = @x if @max_x < @x
  406.       @max_y = @y if @max_y < @y
  407.       if (c = @now_text.slice!(/./m)) != nil
  408.         if c == "\000"
  409.           c = "\\"
  410.         end
  411.         if c == "\001"
  412.           @now_text.sub!(/\[([0-9]+)\]/, "")
  413.           color = $1.to_i
  414.           if color >= 0 and color <= 7
  415.             self.contents.font.color = text_color(color)
  416.           end
  417.           c = ""
  418.         end
  419.         if c == "\002"
  420.           if @gold_window == nil and @popchar <= 0
  421.             @gold_window = Window_Gold.new
  422.             @gold_window.x = 560 - @gold_window.width
  423.             if $game_temp.in_battle
  424.               @gold_window.y = 192
  425.             else
  426.               @gold_window.y = self.y >= 128 ? 32 : 384
  427.             end
  428.             @gold_window.opacity = self.opacity
  429.             @gold_window.back_opacity = self.back_opacity
  430.           end
  431.           c = ""
  432.         end
  433.       if c == "\004"
  434.         if @playtime_window == nil and @popchar <=0
  435.           @playtime_window = Window_PlayTime.new
  436.           @playtime_window.x = 80
  437.           if $game_temp.in_battle
  438.             @playtime_window.y = 192
  439.           else
  440.             @playtime_window.y = self.y >= 128 ? 32 : 384
  441.           end
  442.           @playtime_window.opacity = self.opacity
  443.           @playtime_window.back_opacity = self.back_opacity
  444.         end
  445.       end
  446.        if c == "\016"
  447.          text_not_skip = false
  448.          c = ""
  449.        end
  450.        if c == "\017"
  451.          text_not_skip = true
  452.          c = ""
  453.        end
  454.        if c == "\020"
  455.          @mid_stop = true
  456.          c = ""
  457.        end      
  458.         if c == "\023"
  459.           @indent = @x
  460.           c = ""
  461.         end
  462.         if c == "\024"
  463.           @now_text.sub!(/\[([0-9]+)\]/, "")
  464.           @opacity = $1.to_i
  465.           c = ""
  466.         end
  467.         if c == "\025"
  468.           @now_text.sub!(/\[([0-9]+)\]/, "")
  469.           self.contents.font.size = [[$1.to_i, 6].max, 32].min
  470.           c = ""
  471.         end
  472.         if c == "\026"
  473.           @now_text.sub!(/\[([0-9]+)\]/, "")
  474.           @x += $1.to_i
  475.           c = ""
  476.         end
  477.       if c == "\027"
  478.         @now_text.sub!(/\[([0-9]+)\]/, "")
  479.         @x += $1.to_i * self.contents.font.size / 2
  480.         next
  481.       end
  482.         if c == "\030"
  483.           @now_text.sub!(/\[(.*?)\]/, "")
  484.           self.contents.blt(@x , @y * line_height + 8, RPG::Cache.icon($1), Rect.new(0, 0, 24, 24))
  485.           @x += 24
  486.           c = ""
  487.         end
  488.         if c == "\050"
  489.         @now_text.sub!(/\[([0-9]+)\]/, "")
  490.         @autoclosetime = $1.to_i
  491.         next
  492.       end
  493. # Start
  494. # ◎
  495.       # \MSの場合
  496.       if c == "\052"
  497.         @now_text.sub!(/\[([0-9]+)\]/, "")
  498.         bcolor = $1.to_i
  499.         @bflag = true
  500.       end
  501.       # \MEの場合
  502.       if c == "\053"
  503.         @bflag = false
  504.         bcolor = 0
  505.       end
  506. # ◎
  507. # End
  508. # Start
  509. # ◎
  510.       if @bflag == true
  511.         if bcolor >= 0 and bcolor <= 7
  512.           bsize = self.contents.text_size(c).width
  513.           self.contents.fill_rect(4 + @x, 32 * @y, bsize, 32, text_color(bcolor))
  514.         end
  515.       end
  516. # ◎
  517. # End
  518.         if c == "\n"
  519.           if @lines >= $game_temp.choice_start
  520.             @cursor_width = [@cursor_width, @max_x - @face_indent].max
  521.           end
  522.           @lines += 1
  523.           @y += 1
  524.           @x = 0 + @indent + @face_indent
  525.           if @lines >= $game_temp.choice_start
  526.             @x = 8 + @indent + @face_indent
  527.           end
  528.           c = ""
  529.         end
  530.         if c != ""
  531.           # 文字描画
  532.           @x += opacity_draw_text(self.contents, @x, @y * line_height + (line_height - self.contents.font.size), c, @opacity)
  533.         end
  534.         if Input.press?(Input::B)
  535.           text_not_skip = false
  536.         end
  537.       else
  538.         text_not_skip = true
  539.         break
  540.       end
  541.       # 終了判定
  542.       if text_not_skip
  543.         break
  544.       end
  545.     end
  546.     @write_wait += @write_speed
  547.     return
  548.   end
  549.   if @input_number_window != nil
  550.     @input_number_window.update
  551.     # 決定
  552.     if Input.trigger?(Input::C)
  553.       $game_system.se_play($data_system.decision_se)
  554.       $game_variables[$game_temp.n
复制代码
顺便附带个别的:
http://rpg.blue/forum.php?mod=vi ... D%E5%8A%A0%E5%BC%BA
回复 支持 反对

使用道具 举报

Lv4.逐梦者

梦石
0
星屑
6870
在线时间
1666 小时
注册时间
2008-10-29
帖子
6710

贵宾

7
发表于 2010-8-14 21:25:23 | 只看该作者
本帖最后由 后知后觉 于 2010-8-16 11:58 编辑

在默认的对话框脚本的第 68 行左右有这样的内容

  1.   def refresh
  2.     self.contents.clear
复制代码
在这2行的下面增加一行
  1.     self.visible = true
复制代码
然后在第 145 行左右有这样的内容
  1.         # 描绘文字
  2.         self.contents.draw_text(4 + x, 32 * y, 40, 32, c)
复制代码
在下面增加一行
  1.         $game_variables[25].times{Graphics.update}
复制代码
里面的 25 是变量 ID. 该变量的数值越小.打字速度越快.
如果还想要打字的声效的话.可以在这一行上面增加.
  1.         if $game_switches[25]
  2.           Audio.se_play("Audio/SE/打字声效文件名")
  3.         end
复制代码
里面的 25 是开关的 ID. 当该开关打开的时候才播放打字声效.
最后找到下面 254 行左右
  1.       self.contents_opacity = 0
  2.       if @input_number_window != nil
  3.         @input_number_window.contents_opacity = 0
  4.       end
复制代码
把里面的两个 0 改成 255
  1.       self.contents_opacity = 255
  2.       if @input_number_window != nil
  3.         @input_number_window.contents_opacity = 255
  4.       end
复制代码

评分

参与人数 1星屑 +320 收起 理由
「旅」 + 320 认可答案

查看全部评分












你知道得太多了

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
47 小时
注册时间
2010-8-1
帖子
231
6
 楼主| 发表于 2010-8-14 21:22:55 | 只看该作者
回复 越前リョーマ 的帖子

呃……不好意思真是麻烦你了……因为我是用公共事件做的人物半身像,对话框并不是漫画式而是出现在屏幕下方的……所以FUKI的这个功能用不到……只是希望逐字输入……
   
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
29 小时
注册时间
2010-7-5
帖子
483
5
发表于 2010-8-14 21:11:00 | 只看该作者
为什么要提取出来。。。。。。。。。。。
那你自己重新写一个咯。。。。。。。。。。
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-6 15:11

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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