Project1

标题: 【求助帖】截屏脚本的API缺失... [打印本页]

作者: px.凤翔九天    时间: 2010-12-27 00:18
标题: 【求助帖】截屏脚本的API缺失...
本帖最后由 px.凤翔九天 于 2010-12-27 21:30 编辑

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

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

  5. # 若想使用自定义背景图,脚本62行的井号去掉,并放置一张相应图形。

  6. # 在你的Scene_Title中找到这一段(如果使用其他插件脚本,在插件中找):
  7. #    for i in 0..3
  8. #      if FileTest.exist?("Save#{i+1}.rxdata")
  9. # 请自行把0..3改为0..最大进度号,比如0..9
  10. # "Save#{i+1}.rxdata" 改为"Save/Save#{i}.rxdata"

  11. # 增加进度的方法:138,258行,继续添加。你也可以改“进度X”为“回忆X”或者“红/绿/蓝笔记本”

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

  52. class Window_File < Window_Base
  53.   attr_accessor :index
  54.   def initialize(index = 0)
  55.     @backsp = Sprite.new
  56.   #  @backsp.bitmap = Bitmap.new("Graphics/Pictures/1.png")
  57.     @backsp.z = 99
  58.     super(160,0,480,480)
  59.     #这行可以不用
  60.     self.contents = Bitmap.new(width - 32, height - 32)
  61.     @index = index
  62.     #这里我要说明一句,之所以用sprite是为了放缩图片
  63.     @sprite = Sprite.new
  64.     @sprite.visible = false
  65.     @sprite.z = 100
  66.     @sp_ch = []
  67.     @sp_ch[0] = Sprite.new
  68.     refresh
  69.   end
  70.   def refresh
  71.     self.contents.clear
  72.     for i in @sp_ch
  73.       i.visible = false
  74.     end
  75.     @sprite.visible = false
  76.     if FileTest.exist?(BBS_66RPG_DIR+"Save#{@index}.rxdata")
  77.       @sprite.visible = true
  78.       if FileTest.exist?(BBS_66RPG_DIR+"Save#{@index}.jpg")
  79.         @sprite.bitmap = Bitmap.new(BBS_66RPG_DIR+"Save#{@index}.jpg")
  80.       else
  81.         self.contents.draw_text(32,64,400,32,"截图似乎有点问题……您搞什么了您?")
  82.       end
  83.       @sprite.x = 176
  84.       @sprite.y = 16
  85.       @sprite.zoom_x = 0.7
  86.       @sprite.zoom_y = 0.7
  87.       file = File.open(BBS_66RPG_DIR+"Save#{@index}.rxdata", "r")
  88.       @time_stamp = file.mtime
  89.       @characters = Marshal.load(file)
  90.       @frame_count = Marshal.load(file)
  91.       @game_system = Marshal.load(file)
  92.       @game_switches = Marshal.load(file)
  93.       @game_variables = Marshal.load(file)
  94.       @total_sec = @frame_count / Graphics.frame_rate
  95.       file.close
  96.       for i in [email protected]
  97.         @sp_ch[i] = Sprite.new
  98.         @sp_ch[i].visible = true
  99.         @sp_ch[i].bitmap = RPG::Cache.battler(@characters[i][3], @characters[i][4])
  100.         @sp_ch[i].x = 180 + i*100      
  101.         @sp_ch[i].y = 460 - @sp_ch[i].bitmap.height
  102.         @sp_ch[i].z = 101
  103.       end
  104.       # 描绘游戏时间
  105.       hour = @total_sec / 60 / 60
  106.       min = @total_sec / 60 % 60
  107.       sec = @total_sec % 60
  108.       time_string = sprintf("%02d:%02d:%02d", hour, min, sec)
  109.       self.contents.font.color = normal_color
  110.       self.contents.draw_text(4, 390, 420, 32, time_string, 2)
  111.       # 描绘时间标记
  112.       self.contents.font.color = normal_color
  113.       time_string = @time_stamp.strftime("%Y/%m/%d %H:%M")
  114.       self.contents.draw_text(4, 420, 420, 32, time_string, 2)
  115.     else
  116.       self.contents.draw_text(32,32,420,32,"这个存档是空的")
  117.     end
  118.   end
  119.   def dispose
  120.     super
  121.     @sprite.dispose
  122.     @backsp.dispose
  123.     for i in @sp_ch
  124.       i.dispose
  125.     end
  126.   end
  127. end


  128. class Scene_Save
  129.   def main
  130.     @command_window = Window_Command.new(640,["进度一","进度二","进度三","进度四","进度五","进度六","进度七","进度八","进度九","进度十"],10)
  131.     @command_window.x = 64
  132.     @command_window.y = 96
  133.     @command_window.index = $game_temp.last_file_index
  134.     @content_window = Window_File.new($game_temp.last_file_index)
  135.     # 执行过渡
  136.     Graphics.transition
  137.     # 主循环
  138.     loop do
  139.       # 刷新游戏画面
  140.       Graphics.update
  141.       # 刷新输入信息
  142.       Input.update
  143.       # 刷新画面
  144.       update
  145.       # 如果画面被切换的话就中断循环
  146.       if $scene != self
  147.         break
  148.       end
  149.     end
  150.     # 准备过渡
  151.     Graphics.freeze
  152.     @command_window.dispose
  153.     @content_window.dispose
  154.   end
  155.   def update
  156.     @command_window.update   
  157.     if @command_window.index != @content_window.index
  158.       @content_window.index = @command_window.index
  159.       @content_window.refresh
  160.     end   
  161.     #——————下面这一部分是原装脚本——————#
  162.     if Input.trigger?(Input::B)  
  163.       $game_system.se_play($data_system.cancel_se)
  164.       if $game_temp.save_calling
  165.         $game_temp.save_calling = false
  166.         $scene = Scene_Map.new
  167.         return
  168.       end
  169.       $scene = Scene_Menu.new(4)
  170.     end   
  171.     #———————————————————————#   
  172.     if Input.trigger?(Input::C)
  173.       # 演奏存档 SE
  174.       $game_system.se_play($data_system.save_se)
  175.       # 写入存档数据
  176.       file = File.open(BBS_66RPG_DIR+"Save#{@command_window.index}.rxdata", "wb")
  177.       write_save_data(file)
  178.       if FileTest.exist?(BBS_66RPG_DIR+"shot.jpg")
  179.         File.rename(BBS_66RPG_DIR+"shot.jpg", BBS_66RPG_DIR+"Save#{@command_window.index}.jpg")
  180.       end
  181.       file.close
  182.       $game_temp.last_file_index = @command_window.index
  183.       # 如果被事件调用
  184.       if $game_temp.save_calling
  185.         # 清除存档调用标志
  186.         $game_temp.save_calling = false
  187.         # 切换到地图画面
  188.         $scene = Scene_Map.new
  189.         return
  190.       end
  191.       # 切换到菜单画面
  192.       $scene = Scene_Map.new
  193.     end
  194.     #———————————————————————#
  195.   end
  196.   #--------------------------------------------------------------------------
  197.   # ● 写入存档数据
  198.   #     file : 写入用文件对像 (已经打开)
  199.   #--------------------------------------------------------------------------
  200.   def write_save_data(file)
  201.     # 生成描绘存档文件用的角色图形
  202.     characters = []
  203.     for i in 0...$game_party.actors.size
  204.       actor = $game_party.actors[i]
  205.       characters.push([actor.character_name, actor.character_hue, actor.id, actor.battler_name, actor.battler_hue])
  206.     end
  207.     # 写入描绘存档文件用的角色数据
  208.     Marshal.dump(characters, file)
  209.     # 写入测量游戏时间用画面计数
  210.     Marshal.dump(Graphics.frame_count, file)
  211.     # 增加 1 次存档次数
  212.     $game_system.save_count += 1
  213.     # 保存魔法编号
  214.     # (将编辑器保存的值以随机值替换)
  215.     $game_system.magic_number = $data_system.magic_number
  216.     # 写入各种游戏对像
  217.     Marshal.dump($game_system, file)
  218.     Marshal.dump($game_switches, file)
  219.     Marshal.dump($game_variables, file)
  220.     Marshal.dump($game_self_switches, file)
  221.     Marshal.dump($game_screen, file)
  222.     Marshal.dump($game_actors, file)
  223.     Marshal.dump($game_party, file)
  224.     Marshal.dump($game_troop, file)
  225.     Marshal.dump($game_map, file)
  226.     Marshal.dump($game_player, file)
  227.   end
  228. end


  229. class Scene_Load
  230.   def initialize
  231.     # 再生成临时对像
  232.     $game_temp = Game_Temp.new
  233.     # 选择存档时间最新的文件
  234.     $game_temp.last_file_index = 0
  235.     latest_time = Time.at(0)
  236.     for i in 0..6
  237.       filename = BBS_66RPG_DIR+"Save#{i}.rxdata"
  238.       if FileTest.exist?(filename)
  239.         file = File.open(filename, "r")
  240.         if file.mtime > latest_time
  241.           latest_time = file.mtime
  242.           $game_temp.last_file_index = i
  243.         end
  244.         file.close
  245.       end
  246.     end
  247.   end  
  248.   def main
  249.     @command_window = Window_Command.new(160,["进度一","进度二","进度三","进度四","进度五","进度六"])
  250.     @command_window.y = 96
  251.     @command_window.index = $game_temp.last_file_index
  252.     @content_window = Window_File.new($game_temp.last_file_index)
  253.     # 执行过渡
  254.     Graphics.transition
  255.     # 主循环
  256.     loop do
  257.       # 刷新游戏画面
  258.       Graphics.update
  259.       # 刷新输入信息
  260.       Input.update
  261.       # 刷新画面
  262.       update
  263.       # 如果画面被切换的话就中断循环
  264.       if $scene != self
  265.         break
  266.       end
  267.     end
  268.     # 准备过渡
  269.     Graphics.freeze
  270.     @command_window.dispose
  271.     @content_window.dispose
  272.   end
  273.   def update
  274.     @command_window.update   
  275.     if @command_window.index != @content_window.index
  276.       @content_window.index = @command_window.index
  277.       @content_window.refresh
  278.     end   
  279.     #——————下面这一部分是原装脚本——————#
  280.     if Input.trigger?(Input::B)  
  281.     # 演奏取消 SE
  282.     $game_system.se_play($data_system.cancel_se)
  283.     # 切换到标题画面
  284.     $scene = Scene_Title.new
  285.     end   
  286.     #———————————————————————#   
  287.     if Input.trigger?(Input::C)
  288.       # 文件不存在的情况下
  289.       unless FileTest.exist?(BBS_66RPG_DIR+"Save#{@command_window.index}.rxdata")
  290.         # 演奏冻结 SE
  291.         $game_system.se_play($data_system.buzzer_se)
  292.         return
  293.       end
  294.       # 演奏读档 SE
  295.       $game_system.se_play($data_system.load_se)
  296.       # 写入存档数据
  297.       file = File.open(BBS_66RPG_DIR+"Save#{@command_window.index}.rxdata", "rb")
  298.       read_save_data(file)
  299.       file.close
  300.       # 还原 BGM、BGS
  301.       $game_system.bgm_play($game_system.playing_bgm)
  302.       $game_system.bgs_play($game_system.playing_bgs)
  303.       # 刷新地图 (执行并行事件)
  304.       $game_map.update
  305.       # 切换到地图画面
  306.       $scene = Scene_Map.new
  307.     end
  308.     #———————————————————————#
  309.   end
  310.   #--------------------------------------------------------------------------
  311.   # ● 写入存档数据
  312.   #     file : 写入用文件对像 (已经打开)
  313.   #--------------------------------------------------------------------------
  314.   def read_save_data(file)
  315.     # 读取描绘存档文件用的角色数据
  316.     characters = Marshal.load(file)
  317.     # 读取测量游戏时间用画面计数
  318.     Graphics.frame_count = Marshal.load(file)
  319.     # 读取各种游戏对像
  320.     $game_system        = Marshal.load(file)
  321.     $game_switches      = Marshal.load(file)
  322.     $game_variables     = Marshal.load(file)
  323.     $game_self_switches = Marshal.load(file)
  324.     $game_screen        = Marshal.load(file)
  325.     $game_actors        = Marshal.load(file)
  326.     $game_party         = Marshal.load(file)
  327.     $game_troop         = Marshal.load(file)
  328.     $game_map           = Marshal.load(file)
  329.     $game_player        = Marshal.load(file)
  330.     # 魔法编号与保存时有差异的情况下
  331.     # (加入编辑器的编辑过的数据)
  332.     if $game_system.magic_number != $data_system.magic_number
  333.       # 重新装载地图
  334.       $game_map.setup($game_map.map_id)
  335.       $game_player.center($game_player.x, $game_player.y)
  336.     end
  337.     # 刷新同伴成员
  338.     $game_party.refresh
  339.   end
  340. end

  341. class Scene_Menu
  342.   alias bbs_66rpg_shotsave_main main
  343.   def main
  344.     if @menu_index == 0
  345.       Screen::shot
  346.     end   
  347.     bbs_66rpg_shotsave_main
  348.   end
  349. end

  350. class Interpreter
  351.   #--------------------------------------------------------------------------
  352.   # ● 调用存档画面
  353.   #--------------------------------------------------------------------------
  354.   def command_352
  355.     # 设置战斗中断标志
  356.     $game_temp.battle_abort = true
  357.     # 设置调用存档标志
  358.     $game_temp.save_calling = true
  359.     # 推进索引
  360.     @index += 1
  361.     # 结束
  362.     Screen::shot
  363.     return false
  364.   end
  365. end
复制代码
结果报错没有screenshot的API...郁闷,我的系统不完整吗??请各位给我一个呗。
作者: DeathKing    时间: 2010-12-27 00:21
印象中这个所谓的ScreenShot的API是封装在一个动态链接库里的{:nm_3:}
再查找一下源工程吧{:nm_6:}
作者: enghao_lim    时间: 2010-12-27 19:00
我曾经弄的免dll截图存档……截图是绝对能够,不过最后能不能满足你就不知道了……看起来你不像是要弄存档。:L
http://enghao.orgfree.com/blog/?post=184
下载时请自己修改后辍为rar即可。
作者: px.凤翔九天    时间: 2010-12-27 21:16
本帖最后由 px.凤翔九天 于 2010-12-27 21:28 编辑
enghao_lim 发表于 2010-12-27 19:00
我曾经弄的免dll截图存档……截图是绝对能够,不过最后能不能满足你就不知道了……看起来你不像是要弄存档 ...


好强的洞察力...你怎么知道我搞这个截图不是用在存档上?
不管怎么说,谢了。
截图就好,要的就是截图。

作者: liqunsz    时间: 2010-12-27 21:19
本帖最后由 liqunsz 于 2010-12-27 21:19 编辑

放置在游戏的目录即可
screenshot.rar (48.43 KB, 下载次数: 35)
有的时候这个文件被制作者隐藏所以导致复制的时候忘记了

然后工程神马的是真的老物了……= =|||
这里有原工程……= =|||来自天干宝典?……
作者: px.凤翔九天    时间: 2010-12-27 21:29
恩恩,问题解决了,话说这个脚本除了截图功能貌似其他也没什么可以学习的了...剩一个截图功能我还看不懂......




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1