赞 | 0 |
VIP | 2 |
好人卡 | 10 |
积分 | 1 |
经验 | 7625 |
最后登录 | 2014-3-16 |
在线时间 | 122 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 122 小时
- 注册时间
- 2008-7-3
- 帖子
- 724
|
本帖最后由 沙之爱罗 于 2012-1-19 16:48 编辑
找到了这个:- if $myfirst == nil
-
- $myfirst = 'myGod'
- 宽度=800
- 高度=600
- 游戏ini名=".\\Game.ini"
- val = "\0"*256
- gps = Win32API.new('kernel32', 'GetPrivateProfileString','pppplp', 'l')
- gps.call("Game", "Title", "", val, 256, 游戏ini名)
- val.delete!("\0")
- title = val
- fw = Win32API.new('user32', 'FindWindow', 'pp', 'i')
- hWnd = fw.call("RGSS Player", title)
- swp = Win32API.new('user32', 'SetWindowPos', 'lliiiii', 'i')
- pointwds = [0,0,0,0].pack('llll')
- pointcet = [0, 0].pack('ll')
- wdsrect = Win32API.new('user32.dll', 'GetWindowRect', 'lp', 'l')
- client_screen = Win32API.new("user32", "ClientToScreen", 'ip', 'i')
- wdsrect.call(hWnd,pointwds)
- client_screen.call(hWnd, pointcet)
- wds = pointwds.unpack('llll')
- cet = pointcet.unpack('ll')
- addw = wds[2] - wds[0] - 640
- addh = wds[3] - wds[1] - 480
- x = wds[0] - (宽度 - 640) / 2
- y = wds[1] - (高度 - 480) / 2
- swp.call(hWnd, 0, x, y, 宽度 + addw, 高度 + addh, 0x20)
-
- end
复制代码 但是这个的效果只是窗口大了……可以活动的屏幕依然只有640*480这么大……
还看到了这个:http://rpg.blue/forum.php?mod=vi ... ypeid%26typeid%3D96
可是我看不懂……下载了范例也看不懂……而且他也没有更改分辨率
然后我还找到了:http://rpg.blue/thread-162509-1-1.html
这个不兼容RTAB的样子……而且也不兼容66加强+FUKI整合 |
|