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

Project1

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

[已经解决] 真·对话加强脚本……文字显示速度……

[复制链接]

Lv3.寻梦者

贝鲁耶的依叶森林
持镰的苍色水野

梦石
2
星屑
659
在线时间
563 小时
注册时间
2007-4-8
帖子
1304

第4届短篇游戏比赛季军短篇八RM组亚军

跳转到指定楼层
1
发表于 2010-8-12 02:10:35 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
OTZ终于来问问题了……

……这种打字模式的文字,
怎样让它的速度便慢点,找了半天没找到  =  =
  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. # \n[1]:显示1号角色的姓名

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

点评

请楼主对2楼做出回应~~不然偶就给他加分了~~  发表于 2010-8-12 07:16

Lv4.逐梦者

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

贵宾

2
发表于 2010-8-12 03:10:57 | 只看该作者
本帖最后由 后知后觉 于 2010-8-12 03:12 编辑

不是有个 \s[1-19] 来调节打字速度的嘛
如果觉得这样无法满足要求的话

可以搜索一下下面这2个 变量 找到相关内容进行修改

@write_wait += @write_speed

评分

参与人数 1星屑 +240 收起 理由
六祈 + 240 认可答案

查看全部评分












你知道得太多了

回复 支持 反对

使用道具 举报

Lv1.梦旅人

尽头

梦石
0
星屑
119
在线时间
278 小时
注册时间
2010-6-20
帖子
1280
3
发表于 2010-8-12 07:33:15 | 只看该作者
42行的注释.:# \s[1-19]:更改弹字的速度
直接在对话框上打\s[15]文字文字.要改变的话就\s[1]

回复 支持 反对

使用道具 举报

Lv3.寻梦者

贝鲁耶的依叶森林
持镰的苍色水野

梦石
2
星屑
659
在线时间
563 小时
注册时间
2007-4-8
帖子
1304

第4届短篇游戏比赛季军短篇八RM组亚军

4
 楼主| 发表于 2010-8-12 10:19:22 | 只看该作者
楼上两位
我需要直接在脚本更改……
【每个对话中都加一个\s[XX]太累了】
水野的主页><
头像来自于游戏《龙背上的骑兵3》主角——Zero
回复 支持 反对

使用道具 举报

Lv3.寻梦者

贝鲁耶的依叶森林
持镰的苍色水野

梦石
2
星屑
659
在线时间
563 小时
注册时间
2007-4-8
帖子
1304

第4届短篇游戏比赛季军短篇八RM组亚军

5
 楼主| 发表于 2010-8-12 16:09:39 | 只看该作者
啊……根据2L的帮助找到了,
认可2L了  谢谢了   \(^o^)/~
水野的主页><
头像来自于游戏《龙背上的骑兵3》主角——Zero
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-28 05:34

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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