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

Project1

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

按键截图的问题

 关闭 [复制链接]

Lv1.梦旅人

星辰创始

梦石
0
星屑
65
在线时间
155 小时
注册时间
2008-3-8
帖子
611
跳转到指定楼层
1
发表于 2008-10-28 20:05:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
我想问下那个脚本只能全部存为一张图片,新的截图会覆盖原来的,我想要自动保存成日期时间的格式,分开保存在一个文件夹里,该怎么做呢??
版务信息:本贴由楼主自主结贴~

Lv1.梦旅人

梦石
0
星屑
50
在线时间
2 小时
注册时间
2008-10-19
帖子
219
2
发表于 2008-10-28 20:08:38 | 只看该作者
话说标题不要加上人名………
您所请求的网址(URL)无法获取当尝试读取以下网址(URL)时:http://zh99998.vicp.net/bbs/发生了下列的错误:无法将您输入的主机名称:zh99998.vicp.net转换成 IP 地址域名服务器返回以下讯息:Name Error: The domain name does not exist.这表示: The cache was not able to resolve the hostname presented in the URL.  Check if the address is correct.  缓存服务器无法解析您输入网址(URL)中的主机名称, 请检查该名称是否正确。本缓存服务器管理员:[email protected] Wed, 23 Sep 2009 02:56:06 GMT by squid (squid/2.7.STABLE6)
回复 支持 反对

使用道具 举报

Lv2.观梦者

天仙

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

贵宾

3
发表于 2008-10-28 20:13:38 | 只看该作者
那个按键截图??
VA脚本开工中...
偷窃脚本1.0 - 已完成
回复 支持 反对

使用道具 举报

Lv1.梦旅人

星辰创始

梦石
0
星屑
65
在线时间
155 小时
注册时间
2008-3-8
帖子
611
4
 楼主| 发表于 2008-10-28 20:16:43 | 只看该作者
以下引用snstar2006于2008-10-28 12:13:38的发言:

那个按键截图??



http://rpg.blue/viewthread.php?tid=96618&ntime=2008%2D10%2D28+12%3A16%3A22
回复 支持 反对

使用道具 举报

Lv2.观梦者

天仙

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

贵宾

5
发表于 2008-10-28 20:33:34 | 只看该作者
在試試看
其實就是修改了檔案命名方式而已
順便...我另外弄了一個文件夾,要在Pictures裡面建一個ScrnShot
改成了在任何畫面都可以截圖
  1. #===============================================================================
  2. #
  3. # Screenshot V2
  4. #
  5. # Screenshot Script v1 & screenshot.dll v1            created by: Andreas21
  6. # Screenshot Script v2                                created/edit by: cybersam
  7. # the autor is found on a german board...
  8. # the comments are added by me...
  9. # since the autor didnt want to add any comment...
  10. # so thats it from here...
  11. # have fund with it... ^-^
  12. #
  13. # oh yea.. the needed command line is found in "Scene_Map" in "def update"
  14. #
  15. #===============================================================================
  16. module Screen
  17.   ##
  18.   ##
  19.   @screen = Win32API.new 'screenshot', 'Screenshot', %w(l l l l p l l), ''
  20.   @readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l'
  21.   @findwindow = Win32API.new 'user32', 'FindWindowA', %w(p p), 'l'
  22.   module_function
  23.   #-----------------------------------------------------------------------------
  24.   # here comes the stuff...
  25.   # i add here the stuff for automatic change of the number for the screenshot
  26.   # so it wont overrite the old one...
  27.   # if you want to change so stuff change them in this line below
  28.   # or you can change them in your command line... like
  29.   # Screen::shot("screenshot", 2)
  30.   # this change the name and the type of the screenshot
  31.   # (0 = bmp, 1 = jpg and 2 = png)
  32.   # ----------------------------------------------------------------------------
  33.   def shot(file = "screenshot", typ = 2)
  34.     # to add the right extension...
  35.     if typ == 0
  36.       typname = ".bmp"
  37.     elsif typ == 1
  38.       typname = ".jpg"
  39.     elsif typ == 2
  40.       typname = ".png"
  41.     end   
  42.     file_index = 0   
  43.     dir = "Graphics/Pictures/ScrnShot/"
  44.     # make the filename....
  45.     value = Graphics.frame_count / Graphics.frame_rate
  46.     file_name = dir + file.to_s + value.to_s + typname.to_s
  47.     # make the screenshot.... Attention dont change anything from here on....
  48.     @screen.call(0,0,544,416,file_name,handel,typ)
  49.   end
  50.   # find the game window...
  51.   def handel
  52.     game_name = "\0" * 256
  53.     @readini.call('Game','Title','',game_name,255,".\\Game.ini")
  54.     game_name.delete!("\0")
  55.     return @findwindow.call('RGSS Player',game_name)
  56.   end
  57. end

  58. class Scene_Base
  59.   #--------------------------------------------------------------------------
  60.   # ● 开始处理
  61.   #--------------------------------------------------------------------------
  62.   alias scrn_shot_update update
  63.   def update
  64.     scrn_shot_update
  65.     if Input.press?(Input::F5)
  66.       Screen::shot
  67.     end
  68.   end
  69. end  
复制代码

系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~
VA脚本开工中...
偷窃脚本1.0 - 已完成
回复 支持 反对

使用道具 举报

Lv2.观梦者

傻♂逼

梦石
0
星屑
374
在线时间
1606 小时
注册时间
2007-3-13
帖子
6562

烫烫烫开拓者

6
发表于 2008-10-28 20:38:16 | 只看该作者
#===============================================================================
#
# Screenshot V2
#
# Screenshot Script v1 & screenshot.dll v1            created by: Andreas21
# Screenshot Script v2                                created/edit by: cybersam
# the autor is found on a german board...
# the comments are added by me...
# since the autor didnt want to add any comment...
# so thats it from here...
# have fund with it... ^-^
#
# oh yea.. the needed command line is found in "Scene_Map" in "def update"
#
#===============================================================================
module Screen
  ##
  ##
  @screen = Win32API.new 'screenshot', 'Screenshot', %w(l l l l p l l), ''
  @readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l'
  @findwindow = Win32API.new 'user32', 'FindWindowA', %w(p p), 'l'
  module_function
  #-----------------------------------------------------------------------------
  # here comes the stuff...
  # i add here the stuff for automatic change of the number for the screenshot
  # so it wont overrite the old one...
  # if you want to change so stuff change them in this line below
  # or you can change them in your command line... like
  # Screen::shot("screenshot", 2)
  # this change the name and the type of the screenshot
  # (0 = bmp, 1 = jpg and 2 = png)
  # ----------------------------------------------------------------------------
  def shot(file = "screenshot", typ = 2)
    # to add the right extension...
    if typ == 0
      typname = ".bmp"
    elsif typ == 1
      typname = ".jpg"
    elsif typ == 2
      typname = ".png"
    end   
    file_index = 0   
    dir = "Graphics/Pictures/"     
    # make the filename....
    file_name = dir + file.to_s + typname.to_s
    # make the screenshot.... Attention dont change anything from here on....
    @screen.call(0,0,544,416,file_name,handel,typ)
  end
  # find the game window...
  def handel
    game_name = "\0" * 256
    @readini.call('Game','Title','',game_name,255,".\\Game.ini")
    game_name.delete!("\0")
    return @findwindow.call('RGSS Player',game_name)
  end
end

class Scene_Map < Scene_Base
  #--------------------------------------------------------------------------
  # ● 开始处理
  #--------------------------------------------------------------------------
  def update
    super
    $game_map.interpreter.update      # 更新解释器
    $game_map.update                  # 更新滴入
    $game_player.update               # 更新玩家
    $game_system.update               # 更新计时器
    @spriteset.update                 # 更新活动块元件
    @message_window.update
    # 更新消息窗口
    unless $game_message.visible      # 正在显示消息以外的情况
      update_transfer_player
      update_encounter
      update_call_menu
      update_call_debug
      update_scene_change
    end
    if Input.press?(Input::F5)
      Screen::shot("截图" + (rand(5000)+1000).to_s + Time.now.strftime("%c").to_s
    end
  end
end  
哎呀,蛋疼什么的最有爱了
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-6 18:04

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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