File: font.rb

package info (click to toggle)
libsdl-ruby 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,428 kB
  • ctags: 1,252
  • sloc: ansic: 4,610; ruby: 1,868; makefile: 18
file content (25 lines) | stat: -rw-r--r-- 432 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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('sample.ttf',24)
font.style = SDL::TTF::STYLE_NORMAL

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

screen.flip

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