ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC.pm
Revision: 1.24
Committed: Tue Apr 11 18:06:52 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.23: +24 -18 lines
Log Message:
CFClient::Widget => CFClient::UI

File Contents

# Content
1 =head1 NAME
2
3 CFClient - undocumented utility garbage for our crossfire client
4
5 =head1 SYNOPSIS
6
7 use CFClient;
8
9 =head1 DESCRIPTION
10
11 =over 4
12
13 =cut
14
15 package CFClient;
16
17 BEGIN {
18 $VERSION = '0.1';
19
20 use XSLoader;
21 XSLoader::load "CFClient", $VERSION;
22 }
23
24 our %GL_EXT;
25 our $GL_VERSION;
26
27 our $GL_NPOT;
28
29 sub gl_init {
30 $GL_VERSION = gl_version * 1;
31 %GL_EXT = map +($_ => 1), split /\s+/, gl_extensions;
32
33 $GL_NPOT = $GL_EXT{GL_ARB_texture_non_power_of_two} || $GL_VERSION >= 2;
34
35 CFClient::Texture::restore_state ();
36 }
37
38 sub find_rcfile($) {
39 my $path;
40
41 for (@INC) {
42 $path = "$_/CFClient/resources/$_[0]";
43 return $path if -r $path;
44 }
45
46 die "FATAL: can't find required file $_[0]\n";
47 }
48
49 sub read_cfg {
50 my ($file) = @_;
51
52 open CFG, $file
53 or return;
54
55 my $CFG;
56
57 local $/;
58 $CFG = eval <CFG>;
59
60 $::CFG = $CFG;
61
62 close CFG;
63 }
64
65 sub write_cfg {
66 my ($file) = @_;
67
68 open CFG, ">$file"
69 or return;
70
71 {
72 require Data::Dumper;
73 local $Data::Dumper::Purity = 1;
74 $::CFG->{VERSION} = $::VERSION;
75 print CFG Data::Dumper->Dump ([$::CFG], [qw/CFG/]);
76 }
77
78 close CFG;
79 }
80
81 package CFClient::Texture;
82
83 use Scalar::Util;
84
85 use SDL::OpenGL;
86
87 my @textures;
88
89 sub new {
90 my ($class, %data) = @_;
91
92 my $self = bless {
93 internalformat => GL_RGBA,
94 format => GL_RGBA,
95 %data,
96 }, $class;
97
98 push @textures, $self;
99 Scalar::Util::weaken $textures[-1];
100
101 $self->upload;
102
103 $self
104 }
105
106 sub new_from_image {
107 my ($class, $image) = @_;
108
109 $class->new (image => $image)
110 }
111
112 sub new_from_file {
113 my ($class, $path) = @_;
114
115 open my $fh, "<:raw", $path
116 or die "$path: $!";
117
118 local $/;
119 $class->new_from_image (<$fh>)
120 }
121
122 #sub new_from_surface {
123 # my ($class, $surface) = @_;
124 #
125 # $surface->rgba;
126 #
127 # $class->new (
128 # data => $surface->pixels,
129 # w => $surface->width,
130 # h => $surface->height,
131 # )
132 #}
133
134 sub new_from_layout {
135 my ($class, $layout) = @_;
136
137 my ($w, $h, $data) = $layout->render;
138
139 $class->new (
140 w => $w,
141 h => $h,
142 data => $data,
143 internalformat => GL_ALPHA4,
144 format => GL_ALPHA,
145 )
146 }
147
148 sub new_from_opengl {
149 my ($class, $w, $h, $cb) = @_;
150
151 $class->new (w => $w, h => $h, render_cb => $cb)
152 }
153
154 sub topot {
155 (grep $_ >= $_[0], 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768)[0]
156 }
157
158 sub upload {
159 my ($self) = @_;
160
161 return unless $SDL::App::USING_OPENGL;
162
163 my $data;
164
165 if (exists $self->{data}) {
166 $data = $self->{data};
167 } elsif (exists $self->{render_cb}) {
168 glViewport 0, 0, $self->{w}, $self->{h};
169 glMatrixMode GL_PROJECTION;
170 glLoadIdentity;
171 glOrtho 0, $self->{w}, 0, $self->{h}, -10000, 10000;
172 glMatrixMode GL_MODELVIEW;
173 glPushmatrix;
174 glLoadIdentity;
175 glClear GL_COLOR_BUFFER_BIT;
176
177 $self->{render_cb}->($self, $self->{w}, $self->{h});
178 } else {
179 my $pb = new Gtk2::Gdk::PixbufLoader;
180 $pb->write ($self->{image});
181 $pb->close;
182
183 $pb = $pb->get_pixbuf;
184 $pb = $pb->add_alpha (0, 0, 0, 0);
185
186 $self->{w} = $pb->get_width;
187 $self->{h} = $pb->get_height;
188
189 $data = $pb->get_pixels;
190 }
191
192 my ($tw, $th) = @$self{qw(w h)};
193
194 unless ($tw || $th) {
195 $tw = $th = 1;
196 $data = "\x00" x 64;
197 }
198
199 unless ($GL_NPOT) {
200 # TODO: does not work for zero-sized textures
201 $tw = topot $tw;
202 $th = topot $th;
203
204 if (defined $data) {
205 my $bpp = (length $data) / ($self->{w} * $self->{h});
206 $data = pack "(a" . ($tw * $bpp) . ")*",
207 unpack "(a" . ($self->{w} * $bpp) . ")*", $data;
208 $data .= ("\x00" x ($tw * $bpp)) x ($th - $self->{h});
209 }
210 }
211
212 $self->{s} = $self->{w} / $tw;
213 $self->{t} = $self->{h} / $th;
214
215 $self->{name} ||= (glGenTextures 1)->[0];
216
217 glBindTexture GL_TEXTURE_2D, $self->{name};
218
219 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR;
220 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR;#_MIPMAP_LINEAR;
221 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP;
222 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP;
223
224 glGetError;
225 if (defined $data) {
226 glTexImage2D GL_TEXTURE_2D, 0,
227 $self->{internalformat},
228 $tw, $th, # need to pad texture first
229 0,
230 $self->{format},
231 GL_UNSIGNED_BYTE,
232 $data;
233 glGetError and die;
234 } else {
235 glCopyTexImage2D GL_TEXTURE_2D, 0,
236 $self->{internalformat},
237 0, 0,
238 $tw, $th,
239 0;
240 glPopmatrix;
241 }
242 }
243
244 sub DESTROY {
245 my ($self) = @_;
246
247 return unless exists $self->{name};
248
249 glDeleteTextures delete $self->{name};
250 }
251
252 sub restore_state{
253 $_->upload
254 for grep $_, @textures;
255 };
256
257 1;
258
259 =back
260
261 =head1 AUTHOR
262
263 Marc Lehmann <schmorp@schmorp.de>
264 http://home.schmorp.de/
265
266 =cut
267