Class: Snackhack2::ScreenShot

Inherits:
Object
  • Object
show all
Defined in:
lib/snackhack2/screenshots.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeScreenShot



9
10
11
12
# File 'lib/snackhack2/screenshots.rb', line 9

def initialize
  @zip = 'screenshots.zip'
  @time = 60
end

Instance Attribute Details

#timeObject

Returns the value of attribute time.



6
7
8
# File 'lib/snackhack2/screenshots.rb', line 6

def time
  @time
end

#zipObject

Returns the value of attribute zip.



6
7
8
# File 'lib/snackhack2/screenshots.rb', line 6

def zip
  @zip
end

Instance Method Details

#runObject



14
15
16
17
18
19
20
21
22
23
# File 'lib/snackhack2/screenshots.rb', line 14

def run
  File.open('lol.bat', 'w+') { |file| file.write("psr.exe /start /output #{@zip} /sc 1 /gui 0") }
  File.open('lol2.bat', 'w+') { |file| file.write('psr.exe /stop') }
  Process.spawn('lol.bat')
  sleep @time.to_i
  system('lol2.bat')
  sleep 2
  File.delete('lol.bat')
  File.delete('lol2.bat')
end