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

Project1

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

[脚本] HYN 任务系统脚本

[复制链接]

路人党员

梦石
0
星屑
52
在线时间
2276 小时
注册时间
2010-12-30
帖子
3225
跳转到指定楼层
1
发表于 2011-2-7 21:42:24 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 英顺的马甲 于 2011-2-7 21:57 编辑

使用方法:插入main之前,Scene_Title
                 def command_new_game下面插入$game_mission = Game_Mission.new
                 Scene_Save,Marshal.dump($game_player, file)下面插入Marshal.dump($game_mission, file)
                 Scene_Load,$game_player        = Marshal.load(file)的下面插入$game_mission = Marshal.load(file)
调用方法:$scene = Scene_Mission.new
  1. #==============================================================================#
  2. #           任务系统 by EngShun                                                #
  3. #                                                                              #
  4. #    简单说明:                                                                #
  5. #    调用方法:$scene = Scene_Mission.new                                      #
  6. #    用$game_mission.get_mission(任务名,说明)得到任务                          #
  7. #    用$game_mission.done_mission(任务名)完成任务                              #
  8. #    用$game_mission.delete_mission(任务名)删除任务                            #
  9. #    用$game_mission.done_all完成所有任务                                      #
  10. #    用$game_mission.delete_all删除所有任务                                    #
  11. #==============================================================================#

  12. class Game_Mission
  13.   attr_accessor :mission
  14.   attr_accessor :mission_info
  15.   attr_accessor :mission_done
  16.   def initialize
  17.     @mission = ["没有任务"]
  18.     @mission_info = ["没有任何的任务"]
  19.     @mission_done = []
  20.   end
  21.   def get_mission(mission,info)
  22.     unless @mission.include?(mission)
  23.       @mission.push(mission)
  24.       @mission_info.push(info)
  25.       delete_mission("没有任务") if @mission.include?("没有任务")
  26.     end
  27.   end
  28.   def done_mission(done_mission)
  29.     for i in [email protected]
  30.       if @mission[i] == done_mission
  31.         @mission_done.delete(i) if @mission_done.include?(i)
  32.         @mission_done.push(i)
  33.       end
  34.     end
  35.   end
  36.   def delete_mission(delete_mission)
  37.     for i in [email protected]
  38.       if @mission[i] == delete_mission
  39.         @mission.delete(delete_mission)
  40.         delete_info = @mission_info[i]
  41.         @mission_info.delete(delete_info)
  42.         @mission_done.delete(i) if @mission_done.include?(i)
  43.       end
  44.     end
  45.     $game_mission = Game_Mission.new if @mission.size == 0
  46.   end
  47.   def done_all
  48.     for i in [email protected]
  49.       @mission_done.delete(i) if @mission_done.include?(i)
  50.       @mission_done.push(i)
  51.     end
  52.   end
  53.   def delete_all
  54.     $game_mission = Game_Mission.new
  55.   end
  56. end

  57. class Window_Mission < Window_Selectable
  58.   def initialize
  59.     super(0, 64, 200, 416)
  60.     self.index = 0
  61.     @item_max = $game_mission.mission.size
  62.     if self.contents != nil
  63.       self.contents.dispose
  64.       self.contents = nil
  65.     end
  66.     self.contents = Bitmap.new(width - 32, @item_max * 32)
  67.     for i in 0..$game_mission.mission.size
  68.       if $game_mission.mission_done.include?(i)
  69.         self.contents.font.color = disabled_color
  70.         text = $game_mission.mission[i] + "(√)"
  71.       else
  72.         self.contents.font.color = normal_color
  73.         text = $game_mission.mission[i]
  74.       end
  75.       self.contents.draw_text(4, i * 32, 160, 32, text.to_s)
  76.     end
  77.   end
  78. end

  79. class Scene_Mission
  80.   def main
  81.     @window1 = Window_Base.new(0,0,200,64)
  82.     @window1.contents = Bitmap.new(168,32)
  83.     @window1.contents.draw_text(0,0,168,32,"任务",1)
  84.     @window2 = Window_Base.new(200,0,440,64)
  85.     @window2.contents = Bitmap.new(408,32)
  86.     @window2.contents.draw_text(0,0,408,32,"任务说明",1)
  87.     @mission_window = Window_Mission.new
  88.     @mission_window.index = $game_mission.mission.size - 1
  89.     @info_window = Window_Base.new(200,64,440,416)
  90.     @info_window.contents =  Bitmap.new(408, 384)
  91.     info = $game_mission.mission_info[@mission_window.index]
  92.     draw_mission_info(info)
  93.     Graphics.transition
  94.     loop do
  95.       Graphics.update
  96.       Input.update
  97.       update
  98.       if $scene != self
  99.         break
  100.       end
  101.     end
  102.     Graphics.freeze
  103.     @window1.dispose
  104.     @window2.dispose
  105.     @mission_window.dispose
  106.     @info_window.dispose
  107.   end
  108.   def update
  109.     @mission_window.update
  110.     @info_window.update
  111.     if Input.trigger?(Input::B)
  112.       $game_system.se_play($data_system.cancel_se)
  113.       $scene = Scene_Map.new
  114.       return
  115.     end
  116.     if Input.repeat?(Input::UP) or
  117.        Input.repeat?(Input::DOWN)
  118.       info = $game_mission.mission_info[@mission_window.index]
  119.       draw_mission_info(info)
  120.     end
  121.   end
  122.   # 引用他人的脚本
  123.   def draw_mission_info(task)
  124.     @info_window.contents.clear
  125.     # 记录文字x坐标
  126.     x = 0
  127.     # 记录文字y坐标
  128.     y = 0
  129.     # 记录换行时y坐标最小加值
  130.     min_y = 0
  131.     @info_window.contents.font.color = @info_window.normal_color
  132.     # 描绘任务简介
  133.     text = task.clone
  134.     # 限制文字处理
  135.     begin
  136.       last_text = text.clone
  137.       text.gsub!(/\\[Vv]\[([0-9]+)\]/) { $game_variables[$1.to_i] }
  138.     end until text == last_text
  139.     text.gsub!(/\\[Nn]\[([0-9]+)\]/) do
  140.       $game_actors[$1.to_i] != nil ? $game_actors[$1.to_i].name : ""
  141.     end
  142.     # 为了方便、将 "\\\\" 变换为 "\000"
  143.     text.gsub!(/\\\\/) { "\000" }
  144.     # "\C" 变为 "\001"
  145.     text.gsub!(/\\[Cc]\[([0-9]+)\]/) { "\001[#{$1}]" }
  146.     # "\I" 变为 "\002"
  147.     text.gsub!(/\\[Ii]/) { "\002" }
  148.     # "\P" 变为 "\003"
  149.     text.gsub!(/\\[Pp]/) { "\003" }
  150.     # c 获取 1 个字 (如果不能取得文字就循环)
  151.     while ((c = text.slice!(/./m)) != nil)
  152.       # \\ 的情况下
  153.       if c == "\000"
  154.         # 还原为本来的文字
  155.         c = "\\"
  156.       end
  157.       # \C[n] 的情况下
  158.       if c == "\001"
  159.         # 更改文字色
  160.         text.sub!(/\[([0-9]+)\]/, "")
  161.         color = $1.to_i
  162.         if color >= 0 and color <= 7
  163.           @info_window.contents.font.color = @info_window.text_color(color)
  164.         elsif color == 8
  165.           @info_window.contents.font.color = @info_window.disabled_color
  166.         elsif color == 9
  167.           @info_window.contents.font.color = @info_window.system_color
  168.         end
  169.         # 下面的文字
  170.         next
  171.       end
  172.       # 图标的情况下
  173.       if c == "\002"
  174.         icon_name = ''
  175.         while ((cha = text.slice!(/./m)) != ']')
  176.           next if cha == '['
  177.           icon_name += cha
  178.         end
  179.         icon = RPG::Cache.icon(icon_name)
  180.         if x + icon.width > @info_window.contents.width
  181.           x = 0
  182.           y += [32, min_y].max
  183.           min_y = 0
  184.         end
  185.         @info_window.contents.blt(x + 4, y + 4, icon, Rect.new(0, 0, 24, 24))
  186.         x += 28
  187.         next
  188.       end
  189.       # 图片的情况下
  190.       if c == "\003"
  191.         pic_name = ''
  192.         while ((cha = text.slice!(/./m)) != ']')
  193.           next if cha == '['
  194.           pic_name += cha
  195.         end
  196.         pic = RPG::Cache.picture(pic_name)
  197.         if x + pic.width > @info_window.contents.width
  198.           x = 0
  199.           y += [32, min_y].max
  200.           min_y = 0
  201.         end
  202.         @info_window.contents.blt(x + 4, y, pic, Rect.new(0, 0, pic.width, pic.height))
  203.         x += pic.width
  204.         min_y = [pic.height, 32].max
  205.         next
  206.       end
  207.       # 另起一行文字的情况下
  208.       if c == "\n"
  209.         y += [32, min_y].max
  210.         min_y = 0
  211.         x = 0
  212.         # 下面的文字
  213.         next
  214.       end
  215.       # 自动换行处理
  216.       if x + @info_window.contents.text_size(c).width > @info_window.contents.width
  217.         y += [32, min_y].max
  218.         min_y = 0
  219.         x = 0
  220.       end
  221.       # 描绘文字
  222.       @info_window.contents.draw_text(4 + x, y, 40, 32, c)
  223.       # x 为要描绘文字的加法运算
  224.       x += @info_window.contents.text_size(c).width
  225.     end
  226.   end
  227.   # 引用结束
  228. end
复制代码
本人擅长XP,如果有脚本或者Ruby方面的问题欢迎发电邮到[email protected]咨询,本人很少检查电邮所以不一定会及时回复,本人不会直接出手解决问题只会提供一个方向,所以谢绝伸手党
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

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

GMT+8, 2025-4-5 18:24

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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