Sophie

Sophie

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

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

require 'sdl'

SDL.init( SDL::INIT_VIDEO )

screen = SDL::setVideoMode(640,480,16,SDL::SWSURFACE)
SDL::WM::setCaption($0,$0)

SDL::TTF.init

font = SDL::TTF.open('font.ttf',24)
font.style = SDL::TTF::STYLE_NORMAL

font.drawSolidUTF8(screen,'test SDL_ttf',300,150,255,255,255)

screen.flip

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
end