Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 99bfe2aac33fee8b80402fc060c5d1ef > files > 11

ruby-SDL-0.7-1mdk.i586.rpm

require 'sdl'

SDL.init( SDL::INIT_VIDEO )
screen = SDL::setVideoMode(640,480,16,SDL::SWSURFACE)
screen.fillRect 0,0,640,480,[32,240,100]
screen.flip
SDL::WM::setCaption $0,$0

image=SDL::Surface.loadBMP 'cursor.bmp'
SDL::Mouse.setCursor image,image[0,0],image[1,1],image[7,0],543


event=SDL::Event.new

while true 
  if  event.poll != 0 then
    if event.type==SDL::Event::QUIT then
      break
    end
    if event.type==SDL::Event::KEYDOWN then
      exit
    end
  end
  sleep 0.01
end