Fixed the pod path in archive
[sdlgit/SDL_perl.git] / lib / SDL / Tool / Font.pm
CommitLineData
7b6a53a1 1#!/usr/bin/env perl
8fde61e3 2#
7b6a53a1 3# Font.pm
4#
5# Copyright (C) 2005 David J. Goehrig <dgoehrig@cpan.org>
6#
7# ------------------------------------------------------------------------------
8#
9# This library is free software; you can redistribute it and/or
10# modify it under the terms of the GNU Lesser General Public
11# License as published by the Free Software Foundation; either
12# version 2.1 of the License, or (at your option) any later version.
13#
14# This library is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17# Lesser General Public License for more details.
18#
19# You should have received a copy of the GNU Lesser General Public
20# License along with this library; if not, write to the Free Software
21# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22#
23# ------------------------------------------------------------------------------
24#
25# Please feel free to send questions, suggestions or improvements to:
26#
27# David J. Goehrig
28# dgoehrig@cpan.org
8fde61e3 29#
8fde61e3 30
31package SDL::Tool::Font;
32
084b921f 33use strict;
34use warnings;
35use Carp;
36
8fde61e3 37use SDL;
38use SDL::Font;
39use SDL::TTFont;
40
41sub new {
42 my $proto = shift;
43 my $class = ref($proto) || $proto;
084b921f 44 my $self = {};
8fde61e3 45 my %option = @_;
46
47 verify (%option, qw/ -sfont -ttfont -size -fg -bg -foreground -background
48 -normal -bold -italic -underline / ) if $SDL::DEBUG;
49
50 if ($option{-sfont}) {
51 $$self{-font} = new SDL::Font $option{-sfont};
52 } elsif ($option{-ttfont} || $option{-t}) {
53 $option{-size} ||= 12;
54 $$self{-font} = new SDL::TTFont
55 -name => $option{-ttfont} || $option{-t},
56 -size => $option{-size} || $option{-s},
57 -fg => $option{-foreground} || $option{-fg} ,
58 -bg => $option{-background} || $option{-bg};
59 for (qw/ normal bold italic underline / ) {
60 if ($option{"-$_"}) {
1cf7cae7 61
62 SDL::TTFont->can($_)->($$self{-font});
63 #&{$sub}($$self{-font});
8fde61e3 64 }
65 }
66 } else {
084b921f 67 croak "SDL::Tool::Font requires either a -sfont or -ttfont";
8fde61e3 68 }
69 bless $self,$class;
70 $self;
71}
72
73sub DESTROY {
74
75}
76
77sub print {
78 my ($self,$surface,$x,$y,@text) = @_;
084b921f 79 croak "Tool::Font::print requires a SDL::Surface\n"
5dc5fc0c 80 unless ($surface->isa('SDL::Surface'));
8fde61e3 81 if ($$self{-font}->isa('SDL::Font')) {
82 $$self{-font}->use();
83 SDL::SFont::PutString( $$surface, $x, $y, join('',@text));
84 } else {
85 $$self{-font}->print($surface,$x,$y,@text);
86 }
87}
88
891;