ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
Revision: 1.16
Committed: Fri Apr 7 23:16:29 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.15: +45 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package Crossfire::Client::Widget;
2
3 use strict;
4 use SDL::OpenGL;
5 use SDL::OpenGL::Constants;
6
7 our $FOCUS; # the widget with current focus
8 our @ACTIVE_WIDGETS;
9
10 # class methods for events
11 sub feed_sdl_key_down_event { $FOCUS->key_down ($_[0]) if $FOCUS }
12 sub feed_sdl_key_up_event { $FOCUS->key_up ($_[0]) if $FOCUS }
13 sub feed_sdl_button_down_event { $FOCUS->button_down ($_[0]) if $FOCUS }
14 sub feed_sdl_button_up_event { $FOCUS->button_up ($_[0]) if $FOCUS }
15
16 sub new {
17 my $class = shift;
18
19 bless { @_ }, $class
20 }
21
22 sub activate {
23 push @ACTIVE_WIDGETS, $_[0];
24 }
25
26 sub deactivate {
27 @ACTIVE_WIDGETS =
28 sort { $a->{z} <=> $b->{z} }
29 grep { $_ != $_[0] }
30 @ACTIVE_WIDGETS;
31 }
32
33 sub size_request {
34 die "size_request is abtract";
35 }
36
37 sub focus_in {
38 my ($widget) = @_;
39 $FOCUS = $widget;
40 }
41
42 sub focus_out {
43 my ($widget) = @_;
44 }
45
46 sub key_down {
47 my ($widget, $sdlev) = @_;
48 }
49
50 sub key_up {
51 my ($widget, $sdlev) = @_;
52 }
53
54 sub button_down {
55 my ($widget, $sdlev) = @_;
56 }
57
58 sub button_up {
59 my ($widget, $sdlev) = @_;
60 }
61
62 sub w { $_[0]->{w} }
63 sub h { $_[0]->{h} }
64 sub x { $_[0]->{x} = $_[1] if $_[1]; $_[0]->{x} }
65 sub y { $_[0]->{y} = $_[1] if $_[1]; $_[0]->{y} }
66 sub z { $_[0]->{z} = $_[1] if $_[1]; $_[0]->{z} }
67
68 sub draw {
69 my ($self) = @_;
70
71 glPushMatrix;
72 glTranslate $self->{x}, $self->{y}, 0;
73 $self->_draw;
74 glPopMatrix;
75 }
76
77 sub _draw {
78 my ($widget) = @_;
79 }
80
81 sub bbox {
82 my ($widget) = @_;
83 }
84
85 package Crossfire::Client::Widget::Container;
86
87 our @ISA = Crossfire::Client::Widget::;
88
89 use SDL::OpenGL;
90
91 sub add { $_[0]->{child} = $_[1] }
92 sub get { $_[0]->{child} }
93
94 sub size_request { $_[0]->{child}->size_request if $_[0]->{child} }
95
96 sub _draw { die "Containers can't be drawn!" }
97
98 package Crossfire::Client::Widget::Frame;
99
100 our @ISA = Crossfire::Client::Widget::Container::;
101
102 use SDL::OpenGL;
103
104 sub size_request {
105 my ($self) = @_;
106 my $chld = $self->get
107 or return (0, 0);
108 map { $_ + 4 } $chld->size_request;
109 }
110
111 sub _draw {
112 my ($self) = @_;
113
114 my $chld = $self->get;
115
116 my ($w, $h) = $chld->size_request;
117
118 glColor 1, 0, 0;
119 glBegin GL_QUADS;
120 glTexCoord 0, 0; glVertex 0 , 0;
121 glTexCoord 0, 1; glVertex 0 , $h + 4;
122 glTexCoord 1, 1; glVertex $w + 4 , $h + 4;
123 glTexCoord 1, 0; glVertex $w + 4 , 0;
124 glEnd;
125
126 glPushMatrix;
127 glTranslate (2, 2, 0);
128 $chld->_draw;
129 glPopMatrix;
130 }
131
132 package Crossfire::Client::Widget::Table;
133
134 our @ISA = Crossfire::Client::Widget::Container::;
135
136 use SDL::OpenGL;
137
138 sub add {
139 my ($self, $x, $y, $chld) = @_;
140 $self->{childs}[$y][$x] = $chld;
141 }
142
143 sub max_row_height {
144 my ($self, $row) = @_;
145
146 my $hs = 0;
147 for (my $xi = 0; $xi <= $#{$self->{childs}->[$row] || []}; $xi++) {
148 my $c = $self->{childs}->[$row]->[$xi];
149 my ($w, $h) = $c->size_request if $c;
150 if ($hs < $h) { $hs = $h }
151 }
152 return $hs;
153 }
154
155 sub max_col_width {
156 my ($self, $col) = @_;
157
158 my $ws = 0;
159 for (my $yi = 0; $yi <= $#{$self->{childs} || []}; $yi++) {
160 my $c = ($self->{childs}->[$yi] || [])->[$col];
161 my ($w, $h) = $c->size_request if $c;
162 if ($ws < $w) { $ws = $w }
163 }
164 return $ws;
165 }
166
167 sub size_request {
168 my ($self) = @_;
169
170 my ($hs, $ws) = (0, 0);
171
172 for (my $yi = 0; $yi <= $#{$self->{childs}}; $yi++) {
173 $hs += $self->max_row_height ($yi);
174 }
175
176 for (my $yi = 0; $yi <= $#{$self->{childs}}; $yi++) {
177 my $wm = 0;
178 for (my $xi = 0; $xi <= $#{$self->{childs}->[$yi]}; $xi++) {
179 $wm += $self->max_col_width ($xi)
180 }
181 if ($ws < $wm) { $ws = $wm }
182 }
183
184 return ($ws, $hs);
185 }
186
187 sub _draw {
188 my ($self) = @_;
189
190 my $y = 0;
191 for (my $yi = 0; $yi <= $#{$self->{childs}}; $yi++) {
192 my $x = 0;
193
194 for (my $xi = 0; $xi <= $#{$self->{childs}->[$yi]}; $xi++) {
195
196 glPushMatrix;
197 glTranslate ($x, $y, 0);
198 my $c = $self->{childs}->[$yi]->[$xi];
199 $c->_draw if $c;
200 glPopMatrix;
201
202 $x += $self->max_col_width ($xi);
203 }
204
205 $y += $self->max_row_height ($yi);
206 }
207 }
208
209 package Crossfire::Client::Widget::VBox;
210
211 our @ISA = Crossfire::Client::Widget::Container::;
212
213 use SDL::OpenGL;
214
215 sub add {
216 my ($self, $chld) = @_;
217 push @{$self->{childs}}, $chld;
218 }
219
220 sub size_request {
221 my ($self) = @_;
222
223 my ($hs, $ws) = (0, 0);
224 for (@{$self->{childs} || []}) {
225 my ($w, $h) = $_->size_request;
226 $hs += $h;
227 if ($ws < $w) { $ws = $w }
228 }
229
230 return ($ws, $hs);
231 }
232
233 sub _draw {
234 my ($self) = @_;
235
236 my ($x, $y);
237 for (@{$self->{childs} || []}) {
238 glPushMatrix;
239 glTranslate (0, $y, 0);
240 $_->_draw;
241 glPopMatrix;
242 my ($w, $h) = $_->size_request;
243 $y += $h;
244 }
245 }
246
247 package Crossfire::Client::Widget::Label;
248
249 our @ISA = Crossfire::Client::Widget::;
250
251 use SDL::OpenGL;
252
253 sub new {
254 my ($class, $x, $y, $z, $ttf, $text) = @_;
255
256 my $self = $class->SUPER::new (x => $x, y => $y, z => $z, ttf => $ttf);
257
258 $self->set_text ($text);
259
260 $self
261 }
262
263 sub set_text {
264 my ($self, $text) = @_;
265 $self->{texture} = new_from_ttf Crossfire::Client::Texture $self->{ttf}, $self->{text} = $text;
266 }
267
268 sub get_text {
269 my ($self, $text) = @_;
270 $self->{text}
271 }
272
273 sub size_request {
274 my ($self) = @_;
275
276 (
277 $self->{texture}{width},
278 $self->{texture}{height},
279 )
280 }
281
282 sub _draw {
283 my ($self) = @_;
284
285 my $tex = $self->{texture};
286
287 $self->{x}--;
288
289 glEnable GL_BLEND;
290 glEnable GL_TEXTURE_2D;
291 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
292 glBindTexture GL_TEXTURE_2D, $tex->{name};
293
294 glColor 1, 1, 1;
295
296 glBegin GL_QUADS;
297 glTexCoord 0, 0; glVertex 0 , 0;
298 glTexCoord 0, 1; glVertex 0 , $tex->{height};
299 glTexCoord 1, 1; glVertex $tex->{width}, $tex->{height};
300 glTexCoord 1, 0; glVertex $tex->{width}, 0;
301 glEnd;
302
303 glDisable GL_BLEND;
304 glDisable GL_TEXTURE_2D;
305 }
306
307 package Crossfire::Client::Widget::TextView;
308
309 use strict;
310
311 our @ISA = qw/Crossfire::Client::Widget/;
312
313 use SDL::OpenGL;
314 use SDL::OpenGL::Constants;
315
316 sub add_line {
317 my ($self, $line) = @_;
318 push @{$self->{lines}}, $line;
319 }
320
321 sub _draw {
322 my ($self) = @_;
323
324 }
325
326 package Crossfire::Client::Widget::MapWidget;
327
328 use strict;
329
330 our @ISA = qw/Crossfire::Client::Widget/;
331
332 use SDL;
333 use SDL::OpenGL;
334 use SDL::OpenGL::Constants;
335
336 sub key_down {
337 print "MAPKEYDOWN\n";
338 }
339
340 sub key_up {
341 }
342
343 sub _draw {
344 glEnable GL_TEXTURE_2D;
345 glEnable GL_BLEND;
346 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
347
348 my $map = $::CONN->{map};
349
350 for my $x (0 .. $::CONN->{mapw} - 1) {
351 for my $y (0 .. $::CONN->{maph} - 1) {
352
353 my $cell = $map->[$x][$y]
354 or next;
355
356 my $darkness = $cell->[3] * (1 / 255);
357 glColor $darkness, $darkness, $darkness;
358
359 for my $num (grep $_, $cell->[0], $cell->[1], $cell->[2]) {
360 my $tex = $::CONN->{face}[$num]{texture} || next;
361
362 glBindTexture GL_TEXTURE_2D, $tex->{name};
363
364 glBegin GL_QUADS;
365 glTexCoord 0, 0; glVertex $x * 32 , $y * 32;
366 glTexCoord 0, 1; glVertex $x * 32 , $y * 32 + 32;
367 glTexCoord 1, 1; glVertex $x * 32 + 32, $y * 32 + 32;
368 glTexCoord 1, 0; glVertex $x * 32 + 32, $y * 32;
369 glEnd;
370 }
371 }
372 }
373
374 glDisable GL_TEXTURE_2D;
375 glDisable GL_BLEND;
376 }
377
378 my %DIR = (
379 SDLK_KP8, [1, "north"],
380 SDLK_KP9, [2, "northest"],
381 SDLK_KP6, [3, "east"],
382 SDLK_KP3, [4, "southeast"],
383 SDLK_KP2, [5, "south"],
384 SDLK_KP1, [6, "southwest"],
385 SDLK_KP4, [7, "west"],
386 SDLK_KP7, [8, "northwest"],
387 );
388
389 sub key_down {
390 my ($self, $ev) = @_;
391
392 my $mod = $ev->key_mod;
393 my $sym = $ev->key_sym;
394
395 if ($sym == SDLK_KP5) {
396 $::CONN->send ("command stay fire");
397 } elsif (exists $DIR{$sym}) {
398 if ($mod & KMOD_SHIFT) {
399 $::CONN->send ("command fire $DIR{$sym}[0]");
400 } elsif ($mod & KMOD_CTRL) {
401 $::CONN->send ("command run $DIR{$sym}[0]");
402 } else {
403 }
404 }
405 }
406
407 sub key_up {
408 my ($self, $ev) = @_;
409
410 my $mod = $ev->key_mod;
411 my $sym = $ev->key_sym;
412
413 if (exists $DIR{$sym}) {
414 if ($mod & KMOD_SHIFT) {
415 $::CONN->send ("command fire_stop");
416 } else {
417 $::CONN->send ("command run_stop");
418 }
419 }
420 }
421
422 1;
423