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

Project1

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

[已经解决] 用了对话显示人名脚本后,左上角出现奇怪的方框

[复制链接]

Lv3.寻梦者

梦石
0
星屑
1179
在线时间
209 小时
注册时间
2013-6-19
帖子
138
跳转到指定楼层
1
发表于 2013-8-7 19:12:44 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

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

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

x
使用了对话显示人名脚本后

和有人名的npc对话后处理商店,


之后再随便一个地方按下Z键,

就会出现奇怪的方框(如图)


这个是报错的范例,
新建一个工程,把DATA覆盖过去
Data.rar (215.8 KB, 下载次数: 17)

这个是使用的脚本
RUBY 代码复制
  1. =begin
  2. 吹きだしウィンドウVXAce
  3.  
  4. 2011.12.25 tamura改造
  5. 2012年02月28日 改訂
  6.  
  7. ※このスクリプトは、ちいさな本屋様([url]http://xrxs.at-ninja.jp/[/url])
  8. が製作されたものをtamuraがACE用に改造した物です。
  9.  
  10. 原版:
  11.  ▽▽▽ XRXSv2. メッセージ表示フルグレードアップVX ▽▽▽
  12.  publish 2010/ 3/ 2
  13.  update  - 11/ 1/10a
  14.  
  15.  
  16. ※※警告※※
  17. 「立ち絵機能」をONにしている時に、立ち絵を表示せずに、ウィンドウ位置を
  18. 右か左に変更した時、テールのY座標がずれるようです。
  19. 原因は調査中です。立ち絵を表示しない時は、イベントコマンド「注釈」で、
  20. 「立ち絵表示 off」と記述して立ち絵機能をOFFにしておいてください。
  21.  
  22. ●機能一覧
  23. ?イベントコマンド「スクリプト」で、$win_x $win_yに値を入力すると、
  24.  ($win_x 、$win_y)の位置にウィンドウを表示する。画面左上が(0,0)。
  25.  
  26. ?キーボードのQ(装備画面で前のキャラに戻るボタン)を押すと、
  27.  ウィンドウが消える。Qか決定、キャンセルキーで元に戻る。
  28.  
  29. ?文章のどこでもいいので、以下の表記を行う。
  30. ? \name[] : []の中の文字を、ウィンドウ左上に小さく表示する。
  31.  
  32.  \h[-1] : プレーヤーの上にウィンドウをポップ。
  33.  \h[0] : 現在アクティブのイベントの上にウィンドウをポップ。
  34.  \h[1] : IDが1番のイベントの上にウィンドウをポップする。
  35.  hは大文字でもOK。
  36.  
  37. ウィンドウは通常の大きさのまま、テールだけ表示したい場合は、
  38.  \t[-2] : ウィンドウが上下に表示される時は、X座標をMINAS_TWE_X_POSで固定。
  39.            $win_x で左右に表示される時は、Y座標がウィンドウの中心やや下で固定。
  40.  \t[-3] : ウィンドウが上下に表示される時は、X座標をMINAS_THREE_X_POSで固定。
  41.            $win_x で左右に表示される時は、Y座標がウィンドウの中心やや下で固定。
  42.  \t[-1] : プレーヤーの上に向かってテール表示。
  43.  \t[0] : 現在アクティブのイベントに向かってテール表示。
  44.  \t[1] : IDが1番のイベントの上に向かってテール表示。
  45.  
  46.  \O[128] : 文字を透明にする。128はalphaの値で、0で透明、255で通常。
  47.  \D : 文字に影をつける
  48.  \hold : メッセージ表示の、最後の文章に限定。
  49.       メッセージが終わっても、ウィンドウを閉じずに残します。
  50.       他のメッセージが表示されて次へ送られる時に消えます。
  51.       なお、ホールドされているウィンドウは、Qボタンで消せません。
  52.  
  53.  
  54. ●その他
  55. ?ACEに標準装備されている機能は通常通り使用できます。
  56. ?A1殿([url]http://a1tktk.web.fc2.com/[/url])の立ち絵スクリプトに対応しています。
  57.  このスクリプトの上に「RGSS3用A1共通処理」
  58.  このスクリプトの下に「空メッセージでウィンドウを開かない」「立ち絵表示」を
  59.  配置して下さい。
  60.  残念ながら、「ネームウィンドウ」は使えません。上記\nameをお使いください。
  61. ※立ち絵を表示しない時は、注釈で「立ち絵表示 off」とした方が無難です。
  62. ?イベントの下から話しかけたら上へポップ、上から話しかけたら下へポップするという
  63.  機能を追加。カスタマイズポイントで POP_DIRECTION = ture と変更のこと。
  64.  
  65.  
  66. ●廃止機能 
  67. ?\Iがすでに使われているので、イタリック文字変換を廃止。
  68. ?スピード変更、改行、最後に入手したアイテムの表示を、ACE化にともない廃止。
  69.  
  70.  
  71. 【改訂履歴】
  72. 2012.01.10  ?ウィンドウを消したまま次のウィンドウを自動で表示すると、
  73.               ネームウィンドウが表示されるのを修正。
  74. 2012.01.11  ?ネームウィンドウが出しっぱなしになるのを修正。
  75. 2012.01.12  ?メニューを出してから決定ボタンを押すとネームウィンドウがでる不具合の修正。
  76. 2012.02.01 ?ネームウィンドウのオープン&クローズのタイミングを変更。
  77.       ?hold機能を追加。
  78. 2012.02.10 ?キャラポップした時、一行ずつしか表示されない不具合を修正。
  79. 2012.02.14 ?アイテム名などの文字数が正常に取得できなかったのを修正。
  80. 2012.02.21 ?話しかけられた方向によって、ポップ方向を変えられるようにした。
  81. 2012.02.25 ?すべてのシーン遷移の際はテールを破棄(イベント中でショップ起動など)
  82. 2012.02.28 ?エスケープ文字の処理が上手くいかない問題について暫定対策。
  83.  
  84. =end
  85.  
  86. #==============================================================================
  87. # カスタマイズポイント
  88. #==============================================================================
  89. #=begin
  90. class Window_Message < Window_Base
  91.   #
  92.   # 基本行数
  93.   #
  94.   MAX_LINE = 4
  95.   #
  96.   # \p[] - キャラポップの高さ
  97.   #
  98.   CHARPOP_HEIGHT = 40
  99.   #
  100.   # \name[] - 名前枠 X,Y座標
  101.   #
  102.   NAME_WINDOW_OFFSET_X =   0
  103.   NAME_WINDOW_OFFSET_Y = -24
  104.   #
  105.   #
  106.   MINAS_TWE_X_POS = 100 # $t[-2]のときの、テールのX座標。
  107.   MINAS_THREE_X_POS = 444 # $t[-3]のときの、テールのX座標。
  108.  
  109.   POP_DIRECTION = false #イベントの方向を考慮。
  110. end
  111. #==============================================================================
  112. # 参照機能
  113. #==============================================================================
  114. class Game_Temp
  115.   attr_accessor :last_gain_material
  116.   attr_accessor :last_gain_holder
  117. end
  118. #==============================================================================
  119. # フルグレードアップベース - 制御文字?基本機能
  120. #==============================================================================
  121. class Window_Message < Window_Base
  122.   attr_accessor :tail
  123.   #--------------------------------------------------------------------------
  124.   # ● 特殊文字の変換 + 準備
  125.   #     変換?消去してもいい部分を処理、フラグのセット。
  126.   #--------------------------------------------------------------------------
  127.   alias xrxsv2_convert_escape_characters convert_escape_characters
  128.   def convert_escape_characters(text)
  129.     #@textsが使いずらいので、ここで別変数に保管。
  130.     @all_texts = []
  131.     str = text.gsub(/\\/) { "\e" }
  132.     @all_texts = str.split("\n")
  133.  
  134.     # 初期化
  135.     contents.font.size   = Font.default_size
  136.     contents.font.bold   = Font.default_italic
  137.     contents.font.italic = Font.default_bold
  138.     contents.font.shadow = Font.default_shadow
  139.     @type_wait = 0
  140.     @line_widths = []
  141.     @line_aligns = []
  142.     self.pop_character = nil
  143.     # ウィンドウ保持指定\holdがあるか?
  144.     @window_hold = (text.gsub!(/\\hold/) { "" } != nil)
  145.     # \info
  146.     @info_mode = (text.gsub!(/\\info/) { "" } != nil)
  147.     # 改行削除指定\_があるか?
  148.     if (/\\_(.*?)\x00/.match(@text)) != nil
  149.       $game_message.choice_start -= 1
  150.       text.gsub!(/\\_(.*?)\x00/) { $1.to_s }
  151.     end
  152.     # \name 判定
  153.     if text.sub!(/\\[Nn]ame\[(.*?)\]/) { "" }
  154.       name = $1
  155.       bitmap = @name_sprite.bitmap
  156.       w = [bitmap.text_size(name).width, 1].max
  157.       bitmap.dispose
  158.       @name_sprite.bitmap = Bitmap.new(w - -8, 32)
  159.       bitmap = @name_sprite.bitmap
  160.       bitmap.draw_text(0, 0, bitmap.width, bitmap.height, name)
  161.       @name_window.width = w + 16
  162.       @name_window.create_contents
  163.       @name_window.open if @name_window.openness == 0
  164.       if self.visible #名前だけ表示されるのを防止。
  165.         @name_window.visible = true
  166.         @name_sprite.visible = true
  167.       else
  168.         @name_window.visible = false
  169.         @name_sprite.visible = false
  170.       end
  171.     else
  172.       @name_window.visible = false
  173.       @name_sprite.visible = false
  174.       @name_sprite.bitmap.dispose
  175.       @name_sprite.bitmap = Bitmap.new(32,32)
  176.     end
  177.     $name = $1 #あれこれで使うので、ネームウィンドウに表示予定の名前を取得。
  178.     # キャラボップモード
  179.     if text.gsub!(/\\[Hh]\[-1\]/) { "" }
  180.       self.pop_character = -1
  181.     elsif text.gsub!(/\\[Hh]\[([0-9]+)\]/) { "" }
  182.       self.pop_character = $1.to_i
  183.     elsif text.gsub!(/\\[Hh]/) { "" }
  184.       self.pop_character = 0
  185.     #テール表示モード
  186.     elsif text.gsub!(/\\[Tt]\[-1\]/) { "" }
  187.       self.tail_character = -1
  188.     elsif text.gsub!(/\\[Tt]\[-2\]/) { "" }
  189.       self.tail_character = -2
  190.     elsif text.gsub!(/\\[Tt]\[-3\]/) { "" }
  191.       self.tail_character = -3
  192.     elsif text.gsub!(/\\[Tt]\[([0-9]+)\]/) { "" }
  193.       self.tail_character = $1.to_i
  194.     elsif text.gsub!(/\\[Tt]/) { "" }
  195.       self.tail_character = 0
  196.     else
  197.       self.pop_character = nil
  198.     end
  199.  
  200.     # 制御文字処理
  201.     text = xrxsv2_convert_escape_characters(text)
  202.     text.gsub!(/\\[Ss]\[([0-9]+)\]/i) { "\eS[#{$1}]" }
  203.     text.gsub!(/\\[Oo]\[([0-9]+)\]/i) { "\eO[#{$1}]" }
  204.     text.gsub!(/\\last_holder/i) { "\e18" }
  205.     text.gsub!(/\\last_material/i) { "\e19" }
  206.     text.gsub!(/\\B/) { "\eB" }
  207.     text.gsub!(/\\D/) { "\eD" }
  208.     #text.gsub!(/\\n/) { "\n" }
  209.     #
  210.     # ライン情報の取得
  211.     rxs = ["\x01","\x02","\x03","\x04","\x05","\x06","\x07","\x08",
  212.       /\[([0-9]+)\]/,
  213.       "\x11","\x12","\x13","\x14", "\x15", "\x16", "\x17", "\x18","\x19"]
  214.     lines = text.split("\x00")
  215.     @lines_max = lines.size
  216.     for i in 0...@lines_max
  217.       line = lines[i]
  218.       for rx in rxs
  219.         line.gsub!(rx) {""}
  220.       end
  221.       @line_aligns[i] =
  222.         line.sub!(/\\center/) {""} ? CENTER :
  223.         line.sub!(/\\right/)  {""} ? RIGHT :
  224.                                      AUTO
  225.       # 行の横幅の取得と設定
  226.       cx = text_width_no_escape(line,text) #test
  227.       #cx = contents.text_size(line,text).width
  228.       @line_widths[i] = cx
  229.     end
  230.     # 位置揃え制御文字の削除
  231.     text.gsub!(/\\center/) {""}
  232.     text.gsub!(/\\right/) {""}
  233.     # キャラポップ時のウィンドウリサイズ
  234.     reszie_window_for_pop
  235.  
  236.     del_tail # if @tail != nil
  237.     # $mes_id が空のときと戦闘中はふきだしを表示しない
  238.     if defined?($game_system.show_stand_picture) #立ち絵に対応。
  239.       $mes_id = -1 if $game_system.show_stand_picture == true
  240.     end
  241.     if $mes_id != nil and not $game_party.in_battle
  242.       # ふきだしのテールを描画
  243.       skin = "Window"
  244.       if @background == 0
  245.         #画像の準備
  246.         @tail = Sprite.new
  247.         @tail.visible = false
  248.         # 位置を取得
  249.         tale_pos = get_tale_pos
  250.         if $win_x != nil
  251.           if $win_x > 0
  252.             @tail.bitmap = Cache.system(skin + "-right")
  253.             @tail.x = tale_pos[]
  254.             @tail.y = tale_pos[1]
  255.             @tail.z = self.z + 1
  256.           elsif  $win_x < 0
  257.             @tail.bitmap = Cache.system(skin + "-left")
  258.             @tail.x = tale_pos[]
  259.             @tail.y = tale_pos[1]
  260.             @tail.z = self.z + 1
  261.           else
  262.             create_tail_up_under
  263.           end
  264.         else
  265.           create_tail_up_under
  266.         end
  267.         # エクストラスプライトに登録
  268.         @extra_sprites = [] if @extra_sprites.nil?
  269.         @extra_sprites.push(@tail) if @tail != nil
  270.         # 更新
  271.         update_tail
  272.       end
  273.     end
  274.  
  275.     open_and_wait #リサイズが終わった時点でウィンドウオープン。
  276.  
  277.     return text
  278.   end
  279.   #--------------------------------------------------------------------------
  280.   # ● 文字の長さを取得する。エスケープ文字は含まない。
  281.   # line : 表示しようとしている全ての文字列。
  282.   # text : その列の文字。
  283.   #--------------------------------------------------------------------------
  284.   def text_width_no_escape(line , text_o)
  285.     add = 0
  286.     text = Marshal.load(Marshal.dump(text_o))
  287.     text.gsub!(/\ehold/) { "" }
  288.     text.gsub!(/\einfo/) { "" }
  289.     # 改行削除指定\_があるか?
  290.     if (/\\_(.*?)\x00/.match(@text)) != nil
  291.       $game_message.choice_start -= 1
  292.       text.gsub!(/\\_(.*?)\x00/) { "" }
  293.     end
  294.     # \name 判定
  295.     text.sub!(/\e[Nn]ame\[(.*?)\]/) { "" }
  296.     text.gsub!(/\e[Hh]\[-1\]/) { "" }
  297.     text.gsub!(/\e[Hh]\[([0-9]+)\]/) { "" }
  298.     text.gsub!(/\e[Hh]/) { "" }
  299.     text.gsub!(/\e[Tt]\[-1\]/) { "" }
  300.     text.gsub!(/\e[Tt]\[-2\]/) { "" }
  301.     text.gsub!(/\e[Tt]\[-3\]/) { "" }
  302.     text.gsub!(/\e[Tt]\[([0-9]+)\]/) { "" }
  303.     text.gsub!(/\e[Tt]/) { "" }
  304.     # 制御文字処理
  305.     text.gsub!(/\e[Ss]\[([0-9]+)\]/i) { "" }
  306.     text.gsub!(/\e[Oo]\[([0-9]+)\]/i) { "" }
  307.     text.gsub!(/\elast_holder/i) { "" }
  308.     text.gsub!(/\elast_material/i) { "" }
  309.     #text.gsub!(/\eV/) { "" } #変数に置き換える。
  310.     #text.gsub!(/\eN/) { "" } #名前へ置き換える。
  311.     #text.gsub!(/\eP/) { "" } #名前へ置き換える。
  312.     #text.gsub!(/\eG/) { "" } #金額へ置き換える。
  313.     #text.gsub!(/\eC/) { "" }
  314.     text.gsub!(/\eB/) { "" }
  315.     text.gsub!(/\eD/) { "" }
  316.     if text =~ /\eI/
  317.       loop do
  318.         if str = text.sub!(/\eI\[(\d+)\]/){ "" }
  319.           add += 24
  320.         else
  321.           break
  322.         end
  323.       end
  324.     end
  325.     #text.gsub!(/\\n/) { "\n" }
  326.     text.sub!(/\ecenter/) {""}
  327.     text.sub!(/\eright/)  {""}
  328.     text.gsub!(/\ecenter/) {""}
  329.     text.gsub!(/\eright/) {""}
  330.  
  331.     text = xrxsv2_convert_escape_characters(text)
  332.     basic_width = text_size(text).width + add
  333.     esc = text.scan(/\e(\S)/)
  334.     return ( basic_width - esc.size * (contents.font.size - 4) ) #\eの幅は20?
  335.   end
  336.   #--------------------------------------------------------------------------
  337.   # ● 最も長い列の長さを調べる。エスケープ文字は含まない。
  338.   #--------------------------------------------------------------------------
  339.   def max_width
  340.     text_size = []
  341.     for i in 0 ... @all_texts.size
  342.       text_size.push text_width_no_escape(@all_texts[i],@all_texts[i]) + 20
  343.     end
  344.     return text_size.max
  345.   end
  346.   #--------------------------------------------------------------------------
  347.   # ● 吹きだしテールが上か下の場合の画像を準備。
  348.   #--------------------------------------------------------------------------
  349.   def create_tail_up_under
  350.     skin = "Window"
  351.     tale_pos = get_tale_pos
  352.     case @position
  353.     when 0  # 上
  354.       @tail.bitmap = Cache.system(skin + "-top")
  355.       @tail.x = tale_pos[0]
  356.       @tail.y = tale_pos[1]
  357.       @tail.z = self.z + 1
  358.     when 1  # 中
  359.       @tail.dispose
  360.       @tail = nil
  361.     when 2  # 下
  362.       @tail.bitmap = Cache.system(skin + "-under")
  363.       @tail.x = tale_pos[0]
  364.       @tail.y = tale_pos[1]
  365.       @tail.z = self.z + 1
  366.     end
  367.   end
  368.   #--------------------------------------------------------------------------
  369.   # ● 全テキストの処理
  370.   #--------------------------------------------------------------------------
  371.   def process_all_text
  372.     #open_and_wait #リサイズがあるので、すぐにウィンドウをオープンしない。
  373.     text = convert_escape_characters($game_message.all_text)
  374.     pos = {}
  375.     new_page(text, pos)
  376.     process_character(text.slice!(0, 1), text, pos) until text.empty?
  377.   end
  378.   #--------------------------------------------------------------------------
  379.   # ● メッセージの更新 *
  380.   #--------------------------------------------------------------------------
  381.   def update_message
  382.     @wait_count = @type_wait
  383.     loop do
  384.       c = @text.slice!(/./m)
  385.       case update_message_type(c)
  386.       when 1
  387.         break
  388.       when 2
  389.         next
  390.       end
  391.       break unless @show_fast or @line_show_fast
  392.     end
  393.   end
  394.   #--------------------------------------------------------------------------
  395.   # 一文字の描画 (返り値 1:break, 2:next)
  396.   #--------------------------------------------------------------------------
  397. #=begin
  398.   def process_escape_character(code, text, pos)
  399.     case code.upcase
  400.     when '$'
  401.       @gold_window.open
  402.     when '.'
  403.       wait(15)
  404.     when '|'
  405.       wait(60)
  406.     when '!'
  407.       input_pause
  408.     when '>'
  409.       @line_show_fast = true
  410.     when '<'
  411.       @line_show_fast = false
  412.     when '^'
  413.       @pause_skip = true
  414.     #when 'n'                      # 改行
  415.     #  new_line
  416.     #  max = MAX_LINE
  417.     #  max = 14 if self.pop_character != nil
  418.     #  if @line_count >= max      # 行数が最大のとき
  419.     #    unless @text.empty?           # さらに続きがあるなら
  420.     #      self.pause = true           # 入力待ちを入れる
  421.           #return 1
  422.     #    end
  423.     #  end
  424.     #when 'S'                       # \S[n]  (スピード変更)
  425.     #  text.sub!(/\[([0-9]+)\]/, "")
  426.     #  @type_wait = $1.to_i
  427.     #  return 2
  428.     when 'O'                       # \O 文字を透明にする。
  429.       text.sub!(/\[([0-9]+)\]/, "")
  430.       contents.font.color.alpha = $1.to_i
  431.       #return 2
  432.     when 'D' #\D 文字に影をつける
  433.       contents.font.shadow ^= true
  434.     #when '18'
  435.     #  name = ($game_temp.last_gain_holder.name rescue "")
  436.     #  update_message_type_draw_at(name)
  437.     #when '19'
  438.     #  item = ($game_temp.last_gain_material.item rescue nil)
  439.     #  draw_item_name(item, @contents_x, @contents_y)
  440.     #  @contents_x += 196
  441.     else
  442.       super
  443.     end
  444.  
  445.   end
  446. #=end
  447.   #--------------------------------------------------------------------------
  448.   # ● 改ページ処理
  449.   #--------------------------------------------------------------------------
  450.   alias xrxsv2_new_page new_page
  451.   def new_page(text, pos)
  452.     xrxsv2_new_page(text, pos)
  453.     update_charpop_window
  454.   end
  455.   #--------------------------------------------------------------------------
  456.   # ● 改行位置の取得
  457.   #--------------------------------------------------------------------------
  458.   #def new_line_x
  459.   #  $game_message.face_name.empty? ? 0 : 112
  460.   #end
  461.   #--------------------------------------------------------------------------
  462.   # ● 改行処理
  463.   #--------------------------------------------------------------------------
  464.   alias xrxsv2_new_line_x new_line_x
  465.   def new_line
  466.     xrxsv2_new_line
  467.     set_align
  468.   end
  469.   #--------------------------------------------------------------------------
  470.   # 位置揃え
  471.   #--------------------------------------------------------------------------
  472.   def set_align
  473.     w = @line_widths[@line_count].to_i
  474.     a = @line_aligns[@line_count]
  475.     case a
  476.     when CENTER
  477.       @contents_x = @contents_x + ((contents.width - @contents_x) - w) / 2
  478.     when RIGHT
  479.       @contents_x = contents.width - w
  480.     end
  481.   end
  482.   #--------------------------------------------------------------------------
  483.   # ● ファイバーのメイン処理 ☆再定義
  484.   #--------------------------------------------------------------------------
  485.   def fiber_main
  486.     $game_message.visible = true
  487.     update_background
  488.     update_placement
  489.     loop do
  490.       process_all_text if $game_message.has_text?
  491.       process_input
  492.       $game_message.clear
  493.       @gold_window.close
  494.       process_hold #ホールドウィンドウの処理。
  495.       Fiber.yield
  496.       break unless text_continue?
  497.     end
  498.     close_and_wait
  499.     $game_message.visible = false
  500.     @fiber = nil
  501.   end
  502.   #--------------------------------------------------------------------------
  503.   # 定数
  504.   #--------------------------------------------------------------------------
  505.   AUTO   = 0
  506.   LEFT   = 1
  507.   CENTER = 2
  508.   RIGHT  = 3
  509. end
  510. #==============================================================================
  511. # アクティブイベント取得
  512. #==============================================================================
  513. class Game_Interpreter
  514.   attr_reader   :event_id
  515. end
  516.  
  517.  
  518. #==============================================================================
  519. # 各種機能の追加 - キャラポップ/ネーム/ホールド
  520. #==============================================================================
  521. class Window_Message < Window_Base
  522.   #--------------------------------------------------------------------------
  523.   # ● カーソルの更新 *
  524.   #--------------------------------------------------------------------------
  525.   def update_cursor
  526.     if [url=home.php?mod=space&uid=370741]@Index[/url] >= 0
  527.       x = ($game_message.face_name.empty? ? 0 : 112)
  528.       y = ($game_message.choice_start + @index) * WLH - 1
  529.       w = contents.width - x
  530.       if self.pop_character != nil
  531.         x += 28
  532.         w -= 20
  533.       end
  534.       self.cursor_rect.set(x, y, w, WLH)
  535.     else
  536.       self.cursor_rect.empty
  537.     end
  538.   end
  539.   #--------------------------------------------------------------------------
  540.   # キャラクターの取得
  541.   #   parameter : パラメータ
  542.   #--------------------------------------------------------------------------
  543.   def get_character(parameter)
  544.     # パラメータで分岐
  545.     case parameter
  546.     when -1  # プレイヤー
  547.       return $game_player
  548.     when 0  # 現在アクティブなイベント
  549.       id = $game_map.interpreter.event_id
  550.       events = $game_map.events
  551.       return events == nil ? nil : events[id]
  552.     else  # 特定のイベント
  553.       events = $game_map.events
  554.       return events == nil ? nil : events[parameter]
  555.     end
  556.   end
  557.   #--------------------------------------------------------------------------
  558.   # (メッセージ終了時)ホールドの処理
  559.   #--------------------------------------------------------------------------
  560.   def process_hold
  561.     if @window_hold
  562.       @held_windows.push(Window_Copy.new(self))
  563.       @held_windows.push(Window_Copy.new(@name_window))
  564.       @held_windows.push(Sprite_Copy.new(@name_sprite))
  565.       @held_windows.push(Sprite_Copy.new(@back_sprite))
  566.       for sprite in @extra_sprites
  567.         next if sprite.disposed?
  568.         @held_windows.push(Sprite_Copy.new(sprite))
  569.       end
  570.       @extra_sprites.clear
  571.       self.openness = 0
  572.       #@name_window.openness = 0
  573.       @back_sprite.visible = false
  574.     else
  575.       @held_windows.each {|object| object.dispose}
  576.       @held_windows.clear
  577.     end
  578.     #@name_window.close
  579.     #@name_sprite.visible = false
  580.   end
  581.   #--------------------------------------------------------------------------
  582.   # キャラポップ位置の設定と取得
  583.   #--------------------------------------------------------------------------
  584.   def pop_character=(character_id)
  585.     @pop_character = character_id
  586.   end
  587.   def pop_character
  588.     return @pop_character
  589.   end
  590.   #--------------------------------------------------------------------------
  591.   # キャラポップ時のウィンドウリサイズ
  592.   #--------------------------------------------------------------------------
  593.   def reszie_window_for_pop
  594.     #キャラポップ
  595.     if self.pop_character != nil
  596.       max_x = @line_widths.max.to_i
  597.       n  = max_x + 32
  598.       n += $game_message.face_name.empty? ? 0 : 122
  599.       m  = $game_message.face_name.empty? ? 0 : 96
  600.       w  = @name_sprite.bitmap.width
  601.       #self.width  = [n, w].max
  602.       self.width  = max_width
  603.       #self.height = [@lines_max * line_height, m].max + 32
  604.       self.height = [@all_texts.size * line_height, m].max + 32
  605.       create_contents
  606.       update_charpop_window
  607.     elsif @info_mode
  608.       @line_aligns[0] = CENTER
  609.       self.x = - 8
  610.       self.width = Graphics.width + 16
  611.       self.height = 56
  612.       create_contents
  613.     else
  614.       self.x = 0
  615.       self.width  = Graphics.width
  616.       self.height = MAX_LINE * line_height + 32
  617.       update_placement #位置情報修正。
  618.       create_contents
  619.     end
  620.   end
  621.   #--------------------------------------------------------------------------
  622.   # ● 背景スプライトの作成
  623.   #--------------------------------------------------------------------------
  624.   alias xrxsv2_create_back_sprite create_back_sprite
  625.   def create_back_sprite
  626.     xrxsv2_create_back_sprite
  627.     @back_sprite.zoom_x = 1.0 * Graphics.width / @back_sprite.bitmap.width
  628.     @name_window = Window_Base.new(0,0,112,36)
  629.     @name_window.visible = false
  630.     @name_sprite = Sprite.new
  631.     @name_sprite.bitmap = Bitmap.new(32,32)
  632.     @name_sprite.visible = false
  633.     self.x = self.x
  634.     self.y = self.y
  635.     self.z = self.z
  636.     @held_windows = []
  637.     @extra_sprites = []
  638.   end
  639.   #--------------------------------------------------------------------------
  640.   # ● 背景スプライトの解放
  641.   #--------------------------------------------------------------------------
  642.   alias xrxsv2_dispose_back_sprite dispose_back_sprite
  643.   def dispose_back_sprite
  644.     xrxsv2_dispose_back_sprite
  645.     @name_window.dispose if @name_window != nil #メニュー画面を出そうとするとエラー?
  646.     @name_sprite.dispose if @name_sprite != nil
  647.     for window in @held_windows
  648.       window.dispose
  649.     end
  650.   end
  651.   #--------------------------------------------------------------------------
  652.   # ● 背景スプライトの更新
  653.   #--------------------------------------------------------------------------
  654.   alias xrxsv2_update_back_sprite update_back_sprite
  655.   def update_back_sprite
  656.     @name_window.update
  657.     xrxsv2_update_back_sprite
  658.     update_charpop_window
  659.   end
  660.   #--------------------------------------------------------------------------
  661.   # ウィンドウの位置と不透明度の設定 (キャラポップ)
  662.   #--------------------------------------------------------------------------
  663.   def update_charpop_window
  664.     if self.pop_character
  665.       character = get_character(self.pop_character)
  666.       return if character == nil
  667.       # [X座標]
  668.       n = self.width / 2
  669.       n = [n, @name_skin.width + 16].max if @current_name != nil
  670.       w = @name_sprite.bitmap.width
  671.       x = character.screen_x - [[n, w].max, self.width - 32].min
  672.       # [Y座標]
  673.       if self.pop_character == 0 and POP_DIRECTION #イベントの方向を考慮。
  674.         if character.direction == 2 #下向き
  675.           @position = 0 #上にポップ
  676.         elsif character.direction == 8 #上向き
  677.           @position = 2 #下にポップ
  678.         end
  679.       end
  680.       case @position
  681.       when 0
  682.         y = character.screen_y - CHARPOP_HEIGHT - self.height
  683.       else
  684.         y = character.screen_y + 16
  685.       end
  686.       x_max = Graphics.width - 4 - self.width
  687.       x_min = 4
  688.       y_max = Graphics.height - self.height
  689.       y_min = 4
  690.       self.x = [[x, x_max].min, x_min].max
  691.       self.y = [[y, y_max].min, y_min].max
  692.     end
  693.   end
  694.   #--------------------------------------------------------------------------
  695.   # 位置の連動
  696.   #--------------------------------------------------------------------------
  697.   def x=(n)
  698.     super
  699.     if @name_window
  700.       @name_window.x = n + NAME_WINDOW_OFFSET_X
  701.       @name_sprite.x = n + NAME_WINDOW_OFFSET_X + 8
  702.     end
  703.   end
  704.   def y=(n)
  705.     super
  706.     if @name_window
  707.       @name_window.y = n + NAME_WINDOW_OFFSET_Y
  708.       @name_sprite.y = n + NAME_WINDOW_OFFSET_Y + 2
  709.     end
  710.   end
  711.   def z=(n)
  712.     super
  713.     if @name_window
  714.       @name_window.z = n + 11#1 テールの上に表示されるので、Zを水増しする。
  715.       @name_sprite.z = n + 12#2
  716.     end
  717.   end
  718.   #--------------------------------------------------------------------------
  719.   # ● ファイバーのメイン処理
  720.   #--------------------------------------------------------------------------
  721.   def fiber_main_namewin
  722.     fiber_main_namewin_default
  723.     @name_window.openness = 0
  724.     @name_sprite.bitmap.clear
  725.     $name = ""
  726.   end
  727.   alias :fiber_main_namewin_default :fiber_main
  728.   alias :fiber_main :fiber_main_namewin
  729. end
  730. #==============================================================================
  731. # 伸縮対応
  732. #==============================================================================
  733. class Window_Message < Window_Base
  734.   #--------------------------------------------------------------------------
  735.   # ● ウィンドウの背景と位置の設定 [再定義]
  736.   #--------------------------------------------------------------------------
  737.   def reset_window
  738.     @background = $game_message.background
  739.     @position = $game_message.position
  740.     if @background == 0   # 通常ウィンドウ
  741.       self.opacity = 255
  742.     else                  # 背景を暗くする、透明にする
  743.       self.opacity = 0
  744.     end
  745.     case @position
  746.     when 0  # 上
  747.       self.y = 0
  748.       @gold_window.y = 360
  749.     when 1  # 中
  750.       self.y = (Graphics.height - self.height) / 2
  751.       @gold_window.y = 0
  752.     when 2  # 下
  753.       self.y = Graphics.height - self.height
  754.       @gold_window.y = 0
  755.     end
  756.   end
  757. end
  758. #==============================================================================
  759. # □ Window_Copy
  760. #------------------------------------------------------------------------------
  761. #   指定のウィンドウのコピーを作成します。
  762. #==============================================================================
  763. class Window_Copy < Window_Base
  764.   #--------------------------------------------------------------------------
  765.   # ○ オブジェクト初期化
  766.   #--------------------------------------------------------------------------
  767.   def initialize(window)
  768.     super(window.x, window.y, window.width, window.height)
  769.     self.contents = window.contents.dup unless window.contents.nil?
  770.     self.opacity = window.opacity
  771.     self.back_opacity = window.back_opacity
  772.     self.z = window.z - 3
  773.     self.visible = window.visible
  774.   end
  775. end
  776. #==============================================================================
  777. # □ Sprite_Copy
  778. #------------------------------------------------------------------------------
  779. #   指定のスプライトのコピーを作成します。
  780. #==============================================================================
  781. class Sprite_Copy < Sprite
  782.   #--------------------------------------------------------------------------
  783.   # ○ オブジェクト初期化
  784.   #--------------------------------------------------------------------------
  785.   def initialize(sprite)
  786.     super()
  787.     self.bitmap = sprite.bitmap.dup unless sprite.bitmap.nil?
  788.     self.opacity = sprite.opacity
  789.     self.x = sprite.x
  790.     self.y = sprite.y
  791.     self.z = sprite.z - 3
  792.     self.ox = sprite.ox
  793.     self.oy = sprite.oy
  794.     self.zoom_x = sprite.zoom_x
  795.     self.visible = sprite.visible
  796.   end
  797. end
  798.  
  799.  
  800.  
  801. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  802. #■吹きだしテールの表示ルーチン。
  803. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  804. #==============================================================================
  805. # +++ 「+ふきだし表示」VX +++
  806. # by パラ犬  [url]http://2d6.parasite.jp/[/url]
  807. #      ×
  808. #    row       [url]http://xms.rdy.jp/[/url]
  809. #
  810. # publish 2010/ 3/ 2
  811. # update  -
  812. #
  813. #------------------------------------------------------------------------------
  814. #    ほぼどんなメッセージウィンドウに対しても後付け可能な「ふきだし表示」です。
  815. #  また、テール部分のみの自動追尾機能を持ちます。
  816. #   ふきだし表示をするには、
  817. #  テール用画像「Window-top」「Window-under」を
  818. #  「Graphics/System」フォルダにインポートしておく必要があります。
  819. #==============================================================================
  820. # ■ Window_Message
  821. #==============================================================================
  822. class Window_Message < Window_Base
  823.   #--------------------------------------------------------------------------
  824.   # ● メッセージの開始
  825.   #--------------------------------------------------------------------------
  826.   alias parashelf_update_all_windows update_all_windows
  827.   def update_all_windows
  828.     parashelf_update_all_windows
  829.     update_tail
  830.   end
  831.   #--------------------------------------------------------------------------
  832.   # クローズ [オーバーライド]
  833.   #--------------------------------------------------------------------------
  834.   def close
  835.     super
  836.     del_tail
  837.     @name_window.close if @name_window != nil #ネームウィンドウのクローズ動作。
  838.   end
  839.   #--------------------------------------------------------------------------
  840.   # ● 背景スプライトの更新
  841.   #--------------------------------------------------------------------------
  842.   alias parashelf_update_back_sprite update_back_sprite
  843.   def update_back_sprite
  844.     parashelf_update_back_sprite
  845.     update_tail
  846.   end
  847.   #--------------------------------------------------------------------------
  848.   # ○ フレーム更新 (ふきだしテールの更新)
  849.   #--------------------------------------------------------------------------
  850.   def update_tail
  851.     # ふきだしモードではイベントの動きに追従
  852.     if $mes_id != nil and @tail != nil
  853.       tale_pos = get_tale_pos
  854.       @tail.x = tale_pos[0]
  855.       @tail.y = tale_pos[1]
  856.       update_tail_bitmap
  857.     end
  858.   end
  859.   ##--------------------------------------------------------------------------
  860.   # ○ ふきだしテールの画像を更新。
  861.   #--------------------------------------------------------------------------
  862.   def update_tail_bitmap
  863.     skin = "Window"
  864.     if $win_x != nil
  865.       if $win_x > 0
  866.         @tail.bitmap = Cache.system(skin + "-right")
  867.       elsif  $win_x < 0
  868.         @tail.bitmap = Cache.system(skin + "-left")
  869.       else
  870.         case @position
  871.         when 0  # 上
  872.           @tail.bitmap = Cache.system(skin + "-top")
  873.         when 2  # 下
  874.           @tail.bitmap = Cache.system(skin + "-under")
  875.         end
  876.       end
  877.     else
  878.       case @position
  879.       when 0  # 上
  880.         @tail.bitmap = Cache.system(skin + "-top")
  881.       when 2  # 下
  882.         @tail.bitmap = Cache.system(skin + "-under")
  883.       end
  884.     end
  885.     # 可視状態
  886.     if self.visible == true
  887.       @tail.visible = self.openness == 255
  888.     else
  889.       @tail.visible = false
  890.     end
  891.   end
  892.   #--------------------------------------------------------------------------
  893.   # ○ テールの位置を計算
  894.   #--------------------------------------------------------------------------
  895.   def get_tale_pos
  896.     if defined?($game_system.show_stand_picture) #A1立ち絵スクリプトを入れている。
  897.       if $game_system.show_stand_picture #立ち絵on
  898.         pos = get_tale_pos_stand_pic
  899.       else
  900.         pos = get_tale_pos_normal
  901.       end
  902.     else
  903.       pos = get_tale_pos_normal
  904.     end
  905.     return pos
  906.   end
  907.   #--------------------------------------------------------------------------
  908.   # ○ テールの位置を計算/立ち絵使用時。※NAME_CHANGEの編集必須。
  909.   #--------------------------------------------------------------------------
  910.   def get_tale_pos_stand_pic
  911.     if $game_message.face_name != ""  and @tail != nil
  912.       name = A1_System::StandPicture::NAME_CHANGE[$game_message.face_name]
  913.       chara = name[$game_message.face_index][0]
  914.       if @stand_pic[chara] != nil #立ち絵無しの場合通常通り。
  915.         x = @stand_pic[chara].pic_sprite.x + @stand_pic[chara].pic_sprite.width / 2
  916.         y = get_tale_pos_normal_updown
  917.         update_tail_bitmap
  918.       else
  919.         return get_tale_pos_normal #立ち絵が見つからない場合は通常通り。
  920.       end
  921.     else
  922.       return get_tale_pos_normal #立ち絵が見つからない場合は通常通り。
  923.     end
  924.     return [x,y]
  925.   end
  926.   #--------------------------------------------------------------------------
  927.   # ○ テールの位置を計算/立ち絵未使用時。
  928.   #--------------------------------------------------------------------------
  929.   def get_tale_pos_normal
  930.     if $mes_id == (-2) #左右の場合は高さはウィンドウ中心。上下ならやや左に配置。
  931.       if $win_x != nil
  932.         if $win_x > 0
  933.           x = $win_x - @tail.width / 2
  934.           y = self.y + self.height / 2 - @tail.height / 2
  935.         elsif $win_x < 0
  936.           x = self.width - @tail.width / 2
  937.           y = self.y + self.height / 2 - @tail.height / 2
  938.         else
  939.           x = MINAS_TWE_X_POS
  940.           y = get_tale_pos_normal_updown
  941.         end
  942.       else
  943.         x = MINAS_TWE_X_POS
  944.         y = get_tale_pos_normal_updown
  945.       end
  946.     elsif $mes_id <= (-3) #左右の場合は高さはウィンドウ中心。上下ならやや左に配置。
  947.       if $win_x != nil
  948.         if $win_x > 0
  949.           x = $win_x - @tail.width / 2
  950.           y = self.y + self.height / 2
  951.         elsif $win_x < 0
  952.           x = self.width - @tail.width / 2
  953.           y = self.y + self.height / 2
  954.         else
  955.           x = MINAS_THREE_X_POS
  956.           y = get_tale_pos_normal_updown
  957.         end
  958.       else
  959.         x = MINAS_THREE_X_POS
  960.         y = get_tale_pos_normal_updown
  961.       end
  962.     else
  963.       character = get_character($mes_id)
  964.       x = [[character.screen_x - 16, self.x].max, self.x + self.width - 32].min
  965.       if $win_x != nil
  966.         if $win_x > 0
  967.           x = $win_x - @tail.width / 2
  968.           y = character.screen_y
  969.         elsif $win_x < 0
  970.           x = self.width
  971.           y = character.screen_y
  972.         else
  973.           y = get_tale_pos_normal_updown
  974.         end
  975.       else
  976.         y = get_tale_pos_normal_updown
  977.       end
  978.     end
  979.     return [x, y]
  980.   end
  981.   #--------------------------------------------------------------------------
  982.   # ○ テールが上下の時、かつ[-2][-3]でない時のy座標の取得。
  983.   #--------------------------------------------------------------------------
  984.   def get_tale_pos_normal_updown
  985.     case @position
  986.     when 0
  987.       y = self.y + self.height - @tail.height / 2
  988.     else
  989.       y = self.y - @tail.height / 2
  990.     end
  991.     return y
  992.   end
  993.   #--------------------------------------------------------------------------
  994.   # ○ ふきだしを破棄
  995.   #--------------------------------------------------------------------------
  996.   def del_tail
  997.     if @tail != nil
  998.       @tail.dispose
  999.       @tail = nil
  1000.     end
  1001.   end
  1002. end
  1003. #
  1004. # ▼▲▼ XRXS 9拡張CO-X. ふきだし自動設定 ▼▲▼
  1005. #==============================================================================
  1006. # ■ Window_Message
  1007. #==============================================================================
  1008. class Window_Message < Window_Base
  1009.   #--------------------------------------------------------------------------
  1010.   # ○ ポップキャラクターの設定
  1011.   #--------------------------------------------------------------------------
  1012.   def pop_character=(character_id)
  1013.     @pop_character = character_id
  1014.     $mes_id = character_id
  1015.   end
  1016.   #--------------------------------------------------------------------------
  1017.   # ○ テールキャラクターの設定
  1018.   #--------------------------------------------------------------------------
  1019.   def tail_character=(character_id)
  1020.     #@pop_character = character_id
  1021.     $mes_id = character_id
  1022.   end
  1023. end
  1024.  
  1025. #==============================================================================
  1026. # ■ Scene_Menu
  1027. #------------------------------------------------------------------------------
  1028. #  メニューを開いてからウィンドウが出るとネームウィンドウが表示される不具合修正。
  1029. #==============================================================================
  1030. #class Scene_Menu < Scene_MenuBase
  1031. #  def terminate_hukidasi_menyu
  1032. #    @name_window.openness = 0 if @name_window != nil
  1033. #    terminate_hukidasi_menyu_default
  1034. #  end
  1035. #  alias :terminate_hukidasi_menyu_default :terminate
  1036. #  alias :terminate :terminate_hukidasi_menyu
  1037. #end
  1038.  
  1039. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1040. #■ウィンドウ非表示ルーチン
  1041. #■吹きだしテールとネームウィンドウに対応。
  1042. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1043. #==============================================================================
  1044. # L(キーボードのQ)を押すと、メッセージウィンドウを表示?非表示
  1045. #==============================================================================
  1046. class Window_Message < Window_Base
  1047.   def update_winoff
  1048.     unless $game_party.in_battle #バトル中は無効。
  1049.       if Input.trigger?(Input::L)
  1050.         if self.visible == true
  1051.           self.visible = false
  1052.           @tail.visible = false if @tail != nil
  1053.         else
  1054.           self.visible = true
  1055.         end
  1056.         if @name_window != nil
  1057.           if @name_window.visible == false and $name != nil and $name != ""
  1058.             @name_window.visible = true
  1059.             @name_sprite.visible = true
  1060.           else
  1061.             @name_window.visible = false
  1062.             @name_sprite.visible = false
  1063.           end
  1064.         end
  1065.       elsif Input.trigger?(Input::C) or Input.trigger?(Input::B)
  1066.         self.visible = true if self.visible == false
  1067.         @tail.visible = true if @tail != nil and @tail.visible == false
  1068.         if @name_window != nil and $name != nil
  1069.           if $name != ""
  1070.             @name_window.visible = true
  1071.             @name_sprite.visible = true
  1072.           end
  1073.         end
  1074.       end
  1075.     end
  1076.     update_winoff_default
  1077.   end
  1078.   alias :update_winoff_default :update
  1079.   alias :update :update_winoff
  1080. end
  1081.  
  1082.  
  1083. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1084. #■ウィンドウ表示位置指定ルーチン
  1085. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1086. #===========================================================================
  1087. #イベントコマンド「スクリプト」を使い、
  1088. #$win_x=100 
  1089. #$win_y=100
  1090. #と入力すれば、ウィンドウを(100、100)の位置に表示します。
  1091. #使わない時は
  1092. #$win_x=nil
  1093. #などとnilを入力しておいてください。
  1094. #===========================================================================
  1095. class Window_Message < Window_Base
  1096.   #--------------------------------------------------------------------------
  1097.   # ● ウィンドウの背景と位置の設定 [再定義]
  1098.   #--------------------------------------------------------------------------
  1099.   def update_placement_position
  1100.     update_placement_position_default
  1101.     if $win_x != nil
  1102.       if $win_x > 0
  1103.         self.x = $win_x
  1104.         self.width -= $win_x
  1105.       else
  1106.         self.x = 0
  1107.         self.width += $win_x
  1108.       end
  1109.     end
  1110.     if $win_y != nil
  1111.       self.y = $win_y
  1112.     end
  1113.   end
  1114.   alias_method :update_placement_position_default, :update_placement
  1115.   alias_method :update_placement, :update_placement_position
  1116. end
  1117.  
  1118.  
  1119. #==============================================================================
  1120. # ■ SceneManager
  1121. #------------------------------------------------------------------------------
  1122. #  シーン遷移のさい、テールを破棄する。
  1123. #==============================================================================
  1124. module SceneManager
  1125.   #--------------------------------------------------------------------------
  1126.   # ● 呼び出し
  1127.   #--------------------------------------------------------------------------
  1128.   def self.call_sceman_hukidasi(scene_class)
  1129.     if defined?(self.scene.message_window)
  1130.       self.scene.message_window.del_tail if self.scene.message_window.tail != nil
  1131.     end
  1132.     @stack.push(@scene)
  1133.     @scene = scene_class.new
  1134.   end
  1135.   #--------------------------------------------------------------------------
  1136.   # ● クラスメソッドのエイリアス
  1137.   #--------------------------------------------------------------------------
  1138.   class << self
  1139.     alias :call_sceman_hukidasi_default :call
  1140.     alias :call :call_sceman_hukidasi
  1141.   end
  1142. end
  1143.  
  1144. #==============================================================================
  1145. # ■ Scene_Map
  1146. #------------------------------------------------------------------------------
  1147. #  戦闘トランジションのさい、テールを破棄。
  1148. #==============================================================================
  1149. class Scene_Map < Scene_Base
  1150.   attr_accessor :message_window
  1151.   #--------------------------------------------------------------------------
  1152.   # ● 戦闘前トランジション実行
  1153.   #--------------------------------------------------------------------------
  1154.   def perform_battle_transition_hukidasi
  1155.     @message_window.del_tail #テールの破棄
  1156.     perform_battle_transition_hukidasi_default
  1157.   end
  1158.   alias_method :perform_battle_transition_hukidasi_default, :perform_battle_transition
  1159.   alias_method :perform_battle_transition, :perform_battle_transition_hukidasi
  1160. end


有没有好心人士能修复这个BUG?感激不尽!

Lv5.捕梦者 (暗夜天使)

只有笨蛋才会看到

梦石
1
星屑
21636
在线时间
9415 小时
注册时间
2012-6-19
帖子
7118

开拓者短篇九导演组冠军

来自 4楼
发表于 2013-8-7 20:50:50 | 只看该作者
咦?531行开始怎么少了几个字符……又是论坛的BUG!?

请自己去原地址复制脚本:
http://tamurarpgvx.blog137.fc2.com/blog-entry-148.html
(大陆地区需要翻……编码需要转换成日文…………)
回复 支持 反对

使用道具 举报

Lv5.捕梦者 (暗夜天使)

只有笨蛋才会看到

梦石
1
星屑
21636
在线时间
9415 小时
注册时间
2012-6-19
帖子
7118

开拓者短篇九导演组冠军

2
发表于 2013-8-7 19:56:21 | 只看该作者
替换掉你原来的脚本即可,如果你脚本有做过什么修改的话,请在新脚本里重新修改……
  1. =begin
  2. 吹きだしウィンドウVXAce

  3. 2011.12.25 tamura改造
  4. 2013年06月20日 改訂

  5. ※このスクリプトは、ちいさな本屋様(http://xrxs.at-ninja.jp/)
  6. が製作されたものをtamuraがACE用に改造した物です。

  7. 原版:
  8. ▽▽▽ XRXSv2. メッセージ表示フルグレードアップVX ▽▽▽
  9. publish 2010/ 3/ 2
  10. update  - 11/ 1/10a


  11. ※※警告※※
  12. THINK_TAIL や SYSTEM_LINE の機能を使わない場合は、
  13. これらに使用していないスイッチを割り当てておいてください。


  14. 「立ち絵機能」をONにしている時に、立ち絵を表示せずに、ウィンドウ位置を
  15. 右か左に変更した時、テールのY座標がずれるようです。
  16. 原因は調査中です。立ち絵を表示しない時は、イベントコマンド「注釈」で、
  17. 「立ち絵表示 off」と記述して立ち絵機能をOFFにしておいてください。

  18. ●機能一覧
  19. ・イベントコマンド「スクリプト」で、$win_x $win_yに値を入力すると、
  20.  ($win_x 、$win_y)の位置にウィンドウを表示する。画面左上が(0,0)。

  21. ・キーボードのQ(装備画面で前のキャラに戻るボタン)を押すと、
  22.  ウィンドウが消える。Qか決定、キャンセルキーで元に戻る。

  23. ・イベントコマンド「スクリプト」で、
  24. $name_right = true
  25. と入力すれば、ネームウィンドウがウィンドウの右に移ります。
  26. 元に戻すには、イベントコマンド「スクリプト」で
  27. $name_right = false
  28. と入力すれば、左側に戻ります。


  29. ・SYSTEM_LINEに指定したスイッチをON/OFFにすると、
  30. 文章の1行目を表示しない/表示する を切り替えることができます。


  31. ・文章のどこでもいいので、以下の表記を行う。
  32. ・ \name[] : []の中の文字を、ウィンドウ左上に小さく表示する。
  33.  表示させる名前には、制御文字 \V、\P、\N、\G が使用可能。

  34. \h[-1] : プレーヤーの上にウィンドウをポップ。
  35. \h[0] : 現在アクティブのイベントの上にウィンドウをポップ。
  36. \h[1] : IDが1番のイベントの上にウィンドウをポップする。
  37. hは大文字でもOK。

  38. ポップアップを行うとき、
  39. 「メッセージの表示」の設定で、ウィンドウの「表示位置」によって、
  40. ウィンドウがイベントの上に出るか下に出るかを設定できます。

  41. ウィンドウは通常の大きさのまま、テールだけ表示したい場合は、
  42. \t[-2] : ウィンドウが上下に表示される時は、X座標をMINAS_TWE_X_POSで固定。
  43.            $win_x で左右に表示される時は、Y座標がウィンドウの中心やや下で固定。
  44. \t[-3] : ウィンドウが上下に表示される時は、X座標をMINAS_THREE_X_POSで固定。
  45.            $win_x で左右に表示される時は、Y座標がウィンドウの中心やや下で固定。
  46. \t[-1] : プレーヤーの上に向かってテール表示。
  47. \t[0] : 現在アクティブのイベントに向かってテール表示。
  48. \t[1] : IDが1番のイベントの上に向かってテール表示。

  49. その他
  50. \O[128] : 文字を透明にする。128はalphaの値で、0で透明、255で通常。
  51. \D : 文字に影をつける
  52. \hold : メッセージ表示の、最後の文章に限定。
  53.      メッセージが終わっても、ウィンドウを閉じずに残します。
  54.      他のメッセージが表示されて次へ送られる時に消えます。
  55.      なお、ホールドされているウィンドウは、Qボタンで消せません。

  56. \skin[skin01] : ウィンドウスキンを、skin01.png に変更します。
  57.     VXACEのデフォルトに戻したい場合は \skin[Window] です。
  58.     スキンのファイルは必ず Graphics\System フォルダに入れておいてください。

  59. \tone[-34,0,68,0] : ウィンドウの色を変更します。
  60.   この例だとVXACEのデフォルトです。
  61.   データベースのシステムタブで、色を調べられます。
  62.   4つ目の値はgrayと呼ばれ、通常は0です。
  63.     




  64. ●その他
  65. ・ACEに標準装備されている機能は通常通り使用できます。
  66. ・A1殿(http://a1tktk.web.fc2.com/)の立ち絵スクリプトに対応しています。
  67.  このスクリプトの上に「RGSS3用A1共通処理」
  68.  このスクリプトの下に「空メッセージでウィンドウを開かない」「立ち絵表示」を
  69.  配置して下さい。
  70.  残念ながら、「ネームウィンドウ」は使えません。上記\nameをお使いください。
  71. ※立ち絵を表示しない時は、注釈で「立ち絵表示 off」とした方が無難です。
  72. ・イベントの下から話しかけたら上へポップ、上から話しかけたら下へポップするという
  73.  機能を追加。カスタマイズポイントで POP_DIRECTION = ture と変更のこと。


  74. ●廃止機能 
  75. ・\Iがすでに使われているので、イタリック文字変換を廃止。
  76. ・スピード変更、改行、最後に入手したアイテムの表示を、ACE化にともない廃止。


  77. 【改訂履歴】
  78. 2012.01.10  ・ウィンドウを消したまま次のウィンドウを自動で表示すると、
  79.               ネームウィンドウが表示されるのを修正。
  80. 2012.01.11  ・ネームウィンドウが出しっぱなしになるのを修正。
  81. 2012.01.12  ・メニューを出してから決定ボタンを押すとネームウィンドウがでる不具合の修正。
  82. 2012.02.01 ・ネームウィンドウのオープン&クローズのタイミングを変更。
  83.       ・hold機能を追加。
  84. 2012.02.10 ・キャラポップした時、一行ずつしか表示されない不具合を修正。
  85. 2012.02.14 ・アイテム名などの文字数が正常に取得できなかったのを修正。
  86. 2012.02.21 ・話しかけられた方向によって、ポップ方向を変えられるようにした。
  87. 2012.02.25 ・すべてのシーン遷移の際はテールを破棄(イベント中でショップ起動など)
  88. 2012.02.28 ・エスケープ文字の処理が上手くいかない問題について暫定対策。
  89. 2012.03.05 ・微妙にウィンドウ幅が足りない時があったので、僅かにウィンドウ幅追加。
  90. 2012.03.14 ・ポップアップ時の顔グラ表示に対応。
  91. 2012.04.20 ・吹きだしが大型になると選択肢が入りきらない不具合の修正。
  92.             ・ネームウィンドウが残ったままシーン遷移があると、ネームウィンドウが
  93.              閉じない不具合の修正。
  94. 2012.05.02  ・名前には、制御文字 \V、\P、\N、\G が使用可能。
  95.             ・\V については、2段階の入れ子が使用可能。
  96.             ・ウィンドウ消去機能を、「背景を暗くする」に対応。
  97. 2012.05.09 ・通常の上表示のとき、ネームウィンドウが見切れるので少し下にずらす。
  98. 2012.05.12 ・ネームウィンドウの幅と高さを変更可能にした。
  99.             ・ネームウィンドウの高さを変えると、どんどん下に伸びるのを修正。
  100. 2012.07.15 ・イベントコマンドで、$name_right = true と入力すると、
  101.        名前ウィンドウが右に移ります。
  102. 2012.08.26 ・思案型テールへの変更機能追加。
  103.             ・文章の1行目を表示しない機能は、スイッチを使えるようにした。
  104.              (セーブ&ロードに対応していないため)
  105.              なお、従来の$system_line も使用可能。
  106. 2012.10.08 ・ウィンドウスキンおよびウィンドウの色を変更可能にした。
  107. 2012.10.16 ・立ち絵の指定がない時にエラーが起こるのを修正。
  108. 2012.10.17 ・A1殿の立ち絵スクリプトの最新版に対応。
  109. 2013.06.20 ・上記の説明が間違っている個所があったので修正。

  110. =end

  111. #==============================================================================
  112. # カスタマイズポイント
  113. #==============================================================================
  114. #=begin
  115. class Window_Message < Window_Base
  116.   #
  117.   # 基本行数
  118.   #
  119.   MAX_LINE = 4
  120.   #
  121.   # \p[] - キャラポップの高さ
  122.   #
  123.   CHARPOP_HEIGHT = 40
  124.   #
  125.   #
  126.   #\name[]で表示されるウィンドウのX座標、Y座標、幅、高さ の変更値。
  127.   #座標は、メッセージウィンドウの左上端が原点。名前はウィンドウ中央に表示。
  128.   NAME_WINDOW_OFFSET_X =   0
  129.   NAME_WINDOW_OFFSET_Y = -24
  130.   NAME_WINDOW_OFFSET_WIDTH = 0
  131.   NAME_WINDOW_OFFSET_HIGHT = 5
  132.   
  133.   #
  134.   #
  135.   MINAS_TWE_X_POS = 100 # $t[-2]のときの、テールのX座標。
  136.   MINAS_THREE_X_POS = 444 # $t[-3]のときの、テールのX座標。
  137.   
  138.   POP_DIRECTION = false #イベントの方向を考慮。
  139.   
  140.   THINK_TAIL = 101 #この番号のゲームスイッチがONの時、思案型テールになります。
  141.   SYSTEM_LINE = 102 #この番号のゲームスイッチがONの時、最初の1行を表示しません。
  142.   
  143. end

  144. #(メモ)上表示で、ネームウィンドウのために少し下にずらす機能は、
  145. #再定義したupdate_placement_positionのところ。

  146. #==============================================================================
  147. # 参照機能
  148. #==============================================================================
  149. class Game_Temp
  150.   attr_accessor :last_gain_material
  151.   attr_accessor :last_gain_holder
  152. end

  153. class Window_Message < Window_Base
  154.   #--------------------------------------------------------------------------
  155.   # ● 改ページ処理
  156.   #--------------------------------------------------------------------------
  157.   def new_page(text, pos)
  158.     contents.clear
  159.     draw_face($game_message.face_name, $game_message.face_index, 0, 0)
  160.     reset_font_settings
  161.     pos[:x] = new_line_x
  162.    
  163.     #変更部分。システム用の一行目を表示しない。
  164.     if $system_line != true and $game_switches[SYSTEM_LINE] != true
  165.       pos[:y] = 0
  166.     else
  167.       if $game_party.in_battle
  168.         pos[:y] = 0
  169.       else
  170.         pos[:y] = 0 - line_height #最初の一行を表示しない。
  171.       end
  172.     end

  173.     pos[:new_x] = new_line_x
  174.     pos[:height] = calc_line_height(text)
  175.     clear_flags
  176.   end
  177. end

  178. #==============================================================================
  179. # フルグレードアップベース - 制御文字・基本機能
  180. #==============================================================================
  181. class Window_Message < Window_Base
  182.   attr_accessor :tail
  183.   #--------------------------------------------------------------------------
  184.   # ● 特殊文字の変換 + 準備
  185.   #     変換・消去してもいい部分を処理、フラグのセット。
  186.   #--------------------------------------------------------------------------
  187.   alias xrxsv2_convert_escape_characters convert_escape_characters
  188.   def convert_escape_characters(text)
  189.     #@textsが使いずらいので、ここで別変数に保管。
  190.     @all_texts = []
  191.     str = text.gsub(/\\/) { "\e" }
  192.     @all_texts = str.split("\n")
  193.    
  194.     #この段階で、変数・アクター名を変換してしまう。
  195.     #ネームウィンドウ内の文字を変換するため。
  196.     text = convert_escape_characters_easy(text)
  197.    
  198.     # 初期化
  199.     contents.font.size   = Font.default_size
  200.     contents.font.bold   = Font.default_italic
  201.     contents.font.italic = Font.default_bold
  202.     contents.font.shadow = Font.default_shadow
  203.     @type_wait = 0
  204.     @line_widths = []
  205.     @line_aligns = []
  206.     self.pop_character = nil
  207.     # ウィンドウ保持指定\holdがあるか?
  208.     @window_hold = (text.gsub!(/\\hold/) { "" } != nil)
  209.     # \info
  210.     @info_mode = (text.gsub!(/\\info/) { "" } != nil)
  211.     # 改行削除指定\_があるか?
  212.     if (/\\_(.*?)\x00/.match(@text)) != nil
  213.       $game_message.choice_start -= 1
  214.       text.gsub!(/\\_(.*?)\x00/) { $1.to_s }
  215.     end
  216.     # \name 判定
  217.     if text.sub!(/\\[Nn]ame\[(.*?)\]/) { "" }
  218.       name = $1
  219.       bitmap = @name_sprite.bitmap
  220.       w = [bitmap.text_size(name).width, 1].max + NAME_WINDOW_OFFSET_WIDTH
  221.       bitmap.dispose
  222.       @name_sprite.bitmap = Bitmap.new(w, 32)
  223.       bitmap = @name_sprite.bitmap
  224.       bitmap.draw_text(0, 0, bitmap.width, bitmap.height, name)
  225.       @name_window.width = w + 16
  226.       @name_window.height = bitmap.height + NAME_WINDOW_OFFSET_HIGHT
  227.       @name_window.create_contents
  228.       @name_window.open if @name_window.openness == 0
  229.       if self.visible #名前だけ表示されるのを防止。
  230.         @name_window.visible = true
  231.         @name_sprite.visible = true
  232.       else
  233.         @name_window.visible = false
  234.         @name_sprite.visible = false
  235.       end
  236.     else
  237.       @name_window.visible = false
  238.       @name_sprite.visible = false
  239.       @name_sprite.bitmap.dispose
  240.       @name_sprite.bitmap = Bitmap.new(32,32)
  241.     end
  242.     $name = $1 #あれこれで使うので、ネームウィンドウに表示予定の名前を取得。
  243.     #スキン変更
  244.     if text.sub!(/\\[Ss]kin\[(.*?)\]/) { "" }
  245.       skin = $1
  246.       self.windowskin = Cache.system(skin)
  247.       @name_window.windowskin = Cache.system(skin)
  248.     end
  249.     #ウィンドウトーン変更
  250.     if text.sub!(/\\[Tt]one\[(\-?\d+),(\-?\d+),(\-?\d+),(\-?\d+)\]/) { "" }
  251.       $game_system.window_tone.red = $1.to_f
  252.       $game_system.window_tone.green = $2.to_f
  253.       $game_system.window_tone.blue = $3.to_f
  254.       $game_system.window_tone.gray = $4.to_f
  255.     end
  256.     # キャラボップモード
  257.     if text.gsub!(/\\[Hh]\[-1\]/) { "" }
  258.       self.pop_character = -1
  259.     elsif text.gsub!(/\\[Hh]\[([0-9]+)\]/) { "" }
  260.       self.pop_character = $1.to_i
  261.     elsif text.gsub!(/\\[Hh]/) { "" }
  262.       self.pop_character = 0
  263.     #テール表示モード
  264.     elsif text.gsub!(/\\[Tt]\[-1\]/) { "" }
  265.       self.tail_character = -1
  266.     elsif text.gsub!(/\\[Tt]\[-2\]/) { "" }
  267.       self.tail_character = -2
  268.     elsif text.gsub!(/\\[Tt]\[-3\]/) { "" }
  269.       self.tail_character = -3
  270.     elsif text.gsub!(/\\[Tt]\[([0-9]+)\]/) { "" }
  271.       self.tail_character = $1.to_i
  272.     elsif text.gsub!(/\\[Tt]/) { "" }
  273.       self.tail_character = 0
  274.     else
  275.       self.pop_character = nil
  276.     end
  277.    
  278.     # 制御文字処理
  279.     text = xrxsv2_convert_escape_characters(text)
  280.     text.gsub!(/\\[Ss]\[([0-9]+)\]/i) { "\eS[#{$1}]" }
  281.     text.gsub!(/\\[Oo]\[([0-9]+)\]/i) { "\eO[#{$1}]" }
  282.     text.gsub!(/\\last_holder/i) { "\e18" }
  283.     text.gsub!(/\\last_material/i) { "\e19" }
  284.     text.gsub!(/\\B/) { "\eB" }
  285.     text.gsub!(/\\D/) { "\eD" }
  286.     #text.gsub!(/\\n/) { "\n" }
  287.     #
  288.     # ライン情報の取得
  289.     rxs = ["\x01","\x02","\x03","\x04","\x05","\x06","\x07","\x08",
  290.       /\[([0-9]+)\]/,
  291.       "\x11","\x12","\x13","\x14", "\x15", "\x16", "\x17", "\x18","\x19"]
  292.     lines = text.split("\x00")
  293.     @lines_max = lines.size
  294.     for i in 0...@lines_max
  295.       line = lines[i]
  296.       for rx in rxs
  297.         line.gsub!(rx) {""}
  298.       end
  299.       @line_aligns[i] =
  300.         line.sub!(/\\center/) {""} ? CENTER :
  301.         line.sub!(/\\right/)  {""} ? RIGHT :
  302.                                      AUTO
  303.       # 行の横幅の取得と設定
  304.       cx = text_width_no_escape(line,text) #test
  305.       #cx = contents.text_size(line,text).width
  306.       @line_widths[i] = cx
  307.     end
  308.     # 位置揃え制御文字の削除
  309.     text.gsub!(/\\center/) {""}
  310.     text.gsub!(/\\right/) {""}
  311.     # キャラポップ時のウィンドウリサイズ
  312.     reszie_window_for_pop
  313.    
  314.     del_tail # if @tail != nil
  315.     # $mes_id が空のときと戦闘中はふきだしを表示しない
  316.     if defined?($game_system.show_stand_picture) #立ち絵に対応。
  317.       $mes_id = -1 if $game_system.show_stand_picture == true
  318.     end
  319.     if $mes_id != nil and not $game_party.in_battle
  320.       # ふきだしのテールを描画
  321.       skin = "Window"
  322.       if @background == 0
  323.         #画像の準備
  324.         @tail = Sprite.new
  325.         @tail.visible = false
  326.         # 位置を取得
  327.         tale_pos = get_tale_pos
  328.         if $win_x != nil
  329.           if $win_x > 0
  330.             @tail.bitmap = Cache.system(skin + "-right")
  331.             @tail.x = tale_pos[0]
  332.             @tail.y = tale_pos[1]
  333.             @tail.z = self.z + 1
  334.           elsif  $win_x < 0
  335.             @tail.bitmap = Cache.system(skin + "-left")
  336.             @tail.x = tale_pos[0]
  337.             @tail.y = tale_pos[1]
  338.             @tail.z = self.z + 1
  339.           else
  340.             create_tail_up_under
  341.           end
  342.         else
  343.           create_tail_up_under
  344.         end
  345.         # エクストラスプライトに登録
  346.         @extra_sprites = [] if @extra_sprites.nil?
  347.         @extra_sprites.push(@tail) if @tail != nil
  348.         # 更新
  349.         update_tail
  350.       end
  351.     end

  352.     open_and_wait #リサイズが終わった時点でウィンドウオープン。
  353.    
  354.     return text
  355.   end
  356.   #--------------------------------------------------------------------------
  357.   # ● 制御文字の変換。
  358.   #    変数・パーティ名・アクター名・所持金のみ変換する。
  359.   #    文字「\」はエスケープ文字(\e)に変換。
  360.   #--------------------------------------------------------------------------
  361.   def convert_escape_characters_easy(text)
  362.     result = text.to_s.clone
  363.     result.gsub!(/\\[vV]\[/)          { "\eV\[" }
  364.     result.gsub!(/\\[nN]\[/)          { "\eN\[" }
  365.     result.gsub!(/\\[pP]\[/)          { "\eP\[" }
  366.     result.gsub!(/\\[gG]/)          { "\eG" }
  367.     result.gsub!(/\eV\[(\d+)\]/i) { $game_variables[$1.to_i] }
  368.     result.gsub!(/\eV\[(\d+)\]/i) { $game_variables[$1.to_i] }
  369.     result.gsub!(/\eN\[(\d+)\]/i) { actor_name($1.to_i) }
  370.     result.gsub!(/\eP\[(\d+)\]/i) { party_member_name($1.to_i) }
  371.     result.gsub!(/\eG/i)          { Vocab::currency_unit }
  372.     result
  373.   end
  374.   #--------------------------------------------------------------------------
  375.   # ● 文字の長さを取得する。エスケープ文字は含まない。
  376.   # line : 表示しようとしている全ての文字列。
  377.   # text : その列の文字。
  378.   #--------------------------------------------------------------------------
  379.   def text_width_no_escape(line , text_o)
  380.     add = 5 #微妙に足りないので水増し。
  381.     text = Marshal.load(Marshal.dump(text_o))
  382.     text.gsub!(/\ehold/) { "" }
  383.     text.gsub!(/\einfo/) { "" }
  384.     # 改行削除指定\_があるか?
  385.     if (/\\_(.*?)\x00/.match(@text)) != nil
  386.       $game_message.choice_start -= 1
  387.       text.gsub!(/\\_(.*?)\x00/) { "" }
  388.     end
  389.     # \name 判定
  390.     text.sub!(/\e[Nn]ame\[(.*?)\]/) { "" }
  391.     text.gsub!(/\e[Hh]\[-1\]/) { "" }
  392.     text.gsub!(/\e[Hh]\[([0-9]+)\]/) { "" }
  393.     text.gsub!(/\e[Hh]/) { "" }
  394.     text.gsub!(/\e[Tt]\[-1\]/) { "" }
  395.     text.gsub!(/\e[Tt]\[-2\]/) { "" }
  396.     text.gsub!(/\e[Tt]\[-3\]/) { "" }
  397.     text.gsub!(/\e[Tt]\[([0-9]+)\]/) { "" }
  398.     text.gsub!(/\e[Tt]/) { "" }
  399.     # 制御文字処理
  400.     text.gsub!(/\e[Ss]\[([0-9]+)\]/i) { "" }
  401.     text.gsub!(/\e[Oo]\[([0-9]+)\]/i) { "" }
  402.     text.gsub!(/\elast_holder/i) { "" }
  403.     text.gsub!(/\elast_material/i) { "" }
  404.     #text.gsub!(/\eV/) { "" } #変数に置き換える。
  405.     #text.gsub!(/\eN/) { "" } #名前へ置き換える。
  406.     #text.gsub!(/\eP/) { "" } #名前へ置き換える。
  407.     #text.gsub!(/\eG/) { "" } #金額へ置き換える。
  408.     #text.gsub!(/\eC/) { "" }
  409.     text.gsub!(/\eB/) { "" }
  410.     text.gsub!(/\eD/) { "" }
  411.     if text =~ /\eI/
  412.       loop do
  413.         if str = text.sub!(/\eI\[(\d+)\]/){ "" }
  414.           add += 24
  415.         else
  416.           break
  417.         end
  418.       end
  419.     end
  420.     #text.gsub!(/\\n/) { "\n" }
  421.     text.sub!(/\ecenter/) {""}
  422.     text.sub!(/\eright/)  {""}
  423.     text.gsub!(/\ecenter/) {""}
  424.     text.gsub!(/\eright/) {""}
  425.    
  426.     text = xrxsv2_convert_escape_characters(text)
  427.     basic_width = text_size(text).width + add
  428.     esc = text.scan(/\e(\S)/)
  429.     return ( basic_width - esc.size * (contents.font.size - 4) ) #\eの幅は20?
  430.   end
  431.   #--------------------------------------------------------------------------
  432.   # ● 最も長い列の長さを調べる。エスケープ文字は含まない。
  433.   #--------------------------------------------------------------------------
  434.   def max_width
  435.     text_size = []
  436.     for i in 0 ... @all_texts.size
  437.       text_size.push text_width_no_escape(@all_texts[i],@all_texts[i]) + 20
  438.     end
  439.     return text_size.max
  440.   end
  441.   #--------------------------------------------------------------------------
  442.   # ● 吹きだしテールが上か下の場合の画像を準備。
  443.   #--------------------------------------------------------------------------
  444.   def create_tail_up_under
  445.     skin = "Window"
  446.     tale_pos = get_tale_pos
  447.     case @position
  448.     when 0  # 上
  449.       @tail.bitmap = Cache.system(skin + "-top")
  450.       @tail.x = tale_pos[0]
  451.       @tail.y = tale_pos[1]
  452.       @tail.z = self.z + 1
  453.     when 1  # 中
  454.       @tail.dispose
  455.       @tail = nil
  456.     when 2  # 下
  457.       @tail.bitmap = Cache.system(skin + "-under")
  458.       @tail.x = tale_pos[0]
  459.       @tail.y = tale_pos[1]
  460.       @tail.z = self.z + 1
  461.     end
  462.   end
  463.   #--------------------------------------------------------------------------
  464.   # ● 全テキストの処理
  465.   #--------------------------------------------------------------------------
  466.   def process_all_text
  467.     #open_and_wait #リサイズがあるので、すぐにウィンドウをオープンしない。
  468.     text = convert_escape_characters($game_message.all_text)
  469.     pos = {}
  470.     new_page(text, pos)
  471.     process_character(text.slice!(0, 1), text, pos) until text.empty?
  472.   end
  473.   #--------------------------------------------------------------------------
  474.   # ● メッセージの更新 *
  475.   #--------------------------------------------------------------------------
  476.   def update_message
  477.     @wait_count = @type_wait
  478.     loop do
  479.       c = @text.slice!(/./m)
  480.       case update_message_type(c)
  481.       when 1
  482.         break
  483.       when 2
  484.         next
  485.       end
  486.       break unless @show_fast or @line_show_fast
  487.     end
  488.   end
  489.   #--------------------------------------------------------------------------
  490.   # 一文字の描画 (返り値 1:break, 2:next)
  491.   #--------------------------------------------------------------------------
  492. #=begin
  493.   def process_escape_character(code, text, pos)
  494.     case code.upcase
  495.     when '
  496.       @gold_window.open
  497.     when '.'
  498.       wait(15)
  499.     when '|'
  500.       wait(60)
  501.     when '!'
  502.       input_pause
  503.     when '>'
  504.       @line_show_fast = true
  505.     when '<'
  506.       @line_show_fast = false
  507.     when '^'
  508.       @pause_skip = true
  509.     #when 'n'                      # 改行
  510.     #  new_line
  511.     #  max = MAX_LINE
  512.     #  max = 14 if self.pop_character != nil
  513.     #  if @line_count >= max      # 行数が最大のとき
  514.     #    unless @text.empty?           # さらに続きがあるなら
  515.     #      self.pause = true           # 入力待ちを入れる
  516.           #return 1
  517.     #    end
  518.     #  end
  519.     #when 'S'                       # \S[n]  (スピード変更)
  520.     #  text.sub!(/\[([0-9]+)\]/, "")
  521.     #  @type_wait = $1.to_i
  522.     #  return 2
  523.     when 'O'                       # \O 文字を透明にする。
  524.       text.sub!(/\[([0-9]+)\]/, "")
  525.       contents.font.color.alpha = $1.to_i
  526.       #return 2
  527.     when 'D' #\D 文字に影をつける
  528.       contents.font.shadow ^= true
  529.     #when '18'
  530.     #  name = ($game_temp.last_gain_holder.name rescue "")
  531.     #  update_message_type_draw_at(name)
  532.     #when '19'
  533.     #  item = ($game_temp.last_gain_material.item rescue nil)
  534.     #  draw_item_name(item, @contents_x, @contents_y)
  535.     #  @contents_x += 196
  536.     else
  537.       super
  538.     end
  539.         
  540.   end
  541. #=end
  542.   #--------------------------------------------------------------------------
  543.   # ● 改ページ処理
  544.   #--------------------------------------------------------------------------
  545.   alias xrxsv2_new_page new_page
  546.   def new_page(text, pos)
  547.     xrxsv2_new_page(text, pos)
  548.     update_charpop_window
  549.   end
  550.   #--------------------------------------------------------------------------
  551.   # ● 改行位置の取得
  552.   #--------------------------------------------------------------------------
  553.   #def new_line_x
  554.   #  $game_message.face_name.empty? ? 0 : 112
  555.   #end
  556.   #--------------------------------------------------------------------------
  557.   # ● 改行処理
  558.   #--------------------------------------------------------------------------
  559.   alias xrxsv2_new_line_x new_line_x
  560.   def new_line
  561.     xrxsv2_new_line
  562.     set_align
  563.   end
  564.   #--------------------------------------------------------------------------
  565.   # 位置揃え
  566.   #--------------------------------------------------------------------------
  567.   def set_align
  568.     w = @line_widths[@line_count].to_i
  569.     a = @line_aligns[@line_count]
  570.     case a
  571.     when CENTER
  572.       @contents_x = @contents_x + ((contents.width - @contents_x) - w) / 2
  573.     when RIGHT
  574.       @contents_x = contents.width - w
  575.     end
  576.   end
  577.   #--------------------------------------------------------------------------
  578.   # ● ファイバーのメイン処理 ☆再定義
  579.   #--------------------------------------------------------------------------
  580.   def fiber_main
  581.     $game_message.visible = true
  582.     update_background
  583.     update_placement
  584.     loop do
  585.       process_all_text if $game_message.has_text?
  586.       process_input
  587.       $game_message.clear
  588.       @gold_window.close
  589.       process_hold #ホールドウィンドウの処理。
  590.       Fiber.yield
  591.       break unless text_continue?
  592.     end
  593.     close_and_wait
  594.     $game_message.visible = false
  595.     @fiber = nil
  596.   end
  597.   #--------------------------------------------------------------------------
  598.   # 定数
  599.   #--------------------------------------------------------------------------
  600.   AUTO   = 0
  601.   LEFT   = 1
  602.   CENTER = 2
  603.   RIGHT  = 3
  604. end
  605. #==============================================================================
  606. # アクティブイベント取得
  607. #==============================================================================
  608. class Game_Interpreter
  609.   attr_reader   :event_id
  610. end


  611. #==============================================================================
  612. # 各種機能の追加 - キャラポップ/ネーム/ホールド
  613. #==============================================================================
  614. class Window_Message < Window_Base
  615.   #--------------------------------------------------------------------------
  616.   # ● カーソルの更新 *
  617.   #--------------------------------------------------------------------------
  618.   def update_cursor
  619.     if [url=home.php?mod=space&uid=370741]@Index[/url] >= 0
  620.       x = ($game_message.face_name.empty? ? 0 : 112)
  621.       y = ($game_message.choice_start + @index) * WLH - 1
  622.       w = contents.width - x
  623.       if self.pop_character != nil
  624.         x += 28
  625.         w -= 20
  626.       end
  627.       self.cursor_rect.set(x, y, w, WLH)
  628.     else
  629.       self.cursor_rect.empty
  630.     end
  631.   end
  632.   #--------------------------------------------------------------------------
  633.   # キャラクターの取得
  634.   #   parameter : パラメータ
  635.   #--------------------------------------------------------------------------
  636.   def get_character(parameter)
  637.     # パラメータで分岐
  638.     case parameter
  639.     when -1  # プレイヤー
  640.       return $game_player
  641.     when 0  # 現在アクティブなイベント
  642.       id = $game_map.interpreter.event_id
  643.       events = $game_map.events
  644.       return events == nil ? nil : events[id]
  645.     else  # 特定のイベント
  646.       events = $game_map.events
  647.       return events == nil ? nil : events[parameter]
  648.     end
  649.   end
  650.   #--------------------------------------------------------------------------
  651.   # (メッセージ終了時)ホールドの処理
  652.   #--------------------------------------------------------------------------
  653.   def process_hold
  654.     if @window_hold
  655.       @held_windows.push(Window_Copy.new(self))
  656.       @held_windows.push(Window_Copy.new(@name_window))
  657.       @held_windows.push(Sprite_Copy.new(@name_sprite))
  658.       @held_windows.push(Sprite_Copy.new(@back_sprite))
  659.       for sprite in @extra_sprites
  660.         next if sprite.disposed?
  661.         @held_windows.push(Sprite_Copy.new(sprite))
  662.       end
  663.       @extra_sprites.clear
  664.       self.openness = 0
  665.       #@name_window.openness = 0
  666.       @back_sprite.visible = false
  667.     else
  668.       @held_windows.each {|object| object.dispose}
  669.       @held_windows.clear
  670.     end
  671.     #@name_window.close
  672.     #@name_sprite.visible = false
  673.   end
  674.   #--------------------------------------------------------------------------
  675.   # キャラポップ位置の設定と取得
  676.   #--------------------------------------------------------------------------
  677.   def pop_character=(character_id)
  678.     @pop_character = character_id
  679.   end
  680.   def pop_character
  681.     return @pop_character
  682.   end
  683.   #--------------------------------------------------------------------------
  684.   # キャラポップ時のウィンドウリサイズ
  685.   #--------------------------------------------------------------------------
  686.   def reszie_window_for_pop
  687.     #キャラポップ
  688.     if self.pop_character != nil
  689.       #max_x = @line_widths.max.to_i
  690.       #n  = max_x + 32
  691.       n = 0
  692.       n += $game_message.face_name.empty? ? 0 : 122
  693.       m  = $game_message.face_name.empty? ? 0 : 96
  694.       w  = @name_sprite.bitmap.width
  695.       self.width  = max_width + n
  696.       self.height = [@all_texts.size * line_height, m].max + 32
  697.       
  698.       #システム用の一行目を表示しない。
  699.       if $system_line or $game_switches[SYSTEM_LINE]
  700.         self.height -= line_height if $game_party.in_battle == false #戦闘中にあらず
  701.       end
  702.       
  703.       create_contents
  704.       update_charpop_window
  705.     elsif @info_mode
  706.       @line_aligns[0] = CENTER
  707.       self.x = - 8
  708.       self.width = Graphics.width + 16
  709.       self.height = 56
  710.       create_contents
  711.     else
  712.       self.x = 0
  713.       self.width  = Graphics.width
  714.       self.height = MAX_LINE * line_height + 32
  715.       update_placement #位置情報修正。
  716.       create_contents
  717.     end
  718.   end
  719.   #--------------------------------------------------------------------------
  720.   # ● 背景スプライトの作成
  721.   #--------------------------------------------------------------------------
  722.   alias xrxsv2_create_back_sprite create_back_sprite
  723.   def create_back_sprite
  724.     xrxsv2_create_back_sprite
  725.     @back_sprite.zoom_x = 1.0 * Graphics.width / @back_sprite.bitmap.width
  726.     @name_window = Window_Base.new(0,0,112,36)
  727.     @name_window.visible = false
  728.     @name_sprite = Sprite.new
  729.     @name_sprite.bitmap = Bitmap.new(32,32)
  730.     @name_sprite.visible = false
  731.     self.x = self.x
  732.     self.y = self.y
  733.     self.z = self.z
  734.     @held_windows = []
  735.     @extra_sprites = []
  736.   end
  737.   #--------------------------------------------------------------------------
  738.   # ● 背景スプライトの解放
  739.   #--------------------------------------------------------------------------
  740.   alias xrxsv2_dispose_back_sprite dispose_back_sprite
  741.   def dispose_back_sprite
  742.     xrxsv2_dispose_back_sprite
  743.     @name_window.dispose if @name_window != nil #メニュー画面を出そうとするとエラー?
  744.     @name_sprite.dispose if @name_sprite != nil
  745.     for window in @held_windows
  746.       window.dispose
  747.     end
  748.   end
  749.   #--------------------------------------------------------------------------
  750.   # ● 背景スプライトの更新
  751.   #--------------------------------------------------------------------------
  752.   alias xrxsv2_update_back_sprite update_back_sprite
  753.   def update_back_sprite
  754.     @name_window.update
  755.     xrxsv2_update_back_sprite
  756.     update_charpop_window
  757.   end
  758.   #--------------------------------------------------------------------------
  759.   # ウィンドウの位置と不透明度の設定 (キャラポップ)
  760.   #--------------------------------------------------------------------------
  761.   def update_charpop_window
  762.     if self.pop_character
  763.       character = get_character(self.pop_character)
  764.       return if character == nil
  765.       # [X座標]
  766.       n = self.width / 2
  767.       n = [n, @name_skin.width + 16].max if @current_name != nil
  768.       w = @name_sprite.bitmap.width
  769.       x = character.screen_x - [[n, w].max, self.width - 32].min
  770.       # [Y座標]
  771.       if self.pop_character == 0 and POP_DIRECTION #イベントの方向を考慮。
  772.         if character.direction == 2 #下向き
  773.           @position = 0 #上にポップ
  774.         elsif character.direction == 8 #上向き
  775.           @position = 2 #下にポップ
  776.         end
  777.       end
  778.       case @position
  779.       when 0
  780.         y = character.screen_y - CHARPOP_HEIGHT - self.height
  781.       else
  782.         y = character.screen_y + 16
  783.       end
  784.       x_max = Graphics.width - 4 - self.width
  785.       x_min = 4
  786.       y_max = Graphics.height - self.height
  787.       y_min = 4
  788.       self.x = [[x, x_max].min, x_min].max
  789.       self.y = [[y, y_max].min, y_min].max
  790.     end
  791.   end
  792.   #--------------------------------------------------------------------------
  793.   # 位置の連動
  794.   #--------------------------------------------------------------------------
  795.   def x=(n)
  796.     super
  797.     if @name_window
  798.       if $name_right
  799.         @name_window.x = n + self.width - @name_window.width - NAME_WINDOW_OFFSET_X
  800.         @name_sprite.x = @name_window.x + 8 + NAME_WINDOW_OFFSET_WIDTH / 2
  801.       else
  802.         @name_window.x = n + NAME_WINDOW_OFFSET_X
  803.         @name_sprite.x = @name_window.x + 8 + NAME_WINDOW_OFFSET_WIDTH / 2
  804.       end
  805.     end
  806.   end
  807.   def y=(n)
  808.     super
  809.     if @name_window
  810.       @name_window.y = n + NAME_WINDOW_OFFSET_Y
  811.       @name_sprite.y = n + NAME_WINDOW_OFFSET_Y + 2 + NAME_WINDOW_OFFSET_HIGHT / 2
  812.     end
  813.   end
  814.   def z=(n)
  815.     super
  816.     if @name_window
  817.       @name_window.z = n + 11#1 テールの上に表示されるので、Zを水増しする。
  818.       @name_sprite.z = n + 12#2
  819.     end
  820.   end
  821.   #--------------------------------------------------------------------------
  822.   # ● ファイバーのメイン処理
  823.   #--------------------------------------------------------------------------
  824.   def fiber_main_namewin
  825.     fiber_main_namewin_default
  826.     @name_window.openness = 0
  827.     @name_sprite.bitmap.clear
  828.     $name = ""
  829.   end
  830.   alias :fiber_main_namewin_default :fiber_main
  831.   alias :fiber_main :fiber_main_namewin
  832. end
  833. #==============================================================================
  834. # 伸縮対応
  835. #==============================================================================
  836. class Window_Message < Window_Base
  837.   #--------------------------------------------------------------------------
  838.   # ● ウィンドウの背景と位置の設定 [再定義]
  839.   #--------------------------------------------------------------------------
  840.   def reset_window
  841.     @background = $game_message.background
  842.     @position = $game_message.position
  843.     if @background == 0   # 通常ウィンドウ
  844.       self.opacity = 255
  845.     else                  # 背景を暗くする、透明にする
  846.       self.opacity = 0
  847.     end
  848.     case @position
  849.     when 0  # 上
  850.       self.y = 0
  851.       @gold_window.y = 360
  852.     when 1  # 中
  853.       self.y = (Graphics.height - self.height) / 2
  854.       @gold_window.y = 0
  855.     when 2  # 下
  856.       self.y = Graphics.height - self.height
  857.       @gold_window.y = 0
  858.     end
  859.   end
  860. end
  861. #==============================================================================
  862. # □ Window_Copy
  863. #------------------------------------------------------------------------------
  864. #   指定のウィンドウのコピーを作成します。
  865. #==============================================================================
  866. class Window_Copy < Window_Base
  867.   #--------------------------------------------------------------------------
  868.   # ○ オブジェクト初期化
  869.   #--------------------------------------------------------------------------
  870.   def initialize(window)
  871.     super(window.x, window.y, window.width, window.height)
  872.     self.contents = window.contents.dup unless window.contents.nil?
  873.     self.opacity = window.opacity
  874.     self.back_opacity = window.back_opacity
  875.     self.z = window.z - 3
  876.     self.visible = window.visible
  877.   end
  878. end
  879. #==============================================================================
  880. # □ Sprite_Copy
  881. #------------------------------------------------------------------------------
  882. #   指定のスプライトのコピーを作成します。
  883. #==============================================================================
  884. class Sprite_Copy < Sprite
  885.   #--------------------------------------------------------------------------
  886.   # ○ オブジェクト初期化
  887.   #--------------------------------------------------------------------------
  888.   def initialize(sprite)
  889.     super()
  890.     self.bitmap = sprite.bitmap.dup unless sprite.bitmap.nil?
  891.     self.opacity = sprite.opacity
  892.     self.x = sprite.x
  893.     self.y = sprite.y
  894.     self.z = sprite.z - 3
  895.     self.ox = sprite.ox
  896.     self.oy = sprite.oy
  897.     self.zoom_x = sprite.zoom_x
  898.     self.visible = sprite.visible
  899.   end
  900. end



  901. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  902. #■吹きだしテールの表示ルーチン。
  903. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  904. #==============================================================================
  905. # +++ 「+ふきだし表示」VX +++
  906. # by パラ犬  http://2d6.parasite.jp/
  907. #      ×
  908. #    row       http://xms.rdy.jp/
  909. #
  910. # publish 2010/ 3/ 2
  911. # update  -
  912. #
  913. #------------------------------------------------------------------------------
  914. #    ほぼどんなメッセージウィンドウに対しても後付け可能な「ふきだし表示」です。
  915. #  また、テール部分のみの自動追尾機能を持ちます。
  916. #   ふきだし表示をするには、
  917. #  テール用画像「Window-top」「Window-under」を
  918. #  「Graphics/System」フォルダにインポートしておく必要があります。
  919. #==============================================================================
  920. # ■ Window_Message
  921. #==============================================================================
  922. class Window_Message < Window_Base
  923.   #--------------------------------------------------------------------------
  924.   # ● メッセージの開始
  925.   #--------------------------------------------------------------------------
  926.   alias parashelf_update_all_windows update_all_windows
  927.   def update_all_windows
  928.     parashelf_update_all_windows
  929.     update_tail
  930.   end
  931.   #--------------------------------------------------------------------------
  932.   # クローズ [オーバーライド]
  933.   #--------------------------------------------------------------------------
  934.   def close
  935.     super
  936.     del_tail
  937.     @name_window.close if @name_window != nil #ネームウィンドウのクローズ動作。
  938.   end
  939.   #--------------------------------------------------------------------------
  940.   # ● 背景スプライトの更新
  941.   #--------------------------------------------------------------------------
  942.   alias parashelf_update_back_sprite update_back_sprite
  943.   def update_back_sprite
  944.     parashelf_update_back_sprite
  945.     update_tail
  946.   end
  947.   #--------------------------------------------------------------------------
  948.   # ○ フレーム更新 (ふきだしテールの更新)
  949.   #--------------------------------------------------------------------------
  950.   def update_tail
  951.     # ふきだしモードではイベントの動きに追従
  952.     if $mes_id != nil and @tail != nil
  953.       tale_pos = get_tale_pos
  954.       @tail.x = tale_pos[0]
  955.       @tail.y = tale_pos[1]
  956.       update_tail_bitmap
  957.     end
  958.   end
  959.   ##--------------------------------------------------------------------------
  960.   # ○ ふきだしテールの画像を更新。
  961.   #--------------------------------------------------------------------------
  962.   def update_tail_bitmap
  963.     skin = "Window"
  964.     skin = "Think" if $game_switches[THINK_TAIL]
  965.     if $win_x != nil
  966.       if $win_x > 0
  967.         @tail.bitmap = Cache.system(skin + "-right")
  968.       elsif  $win_x < 0
  969.         @tail.bitmap = Cache.system(skin + "-left")
  970.       else
  971.         case @position
  972.         when 0  # 上
  973.           @tail.bitmap = Cache.system(skin + "-top")
  974.         when 2  # 下
  975.           @tail.bitmap = Cache.system(skin + "-under")
  976.         end
  977.       end
  978.     else
  979.       case @position
  980.       when 0  # 上
  981.         @tail.bitmap = Cache.system(skin + "-top")
  982.       when 2  # 下
  983.         @tail.bitmap = Cache.system(skin + "-under")
  984.       end
  985.     end
  986.     # 可視状態
  987.     if self.visible == true
  988.       @tail.visible = self.openness == 255
  989.     else
  990.       @tail.visible = false
  991.     end
  992.   end
  993.   #--------------------------------------------------------------------------
  994.   # ○ テールの位置を計算
  995.   #--------------------------------------------------------------------------
  996.   def get_tale_pos
  997.     if defined?($game_system.show_stand_picture) #A1立ち絵スクリプトを入れている。
  998.       if $game_system.show_stand_picture #立ち絵on
  999.         pos = get_tale_pos_stand_pic
  1000.       else
  1001.         pos = get_tale_pos_normal
  1002.       end
  1003.     else
  1004.       pos = get_tale_pos_normal
  1005.     end
  1006.     return pos
  1007.   end
  1008.   #--------------------------------------------------------------------------
  1009.   # ○ テールの位置を計算/立ち絵使用時。※NAME_CHANGEの編集必須。
  1010.   #--------------------------------------------------------------------------
  1011.   def get_tale_pos_stand_pic
  1012.     if $game_message.face_name != ""  and @tail != nil
  1013.       target_name = $game_message.face_name + "_" + $game_message.face_index.to_s
  1014.       name = A1_System::StandPicture::NAME_CHANGE[target_name]
  1015.       chara = name[0] if name != nil
  1016.       if @stand_pic[chara] != nil #立ち絵無しの場合通常通り。
  1017.         x = @stand_pic[chara].pic_sprite.x + @stand_pic[chara].pic_sprite.width / 2
  1018.         y = get_tale_pos_normal_updown
  1019.         update_tail_bitmap
  1020.       else
  1021.         return get_tale_pos_normal #立ち絵が見つからない場合は通常通り。
  1022.       end
  1023.     else
  1024.       return get_tale_pos_normal #立ち絵が見つからない場合は通常通り。
  1025.     end
  1026.     return [x,y]
  1027.   end
  1028.   #--------------------------------------------------------------------------
  1029.   # ○ テールの位置を計算/立ち絵未使用時。
  1030.   #--------------------------------------------------------------------------
  1031.   def get_tale_pos_normal
  1032.     if $mes_id == (-2) #左右の場合は高さはウィンドウ中心。上下ならやや左に配置。
  1033.       if $win_x != nil
  1034.         if $win_x > 0
  1035.           x = $win_x - @tail.width / 2
  1036.           y = self.y + self.height / 2 - @tail.height / 2
  1037.         elsif $win_x < 0
  1038.           x = self.width - @tail.width / 2
  1039.           y = self.y + self.height / 2 - @tail.height / 2
  1040.         else
  1041.           x = MINAS_TWE_X_POS
  1042.           y = get_tale_pos_normal_updown
  1043.         end
  1044.       else
  1045.         x = MINAS_TWE_X_POS
  1046.         y = get_tale_pos_normal_updown
  1047.       end
  1048.     elsif $mes_id <= (-3) #左右の場合は高さはウィンドウ中心。上下ならやや左に配置。
  1049.       if $win_x != nil
  1050.         if $win_x > 0
  1051.           x = $win_x - @tail.width / 2
  1052.           y = self.y + self.height / 2
  1053.         elsif $win_x < 0
  1054.           x = self.width - @tail.width / 2
  1055.           y = self.y + self.height / 2
  1056.         else
  1057.           x = MINAS_THREE_X_POS
  1058.           y = get_tale_pos_normal_updown
  1059.         end
  1060.       else
  1061.         x = MINAS_THREE_X_POS
  1062.         y = get_tale_pos_normal_updown
  1063.       end
  1064.     else
  1065.       character = get_character($mes_id)
  1066.       x = [[character.screen_x - 16, self.x].max, self.x + self.width - 32].min
  1067.       if $win_x != nil
  1068.         if $win_x > 0
  1069.           x = $win_x - @tail.width / 2
  1070.           y = character.screen_y
  1071.         elsif $win_x < 0
  1072.           x = self.width
  1073.           y = character.screen_y
  1074.         else
  1075.           y = get_tale_pos_normal_updown
  1076.         end
  1077.       else
  1078.         y = get_tale_pos_normal_updown
  1079.       end
  1080.     end
  1081.     return [x, y]
  1082.   end
  1083.   #--------------------------------------------------------------------------
  1084.   # ○ テールが上下の時、かつ[-2][-3]でない時のy座標の取得。
  1085.   #--------------------------------------------------------------------------
  1086.   def get_tale_pos_normal_updown
  1087.     case @position
  1088.     when 0
  1089.       y = self.y + self.height - @tail.height / 2
  1090.     else
  1091.       y = self.y - @tail.height / 2
  1092.     end
  1093.     return y
  1094.   end
  1095.   #--------------------------------------------------------------------------
  1096.   # ○ ふきだしを破棄
  1097.   #--------------------------------------------------------------------------
  1098.   def del_tail
  1099.     if @tail != nil
  1100.       @tail.dispose
  1101.       @tail = nil
  1102.     end
  1103.   end
  1104. end
  1105. #
  1106. # ▼▲▼ XRXS 9拡張CO-X. ふきだし自動設定 ▼▲▼
  1107. #==============================================================================
  1108. # ■ Window_Message
  1109. #==============================================================================
  1110. class Window_Message < Window_Base
  1111.   #--------------------------------------------------------------------------
  1112.   # ○ ポップキャラクターの設定
  1113.   #--------------------------------------------------------------------------
  1114.   def pop_character=(character_id)
  1115.     @pop_character = character_id
  1116.     $mes_id = character_id
  1117.   end
  1118.   #--------------------------------------------------------------------------
  1119.   # ○ テールキャラクターの設定
  1120.   #--------------------------------------------------------------------------
  1121.   def tail_character=(character_id)
  1122.     #@pop_character = character_id
  1123.     $mes_id = character_id
  1124.   end
  1125. end


  1126. #==============================================================================
  1127. # ■ Window_ChoiceList
  1128. #------------------------------------------------------------------------------
  1129. #  イベントコマンド[選択肢の表示]で、Y座標を修正します。
  1130. #==============================================================================
  1131. class Window_ChoiceList < Window_Command
  1132.   #--------------------------------------------------------------------------
  1133.   # ● ウィンドウ位置の更新
  1134.   #--------------------------------------------------------------------------
  1135.   def update_placement_hukidasi
  1136.     #self.width = [max_choice_width + 12, 96].max + padding * 2
  1137.     #self.width = [width, Graphics.width].min
  1138.     #self.height = fitting_height($game_message.choices.size)
  1139.     #self.x = Graphics.width - width
  1140.     #if @message_window.y >= Graphics.height / 2
  1141.     #  self.y = @message_window.y - height
  1142.     #else
  1143.     #  self.y = @message_window.y + @message_window.height
  1144.     #end
  1145.     update_placement_hukidasi_default
  1146.     if self.y + self.height > Graphics.height
  1147.       self.y -= ( ( self.height + self.y ) - Graphics.height)
  1148.       self.z += 100
  1149.     end
  1150.   end
  1151.   alias :update_placement_hukidasi_default :update_placement
  1152.   alias :update_placement :update_placement_hukidasi
  1153. end

  1154. #==============================================================================
  1155. # ■ Scene_Menu
  1156. #------------------------------------------------------------------------------
  1157. #  メニューを開いてからウィンドウが出るとネームウィンドウが表示される不具合修正。
  1158. #==============================================================================
  1159. #class Scene_Menu < Scene_MenuBase
  1160. #  def terminate_hukidasi_menyu
  1161. #    @name_window.openness = 0 if @name_window != nil
  1162. #    terminate_hukidasi_menyu_default
  1163. #  end
  1164. #  alias :terminate_hukidasi_menyu_default :terminate
  1165. #  alias :terminate :terminate_hukidasi_menyu
  1166. #end

  1167. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1168. #■ウィンドウ非表示ルーチン
  1169. #■吹きだしテールとネームウィンドウに対応。
  1170. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1171. #==============================================================================
  1172. # L(キーボードのQ)を押すと、メッセージウィンドウを表示・非表示
  1173. #==============================================================================
  1174. class Window_Message < Window_Base
  1175.   def update_winoff
  1176.     unless $game_party.in_battle #バトル中は無効。
  1177.       if Input.trigger?(Input::L)
  1178.         if self.visible == true
  1179.           self.visible = false
  1180.           @background = 777 if @back_sprite != nil and @background == 1 #「背景を暗くする」
  1181.           @tail.visible = false if @tail != nil
  1182.         else
  1183.           self.visible = true
  1184.           @background = 1 if @back_sprite != nil and @background == 777 #「背景を暗くする」
  1185.         end
  1186.         if @name_window != nil
  1187.           if @name_window.visible == false and $name != nil and $name != ""
  1188.             @name_window.visible = true
  1189.             @name_sprite.visible = true
  1190.           else
  1191.             @name_window.visible = false
  1192.             @name_sprite.visible = false
  1193.           end
  1194.         end
  1195.       elsif Input.trigger?(Input::C) or Input.trigger?(Input::B)
  1196.         if self.visible == false
  1197.           self.visible = true
  1198.           @back_sprite.visible = true unless @back_sprite
  1199.         end
  1200.         @tail.visible = true if @tail != nil and @tail.visible == false
  1201.         if @name_window != nil and $name != nil
  1202.           if $name != ""
  1203.             @name_window.visible = true
  1204.             @name_sprite.visible = true
  1205.           end
  1206.         end
  1207.       end
  1208.     end
  1209.     update_winoff_default
  1210.   end
  1211.   alias :update_winoff_default :update
  1212.   alias :update :update_winoff
  1213. end


  1214. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1215. #■ウィンドウ表示位置指定ルーチン
  1216. #■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□■□
  1217. #===========================================================================
  1218. #イベントコマンド「スクリプト」を使い、
  1219. #$win_x=100 
  1220. #$win_y=100
  1221. #と入力すれば、ウィンドウを(100、100)の位置に表示します。
  1222. #使わない時は
  1223. #$win_x=nil
  1224. #などとnilを入力しておいてください。
  1225. #===========================================================================
  1226. class Window_Message < Window_Base
  1227.   #--------------------------------------------------------------------------
  1228.   # ● ウィンドウの背景と位置の設定 [再定義]
  1229.   #--------------------------------------------------------------------------
  1230.   def update_placement_position
  1231.     update_placement_position_default
  1232.     if $win_x != nil
  1233.       if $win_x > 0
  1234.         self.x = $win_x
  1235.         self.width -= $win_x
  1236.       else
  1237.         self.x = 0
  1238.         self.width += $win_x
  1239.       end
  1240.     end
  1241.     if $win_y != nil
  1242.       self.y = $win_y
  1243.     end
  1244.     #上表示の時、ネームウィンドウが見切れるので少し下にずらす。
  1245.     if self.y == 0 and @position == 0 and @name_window != nil and $name != nil
  1246.       self.y += (-NAME_WINDOW_OFFSET_Y)
  1247.     end
  1248.   end
  1249.   alias_method :update_placement_position_default, :update_placement
  1250.   alias_method :update_placement, :update_placement_position
  1251. end


  1252. #==============================================================================
  1253. # ■ SceneManager
  1254. #------------------------------------------------------------------------------
  1255. #  シーン遷移のさい、テールを破棄。ネームウィンドウのデータをクリア。
  1256. #==============================================================================
  1257. module SceneManager
  1258.   #--------------------------------------------------------------------------
  1259.   # ● 呼び出し
  1260.   #--------------------------------------------------------------------------
  1261.   def self.call_sceman_hukidasi(scene_class)
  1262.     if defined?(self.scene.message_window)
  1263.       self.scene.message_window.del_tail if self.scene.message_window.tail != nil
  1264.       $name = ""
  1265.     end
  1266.     @stack.push(@scene)
  1267.     @scene = scene_class.new
  1268.   end
  1269.   #--------------------------------------------------------------------------
  1270.   # ● クラスメソッドのエイリアス
  1271.   #--------------------------------------------------------------------------
  1272.   class << self
  1273.     alias :call_sceman_hukidasi_default :call
  1274.     alias :call :call_sceman_hukidasi
  1275.   end
  1276. end

  1277. #==============================================================================
  1278. # ■ Scene_Map
  1279. #------------------------------------------------------------------------------
  1280. #  戦闘トランジションのさい、テールを破棄。
  1281. #==============================================================================
  1282. class Scene_Map < Scene_Base
  1283.   attr_accessor :message_window
  1284.   #--------------------------------------------------------------------------
  1285.   # ● 戦闘前トランジション実行
  1286.   #--------------------------------------------------------------------------
  1287.   def perform_battle_transition_hukidasi
  1288.     @message_window.del_tail #テールの破棄
  1289.     perform_battle_transition_hukidasi_default
  1290.   end
  1291.   alias_method :perform_battle_transition_hukidasi_default, :perform_battle_transition
  1292.   alias_method :perform_battle_transition, :perform_battle_transition_hukidasi
  1293. end
复制代码

点评

526行、657行的url请自行手动删除,改成 @index  发表于 2013-8-7 19:57

评分

参与人数 1梦石 +1 收起 理由
迷糊的安安 + 1 认可答案 附赠精美好人卡一张~~.

查看全部评分

回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
1179
在线时间
209 小时
注册时间
2013-6-19
帖子
138
3
 楼主| 发表于 2013-8-7 20:19:01 | 只看该作者
喵呜喵5 发表于 2013-8-7 19:56
替换掉你原来的脚本即可,如果你脚本有做过什么修改的话,请在新脚本里重新修改……  ...

谢谢 喵呜喵5 大大的热心帮忙!
我还有几个问题想请教:

我把代码复制过来变成这样子~


URL是改成这样子,对吗?
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-18 00:40

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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