File: cursor.rb

package info (click to toggle)
libsdl-ruby 2.1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,132 kB
  • ctags: 2,115
  • sloc: ansic: 4,567; ruby: 2,189; makefile: 27
file content (22 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'sdl'

SDL.init( SDL::INIT_VIDEO )
screen = SDL::Screen.open(640,480,16,SDL::SWSURFACE)
screen.fill_rect 0,0,640,480,[32,240,100]
screen.flip
SDL::WM::set_caption $0,$0

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


while true
  
  while event = SDL::Event2.poll
    case event
    when SDL::Event2::KeyDown, SDL::Event2::Quit
      exit
    end
  end
  sleep 0.01
end