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

Project1

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

限时选项系统

 关闭 [复制链接]

Lv1.梦旅人

梦石
0
星屑
95
在线时间
49 小时
注册时间
2006-5-7
帖子
526
跳转到指定楼层
1
发表于 2007-8-1 05:23:23 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

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

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

x
看了新手区的要求做出来的,就是选项在限定时间内要求回答,不回答的话自动作出选择,同时可以得到回答选项的时间

修改Window_Message得到,但是大部分人应该都会使用各种对话强化脚本来取代它,因此标记所有改动的地方,请参考标记自行整合到对话强化脚本

6楼有更新.........................{/gg}

★★★★★★★处即为修改
  1. #==============================================================================
  2. # ■ Window_Message
  3. #------------------------------------------------------------------------------
  4. #  显示文章的信息窗口。
  5. #==============================================================================

  6. class Window_Message < Window_Selectable
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化状态
  9.   #--------------------------------------------------------------------------
  10.   def initialize
  11.     super(80, 304, 480, 160)
  12.     self.contents = Bitmap.new(width - 32, height - 32)
  13.     self.visible = false
  14.     self.z = 9998
  15.     @fade_in = false
  16.     @fade_out = false
  17.     @contents_showing = false
  18.     @cursor_width = 0
  19.     self.active = false
  20.     self.index = -1
  21.     #★★★★★★★★★★★★★★★★★★★★★★★★★
  22.    @color1=Color.new(255,255,255,128)
  23.    #★★★★★★★★★★★★★★★★★★★★★★★★★
  24.   end
  25.   #--------------------------------------------------------------------------
  26.   # ● 释放
  27.   #--------------------------------------------------------------------------
  28.   def dispose
  29.     terminate_message
  30.     $game_temp.message_window_showing = false
  31.     if @input_number_window != nil
  32.       @input_number_window.dispose
  33.     end
  34.     super
  35.   end
  36.   #--------------------------------------------------------------------------
  37.   # ● 处理信息结束
  38.   #--------------------------------------------------------------------------
  39.   def terminate_message
  40.     self.active = false
  41.     self.pause = false
  42.     self.index = -1
  43.     self.contents.clear
  44.     # 清除显示中标志
  45.     @contents_showing = false
  46.     # 呼叫信息调用
  47.     if $game_temp.message_proc != nil
  48.       $game_temp.message_proc.call
  49.     end
  50.     # 清除文章、选择项、输入数值的相关变量
  51.     $game_temp.message_text = nil
  52.     $game_temp.message_proc = nil
  53.     $game_temp.choice_start = 99
  54.     $game_temp.choice_max = 0
  55.     $game_temp.choice_cancel_type = 0
  56.     $game_temp.choice_proc = nil
  57.     $game_temp.num_input_start = 99
  58.     $game_temp.num_input_variable_id = 0
  59.     $game_temp.num_input_digits_max = 0
  60.     # 开放金钱窗口
  61.     if @gold_window != nil
  62.       @gold_window.dispose
  63.       @gold_window = nil
  64.     end
  65.   end
  66.   #--------------------------------------------------------------------------
  67.   # ● 刷新
  68.   #--------------------------------------------------------------------------
  69.   def refresh
  70.     self.contents.clear
  71.     self.contents.font.color = normal_color
  72.     x = y = 0
  73.     @cursor_width = 0
  74.     # 到选择项的下一行字
  75.     if $game_temp.choice_start == 0
  76.       x = 8
  77.     end
  78.     # 有等待显示的文字的情况下
  79.     if $game_temp.message_text != nil
  80.       text = $game_temp.message_text
  81.       # 限制文字处理
  82.       begin
  83.         last_text = text.clone
  84.         text.gsub!(/\\[Vv]\[([0-9]+)\]/) { $game_variables[$1.to_i] }
  85.       end until text == last_text
  86.       text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  87.         $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  88.       end
  89.       # 为了方便、将 "\\\\" 变换为 "\000"
  90.       text.gsub!(/\\\\/) { "\000" }
  91.       # "\\C" 变为 "\001" に、"\\G" 变为 "\002"
  92.       text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001[#{$1}]" }
  93.       text.gsub!(/\\[Gg]/) { "\002" }
  94.       # c 获取 1 个字 (如果不能取得文字就循环)
  95.       while ((c = text.slice!(/./m)) != nil)
  96.         # \\ 的情况下
  97.         if c == "\000"
  98.           # 还原为本来的文字
  99.           c = "\\"
  100.         end
  101.         # \C[n] 的情况下
  102.         if c == "\001"
  103.           # 更改文字色
  104.           text.sub!(/\[([0-9]+)\]/, "")
  105.           color = $1.to_i
  106.           if color >= 0 and color <= 7
  107.             self.contents.font.color = text_color(color)
  108.           end
  109.           # 下面的文字
  110.           next
  111.         end
  112.         # \G 的情况下
  113.         if c == "\002"
  114.           # 生成金钱窗口
  115.           if @gold_window == nil
  116.             @gold_window = Window_Gold.new
  117.             @gold_window.x = 560 - @gold_window.width
  118.             if $game_temp.in_battle
  119.               @gold_window.y = 192
  120.             else
  121.               @gold_window.y = self.y >= 128 ? 32 : 384
  122.             end
  123.             @gold_window.opacity = self.opacity
  124.             @gold_window.back_opacity = self.back_opacity
  125.           end
  126.           # 下面的文字
  127.           next
  128.         end
  129.         # 另起一行文字的情况下
  130.         if c == "\n"
  131.           # 刷新选择项及光标的高
  132.           if y >= $game_temp.choice_start
  133.             @cursor_width = [@cursor_width, x].max
  134.           end
  135.           # y 加 1
  136.           y += 1
  137.           x = 0
  138.           # 移动到选择项的下一行
  139.           if y >= $game_temp.choice_start
  140.             x = 8
  141.           end
  142.           # 下面的文字
  143.           next
  144.         end
  145.         # 描绘文字
  146.         self.contents.draw_text(4 + x, 32 * y, 40, 32, c)
  147.         # x 为要描绘文字的加法运算
  148.         x += self.contents.text_size(c).width
  149.       end
  150.     end
  151.     # 选择项的情况
  152.     if $game_temp.choice_max > 0
  153.       @item_max = $game_temp.choice_max
  154.       self.active = true
  155.       self.index = 0
  156. #★★★★★★★★★★★★★★★★★★★★★★★★★
  157.       @count=0
  158.     if $game_variables[100]>0
  159.       @sel=true
  160.      end
  161. #★★★★★★★★★★★★★★★★★★★★★★★★★
  162.     end
  163.     # 输入数值的情况
  164.     if $game_temp.num_input_variable_id > 0
  165.       digits_max = $game_temp.num_input_digits_max
  166.       number = $game_variables[$game_temp.num_input_variable_id]
  167.       @input_number_window = Window_InputNumber.new(digits_max)
  168.       @input_number_window.number = number
  169.       @input_number_window.x = self.x + 8
  170.       @input_number_window.y = self.y + $game_temp.num_input_start * 32
  171.     end
  172.   end
  173.   #--------------------------------------------------------------------------
  174.   # ● 设置窗口位置与不透明度
  175.   #--------------------------------------------------------------------------
  176.   def reset_window
  177.     if $game_temp.in_battle
  178.       self.y = 16
  179.     else
  180.       case $game_system.message_position
  181.       when 0  # 上
  182.         self.y = 16
  183.       when 1  # 中
  184.         self.y = 160
  185.       when 2  # 下
  186.         self.y = 304
  187.       end
  188.     end
  189.     if $game_system.message_frame == 0
  190.       self.opacity = 255
  191.     else
  192.       self.opacity = 0
  193.     end
  194.     self.back_opacity = 160
  195.   end
  196.   #--------------------------------------------------------------------------
  197.   # ● 刷新画面
  198.   #--------------------------------------------------------------------------
  199.   def update
  200. #★★★★★★★★★★★★★★★★★★★★★★★★★
  201. if @sel
  202.       @count+=1
  203.      self.contents.fill_rect(0, 0, 480*@count/$game_variables[100],2 , @color1)
  204.   #    p @count
  205.       if ($game_temp.choice_max > 0 and @count>=$game_variables[100])#即等待的帧数100号变量
  206.           $game_system.se_play($data_system.decision_se)
  207.          $game_temp.choice_proc.call($game_variables[101])#即默认选择项101号变量
  208.          $game_variables[102]=@count
  209.          @count=0
  210.          @sel=false
  211.          terminate_message
  212.         end
  213.       end
  214. #★★★★★★★★★★★★★★★★★★★★★★★★★
  215.     super
  216.     # 渐变的情况下
  217.     if @fade_in
  218.       self.contents_opacity += 24
  219.       if @input_number_window != nil
  220.         @input_number_window.contents_opacity += 24
  221.       end
  222.       if self.contents_opacity == 255
  223.         @fade_in = false
  224.       end
  225.       return
  226.     end
  227.     # 输入数值的情况下
  228.     if @input_number_window != nil
  229.       @input_number_window.update
  230.       # 确定
  231.       if Input.trigger?(Input::C)
  232.         $game_system.se_play($data_system.decision_se)
  233.         $game_variables[$game_temp.num_input_variable_id] =
  234.           @input_number_window.number
  235.         $game_map.need_refresh = true
  236.         # 释放输入数值窗口
  237.         @input_number_window.dispose
  238.         @input_number_window = nil
  239.         terminate_message
  240.       end
  241.       return
  242.     end
  243.     # 显示信息中的情况下
  244.     if @contents_showing
  245.       # 如果不是在显示选择项中就显示暂停标志
  246.       if $game_temp.choice_max == 0
  247.         self.pause = true
  248.       end
  249.       # 取消
  250.       if Input.trigger?(Input::B)
  251.         if $game_temp.choice_max > 0 and $game_temp.choice_cancel_type > 0
  252.           $game_system.se_play($data_system.cancel_se)
  253.           $game_temp.choice_proc.call($game_temp.choice_cancel_type - 1)
  254.           terminate_message
  255.         end
  256.       end
  257.       # 确定
  258.       if Input.trigger?(Input::C)
  259.         if $game_temp.choice_max > 0
  260.           $game_system.se_play($data_system.decision_se)
  261.           $game_temp.choice_proc.call(self.index)
  262.           #★★★★★★★★★★★★★★★★★★★★★★★★★
  263.           $game_variables[102]=@count
  264.           if @sel
  265.          @count=0
  266.          @sel=false
  267.         end
  268.           #★★★★★★★★★★★★★★★★★★★★★★★★★
  269.         end
  270.         terminate_message
  271.       end
  272.       return
  273.     end
  274.     # 在渐变以外的状态下有等待显示的信息与选择项的场合
  275.     if @fade_out == false and $game_temp.message_text != nil
  276.       @contents_showing = true
  277.       $game_temp.message_window_showing = true
  278.       reset_window
  279.       refresh
  280.       Graphics.frame_reset
  281.       self.visible = true
  282.       self.contents_opacity = 0
  283.       if @input_number_window != nil
  284.         @input_number_window.contents_opacity = 0
  285.       end
  286.       @fade_in = true
  287.       return
  288.     end
  289.     # 没有可以显示的信息、但是窗口为可见的情况下
  290.     if self.visible
  291.       @fade_out = true
  292.       self.opacity -= 48
  293.       if self.opacity == 0
  294.         self.visible = false
  295.         @fade_out = false
  296.         $game_temp.message_window_showing = false
  297.       end
  298.       return
  299.     end
  300.   end
  301.   #--------------------------------------------------------------------------
  302.   # ● 刷新光标矩形
  303.   #--------------------------------------------------------------------------
  304.   def update_cursor_rect
  305.     if @index >= 0
  306.       n = $game_temp.choice_start + @index
  307.       self.cursor_rect.set(8, n * 32, @cursor_width, 32)
  308.     else
  309.       self.cursor_rect.empty
  310.     end
  311.   end
  312. end
复制代码


使用说明:在出现选项前,用100号系统变量指定最大等待帧数,用101号变量指定默认选择项(从0开始)
最大等待帧数为0或者负数就可以关闭限时效果
超过最大等待帧数就会自动选择默认项(比如101号变量是0就自动选择第一项)
选择完后102号变量会得到选择花的帧数
用进度条表示时间进度的方法,为了不影响速度没有用渐变之类的美化,在开始处可以修改进度条颜色来配合对话框风格


Lv1.梦旅人

梦石
0
星屑
95
在线时间
49 小时
注册时间
2006-5-7
帖子
526
23
 楼主| 发表于 2007-8-5 06:40:44 | 只看该作者
简单的整合教学,或者说其实是对各种对话强化脚本的依样修改.......
以66增强对话框为例(http://rpg.blue/web/htm/news29.htm)
首先是初始化部分
#--------------------------------------------------------------------------
  # ● 初始化状态
  #--------------------------------------------------------------------------
  def initialize
    super(80, 304, 480, 160)
    self.contents = Bitmap.new(width - 32, height - 32)
    self.visible = false
    self.z = 9998
    @fade_in = false
    @fade_out = false
    @contents_showing = false
    @cursor_width = 0
    self.active = false
    self.index = -1
    @popchar = -2
    @alignment = true
  end
此部分与默认对话基本相同,在中间任意处加入对进度条颜色的定义
    #★★★★★★★★★★★★★★★★★★★★★★★★★
   @color1=Color.new(255,255,255,128)
   #★★★★★★★★★★★★★★★★★★★★★★★★★
然后搜索if $game_temp.choice_max > 0,找到对选择项和数值输入的处理部分
  1. if $game_temp.choice_max > 0
  2.       @item_max = $game_temp.choice_max
  3.       self.active = true
  4.       self.index = 0
  5.     end
  6.     if $game_temp.num_input_variable_id > 0
  7.       digits_max = $game_temp.num_input_digits_max
  8.       number = $game_variables[$game_temp.num_input_variable_id]
  9.       @input_number_window = Window_InputNumber.new(digits_max)
  10.       @input_number_window.number = number
  11.       @input_number_window.x = self.x + 8
  12.       @input_number_window.y = self.y + $game_temp.num_input_start * 32
  13.     end
复制代码

分别加点东西,变成
  1.     if $game_temp.choice_max > 0
  2.       @item_max = $game_temp.choice_max
  3.       self.active = true
  4.       self.index = 0
  5.       #★★★★★★★★★★★★★★★★★★★★★★★★★
  6.       @count=0
  7.     if $game_variables[100]>0
  8.       @sel=true
  9.      end
  10. #★★★★★★★★★★★★★★★★★★★★★★★★★
  11.     end
  12.     if $game_temp.num_input_variable_id > 0
  13.       digits_max = $game_temp.num_input_digits_max
  14.       number = $game_variables[$game_temp.num_input_variable_id]
  15.       @input_number_window = Window_InputNumber.new(digits_max)
  16.       @input_number_window.number = number
  17.       @input_number_window.x = self.x + 8
  18.       @input_number_window.y = self.y + $game_temp.num_input_start * 32
  19.       #★★★★★★★★★★★★★★★★★★★★★★★★★
  20.       @count=0
  21.     if $game_variables[100]>0
  22.       @inp=true
  23.      end
  24. #★★★★★★★★★★★★★★★★★★★★★★★★★
  25.     end
复制代码

下面是刷新的部分也就是核心内容,搜索def update
近接着def update加入
  1. #★★★★★★★★★★★★★★★★★★★★★★★★★
  2. if @sel
  3.       @count+=1
  4.      self.contents.fill_rect(0, 0, 480*@count/$game_variables[100],2 , @color1)
  5.   #    p @count
  6.       if ($game_temp.choice_max > 0 and @count>=$game_variables[100])#即等待的帧数100号变量
  7.           $game_system.se_play($data_system.decision_se)
  8.          $game_temp.choice_proc.call($game_variables[101])#即默认选择项101号变量
  9.          $game_variables[102]=@count
  10.          @count=0
  11.          @sel=false
  12.          terminate_message
  13.         end

  14. elsif @inp
  15.       @count+=1
  16.       self.contents.fill_rect(0, 0, 480*@count/$game_variables[100],2 , @color1)
  17.   #    p @count
  18.   if @count>=$game_variables[100]
  19.         $game_system.se_play($data_system.decision_se)
  20.         $game_variables[$game_temp.num_input_variable_id] =
  21.           @input_number_window.number
  22.         $game_map.need_refresh = true
  23.         # 释放输入数值窗口
  24.         @input_number_window.dispose
  25.         @input_number_window = nil
  26.         @count=0
  27.          @inp=false
  28.         terminate_message
  29.       end
  30.       
  31. end
  32. #★★★★★★★★★★★★★★★★★★★★★★★★★
复制代码


最后一点,是当手动结束选择和输入时的内容清除部分
  1.     # 输入数值的情况下
  2.     if @input_number_window != nil
  3.       @input_number_window.update
  4.       # 确定
  5.       if Input.trigger?(Input::C)
  6.         $game_system.se_play($data_system.decision_se)
  7.         $game_variables[$game_temp.num_input_variable_id] =
  8.           @input_number_window.number
  9.         $game_map.need_refresh = true
  10.         # 释放输入数值窗口
  11.         @input_number_window.dispose
  12.         @input_number_window = nil
  13.         terminate_message
  14.       end
  15.       return
  16.     end
  17.     # 显示信息中的情况下
  18.     if @contents_showing
  19.       # 如果不是在显示选择项中就显示暂停标志
  20.       if $game_temp.choice_max == 0
  21.         self.pause = true
  22.       end
  23.       # 取消
  24.       if Input.trigger?(Input::B)
  25.         if $game_temp.choice_max > 0 and $game_temp.choice_cancel_type > 0
  26.           $game_system.se_play($data_system.cancel_se)
  27.           $game_temp.choice_proc.call($game_temp.choice_cancel_type - 1)
  28.           terminate_message
  29.         end
  30.       end
  31.       # 确定
  32.       if Input.trigger?(Input::C)
  33.         if $game_temp.choice_max > 0
  34.           $game_system.se_play($data_system.decision_se)
  35.           $game_temp.choice_proc.call(self.index)
  36.         end
  37.         terminate_message
  38.       end
复制代码

修改
  1.     # 输入数值的情况下
  2.     if @input_number_window != nil
  3.       @input_number_window.update
  4.       # 确定
  5.       if Input.trigger?(Input::C)
  6.         $game_system.se_play($data_system.decision_se)
  7.         $game_variables[$game_temp.num_input_variable_id] =
  8.           @input_number_window.number
  9.         $game_map.need_refresh = true
  10.         # 释放输入数值窗口
  11.         @input_number_window.dispose
  12.         @input_number_window = nil
  13.         terminate_message
  14.         #★★★★★★★★★★★★★★★★★★★★★★★★★
  15.           $game_variables[102]=@count
  16.           if @inp
  17.          @count=0
  18.          @inp=false
  19.          end
  20. #★★★★★★★★★★★★★★★★★★★★★★★★★
  21.       end
  22.       return
  23.     end
  24.     # 显示信息中的情况下
  25.     if @contents_showing
  26.       # 如果不是在显示选择项中就显示暂停标志
  27.       if $game_temp.choice_max == 0
  28.         self.pause = true
  29.       end
  30.       # 取消
  31.       if Input.trigger?(Input::B)
  32.         if $game_temp.choice_max > 0 and $game_temp.choice_cancel_type > 0
  33.           $game_system.se_play($data_system.cancel_se)
  34.           $game_temp.choice_proc.call($game_temp.choice_cancel_type - 1)
  35.           terminate_message
  36.         end
  37.       end
  38.       # 确定
  39.       if Input.trigger?(Input::C)
  40.         if $game_temp.choice_max > 0
  41.           $game_system.se_play($data_system.decision_se)
  42.           $game_temp.choice_proc.call(self.index)
  43.                     #★★★★★★★★★★★★★★★★★★★★★★★★★
  44.           $game_variables[102]=@count
  45.           if @sel
  46.           @count=0
  47.           @sel=false
  48.           end
  49.           #★★★★★★★★★★★★★★★★★★★★★★★★★

  50.         end
  51.         terminate_message
复制代码



至此,修改完成!
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
451
在线时间
127 小时
注册时间
2006-11-2
帖子
1200
22
发表于 2007-8-5 05:42:19 | 只看该作者
发布完毕 VIP += 2

http://rpg.blue/web/htm/news807.htm

如果您对此有何异议请短信告诉我。{/wx}
和记忆一起封存着的ID...
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2007-8-4
帖子
7
21
发表于 2007-8-4 02:19:35 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
1 小时
注册时间
2007-6-30
帖子
111
20
发表于 2007-8-4 01:37:06 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
95
在线时间
49 小时
注册时间
2006-5-7
帖子
526
19
 楼主| 发表于 2007-8-3 15:21:33 | 只看该作者
嗯?你的意思是............
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
1 小时
注册时间
2007-6-30
帖子
111
18
发表于 2007-8-3 05:03:24 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
17
发表于 2007-8-2 04:20:46 | 只看该作者
以下引用cftx于2007-8-1 20:15:27的发言:

就是怕卡的问题........我看用渐变都可能会卡。
你的意思是用图片移动?还是什么移动?

通过脚本做图片移动或者是更改zoom_x之类....这样或许会好点。
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
95
在线时间
49 小时
注册时间
2006-5-7
帖子
526
16
 楼主| 发表于 2007-8-2 04:15:27 | 只看该作者
就是怕卡的问题........我看用渐变都可能会卡。
你的意思是用图片移动?还是什么移动?
回复 支持 反对

使用道具 举报

Lv1.梦旅人

Dancer-

梦石
0
星屑
105
在线时间
78 小时
注册时间
2006-5-15
帖子
3306
15
发表于 2007-8-2 02:08:22 | 只看该作者
以下引用cftx于2007-8-1 18:06:40的发言:

关键是美化是个大问题.........................


美化用blt连续处理可能还是有问题...会卡死吧。
考虑一下移动如何?
一个机缘巧合后,被改变了人生的第八年。
养着两只猫,可是我对猫过敏。
为了那终将到来的一天。
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-28 22:44

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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