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

Project1

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

[已经过期] flash播放怎么断掉了?

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
35 小时
注册时间
2012-1-21
帖子
21
跳转到指定楼层
1
发表于 2012-10-16 17:47:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 hys111111 于 2012-10-16 17:50 编辑
  1. #Flash 播放器 v1.3   作者:[url=home.php?mod=space&username=灼眼的夏娜]@灼眼的夏娜[/url]

  2. class String
  3.   
  4.   CP_ACP = 0
  5.   CP_UTF8 = 65001
  6.   
  7.   def u2s
  8.     m2w = Win32API.new("kernel32", "MultiByteToWideChar", "ilpipi", "i")
  9.     w2m = Win32API.new("kernel32", "WideCharToMultiByte", "ilpipipp", "i")
  10.    
  11.     len = m2w.call(CP_UTF8, 0, self, -1, nil, 0)
  12.     buf = "\0" * (len*2)
  13.     m2w.call(CP_UTF8, 0, self, -1, buf, buf.size/2)
  14.    
  15.     len = w2m.call(CP_ACP, 0, buf, -1, nil, 0, nil, nil)
  16.     ret = "\0" * len
  17.     w2m.call(CP_ACP, 0, buf, -1, ret, ret.size, nil, nil)
  18.    
  19.     return ret
  20.   end
  21.   
  22.   def s2u
  23.     m2w = Win32API.new("kernel32", "MultiByteToWideChar", "ilpipi", "i")
  24.     w2m = Win32API.new("kernel32", "WideCharToMultiByte", "ilpipipp", "i")
  25.   
  26.     len = m2w.call(CP_ACP, 0, self, -1, nil, 0);
  27.     buf = "\0" * (len*2)
  28.     m2w.call(CP_ACP, 0, self, -1, buf, buf.size/2);
  29.   
  30.     len = w2m.call(CP_UTF8, 0, buf, -1, nil, 0, nil, nil);
  31.     ret = "\0" * len
  32.     w2m.call(CP_UTF8, 0, buf, -1, ret, ret.size, nil, nil);
  33.      
  34.     return ret
  35.   end

  36.   def s2u!
  37.     self[0, length] = s2u
  38.   end  
  39.   
  40.   def u2s!
  41.     self[0, length] = u2s
  42.   end
  43.   
  44. end

  45. class Bitmap
  46.   
  47.   RtlMoveMemory_pi = Win32API.new('kernel32', 'RtlMoveMemory', 'pii', 'i')
  48.   RtlMoveMemory_ip = Win32API.new('kernel32', 'RtlMoveMemory', 'ipi', 'i')

  49.   def address
  50.     buffer, ad = "xxxx", object_id * 2 + 16
  51.     RtlMoveMemory_pi.call(buffer, ad, 4); ad = buffer.unpack("L")[0] + 8
  52.     RtlMoveMemory_pi.call(buffer, ad, 4); ad = buffer.unpack("L")[0] + 16
  53.     RtlMoveMemory_pi.call(buffer, ad, 4); return buffer.unpack("L")[0]
  54.   end
  55.   
  56. end

  57. class RMFlash

  58.         API_NEW                      = Win32API.new("RMFlash", "_new", "piil", "l")
  59.         API_UPDATE            = Win32API.new("RMFlash", "_update", "l", "v")
  60.         API_FREE              = Win32API.new("RMFlash", "_free", "l", "v")
  61.         API_PLAYING     = Win32API.new("RMFlash", "_is_playing", "l", "i")
  62.         API_PAUSE              = Win32API.new("RMFlash", "_pause", "l", "v")
  63.         API_RESUME            = Win32API.new("RMFlash", "_resume", "l", "v")
  64.         API_BACK              = Win32API.new("RMFlash", "_back", "l", "v")
  65.         API_REWIND            = Win32API.new("RMFlash", "_rewind", "l", "v")
  66.         API_FORWARD            = Win32API.new("RMFlash", "_forward", "l", "v")
  67.         API_CURFRAME          = Win32API.new("RMFlash", "_cur_frame", "l", "i")
  68.         API_TOTALFRAME        = Win32API.new("RMFlash", "_total_frames", "l", "i")
  69.         API_GOTOFRAME          = Win32API.new("RMFlash", "_goto_frame", "li", "v")
  70.         API_GETLOOP                  = Win32API.new("RMFlash", "_get_loop", "l", "i")
  71.         API_SETLOOP                  = Win32API.new("RMFlash", "_set_loop", "li", "v")
  72.         API_CLEARALL          = Win32API.new("RMFlash", "_clear_all", "v", "v")
  73.   API_VALID       = Win32API.new("RMFlash", "_valid", "l", "i")
  74.   API_SENDMSG     = Win32API.new("RMFlash", "_send_message", "liii", "l")
  75.         
  76.   CUR_PATH        = Dir.pwd
  77.   
  78.         def self.get_version

  79.         end

  80.         def self.clear_all
  81.                 API_CLEARALL.call
  82.         end
  83.   
  84.   def self.load(name, width, height, v = nil)
  85.     new("#{CUR_PATH}/#{name}".u2s, width, height, v)
  86.   end
  87.   
  88.   attr_reader   :valid

  89.         def initialize(flash_name, flash_width, flash_height, viewport = nil)
  90.                 @sprite = Sprite.new(viewport)
  91.                 @sprite.bitmap = Bitmap.new(flash_width, flash_height)
  92.                 @value = API_NEW.call(flash_name, flash_width, flash_height, @sprite.bitmap.address)
  93.                 @loop = API_GETLOOP.call(@value) > 0
  94.     @valid = API_VALID.call(@value) > 0
  95.         end

  96.         def viewport
  97.                 @sprite.viewport
  98.         end

  99.         def update
  100.                 API_UPDATE.call(@value)
  101.         end

  102.         def dispose
  103.                 API_FREE.call(@sprite.bitmap.address)
  104.     @sprite.dispose#AVG
  105.         end

  106.         def playing?
  107.                 API_PLAYING.call(@value) > 0
  108.         end

  109.         def pause
  110.                 API_PAUSE.call(@value)
  111.         end

  112.         def resume
  113.                 API_RESUME.call(@value)
  114.         end

  115.         def back
  116.                 API_BACK.call(@value)
  117.         end

  118.         def rewind
  119.                 API_REWIND.call(@value)
  120.         end

  121.         def forward
  122.                 API_FORWARD.call(@value)
  123.         end

  124.         def current_frame
  125.                 API_CURFRAME.call(@value)
  126.         end

  127.         def total_frames
  128.                 API_TOTALFRAME.call(@value)
  129.         end

  130.         def goto_frame(goal_frame)
  131.                 API_GOTOFRAME.call(@value, goal_frame)
  132.         end

  133.         def x
  134.                 @sprite.x
  135.         end

  136.         def x=(v)
  137.                 @sprite.x = v
  138.         end

  139.         def y
  140.                 @sprite.y
  141.         end

  142.         def y=(v)
  143.                 @sprite.y = v
  144.         end

  145.         def z
  146.                 @sprite.z
  147.         end

  148.         def z=(v)
  149.                 @sprite.z = v
  150.         end

  151.         def width
  152.                 @sprite.bitmap.width
  153.         end

  154.         def height
  155.                 @sprite.bitmap.height
  156.         end

  157.         def loop?
  158.                 @loop
  159.         end

  160.         def loop=(v)
  161.                 if @loop != v
  162.                         @loop = v
  163.                         API_SETLOOP.call(@value, v)
  164.                 end
  165.         end
  166.   
  167.   def msg_to_flash(msg, wParam, lParam)
  168.     return API_SENDMSG.call(@value, msg, wParam, lParam)
  169.   end
  170.   
  171.   #  例
  172.   WM_MOUSEMOVE  = 0x0200
  173.   
  174.   def make_long(a, b)
  175.     return (a & 0xffff ) | (b & 0xffff) << 16
  176.   end
  177.   
  178.   def on_mouse_move(x, y)
  179.     return msg_to_flash(WM_MOUSEMOVE, 0, make_long(x, y))
  180.   end

  181. end

  182. module Kernel

  183.   alias origin_exit exit unless method_defined? :exit
  184.   
  185.   def exit(*args)
  186.     RMFlash.clear_all
  187.     origin_exit(*args)
  188.   end
  189.   
  190. end


  191. #fls = RMFlash.load("2.swf", 640, 480)

  192. #while true
  193. #        Graphics.update
  194. #        Input.update
  195. #        fls.update
  196. #        break if Input.trigger?(13)
  197. #end
  198. #fls.dispose

  199. #exit

  200. =begin
  201. class RMFlash
  202.   API_NEW = Win32API.new("RMFlash", "_new", "piil", "l")
  203.   API_UPDATE = Win32API.new("RMFlash", "_update", "l", "v")
  204.   API_FREE = Win32API.new("RMFlash", "_free", "l", "v")
  205.   #def self.new(*args)
  206.   #  obj = super(*args)
  207.   #  obj.send :initialize, *args
  208.   #  obj
  209.   #end
  210.   
  211.   def initialize(flashname, fw, fh)
  212.    
  213.   end
  214.   
  215. end

  216. RMFlash.new
  217. exit
  218. =end

  219. #==============AVG新加Flash类播放修改TT======================

  220. class Flash
  221.   def initialize(name,sizex=640,sizey=480,loop=nil,x=0,y=0,z=99999)
  222.     @fls = RMFlash.load(name, sizex, sizey)
  223.     @fls.x = x
  224.     @fls.y = y
  225.     @fls.z = z
  226.     if loop != nil
  227.     @fls.loop = loop
  228.     end
  229. while true
  230.         Graphics.update
  231.         #Input.update
  232.         @fls.update
  233.          break if [email protected]?
  234.    if $game_switches[8] == true#AVG如果看片头中跳回标题
  235.             Input.update
  236.           if Input.trigger?(Input::B)
  237.           $scene = Scene_Title.new
  238.           break
  239.         end
  240.       else
  241.         Input.update
  242.             break if Input.trigger?(Input::B)
  243.      end
  244.     end
  245.    @fls.dispose
  246.   end
  247. end
复制代码
用夏娜姐的脚本播放我做好的flash视频不知道为什么,播放速度刚开始正好但后面却变得相当的快 而且似乎播放了一分钟就断啦 求各位大侠和夏娜姐帮帮忙
我是小白 刚刚开始起步关于代码,所以说深啦也不太懂,如果脚本需要改的话求各位大侠写一个修改好的脚本发上来~谢谢{:2_264:}

点评

发帖前要注意一下标题,还有脚本要用代码框发。帮你修改了。  发表于 2012-10-16 17:51

Lv1.梦旅人

梦石
0
星屑
50
在线时间
35 小时
注册时间
2012-1-21
帖子
21
2
 楼主| 发表于 2012-10-16 17:56:17 | 只看该作者
{:2_260:}嗯 谢谢大大

点评

hcm
另外注意不是要顶起的话不要给自己回复,要让版主收到就用点评,留言或发送消息。  发表于 2012-10-17 12:18

评分

参与人数 1星屑 -20 收起 理由
hcm -20 无意义连帖

查看全部评分

回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-16 12:44

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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