=begin Copyright 2010, Roger Pack This file is part of Sensible Cinema. Sensible Cinema is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Sensible Cinema is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Sensible Cinema. If not, see . =end require 'rubygems' # ugh require 'ffi' require 'sane' require_relative 'mouse' require_relative 'play_audio' module Muter # from msdn on keybd_event ... VK_VOLUME_DOWN = 0xAE VK_VOLUME_UP = 0xAF VK_VOLUME_MUTE = 0xAD KEYEVENTF_KEYUP = 2 extend FFI::Library ffi_lib 'user32' ffi_convention :stdcall attach_function :keybd_event, [ :uchar, :uchar, :int, :pointer ], :void def hit_mute_key # simulate pressing the mute key keybd_event(VK_VOLUME_MUTE, 0, 0, nil) keybd_event(VK_VOLUME_MUTE, 0, KEYEVENTF_KEYUP, nil) end def hit_volume_up_key keybd_event(VK_VOLUME_UP, 0, 0, nil) keybd_event(VK_VOLUME_UP, 0, KEYEVENTF_KEYUP, nil) end def hit_volume_down_key keybd_event(VK_VOLUME_DOWN, 0, 0, nil) keybd_event(VK_VOLUME_DOWN, 0, KEYEVENTF_KEYUP, nil) end @@use_mouse = false # inventionzy @@use_static_on_top = false # inventionzy def start_static @player = PlayAudio.new(__DIR__ + '/static.wav') @player.loop p 'STARTED STATIC' end def stop_static if @player p 'STOPPED STATIC' @player.stop @player = nil end end def mute! #unmute! # just in case...somehow this was causing problems...windows 7 perhaps? VLC? # anyway we just use a toggle for now...dangerous but works hopefully if @@use_mouse Mouse.single_click_left_mouse_button elsif @@use_static_on_top start_static else hit_mute_key end end # LODO better for doze 7/xp def unmute! if @@use_mouse Mouse.single_click_left_mouse_button elsif @@use_static_on_top stop_static else hit_mute_key # Windows XP... hit_volume_down_key hit_volume_up_key end end # allow for Muter.xxx extend self end