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

Project1

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

截图存档 VX化

 关闭 [复制链接]

Lv1.梦旅人

SB們大家好<

梦石
0
星屑
50
在线时间
3 小时
注册时间
2008-1-7
帖子
457
跳转到指定楼层
1
发表于 2008-4-1 09:31:01 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
去掉了XP版的一些功能
挺简陋的,可以自己添加描绘一些其他东西。
只是加工,版权归原作者。


截图:



脚本:
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,转载和使用请保留此信息
  3. #===============================================================================

  4. BBS_66RPG_DIR = "Save/"  # 储存文件夹名,请制作游戏时自行建立此文件夹

  5. #===============================================================================
  6. module Screen  
  7.   @screen = Win32API.new 'screenshot', 'Screenshot', %w(l l l l p l l), ''
  8.   @readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l'
  9.   @findwindow = Win32API.new 'user32', 'FindWindowA', %w(p p), 'l'
  10.   module_function
  11.   #-----------------------------------------------------------------------------
  12.   # here comes the stuff...
  13.   # i add here the stuff for automatic change of the number for the screenshot
  14.   # so it wont overrite the old one...
  15.   # if you want to change so stuff change them in this line below
  16.   # or you can change them in your command line... like
  17.   # Screen::shot("screenshot", 2)
  18.   # this change the name and the type of the screenshot
  19.   # (0 = bmp, 1 = jpg and 2 = png)
  20.   # ----------------------------------------------------------------------------
  21.   def shot(file = "shot", typ = 1)
  22.     # to add the right extension...
  23.     if typ == 0
  24.       typname = ".bmp"
  25.     elsif typ == 1
  26.       typname = ".jpg"
  27.     elsif typ == 2
  28.       typname = ".png"
  29.     end   
  30.     file_index = 0   
  31.     dir = "Save/"   
  32.     # make the filename....
  33.     file_name = dir + file.to_s + typname.to_s   
  34.     # make the screenshot.... Attention dont change anything from here on....
  35.     @screen.call(0,0,544,416,file_name,handel,typ)
  36.   end
  37.   # find the game window...
  38.   def handel
  39.     game_name = "\0" * 256
  40.     @readini.call('Game','Title','',game_name,255,".\\Game.ini")
  41.     game_name.delete!("\0")
  42.     return @findwindow.call('RGSS Player',game_name)
  43.   end
  44. end

  45. #==============================================================================
  46. # ■ Window_SaveFile
  47. #------------------------------------------------------------------------------
  48. #  显示存档以及读档画面、保存文件的窗口。
  49. #==============================================================================

  50. class Window_SaveFile < Window_Base
  51.   #--------------------------------------------------------------------------
  52.   # ● 定义实例变量
  53.   #--------------------------------------------------------------------------
  54.   attr_reader   :filename                 # 文件名
  55.   attr_reader   :file_exist               # 文件存在标志
  56.   attr_reader   :time_stamp               # 时间标记
  57.   attr_reader   :selected                 # 选择状态
  58.   attr_reader   :sprite                   # 图片
  59.   attr_reader   :pic_window
  60.   
  61.   #--------------------------------------------------------------------------
  62.   # ● 初始化对像
  63.   #     file_index : 存档文件的索引 (0~3)
  64.   #     filename   : 文件名
  65.   #--------------------------------------------------------------------------
  66.   def initialize(file_index, filename)
  67.     super(0, 56 + file_index % 4 * 90, 160, 90)
  68.     @file_index = file_index
  69.     @filename = filename
  70.     load_gamedata
  71.    
  72.     @sprite = Sprite_Base.new
  73.     @sprite.visible = false
  74.     @sprite.z = 100
  75.    
  76.     @pic_window = Window_SavePic.new(filename)
  77.    
  78.     refresh
  79.     @selected = false
  80.   end

  81.   #--------------------------------------------------------------------------
  82.   # ● 刷新
  83.   #--------------------------------------------------------------------------
  84.   def refresh
  85.     self.contents.clear
  86.     @sprite.visible = @file_index == $game_temp.last_file_index
  87.     @pic_window.visible = @sprite.visible
  88.     @pic_window.refresh
  89.     name = Vocab::File + " #{@file_index + 1}"
  90.     @name_width = contents.text_size("Save#{@file_index + 1}.rvdata").width
  91.     if @file_exist
  92.       if FileTest.exist?(BBS_66RPG_DIR+"Save#{@file_index + 1}.jpg")
  93.         @sprite.bitmap = Bitmap.new(BBS_66RPG_DIR+"Save#{@file_index + 1}.jpg")
  94.       end
  95.       @sprite.x = 176
  96.       @sprite.y = 60
  97.       @sprite.zoom_x = 0.65
  98.       @sprite.zoom_y = 0.65
  99.       self.contents.draw_text(0,0,128,WLH,name)
  100.     else
  101.       self.contents.draw_text(0,0,128,WLH,"空")
  102.     end
  103.   end
  104.   
  105.   def dispose
  106.     super
  107.     @sprite.dispose
  108.     @pic_window.dispose
  109.   end
  110.   
  111. end


  112. class Window_SavePic < Window_Base
  113.   
  114.   def initialize(filename)
  115.     super(160,52,384,364)
  116.     @filename = filename
  117.     self.visible = false
  118.     load_gamedata
  119.   end
  120.   
  121.   #--------------------------------------------------------------------------
  122.   # ● 刷新
  123.   #--------------------------------------------------------------------------
  124.   def refresh
  125.     self.contents.clear
  126.     self.contents.font.color = normal_color
  127.     if @file_exist
  128.       draw_party_characters(128, 308)
  129.       draw_playtime(0, 308, contents.width - 4, 2)
  130.     end
  131.   end
  132.   
  133.   #--------------------------------------------------------------------------
  134.   # ● 队伍角色的描画
  135.   #     x : 描画目标 X 坐标
  136.   #     y : 描画目标 Y 坐标
  137.   #--------------------------------------------------------------------------
  138.   def draw_party_characters(x, y)
  139.     for i in [email protected]
  140.       name = @characters[i][0]
  141.       index = @characters[i][1]
  142.       draw_character(name, index, x + i * 48, y)
  143.     end
  144.   end
  145.   #--------------------------------------------------------------------------
  146.   # ● 游戏时间的描画
  147.   #     x : 描画目标 X 坐标
  148.   #     y : 描画目标 Y 坐标
  149.   #     width : 宽
  150.   #     align : 对齐方式
  151.   #--------------------------------------------------------------------------
  152.   def draw_playtime(x, y, width, align)
  153.     hour = @total_sec / 60 / 60
  154.     min = @total_sec / 60 % 60
  155.     sec = @total_sec % 60
  156.     time_string = sprintf("%02d:%02d:%02d", hour, min, sec)
  157.     self.contents.font.color = normal_color
  158.     self.contents.draw_text(x, y, width, WLH, time_string, 2)
  159.   end
  160.   
  161.   
  162.   #--------------------------------------------------------------------------
  163.   # ● 部分游戏数据。
  164.   #    开关和变量默认未使用 (地图名表示等扩张时使用) 。
  165.   #--------------------------------------------------------------------------
  166.   def load_gamedata
  167.     @time_stamp = Time.at(0)
  168.     @file_exist = FileTest.exist?(@filename)
  169.     if @file_exist
  170.       file = File.open(@filename, "r")
  171.       @time_stamp = file.mtime
  172.       begin
  173.         @characters     = Marshal.load(file)
  174.         @frame_count    = Marshal.load(file)
  175.         @last_bgm       = Marshal.load(file)
  176.         @last_bgs       = Marshal.load(file)
  177.         @game_system    = Marshal.load(file)
  178.         @game_message   = Marshal.load(file)
  179.         @game_switches  = Marshal.load(file)
  180.         @game_variables = Marshal.load(file)
  181.         @total_sec = @frame_count / Graphics.frame_rate
  182.       rescue
  183.         @file_exist = false
  184.       ensure
  185.         file.close
  186.       end
  187.     end
  188.   end
  189. end


  190. #==============================================================================
  191. # ■ Scene_File
  192. #------------------------------------------------------------------------------
  193. #  处理文件的类。
  194. #==============================================================================

  195. class Scene_File < Scene_Base
  196.   
  197.   #--------------------------------------------------------------------------
  198.   # ● 返回前一个画面
  199.   #--------------------------------------------------------------------------
  200.   def return_scene
  201.     if @from_title
  202.       $scene = Scene_Title.new
  203.     elsif @from_event
  204.       $scene = Scene_Map.new
  205.     else
  206.       $scene = Scene_Map.new
  207.     end
  208.   end
  209.   
  210.   alias old_write_save_data write_save_data
  211.   def write_save_data(file)
  212.     if FileTest.exist?(BBS_66RPG_DIR+"shot.jpg")
  213.       File.rename(BBS_66RPG_DIR+"shot.jpg", BBS_66RPG_DIR+"Save#{@index+ 1}.jpg")
  214.     end
  215.     old_write_save_data(file)
  216.   end
  217.   #--------------------------------------------------------------------------
  218.   # ● 刷新存档文件选项
  219.   #--------------------------------------------------------------------------
  220.   def update_savefile_selection
  221.     if Input.trigger?(Input::C)
  222.       determine_savefile
  223.     elsif Input.trigger?(Input::B)
  224.       Sound.play_cancel
  225.       return_scene
  226.     else
  227.       last_index = @index
  228.       if Input.repeat?(Input::DOWN)
  229.         cursor_down(Input.trigger?(Input::DOWN))
  230.       end
  231.       if Input.repeat?(Input::UP)
  232.         cursor_up(Input.trigger?(Input::UP))
  233.       end
  234.       if @index != last_index
  235.         Sound.play_cursor
  236.         @savefile_windows[last_index].selected = false
  237.         @savefile_windows[@index].selected = true
  238.         @savefile_windows[last_index].sprite.visible = false
  239.         @savefile_windows.each{|i|i.pic_window.visible = false}
  240.         @savefile_windows[@index].sprite.visible = true
  241.         @savefile_windows[@index].pic_window.visible = true
  242.         @savefile_windows[@index].pic_window.refresh
  243.       end
  244.     end
  245.   end
  246. end

  247. class Scene_Map
  248.   #--------------------------------------------------------------------------
  249.   # ● 按取消按钮的菜单呼叫判定
  250.   #--------------------------------------------------------------------------
  251.   def update_call_menu
  252.     if Input.trigger?(Input::B)
  253.       return if $game_map.interpreter.running?        # 事件执行中?
  254.       return if $game_system.menu_disabled            # 菜单禁止中?
  255.       $game_temp.menu_beep = true                     # SE 演奏标志设定
  256.       Screen::shot
  257.       $game_temp.next_scene = "menu"
  258.     end
  259.   end
  260. end


  261. class Interpreter
  262.   #--------------------------------------------------------------------------
  263.   # ● 调用存档画面
  264.   #--------------------------------------------------------------------------
  265.   def command_352
  266.     $game_temp.next_scene = "save"
  267.     @index += 1
  268.     Screen::shot
  269.     return false
  270.   end
  271. end
复制代码


范例:
http://rpg.blue/upload_program/files/截图存档VX_87442191.rar
这不是6R,我对自己说。

Lv2.观梦者

天仙

梦石
0
星屑
620
在线时间
184 小时
注册时间
2008-4-15
帖子
5023

贵宾

2
发表于 2008-4-1 09:41:14 | 只看该作者
乾脆再加强一点,把存读档合一吧

PS:这不是应该发在技术区吗?
VA脚本开工中...
偷窃脚本1.0 - 已完成
回复 支持 反对

使用道具 举报

Lv1.梦旅人

SB們大家好<

梦石
0
星屑
50
在线时间
3 小时
注册时间
2008-1-7
帖子
457
3
 楼主| 发表于 2008-4-1 09:47:44 | 只看该作者
嗯,有空再更新吧。
这不是6R,我对自己说。
回复 支持 反对

使用道具 举报

Lv3.寻梦者 (暗夜天使)

名侦探小柯

梦石
0
星屑
3367
在线时间
3624 小时
注册时间
2006-9-6
帖子
37402

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

4
发表于 2008-4-3 02:54:17 | 只看该作者
希望再美观一点。
回复 支持 反对

使用道具 举报

Lv2.观梦者

神隐的主犯

梦石
0
星屑
278
在线时间
271 小时
注册时间
2008-2-22
帖子
7691

贵宾

5
发表于 2008-4-3 02:59:18 | 只看该作者
为什么我下完后,测试存档的时候,截图是黑的??{/pz}{/pz}{/pz}

《天空之城 —— 破碎的命运》
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-4-5 05:51

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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