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

Comparing deliantra/Deliantra-Client/DC/UI.pm (file contents):
Revision 1.65 by root, Tue Apr 11 14:04:27 2006 UTC vs.
Revision 1.82 by root, Wed Apr 12 02:00:06 2006 UTC

1package CFClient::Widget; 1package CFClient::UI;
2 2
3use strict; 3use strict;
4 4
5use Scalar::Util; 5use Scalar::Util ();
6 6use List::Util ();
7use SDL::OpenGL;
8use SDL::OpenGL::Constants;
9 7
10use CFClient; 8use CFClient;
11 9
12our ($FOCUS, $HOVER, $GRAB); # various widgets 10our ($FOCUS, $HOVER, $GRAB); # various widgets
13 11
45 43
46 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y); 44 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y);
47 45
48 $BUTTON_STATE &= ~(1 << ($ev->button - 1)); 46 $BUTTON_STATE &= ~(1 << ($ev->button - 1));
49 47
50 $GRAB->button_down ($ev, $GRAB->translate ($x, $y)) if $GRAB; 48 $GRAB->button_up ($ev, $GRAB->translate ($x, $y)) if $GRAB;
51 49
52 if (!$BUTTON_STATE) { 50 if (!$BUTTON_STATE) {
53 my $grab = $GRAB; undef $GRAB; 51 my $grab = $GRAB; undef $GRAB;
54 $grab->update if $grab; 52 $grab->update if $grab;
55 $GRAB->update if $GRAB; 53 $GRAB->update if $GRAB;
70 } 68 }
71 69
72 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER; 70 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER;
73} 71}
74 72
73#############################################################################
74
75package CFClient::UI::Base;
76
77use strict;
78
79use SDL::OpenGL;
80
75sub new { 81sub new {
76 my $class = shift; 82 my $class = shift;
77 83
78 bless { 84 my $self = bless {
79 x => 0, 85 x => 0,
80 y => 0, 86 y => 0,
81 z => 0, 87 z => 0,
88 w => -1,
89 h => -1,
82 @_ 90 @_
83 }, $class 91 }, $class;
92
93 for (keys %$self) {
94 if (/^connect_(.*)$/) {
95 $self->connect ($1 => delete $self->{$_});
96 }
97 }
98
99 $self
84} 100}
85 101
86sub move { 102sub move {
87 my ($self, $x, $y, $z) = @_; 103 my ($self, $x, $y, $z) = @_;
88 $self->{x} = $x; 104 $self->{x} = $x;
97sub size_request { 113sub size_request {
98 require Carp; 114 require Carp;
99 Carp::confess "size_request is abtract"; 115 Carp::confess "size_request is abtract";
100} 116}
101 117
102sub size_allocate { 118sub _size_allocate {
103 my ($self, $w, $h) = @_; 119 my ($self, $x, $y, $w, $h) = @_;
120
121 $self->{x} = $x;
122 $self->{y} = $y;
123
124 return unless $self->{w} != $w || $self->{h} != $h;
104 125
105 $self->{w} = $w; 126 $self->{w} = $w;
106 $self->{h} = $h; 127 $self->{h} = $h;
107}
108 128
129 1
130}
131
132sub size_allocate {
133 my ($self, $x, $y, $w, $h) = @_;
134
135 $self->_size_allocate ($x, $y, $w, $h);
136}
137
109# translate global koordinates to local coordinate system 138# translate global coordinates to local coordinate system
110sub translate { 139sub translate {
111 my ($self, $x, $y) = @_; 140 my ($self, $x, $y) = @_;
112 141
113 $self->{parent}->translate ($x - $self->{x}, $y - $self->{y}); 142 $self->{parent}->translate ($x - $self->{x}, $y - $self->{y});
114} 143}
115 144
116sub focus_in { 145sub focus_in {
117 my ($self) = @_; 146 my ($self) = @_;
147
148 return if $FOCUS == $self;
118 149
119 my $focus = $FOCUS; $FOCUS = $self; 150 my $focus = $FOCUS; $FOCUS = $self;
120 $focus->update if $focus; 151 $focus->update if $focus;
121 $FOCUS->update; 152 $FOCUS->update;
122} 153}
130 $focus->update if $focus; #? 161 $focus->update if $focus; #?
131} 162}
132 163
133sub mouse_motion { } 164sub mouse_motion { }
134sub button_up { } 165sub button_up { }
135sub button_down { }
136sub key_down { } 166sub key_down { }
137sub key_up { } 167sub key_up { }
168
169sub button_down {
170 my ($self, $ev, $x, $y) = @_;
171
172 $self->focus_in;
173}
138 174
139sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} } 175sub w { $_[0]{w} = $_[1] if @_ > 1; $_[0]{w} }
140sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} } 176sub h { $_[0]{h} = $_[1] if @_ > 1; $_[0]{h} }
141sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} } 177sub x { $_[0]{x} = $_[1] if @_ > 1; $_[0]{x} }
142sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} } 178sub y { $_[0]{y} = $_[1] if @_ > 1; $_[0]{y} }
143sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} } 179sub z { $_[0]{z} = $_[1] if @_ > 1; $_[0]{z} }
144 180
145sub draw { 181sub draw {
146 my ($self) = @_; 182 my ($self) = @_;
147 183
184 return unless $self->{h} && $self->{w};
185
148 glPushMatrix; 186 glPushMatrix;
149 glTranslate $self->{x}, $self->{y}, 0; 187 glTranslate $self->{x}, $self->{y}, 0;
150 $self->_draw; 188 $self->_draw;
189 glPopMatrix;
190
151 if ($self == $HOVER) { 191 if ($self == $HOVER) {
152 glColor 1, 1, 1, 0.4; 192 my ($x, $y) = @$self{qw(x y)};
193
194 glColor 0, 0, 1, 0.2;
153 glEnable GL_BLEND; 195 glEnable GL_BLEND;
196 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
154 glBegin GL_QUADS; 197 glBegin GL_QUADS;
155 glVertex 0 , 0; 198 glVertex $x , $y;
156 glVertex $self->{w}, 0; 199 glVertex $x + $self->{w}, $y;
157 glVertex $self->{w}, $self->{h}; 200 glVertex $x + $self->{w}, $y + $self->{h};
158 glVertex 0 , $self->{h}; 201 glVertex $x , $y + $self->{h};
159 glEnd; 202 glEnd;
160 glDisable GL_BLEND; 203 glDisable GL_BLEND;
161 } 204 }
162 glPopMatrix;
163} 205}
164 206
165sub _draw { 207sub _draw {
166 my ($self) = @_; 208 my ($self) = @_;
167 209
168 warn "no draw defined for $self\n"; 210 warn "no draw defined for $self\n";
169}
170
171sub bbox {
172 my ($self) = @_;
173 my ($w, $h) = $self->size_request;
174 (
175 $self->{x},
176 $self->{y},
177 $self->{x} = $w,
178 $self->{y} = $h
179 )
180} 211}
181 212
182sub find_widget { 213sub find_widget {
183 my ($self, $x, $y) = @_; 214 my ($self, $x, $y) = @_;
184 215
187 && $y >= $self->{y} && $y < $self->{y} + $self->{h}; 218 && $y >= $self->{y} && $y < $self->{y} + $self->{h};
188 219
189 () 220 ()
190} 221}
191 222
192sub del_parent { $_[0]->{parent} = undef }
193
194sub set_parent { 223sub set_parent {
195 my ($self, $par) = @_; 224 my ($self, $par) = @_;
196 225
197 $self->{parent} = $par; 226 $self->{parent} = $par;
198 Scalar::Util::weaken $self->{parent}; 227 Scalar::Util::weaken $self->{parent};
207 236
208 $self->{parent}->update 237 $self->{parent}->update
209 if $self->{parent}; 238 if $self->{parent};
210} 239}
211 240
241sub connect {
242 my ($self, $signal, $cb) = @_;
243
244 push @{ $self->{cb}{$signal} }, $cb;
245}
246
247sub emit {
248 my ($self, $signal, @args) = @_;
249
250 $_->($self, @args)
251 for @{$self->{cb}{$signal} || []};
252}
253
212sub DESTROY { 254sub DESTROY {
213 my ($self) = @_; 255 my ($self) = @_;
214 256
215 #$self->deactivate; 257 #$self->deactivate;
216} 258}
217 259
218############################################################################# 260#############################################################################
219 261
262package CFClient::UI::DrawBG;
263
264our @ISA = CFClient::UI::Base::;
265
266use strict;
267use SDL::OpenGL;
268
269sub new {
270 my $class = shift;
271
272 # range [value, low, high, page]
273
274 $class->SUPER::new (
275 bg => [0, 0, 0, 0.2],
276 active_bg => [1, 1, 1, 0.5],
277 @_
278 )
279}
280
281sub _draw {
282 my ($self) = @_;
283
284 my ($w, $h) = @$self{qw(w h)};
285
286 glEnable GL_BLEND;
287 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
288 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} };
289
290 glBegin GL_QUADS;
291 glVertex 0 , 0;
292 glVertex 0 , $h;
293 glVertex $w, $h;
294 glVertex $w, 0;
295 glEnd;
296
297 glDisable GL_BLEND;
298}
299
300#############################################################################
301
302package CFClient::UI::Empty;
303
304our @ISA = CFClient::UI::Base::;
305
306sub size_request {
307 (0, 0)
308}
309
310sub draw { }
311
312#############################################################################
313
220package CFClient::Widget::Container; 314package CFClient::UI::Container;
221 315
222our @ISA = CFClient::Widget::; 316our @ISA = CFClient::UI::Base::;
223 317
224sub new { 318sub new {
225 my ($class, %arg) = @_; 319 my ($class, %arg) = @_;
226 320
227 my $children = delete $arg{children} || []; 321 my $children = delete $arg{children} || [];
231 325
232 $self 326 $self
233} 327}
234 328
235sub add { 329sub add {
236 my ($self, $chld, $expand) = @_; 330 my ($self, $chld) = @_;
237 331
238 $chld->{expand} = $expand;
239 $chld->set_parent ($self); 332 $chld->set_parent ($self);
240 333
241 @{$self->{children}} = 334 $self->{children} = [
242 sort { $a->{z} <=> $b->{z} } 335 sort { $a->{z} <=> $b->{z} }
243 @{$self->{children}}, $chld; 336 @{$self->{children}}, $chld
337 ];
244 338
245 $self->size_allocate ($self->{w}, $self->{h}) 339 $self->{w} = $self->{h} = -1;
246 if $self->{w}; #TODO: check for "realised state" 340 $self->update;
247} 341}
248 342
249sub remove { 343sub remove {
250 my ($self, $widget) = @_; 344 my ($self, $widget) = @_;
251 345
252 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 346 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ];
253 347
254 $self->size_allocate ($self->{w}, $self->{h}); 348 $self->size_allocate (0, 0, $self->{w}, $self->{h});
255} 349}
256 350
257sub find_widget { 351sub find_widget {
258 my ($self, $x, $y) = @_; 352 my ($self, $x, $y) = @_;
259 353
276 $_->draw for @{$self->{children}}; 370 $_->draw for @{$self->{children}};
277} 371}
278 372
279############################################################################# 373#############################################################################
280 374
281package CFClient::Widget::Bin; 375package CFClient::UI::Bin;
282 376
283our @ISA = CFClient::Widget::Container::; 377our @ISA = CFClient::UI::Container::;
378
379sub new {
380 my ($class, %arg) = @_;
381
382 my $child = (delete $arg{child}) || new CFClient::UI::Empty::;
383
384 $class->SUPER::new (children => [$child], %arg)
385}
386
387sub add {
388 my ($self, $widget) = @_;
389
390 $self->{children} = [];
391
392 $self->SUPER::add ($widget);
393}
394
395sub remove {
396 my ($self, $widget) = @_;
397
398 $self->SUPER::remove ($widget);
399
400 $self->{children} = [new CFClient::UI::Empty]
401 unless @{$self->{children}};
402}
284 403
285sub child { $_[0]->{children}[0] } 404sub child { $_[0]->{children}[0] }
286 405
287sub size_request { 406sub size_request {
288 $_[0]{children}[0]->size_request if $_[0]{children}[0]; 407 $_[0]{children}[0]->size_request
289} 408}
290 409
291sub size_allocate { 410sub size_allocate {
292 my ($self, $w, $h) = @_; 411 my ($self, $x, $y, $w, $h) = @_;
293 412
294 $self->SUPER::size_allocate ($w, $h); 413 $self->_size_allocate ($x, $y, $w, $h) or return;
414
295 $self->{children}[0]->size_allocate ($w, $h) 415 $self->{children}[0]->size_allocate (0, 0, $w, $h);
296 if $self->{children}[0]
297} 416}
298 417
299############################################################################# 418#############################################################################
300 419
301package CFClient::Widget::Window; 420package CFClient::UI::Window;
302 421
303our @ISA = CFClient::Widget::Bin::; 422our @ISA = CFClient::UI::Bin::;
304 423
305use SDL::OpenGL; 424use SDL::OpenGL;
306 425
307sub new { 426sub new {
308 my ($class, %arg) = @_; 427 my ($class, %arg) = @_;
326 $self->{w}, $self->{h}, sub { $self->child->draw } 445 $self->{w}, $self->{h}, sub { $self->child->draw }
327 ); 446 );
328} 447}
329 448
330sub size_allocate { 449sub size_allocate {
331 my ($self, $w, $h) = @_; 450 my ($self, $x, $y, $w, $h) = @_;
332 451
333 $self->{w} = $w; 452 $self->_size_allocate ($x, $y, $w, $h) or return;
334 $self->{h} = $h;
335 453
336 $self->child->size_allocate ($w, $h); 454 $self->child->size_allocate (0, 0, $w, $h);
337 455
338 $self->render_chld; 456 $self->render_chld;
339} 457}
340 458
341sub _draw { 459sub _draw {
345 463
346 my $tex = $self->{texture} 464 my $tex = $self->{texture}
347 or return; 465 or return;
348 466
349 glEnable GL_BLEND; 467 glEnable GL_BLEND;
468 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
350 glEnable GL_TEXTURE_2D; 469 glEnable GL_TEXTURE_2D;
351 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 470 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
352 471
353 $tex->draw_quad (0, 0, $w, $h); 472 $tex->draw_quad (0, 0, $w, $h);
354 473
356 glDisable GL_TEXTURE_2D; 475 glDisable GL_TEXTURE_2D;
357} 476}
358 477
359############################################################################# 478#############################################################################
360 479
361package CFClient::Widget::Frame; 480package CFClient::UI::Frame;
362 481
363our @ISA = CFClient::Widget::Bin::; 482our @ISA = CFClient::UI::Bin::;
364 483
365use SDL::OpenGL; 484use SDL::OpenGL;
366 485
367sub size_request { 486sub size_request {
368 my ($self) = @_; 487 my ($self) = @_;
373 492
374 map { $_ + 4 } $chld->size_request; 493 map { $_ + 4 } $chld->size_request;
375} 494}
376 495
377sub size_allocate { 496sub size_allocate {
378 my ($self, $w, $h) = @_; 497 my ($self, $x, $y, $w, $h) = @_;
379 498
380 $self->{w} = $w; 499 $self->_size_allocate ($x, $y, $w, $h) or return;
381 $self->{h} = $h;
382 500
383 $self->child->size_allocate ($w - 4, $h - 4); 501 $self->child->size_allocate (2, 2, $w - 4, $h - 4);
384 $self->child->move (2, 2);
385} 502}
386 503
387sub _draw { 504sub _draw {
388 my ($self) = @_; 505 my ($self) = @_;
389 506
402 $chld->draw; 519 $chld->draw;
403} 520}
404 521
405############################################################################# 522#############################################################################
406 523
407package CFClient::Widget::FancyFrame; 524package CFClient::UI::FancyFrame;
408 525
409our @ISA = CFClient::Widget::Bin::; 526our @ISA = CFClient::UI::Bin::;
410 527
411use SDL::OpenGL; 528use SDL::OpenGL;
412 529
413my @tex = 530my @tex =
414 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 531 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
415 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png); 532 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
416 533
417sub size_request { 534sub size_request {
418 my ($self) = @_; 535 my ($self) = @_;
419 536
537 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
538
420 my ($w, $h) = $self->SUPER::size_request; 539 my ($w, $h) = $self->SUPER::size_request;
421 540
422 $h += $tex[1]->{height}; 541 $h += $tex[1]->{h};
423 $h += $tex[4]->{height}; 542 $h += $tex[4]->{h};
424 $w += $tex[2]->{width}; 543 $w += $tex[2]->{w};
425 $w += $tex[3]->{width}; 544 $w += $tex[3]->{w};
426 545
427 ($w, $h) 546 ($w, $h)
428} 547}
429 548
430sub size_allocate { 549sub size_allocate {
431 my ($self, $w, $h) = @_; 550 my ($self, $x, $y, $w, $h) = @_;
432 551
433 $self->SUPER::size_allocate ($w, $h); 552 $self->_size_allocate ($x, $y, $w, $h) or return;
434 553
435 $h -= $tex[1]->{height}; 554 $h -= $tex[1]{h};
436 $h -= $tex[4]->{height}; 555 $h -= $tex[4]{h};
437 $w -= $tex[2]->{width}; 556 $w -= $tex[2]{w};
438 $w -= $tex[3]->{width}; 557 $w -= $tex[3]{w};
439 558
440 $h = $h < 0 ? 0 : $h; 559 $h = $h < 0 ? 0 : $h;
441 $w = $w < 0 ? 0 : $w; 560 $w = $w < 0 ? 0 : $w;
442 561
443 $self->child->size_allocate ($w, $h); 562 my $child = $self->child;
444 $self->child->move ($tex[3]->{width}, $tex[1]->{height}); 563
564 $child->size_allocate ($tex[3]->{w}, $tex[1]->{h}, $w, $h);
565}
566
567sub button_down {
568 my ($self, $ev, $x, $y) = @_;
569
570 if ($x < $self->{w} && $x >= $self->{w} - $tex[2]{w}
571 && $y < $self->{h} && $y >= $self->{h} - $tex[4]{h}) {
572
573 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
574 my ($bw, $bh) = ($self->{w}, $self->{h});
575
576 $self->{motion} = sub {
577 my ($ev, $x, $y) = @_;
578
579 ($x, $y) = ($ev->motion_x, $ev->motion_y);
580
581 $self->{user_w} = $bw + $x - $ox;
582 $self->{user_h} = $bh + $y - $oy;
583 $self->update;
584 };
585
586 } elsif ($x >= 0 && $x < $self->{w}
587 && $y >= 0 && $y < $tex[1]{h}) {
588
589 my ($ox, $oy) = ($ev->button_x, $ev->button_y);
590 my ($bx, $by) = ($self->{x}, $self->{y});
591
592 $self->{motion} = sub {
593 my ($ev, $x, $y) = @_;
594
595 ($x, $y) = ($ev->motion_x, $ev->motion_y);
596
597 $self->move ($bx + $x - $ox, $by + $y - $oy);
598 $self->update;
599 };
600 }
601}
602
603sub button_up {
604 my ($self, $ev, $x, $y) = @_;
605
606 delete $self->{motion};
607}
608
609sub mouse_motion {
610 my ($self, $ev, $x, $y) = @_;
611
612 $self->{motion}->($ev, $x, $y) if $self->{motion};
445} 613}
446 614
447sub _draw { 615sub _draw {
448 my ($self) = @_; 616 my ($self) = @_;
449 617
450 my ($w, $h) = ($self->{w}, $self->{h}); 618 my ($w, $h) = ($self->{w}, $self->{h});
451 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 619 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
452 620
453 glEnable GL_BLEND; 621 glEnable GL_BLEND;
622 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
454 glEnable GL_TEXTURE_2D; 623 glEnable GL_TEXTURE_2D;
455 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
456 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 624 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
457 625
458 my $top = $tex[1]; 626 my $top = $tex[1];
459 $top->draw_quad (0, 0, $w, $top->{height}); 627 $top->draw_quad (0, 0, $w, $top->{h});
460 628
461 my $left = $tex[3]; 629 my $left = $tex[3];
462 $left->draw_quad (0, $top->{height}, $left->{width}, $ch); 630 $left->draw_quad (0, $top->{h}, $left->{w}, $ch);
463 631
464 my $right = $tex[2]; 632 my $right = $tex[2];
465 $right->draw_quad ($w - $right->{width}, $top->{height}, $right->{width}, $ch); 633 $right->draw_quad ($w - $right->{w}, $top->{h}, $right->{w}, $ch);
466 634
467 my $bottom = $tex[4]; 635 my $bottom = $tex[4];
468 $bottom->draw_quad (0, $h - $bottom->{height}, $w, $bottom->{height}); 636 $bottom->draw_quad (0, $h - $bottom->{h}, $w, $bottom->{h});
469 637
470 my $bg = $tex[0]; 638 my $bg = $tex[0];
639
471 glBindTexture GL_TEXTURE_2D, $bg->{name}; 640 glBindTexture GL_TEXTURE_2D, $bg->{name};
472 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 641 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
473 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT;
474 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT;
475 642
476 my $rep_x = $cw / $bg->{width}; 643 my $rep_x = $cw / $bg->{w};
477 my $rep_y = $ch / $bg->{height}; 644 my $rep_y = $ch / $bg->{h};
478 645
479 $bg->draw_quad ($left->{width}, $top->{height}, $cw, $ch); 646 $bg->draw_quad ($left->{w}, $top->{h}, $cw, $ch);
480 647
648 glDisable GL_TEXTURE_2D;
481 glDisable GL_BLEND; 649 glDisable GL_BLEND;
482 glDisable GL_TEXTURE_2D;
483 650
484 $self->child->draw; 651 $self->child->draw;
485 652
486} 653}
487 654
488############################################################################# 655#############################################################################
489 656
490package CFClient::Widget::Table; 657package CFClient::UI::Table;
491 658
492our @ISA = CFClient::Widget::Bin::; 659our @ISA = CFClient::UI::Base::;
660
661use List::Util qw(max sum);
493 662
494use SDL::OpenGL; 663use SDL::OpenGL;
664
665sub new {
666 my $class = shift;
667
668 $class->SUPER::new (
669 col_expand => [],
670 @_
671 )
672}
495 673
496sub add { 674sub add {
497 my ($self, $x, $y, $chld) = @_; 675 my ($self, $x, $y, $chld) = @_;
498 my $old_chld = $self->{children}[$y][$x];
499 676
500 $self->{children}[$y][$x] = $chld; 677 $self->{children}[$y][$x] = $chld;
501 $chld->set_parent ($self); 678 $chld->set_parent ($self);
679
680 $self->{w} = $self->{h} = -1;
502 $self->update; 681 $self->update;
503} 682}
504 683
505sub max_row_height { 684sub get_wh {
506 my ($self, $row) = @_; 685 my ($self) = @_;
507 686
508 my $hs = 0; 687 my (@w, @h);
509 for (my $xi = 0; $xi <= $#{$self->{children}->[$row] || []}; $xi++) { 688
689 for my $y (0 .. $#{$self->{children}}) {
510 my $c = $self->{children}->[$row]->[$xi]; 690 my $row = $self->{children}[$y]
511 if ($c) { 691 or next;
692
693 for my $x (0 .. $#$row) {
694 my $widget = $row->[$x]
695 or next;
512 my ($w, $h) = $c->size_request; 696 my ($w, $h) = $widget->size_request;
513 if ($hs < $h) { $hs = $h } 697
698 $w[$x] = max $w[$x], $w;
699 $h[$y] = max $h[$y], $h;
514 } 700 }
515 } 701 }
516 return $hs;
517}
518 702
519sub max_col_width { 703 (\@w, \@h)
704}
705
706sub size_request {
520 my ($self, $col) = @_; 707 my ($self) = @_;
521 708
709 my ($ws, $hs) = $self->get_wh;
710
711 (
712 (sum @$ws),
713 (sum @$hs),
714 )
715}
716
717sub size_allocate {
718 my ($self, $x, $y, $w, $h) = @_;
719
720 $self->_size_allocate ($x, $y, $w, $h) or return;
721
722 my ($ws, $hs) = $self->get_wh;
723
724 my $req_w = sum @$ws;
725 my $req_h = sum @$hs;
726
727 # TODO: nicer code && do row_expand
728 my @col_expand = @{$self->{col_expand}};
729 @col_expand = (1) x @$ws unless @col_expand;
730 my $col_expand = (sum @col_expand) || 1;
731
732 # linearly scale sizes
733 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
734 $hs->[$_] *= 1 * $h / $req_h for 0 .. $#$hs;
735
736 my $y;
737
738 for my $r (0 .. $#{$self->{children}}) {
739 my $row = $self->{children}[$r]
740 or next;
741
522 my $ws = 0; 742 my $x = 0;
523 for (my $yi = 0; $yi <= $#{$self->{children} || []}; $yi++) { 743 my $row_h = $hs->[$r];
524 my $c = ($self->{children}->[$yi] || [])->[$col]; 744
525 if ($c) { 745 for my $c (0 .. $#$row) {
526 my ($w, $h) = $c->size_request; 746 my $widget = $row->[$c]
527 if ($ws < $w) { $ws = $w } 747 or next;
748
749 my $col_w = $ws->[$c];
750
751 $widget->size_allocate ($x, $y, $col_w, $row_h);
752
753 $x += $col_w;
528 } 754 }
755
756 $y += $row_h;
529 } 757 }
530 return $ws; 758
531} 759}
760
761sub find_widget {
762 my ($self, $x, $y) = @_;
763
764 $x -= $self->{x};
765 $y -= $self->{y};
766
767 my $res;
768
769 for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
770 $res = $_->find_widget ($x, $y)
771 and return $res;
772 }
773
774 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
775}
776
777sub _draw {
778 my ($self) = @_;
779
780 for (grep $_, @{$self->{children}}) {
781 $_->draw for grep $_, @$_;
782 }
783}
784
785#############################################################################
786
787package CFClient::UI::HBox;
788
789# TODO: wrap into common Box base class
790
791our @ISA = CFClient::UI::Container::;
532 792
533sub size_request { 793sub size_request {
534 my ($self) = @_; 794 my ($self) = @_;
535 795
796 my @alloc = map [$_->size_request], @{$self->{children}};
797
798 (
799 (List::Util::sum map $_->[0], @alloc),
800 (List::Util::max map $_->[1], @alloc),
801 )
802}
803
804sub size_allocate {
805 my ($self, $x, $y, $w, $h) = @_;
806
807 $self->_size_allocate ($x, $y, $w, $h) or return;
808
809 return unless $self->{w};
810
536 my ($hs, $ws) = (0, 0); 811 ($h, $w) = ($w, $h);
537 812
538 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 813 my $children = $self->{children};
539 $hs += $self->max_row_height ($yi);
540 }
541 814
542 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 815 my @h = map +($_->size_request)[0], @$children;
543 my $wm = 0; 816
544 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 817 my $req_h = List::Util::sum @h;
545 $wm += $self->max_col_width ($xi) 818
819 if ($req_h > $h) {
820 # ah well, not enough space
821 $_ *= $h / $req_h for @h;
822 } else {
823 my $exp = List::Util::sum map $_->{expand}, @$children;
824 $exp ||= 1;
825
826 for (0 .. $#$children) {
827 my $child = $children->[$_];
828
829 my $alloc_h = $h[$_];
830 $alloc_h += ($h - $req_h) * $child->{expand} / $exp;
831 $h[$_] = $alloc_h;
546 } 832 }
547 if ($ws < $wm) { $ws = $wm }
548 } 833 }
549
550 return ($ws, $hs);
551}
552
553sub _draw {
554 my ($self) = @_;
555 834
556 my $y = 0; 835 my $y = 0;
557 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 836 for (0 .. $#$children) {
837 my $child = $children->[$_];
558 my $x = 0; 838 my $h = $h[$_];
839 $child->size_allocate ($y, 0, $h, $w);
559 840
560 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 841 $y += $h;
561
562 my $c = $self->{children}->[$yi]->[$xi];
563 if ($c) {
564 $c->move ($x, $y, 0); #TODO: Move to size_request
565 $c->draw if $c;
566 }
567
568 $x += $self->max_col_width ($xi);
569 }
570
571 $y += $self->max_row_height ($yi);
572 } 842 }
573} 843}
574 844
575############################################################################# 845#############################################################################
576 846
577package CFClient::Widget::VBox; 847package CFClient::UI::VBox;
578 848
849# TODO: wrap into common Box base class
850
579our @ISA = CFClient::Widget::Container::; 851our @ISA = CFClient::UI::Container::;
580
581use SDL::OpenGL;
582 852
583sub size_request { 853sub size_request {
584 my ($self) = @_; 854 my ($self) = @_;
585 855
586 my @alloc = map [$_->size_request], @{$self->{children}}; 856 my @alloc = map [$_->size_request], @{$self->{children}};
590 (List::Util::sum map $_->[1], @alloc), 860 (List::Util::sum map $_->[1], @alloc),
591 ) 861 )
592} 862}
593 863
594sub size_allocate { 864sub size_allocate {
595 my ($self, $w, $h) = @_; 865 my ($self, $x, $y, $w, $h) = @_;
596 866
597 $self->w ($w); 867 $self->_size_allocate ($x, $y, $w, $h) or return;
598 $self->h ($h);
599 868
600 my $exp; 869 return unless $self->{h};
601 my @oth; 870
602 # find expand widget 871 my $children = $self->{children};
603 for (@{$self->{children}}) { 872
604 if ($_->{expand}) { 873 my @h = map +($_->size_request)[1], @$children;
874
875 my $req_h = List::Util::sum @h;
876
877 if ($req_h > $h) {
878 # ah well, not enough space
879 $_ *= $h / $req_h for @h;
880 } else {
881 my $exp = List::Util::sum map $_->{expand}, @$children;
605 $exp = $_; 882 $exp ||= 1;
606 last; 883
884 for (0 .. $#$children) {
885 my $child = $children->[$_];
886
887 $h[$_] += ($h - $req_h) * $child->{expand} / $exp;
607 } 888 }
608 push @oth, $_;
609 }
610
611 my ($ow, $oh);
612
613 # get sizes of other widgets
614 for (@oth) {
615 my ($w, $h) = $_->size_request;
616 $oh += $h;
617 if ($ow < $w) { $ow = $w }
618 } 889 }
619 890
620 my $y = 0; 891 my $y = 0;
621 for (@{$self->{children}}) { 892 for (0 .. $#$children) {
622 $_->move (0, $y); 893 my $child = $children->[$_];
623 894 my $h = $h[$_];
624 if ($_ == $exp) {
625 $_->size_allocate ($w, $h - $oh);
626 $y += $h - $oh;
627 } else {
628 my ($cw, $h) = $_->size_request;
629 $_->size_allocate ($w, $h); 895 $child->size_allocate (0, $y, $w, $h);
896
630 $y += $h; 897 $y += $h;
631 }
632 } 898 }
633} 899}
634 900
635############################################################################# 901#############################################################################
636 902
637package CFClient::Widget::Label; 903package CFClient::UI::Label;
638 904
639our @ISA = CFClient::Widget::; 905our @ISA = CFClient::UI::Base::;
640 906
641use SDL::OpenGL; 907use SDL::OpenGL;
642 908
643sub new { 909sub new {
644 my ($class, %arg) = @_; 910 my ($class, %arg) = @_;
645 911
646 # TODO: color, and make height, xyz etc. optional
647 my $self = $class->SUPER::new ( 912 my $self = $class->SUPER::new (
648 color => [1, 1, 1], 913 fg => [1, 1, 1],
649 height => $::FONTSIZE, 914 height => $::FONTSIZE,
650 text => "", 915 text => "",
916 align => -1,
917 padding => 2,
651 layout => new CFClient::Layout, 918 layout => new CFClient::Layout,
652 %arg 919 %arg
653 ); 920 );
654 921
655 $self->set_text ($self->{text}); 922 $self->set_text ($self->{text});
656 923
657 $self 924 $self
658} 925}
659 926
927sub escape_text {
928 local $_ = $_[1];
929
930 s/&/&amp;/g;
931 s/>/&gt;/g;
932 s/</&lt;/g;
933
934 $_[1]
935}
936
660sub set_text { 937sub set_text {
661 my ($self, $text) = @_; 938 my ($self, $text) = @_;
662 939
663 $self->{text} = $text; 940 $self->{text} = $text;
664 $self->{layout}->set_markup ($text); 941 $self->{layout}->set_markup ($text);
665 942
666 delete $self->{texture}; 943 delete $self->{texture};
944# $self->{w} = $self->{h} = -1;
945 $self->update;
667} 946}
668 947
669sub get_text { 948sub get_text {
670 my ($self, $text) = @_; 949 my ($self, $text) = @_;
671 950
675sub size_request { 954sub size_request {
676 my ($self) = @_; 955 my ($self) = @_;
677 956
678 $self->{layout}->set_width; 957 $self->{layout}->set_width;
679 $self->{layout}->set_height ($self->{height}); 958 $self->{layout}->set_height ($self->{height});
680 $self->{layout}->size 959 my ($w, $h) = $self->{layout}->size;
681# if ($self->{texture}{width} > 1 && $self->{texture}{height} > 1) { #TODO: hack 960
682# ( 961 (
683# $self->{texture}{width}, 962 $w + $self->{padding} * 2,
684# $self->{texture}{height}, 963 $h + $self->{padding} * 2,
685# ) 964 )
686# } else {
687# my ($w, $h, $data) = CFClient::font_render "Yy", $self->{height};
688#
689# ($w, $h)
690# }
691} 965}
692 966
693sub size_allocate { 967sub size_allocate {
694 my ($self, $w, $h) = @_; 968 my ($self, $x, $y, $w, $h) = @_;
695 969
696 $self->SUPER::size_allocate ($w, $h); 970 $self->_size_allocate ($x, $y, $w, $h) or return;
971
697 delete $self->{texture}; 972 delete $self->{texture};
973}
974
975sub update {
976 my ($self) = @_;
977
978 delete $self->{texture};
979 $self->SUPER::update;
698} 980}
699 981
700sub _draw { 982sub _draw {
701 my ($self) = @_; 983 my ($self) = @_;
702 984
703 my $tex = $self->{texture} ||= do { 985 my $tex = $self->{texture} ||= do {
704 $self->{layout}->set_width ($self->{w}); 986 $self->{layout}->set_width ($self->{w});
987 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{height});
705 new_from_layout CFClient::Texture $self->{layout}; 988 new_from_layout CFClient::Texture $self->{layout}
706 }; 989 };
707 990
708 glEnable GL_BLEND; 991 glEnable GL_BLEND;
992 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
709 glEnable GL_TEXTURE_2D; 993 glEnable GL_TEXTURE_2D;
710 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
711 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 994 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
712 995
713 glColor @{$self->{color}}; 996 glColor @{$self->{fg}};
714 997
998 my $x =
999 $self->{align} < 0 ? $self->{padding}
1000 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
1001 : ($self->{w} - $tex->{w}) * 0.5;
1002
1003 glTranslate $x, $self->{padding}, 0;
715 $tex->draw_quad (0, 0); 1004 $tex->draw_quad (0, 0);
716 1005
1006 glDisable GL_TEXTURE_2D;
717 glDisable GL_BLEND; 1007 glDisable GL_BLEND;
718 glDisable GL_TEXTURE_2D;
719} 1008}
720 1009
721############################################################################# 1010#############################################################################
722 1011
723package CFClient::Widget::Entry; 1012package CFClient::UI::Entry;
724 1013
725our @ISA = CFClient::Widget::Label::; 1014our @ISA = CFClient::UI::Label::;
726 1015
727use SDL; 1016use SDL;
728use SDL::OpenGL; 1017use SDL::OpenGL;
729 1018
1019sub new {
1020 my $class = shift;
1021
1022 $class->SUPER::new (
1023 fg => [1, 1, 1],
1024 bg => [0, 0, 0, 0.2],
1025 active_bg => [1, 1, 1, 0.5],
1026 active_fg => [0, 0, 0],
1027 @_
1028 )
1029}
1030
1031sub _set_text {
1032 my ($self, $text) = @_;
1033
1034 $self->{last_activity} = $::NOW;
1035
1036 $self->{text} = $text;
1037 $self->{layout}->set_width ($self->{w});
1038 $self->{layout}->set_height (List::Util::min $self->{h} - $self->{padding} * 2, $self->{height});
1039
1040 $text =~ s/./*/g if $self->{hidden};
1041
1042 $self->{layout}->set_markup ($self->escape_text ($text) . " ");
1043
1044 $text = substr $text, 0, $self->{cursor};
1045 utf8::encode $text;
1046
1047 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
1048}
1049
1050sub size_request {
1051 my ($self) = @_;
1052
1053 my ($w, $h) = $self->SUPER::size_request;
1054
1055 ($w + 1, $h) # add 1 for cursor
1056}
1057
1058sub size_allocate {
1059 my ($self, $x, $y, $w, $h) = @_;
1060
1061 $self->SUPER::size_allocate ($x, $y, $w, $h);
1062
1063 $self->_set_text ($self->{text});
1064}
1065
1066sub set_text {
1067 my ($self, $text) = @_;
1068
1069 $self->{cursor} = length $text;
1070 $self->_set_text ($text);
1071 $self->update;
1072}
1073
730sub key_down { 1074sub key_down {
731 my ($self, $ev) = @_; 1075 my ($self, $ev) = @_;
732 1076
733 my $mod = $ev->key_mod; 1077 my $mod = $ev->key_mod;
734 my $sym = $ev->key_sym; 1078 my $sym = $ev->key_sym;
736 my $uni = $ev->key_unicode; 1080 my $uni = $ev->key_unicode;
737 1081
738 my $text = $self->get_text; 1082 my $text = $self->get_text;
739 1083
740 if ($sym == SDLK_BACKSPACE) { 1084 if ($sym == SDLK_BACKSPACE) {
741 substr $text, -1, 1, ''; 1085 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
1086 } elsif ($sym == SDLK_DELETE) {
1087 substr $text, $self->{cursor}, 1, "";
1088 } elsif ($sym == SDLK_LEFT) {
1089 --$self->{cursor} if $self->{cursor};
1090 } elsif ($sym == SDLK_RIGHT) {
1091 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1092 } elsif ($sym == SDLK_HOME) {
1093 $self->{cursor} = 0;
1094 } elsif ($sym == SDLK_END) {
1095 $self->{cursor} = length $text;
742 } elsif ($uni) { 1096 } elsif ($uni) {
743 $text .= chr $uni; 1097 substr $text, $self->{cursor}++, 0, chr $uni;
744 } 1098 }
745 1099
746 $self->set_text ($text); 1100 $self->_set_text ($text);
1101 $self->update;
1102}
1103
1104sub focus_in {
1105 my ($self) = @_;
1106
1107 $self->{last_activity} = $::NOW;
1108
1109 $self->SUPER::focus_in;
747} 1110}
748 1111
749sub button_down { 1112sub button_down {
750 my ($self, $ev) = @_; 1113 my ($self, $ev, $x, $y) = @_;
751 1114
752 $self->focus_in; 1115 $self->SUPER::button_down ($ev, $x, $y);
1116
1117 my $idx = $self->{layout}->xy_to_index ($x, $y);
1118
1119 # byte-index to char-index
1120 my $text = $self->{text};
1121 utf8::encode $text;
1122 $self->{cursor} = length substr $text, 0, $idx;
1123
1124 $self->_set_text ($self->{text});
1125 $self->update;
753} 1126}
754 1127
755sub mouse_motion { 1128sub mouse_motion {
756 my ($self, $ev, $x, $y) = @_; 1129 my ($self, $ev, $x, $y) = @_;
757 printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d# 1130# printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d#
758} 1131}
759 1132
760sub _draw { 1133sub _draw {
761 my ($self) = @_; 1134 my ($self) = @_;
762 1135
1136 local $self->{fg} = $self->{fg};
1137
763 if ($FOCUS == $self) { 1138 if ($FOCUS == $self) {
764 glColor 1, 1, 1; 1139 glColor @{$self->{active_bg}};
1140 $self->{fg} = $self->{active_fg};
765 } else { 1141 } else {
766 glColor 0.7, 0.7, 0.7; 1142 glColor @{$self->{bg}};
767 } 1143 }
768 1144
1145 glEnable GL_BLEND;
1146 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
769 glBegin GL_QUADS; 1147 glBegin GL_QUADS;
770 glVertex 0 , 0; 1148 glVertex 0 , 0;
771 glVertex 0 , $self->{h} - 1; 1149 glVertex 0 , $self->{h};
772 glVertex $self->{w} - 1, $self->{h} - 1; 1150 glVertex $self->{w}, $self->{h};
773 glVertex $self->{w} - 1, 0; 1151 glVertex $self->{w}, 0;
774 glEnd; 1152 glEnd;
1153 glDisable GL_BLEND;
775 1154
776 $self->SUPER::_draw; 1155 $self->SUPER::_draw;
777}
778 1156
779############################################################################# 1157 #TODO: force update every cursor change :(
1158 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1159 glColor @{$self->{fg}};
1160 glBegin GL_LINES;
1161 glVertex $self->{cur_x}, $self->{cur_y};
1162 glVertex $self->{cur_x}, $self->{cur_y} + $self->{cur_h};
1163 glEnd;
1164 }
1165}
780 1166
781package CFClient::Widget::MapWidget; 1167#############################################################################
782 1168
783use strict; 1169package CFClient::UI::Button;
784 1170
785use List::Util qw(min max); 1171our @ISA = CFClient::UI::Label::;
786 1172
787use SDL; 1173use SDL;
788use SDL::OpenGL; 1174use SDL::OpenGL;
789use SDL::OpenGL::Constants;
790 1175
1176sub new {
1177 my $class = shift;
1178
1179 $class->SUPER::new (
1180 padding => 4,
1181 fg => [1, 1, 1],
1182 bg => [1, 1, 1, 0.2],
1183 active_bg => [0, 0, 0, 0.5],
1184 active_fg => [1, 1, 0],
1185 border_fg => [1, 1, 0],
1186 @_
1187 )
1188}
1189
1190sub button_up {
1191 my ($self, $ev, $x, $y) = @_;
1192
1193 if ($x >= 0 && $x < $self->{w}
1194 && $y >= 0 && $y < $self->{h}) {
1195 $self->emit ("activate");
1196 }
1197}
1198
1199sub _draw {
1200 my ($self) = @_;
1201
1202 local $self->{fg} = $self->{fg};
1203
1204 glEnable GL_BLEND;
1205 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1206
1207 glTranslate 0.375, 0.375, 0; # make line and polyogon coordinates behave similarly
1208
1209 glBegin GL_LINE_LOOP;
1210 glColor @{$self->{border_fg}};
1211 glVertex 1 , 1;
1212 glVertex 1 , $self->{h} - 2;
1213 glVertex $self->{w} - 2, $self->{h} - 2;
1214 glVertex $self->{w} - 2, 1;
1215 glEnd;
1216
1217 if ($GRAB == $self) {
1218 glColor @{$self->{active_bg}};
1219 $self->{fg} = $self->{active_fg};
1220 } else {
1221 glColor @{$self->{bg}};
1222 }
1223
1224 glBegin GL_QUADS;
1225 glVertex 2 , 2;
1226 glVertex 2 , $self->{h} - 2;
1227 glVertex $self->{w} - 2, $self->{h} - 2;
1228 glVertex $self->{w} - 2, 2;
1229 glEnd;
1230 glDisable GL_BLEND;
1231
1232 $self->SUPER::_draw;
1233}
1234
1235#############################################################################
1236
1237package CFClient::UI::Slider;
1238
1239use strict;
1240
1241use SDL::OpenGL;
1242
1243our @ISA = CFClient::UI::DrawBG::;
1244
1245sub new {
1246 my $class = shift;
1247
1248 # range [value, low, high, page]
1249
1250 my $self = $class->SUPER::new (
1251 fg => [1, 1, 1],
1252 active_fg => [0, 0, 0],
1253 range => [0, 0, 100, 10],
1254 req_w => 40,
1255 req_h => 10,
1256 vertical => 0,
1257 @_
1258 );
1259
1260 $self
1261}
1262
1263sub size_request {
1264 my ($self) = @_;
1265
1266 my $w = $self->{req_w};
1267 my $h = $self->{req_h};
1268
1269 $self->{vertical} ? ($h, $w) : ($w, $h)
1270}
1271
1272sub button_down {
1273 my ($self, $ev, $x, $y) = @_;
1274
1275 $self->SUPER::button_down ($ev, $x, $y);
1276 $self->mouse_motion ($ev, $x, $y);
1277}
1278
1279sub mouse_motion {
1280 my ($self, $ev, $x, $y) = @_;
1281
1282 if ($GRAB == $self) {
1283 my ($value, $lo, $hi, $page) = @{$self->{range}};
1284
1285 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
1286
1287 $x = $x * ($hi - $lo) / $w + $lo;
1288 $x = $lo if $x < $lo;
1289 $x = $hi - $page if $x > $hi - $page;
1290 $self->{range}[0] = $x;
1291
1292 $self->emit (changed => $x);
1293 $self->update;
1294 }
1295}
1296
1297sub _draw {
1298 my ($self) = @_;
1299
1300 $self->SUPER::_draw ();
1301
1302 my ($w, $h) = @$self{qw(w h)};
1303
1304 if ($self->{vertical}) {
1305 # draw a vertical slider like a rotated horizontal slider
1306
1307 glRotate 90, 0, 0, 1;
1308 glTranslate 0, -$self->{w}, 0;
1309
1310 ($w, $h) = ($h, $w);
1311 }
1312
1313 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
1314 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
1315
1316 my ($value, $lo, $hi, $page) = @{$self->{range}};
1317
1318 $page = int $page * $w / ($hi - $lo);
1319 $value = int +($value - $lo) * $w / ($hi - $lo);
1320
1321 $w -= $page;
1322 $page &= ~1;
1323 glTranslate $page * 0.5, 0, 0;
1324 $page ||= 2;
1325
1326 glColor @$fg;
1327 glBegin GL_LINES;
1328 glVertex 0, 0; glVertex 0, $h;
1329 glVertex $w - 1, 0; glVertex $w - 1, $h;
1330 glVertex 0, $h * 0.5; glVertex $w, $h * 0.5;
1331 glEnd;
1332
1333 my $knob_a = $value - $page * 0.5;
1334 my $knob_b = $value + $page * 0.5;
1335
1336 glBegin GL_QUADS;
1337 glColor @$fg;
1338 glVertex $knob_a, 0;
1339 glVertex $knob_a, $h;
1340 glVertex $knob_b, $h;
1341 glVertex $knob_b, 0;
1342
1343 if ($knob_a < $knob_b - 2) {
1344 glColor @$bg;
1345 glVertex $knob_a + 1, 1;
1346 glVertex $knob_a + 1, $h - 1;
1347 glVertex $knob_b - 1, $h - 1;
1348 glVertex $knob_b - 1, 1;
1349 }
1350 glEnd;
1351}
1352
1353#############################################################################
1354
1355package CFClient::UI::MapWidget;
1356
1357use strict;
1358
1359use List::Util qw(min max);
1360
1361use SDL;
1362use SDL::OpenGL;
1363
791our @ISA = CFClient::Widget::; 1364our @ISA = CFClient::UI::Base::;
792 1365
793sub new { 1366sub new {
794 my $class = shift; 1367 my $class = shift;
795 1368
796 $class->SUPER::new ( 1369 $class->SUPER::new (
807sub key_up { 1380sub key_up {
808} 1381}
809 1382
810sub size_request { 1383sub size_request {
811 ( 1384 (
812 1 + int $::WIDTH / 32, 1385 1 + 32 * int $::WIDTH / 32,
813 1 + int $::HEIGHT / 32, 1386 1 + 32 * int $::HEIGHT / 32,
814 ) 1387 )
815} 1388}
816 1389
817sub update { 1390sub update {
818 my ($self) = @_; 1391 my ($self) = @_;
819 1392
820 $self->{need_update} = 1; 1393 $self->{need_update} = 1;
1394 $self->SUPER::update;
821} 1395}
822 1396
823sub _draw { 1397sub draw {
824 my ($self) = @_; 1398 my ($self) = @_;
825 1399
826 if (delete $self->{need_update}) { 1400 if (delete $self->{need_update}) {
827 glNewList $self->{list}, GL_COMPILE; 1401 glNewList $self->{list}, GL_COMPILE;
828 1402
848 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs}; 1422 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs};
849 } 1423 }
850 1424
851 glEnable GL_TEXTURE_2D; 1425 glEnable GL_TEXTURE_2D;
852 glEnable GL_BLEND; 1426 glEnable GL_BLEND;
1427 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
853 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 1428 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
854 1429
855 my $sw4 = ($sw + 3) & ~3; 1430 my $sw4 = ($sw + 3) & ~3;
856 my $darkness = "\x00" x ($sw4 * $sh); 1431 my $darkness = "\x00" x ($sw4 * $sh);
857 1432
870 } 1445 }
871 1446
872 for my $num (grep $_, @$cell[1,2,3]) { 1447 for my $num (grep $_, @$cell[1,2,3]) {
873 my $tex = $::CONN->{face}[$num]{texture} || next; 1448 my $tex = $::CONN->{face}[$num]{texture} || next;
874 1449
875 my $w = $tex->{width}; 1450 my ($w, $h) = @$tex{qw(w h)};
876 my $h = $tex->{height};
877 1451
878 $tex->draw_quad (($x + 1) * 32 - $w, ($y + 1) * 32 - $h, $w, $h); 1452 $tex->draw_quad (($x + 1) * 32 - $w, ($y + 1) * 32 - $h, $w, $h);
879 } 1453 }
880 } 1454 }
881 } 1455 }
888# 1462#
889# $lighting = $pb->get_pixels; 1463# $lighting = $pb->get_pixels;
890# $lighting =~ s/(.)../$1/gs; 1464# $lighting =~ s/(.)../$1/gs;
891# } 1465# }
892 1466
893 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
894 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 1467 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
895 1468
896 $darkness = new CFClient::Texture 1469 $darkness = new CFClient::Texture
897 width => $sw4, 1470 w => $sw4,
898 height => $sh, 1471 h => $sh,
899 data => $darkness, 1472 data => $darkness,
900 internalformat => GL_ALPHA, 1473 internalformat => GL_ALPHA,
901 format => GL_ALPHA; 1474 format => GL_ALPHA;
902 1475
903 glColor 0.45, 0.45, 0.45, 1; 1476 glColor 0.45, 0.45, 0.45, 1;
963 } 1536 }
964} 1537}
965 1538
966############################################################################# 1539#############################################################################
967 1540
968package CFClient::Widget::Animator; 1541package CFClient::UI::Animator;
969 1542
970use SDL::OpenGL; 1543use SDL::OpenGL;
971 1544
972our @ISA = CFClient::Widget::Bin::; 1545our @ISA = CFClient::UI::Bin::;
973 1546
974sub moveto { 1547sub moveto {
975 my ($self, $x, $y) = @_; 1548 my ($self, $x, $y) = @_;
976 1549
977 $self->{moveto} = [$self->{x}, $self->{y}, $x, $y]; 1550 $self->{moveto} = [$self->{x}, $self->{y}, $x, $y];
1005 glPopMatrix; 1578 glPopMatrix;
1006} 1579}
1007 1580
1008############################################################################# 1581#############################################################################
1009 1582
1010package CFClient::Widget::Toplevel; 1583package CFClient::UI::Toplevel;
1011 1584
1012our @ISA = CFClient::Widget::Container::; 1585our @ISA = CFClient::UI::Container::;
1013 1586
1014sub size_request { 1587sub size_request {
1015 ($::WIDTH, $::HEIGHT) 1588 ($::WIDTH, $::HEIGHT)
1016} 1589}
1017 1590
1018sub size_allocate { 1591sub size_allocate {
1019 my ($self, $w, $h) = @_; 1592 my ($self, $x, $y, $w, $h) = @_;
1020 1593
1021 $self->SUPER::size_allocate ($w, $h); 1594 $self->_size_allocate ($x, $y, $w, $h);
1022 1595
1023 $_->size_allocate ($_->size_request) 1596 $_->size_allocate ($_->{x}, $_->{y}, $_->size_request)
1024 for @{$self->{children}}; 1597 for @{$self->{children}};
1025} 1598}
1026 1599
1027sub translate { 1600sub translate {
1028 my ($self, $x, $y) = @_; 1601 my ($self, $x, $y) = @_;
1031} 1604}
1032 1605
1033sub update { 1606sub update {
1034 my ($self) = @_; 1607 my ($self) = @_;
1035 1608
1036 $self->size_allocate ($self->size_request); 1609 $self->size_allocate (0, 0, $::WIDTH, $::HEIGHT);
1037 ::refresh (); 1610 ::refresh ();
1038} 1611}
1039 1612
1040sub add { 1613sub add {
1041 my ($self, $widget) = @_; 1614 my ($self, $widget) = @_;
1042 1615
1043 $self->SUPER::add ($widget); 1616 $self->SUPER::add ($widget);
1044 1617
1045 $widget->size_allocate ($widget->size_request); 1618 $widget->size_allocate ($widget->{x}, $widget->{y}, $widget->size_request);
1046} 1619}
1047 1620
1048sub draw { 1621sub draw {
1049 my ($self) = @_; 1622 my ($self) = @_;
1050 1623
1051 $self->_draw; 1624 $self->_draw;
1052} 1625}
1053 1626
1054############################################################################# 1627#############################################################################
1055 1628
1056package CFClient::Widget; 1629package CFClient::UI;
1057 1630
1058$TOPLEVEL = new CFClient::Widget::Toplevel; 1631$TOPLEVEL = new CFClient::UI::Toplevel;
1059 1632
10601 16331
1061 1634

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines