File: font.rb

package info (click to toggle)
ruby-sdl 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,548 kB
  • sloc: cpp: 7,598; ansic: 4,498; ruby: 2,246; makefile: 110; sh: 102
file content (27 lines) | stat: -rw-r--r-- 527 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
26
27
require 'sdl'

SDL.init( SDL::INIT_VIDEO )

screen = SDL::Screen.open(640,480,16,SDL::SWSURFACE)
SDL::WM::set_caption($0,$0)

SDL::TTF.init

font = SDL::TTF.open('/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf',24)
font.style = SDL::TTF::STYLE_NORMAL
font.hinting = SDL::TTF::HINTING_NORMAL
  
font.draw_solid_utf8(screen,'test SDL_ttf',300,150,255,255,255)

screen.flip

loop do
  while event = SDL::Event2.poll
    case event
    when SDL::Event2::KeyDown, SDL::Event2::Quit
      font.close
      exit
    end
  end
  
end