ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC.pm (file contents):
Revision 1.3 by root, Fri Apr 7 18:20:13 2006 UTC vs.
Revision 1.7 by root, Fri Apr 7 20:55:32 2006 UTC

19 19
20 use XSLoader; 20 use XSLoader;
21 XSLoader::load "Crossfire::Client", $VERSION; 21 XSLoader::load "Crossfire::Client", $VERSION;
22} 22}
23 23
24sub find_rcfile($) {
25 my $path;
26
27 for (@INC) {
28 $path = "$_/Crossfire/resources/$_[0]";
29 return $path if -r $path;
30 }
31
32 die "FATAL: can't find required file $_[0]\n";
33}
34
35sub read_cfg {
36 my ($file) = @_;
37
38 open CFG, $file
39 or return;
40
41 my $CFG;
42
43 local $/;
44 $CFG = eval <CFG>;
45
46 $::CFG = $CFG;
47
48 close CFG;
49}
50
51sub write_cfg {
52 my ($file) = @_;
53
54 open CFG, ">$file"
55 or return;
56
57 {
58 local $Data::Dumper::Purity = 1;
59 $::CFG->{VERSION} = $::VERSION;
60 print CFG Data::Dumper->Dump ([$::CFG], [qw/CFG/]);
61 }
62
63 close CFG;
64}
65
24package Crossfire::Client::Texture; 66package Crossfire::Client::Texture;
25 67
26use Scalar::Util; 68use Scalar::Util;
27 69
28use SDL::OpenGL; 70use SDL::OpenGL;
29 71
30my @textures; 72my @textures;
31 73
32sub new_from_file { 74sub _new {
33 my ($class, $path) = @_; 75 my ($class, %data) = @_;
34 76
35 open my $fh, "<:raw", $path 77 my $self = bless \%data, $class;
36 or die "$path: $!";
37
38 local $/;
39 $class->new_from_data (<$fh>)
40}
41
42sub new_from_image {
43 my ($class, $image) = @_;
44
45 my $self = bless {
46 image => $data,
47 };
48 78
49 push @textures, $self; 79 push @textures, $self;
50 Scalar::Util::weaken $textures[-1]; 80 Scalar::Util::weaken $textures[-1];
51 81
52 $self->upload; 82 $self->upload;
53 83
54 $self 84 $self
55} 85}
56 86
87sub new_from_image {
88 my ($class, $image) = @_;
89
90 $class->_new (image => $image)
91}
92
93sub new_from_file {
94 my ($class, $path) = @_;
95
96 open my $fh, "<:raw", $path
97 or die "$path: $!";
98
99 local $/;
100 $class->new_from_image (<$fh>)
101}
102
103sub new_from_surface {
104 my ($class, $surface) = @_;
105
106 $surface->rgba;
107
108 $class->_new (
109 data => $surface->pixels,
110 width => $surface->width,
111 height => $surface->height,
112 )
113}
114
115sub new_from_ttf {
116 my ($class, $ttf, $text) = @_;
117
118 utf8::encode $text;
119
120 my $surface = SDL::TTFRenderUTF8Blended $ttf, $text,
121 (new SDL::Color -r => 255, -g => 255, -b => 255);
122
123 $class->new_from_surface (bless \$surface, SDL::Surface::)
124}
125
57sub upload { 126sub upload {
58 my ($self) = @_; 127 my ($self) = @_;
59 128
60 return unless $SDL::App::USING_OPENGL; 129 return unless $SDL::App::USING_OPENGL;
61 130
62 my ($data, $width, $height); 131 my $data;
63 132
64 if (exists $self->{data}) { 133 if (exists $self->{data}) {
65 ($data, $width, $height) = ($self->{data}, $self->{width}, $self->{height}); 134 $data = $self->{data};
66 } else { 135 } else {
67 my $pb = new Gtk2::Gdk::PixbufLoader; 136 my $pb = new Gtk2::Gdk::PixbufLoader;
68 $pb->write ($self->{data}); 137 $pb->write ($self->{image});
69 $pb->close; 138 $pb->close;
70 139
71 $pb = $pb->get_pixbuf; 140 $pb = $pb->get_pixbuf;
72 $pb = $pb->add_alpha (0, 0, 0, 0); 141 $pb = $pb->add_alpha (0, 0, 0, 0);
73 142
74 ($data, $width, $height) = ($pb->get_pixels, $pb->get_width, $pb->get_height); 143 $self->{width} = $pb->get_width;
144 $self->{height} = $pb->get_height;
145
146 $data = $pb->get_pixels;
75 } 147 }
76 148
77 ($self->{name}) = @{glGenTextures 1}; 149 ($self->{name}) = @{glGenTextures 1};
78 150
79 glBindTexture GL_TEXTURE_2D, $self->{name}; 151 glBindTexture GL_TEXTURE_2D, $self->{name};
83 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP; 155 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP;
84 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP; 156 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP;
85 157
86 glTexImage2D GL_TEXTURE_2D, 0, 158 glTexImage2D GL_TEXTURE_2D, 0,
87 GL_RGBA8, 159 GL_RGBA8,
88 $width, $height, 160 $self->{width}, $self->{height},
89 0, 161 0,
90 GL_RGBA, 162 GL_RGBA,
91 GL_UNSIGNED_BYTE, 163 GL_UNSIGNED_BYTE,
92 $data; 164 $data;
93} 165}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines