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.73 by root, Tue Apr 11 18:06:53 2006 UTC vs.
Revision 1.155 by root, Sun Apr 23 02:22:54 2006 UTC

1package CFClient::UI; 1package CFClient::UI;
2 2
3use strict; 3use strict;
4 4
5use Scalar::Util; 5use Scalar::Util ();
6use List::Util ();
6 7
7use CFClient; 8use CFClient;
8 9
9our ($FOCUS, $HOVER, $GRAB); # various widgets 10our ($FOCUS, $HOVER, $GRAB); # various widgets
10 11
11our $TOPLEVEL; 12our $ROOT;
13our $TOOLTIP;
12our $BUTTON_STATE; 14our $BUTTON_STATE;
15
16sub check_tooltip {
17 if (!$GRAB) {
18 for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
19 if (exists $widget->{tooltip}) {
20
21 if ($TOOLTIP->{owner} != $widget) {
22 $TOOLTIP->{owner} = $widget;
23
24 my $tip = $widget->{tooltip};
25
26 $tip = $tip->($widget) if CODE:: eq ref $tip;
27
28 $TOOLTIP->set_text ($widget->{tooltip});
29 $TOOLTIP->move ($widget->coord2global ($widget->{w}, 0));
30 $TOOLTIP->show;
31 }
32
33 return;
34 }
35 }
36 }
37
38 $TOOLTIP->hide;
39 delete $TOOLTIP->{owner};
40}
13 41
14# class methods for events 42# class methods for events
15sub feed_sdl_key_down_event { 43sub feed_sdl_key_down_event {
16 $FOCUS->key_down ($_[0]) if $FOCUS; 44 $FOCUS->key_down ($_[0]) if $FOCUS;
17} 45}
20 $FOCUS->key_up ($_[0]) if $FOCUS; 48 $FOCUS->key_up ($_[0]) if $FOCUS;
21} 49}
22 50
23sub feed_sdl_button_down_event { 51sub feed_sdl_button_down_event {
24 my ($ev) = @_; 52 my ($ev) = @_;
25 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 53 my ($x, $y) = ($ev->{x}, $ev->{y});
26 54
27 if (!$BUTTON_STATE) { 55 if (!$BUTTON_STATE) {
28 my $widget = $TOPLEVEL->find_widget ($x, $y); 56 my $widget = $ROOT->find_widget ($x, $y);
29 57
30 $GRAB = $widget; 58 $GRAB = $widget;
31 $GRAB->update if $GRAB; 59 $GRAB->update if $GRAB;
32 }
33 60
61 check_tooltip;
62 }
63
34 $BUTTON_STATE |= 1 << ($ev->button - 1); 64 $BUTTON_STATE |= 1 << ($ev->{button} - 1);
35 65
36 $GRAB->button_down ($ev, $GRAB->translate ($x, $y)) if $GRAB; 66 $GRAB->button_down ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
37} 67}
38 68
39sub feed_sdl_button_up_event { 69sub feed_sdl_button_up_event {
40 my ($ev) = @_; 70 my ($ev) = @_;
41 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 71 my ($x, $y) = ($ev->{x}, $ev->{y});
42 72
43 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y); 73 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
44 74
45 $BUTTON_STATE &= ~(1 << ($ev->button - 1)); 75 $BUTTON_STATE &= ~(1 << ($ev->{button} - 1));
46 76
47 $GRAB->button_down ($ev, $GRAB->translate ($x, $y)) if $GRAB; 77 $GRAB->button_up ($ev, $GRAB->coord2local ($x, $y)) if $GRAB;
48 78
49 if (!$BUTTON_STATE) { 79 if (!$BUTTON_STATE) {
50 my $grab = $GRAB; undef $GRAB; 80 my $grab = $GRAB; undef $GRAB;
51 $grab->update if $grab; 81 $grab->update if $grab;
52 $GRAB->update if $GRAB; 82 $GRAB->update if $GRAB;
83
84 check_tooltip;
53 } 85 }
54} 86}
55 87
56sub feed_sdl_motion_event { 88sub feed_sdl_motion_event {
57 my ($ev) = @_; 89 my ($ev) = @_;
58 my ($x, $y) = ($ev->motion_x, $ev->motion_y); 90 my ($x, $y) = ($ev->{x}, $ev->{y});
59 91
60 my $widget = $GRAB || $TOPLEVEL->find_widget ($x, $y); 92 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
61 93
62 if ($widget != $HOVER) { 94 if ($widget != $HOVER) {
63 my $hover = $HOVER; $HOVER = $widget; 95 my $hover = $HOVER; $HOVER = $widget;
64 96
65 $hover->update if $hover; 97 $hover->update if $hover && $hover->{can_hover};
66 $HOVER->update if $HOVER; 98 $HOVER->update if $HOVER && $HOVER->{can_hover};
67 }
68 99
100 check_tooltip;
101 }
102
69 $HOVER->mouse_motion ($ev, $HOVER->translate ($x, $y)) if $HOVER; 103 $HOVER->mouse_motion ($ev, $HOVER->coord2local ($x, $y)) if $HOVER;
104}
105
106# convert position array to integers
107sub harmonize {
108 my ($vals) = @_;
109
110 my $rem = 0;
111
112 for (@$vals) {
113 my $i = int $_ + $rem;
114 $rem += $_ - $i;
115 $_ = $i;
116 }
70} 117}
71 118
72############################################################################# 119#############################################################################
73 120
74package CFClient::UI::Base; 121package CFClient::UI::Base;
75 122
76use strict; 123use strict;
77 124
78use SDL::OpenGL; 125use CFClient::OpenGL;
79 126
80sub new { 127sub new {
81 my $class = shift; 128 my $class = shift;
82 129
83 bless { 130 my $self = bless {
84 x => 0, 131 x => 0,
85 y => 0, 132 y => 0,
86 z => 0, 133 z => 0,
134 can_events => 1,
87 @_ 135 @_
88 }, $class 136 }, $class;
137
138 for (keys %$self) {
139 if (/^connect_(.*)$/) {
140 $self->connect ($1 => delete $self->{$_});
141 }
142 }
143
144 $self
145}
146
147sub show {
148 my ($self) = @_;
149
150 return if $self->{parent};
151
152 $CFClient::UI::ROOT->add ($self);
153}
154
155sub hide {
156 my ($self) = @_;
157
158 return unless $self->{parent};
159
160 $self->{parent}->remove ($self);
89} 161}
90 162
91sub move { 163sub move {
92 my ($self, $x, $y, $z) = @_; 164 my ($self, $x, $y, $z) = @_;
165
93 $self->{x} = $x; 166 $self->{x} = int $x;
94 $self->{y} = $y; 167 $self->{y} = int $y;
95 $self->{z} = $z if defined $z; 168 $self->{z} = $z if defined $z;
169
170 $self->update;
96} 171}
97 172
98sub needs_redraw { 173sub needs_redraw {
99 0 174 0
100} 175}
101 176
102sub size_request { 177sub size_request {
103 require Carp; 178 require Carp;
104 Carp::confess "size_request is abtract"; 179 Carp::confess "size_request is abstract";
180}
181
182sub configure {
183 my ($self, $x, $y, $w, $h) = @_;
184
185 if ($self->{aspect}) {
186 my $w2 = List::Util::min $w, int $h * $self->{aspect};
187 my $h2 = List::Util::min $h, int $w / $self->{aspect};
188
189 # use alignment to adjust x, y
190
191 $x += int +($w - $w2) * 0.5;
192 $y += int +($h - $h2) * 0.5;
193
194 ($w, $h) = ($w2, $h2);
195 }
196
197 if ($self->{x} != $x || $self->{y} != $y) {
198 $self->{x} = $x;
199 $self->{y} = $y;
200 $self->update;
201 }
202
203 if ($self->{w} != $w || $self->{h} != $h) {
204 $self->{w} = $w;
205 $self->{h} = $h;
206
207 $self->size_allocate ($w, $h);
208 $self->update;
209 }
105} 210}
106 211
107sub size_allocate { 212sub size_allocate {
108 my ($self, $w, $h) = @_; 213 # nothing to be done
109
110 $self->{w} = $w;
111 $self->{h} = $h;
112} 214}
113 215
114# translate global koordinates to local coordinate system 216# return top left coordinates
115sub translate { 217sub _topleft {
116 my ($self, $x, $y) = @_; 218 my ($self, $x, $y) = @_;
117 219
118 $self->{parent}->translate ($x - $self->{x}, $y - $self->{y}); 220 $self->{parent}->_topleft ($x + $self->{x}, $y + $self->{y});
221}
222
223# translate global coordinates to local coordinate system
224sub coord2local {
225 my ($self, $x, $y) = @_;
226
227 my ($X, $Y) = $self->_topleft;
228 ($x - $X, $y - $Y)
229}
230
231# translate local coordinates to global coordinate system
232sub coord2global {
233 my ($self, $x, $y) = @_;
234
235 my ($X, $Y) = $self->_topleft;
236 ($x + $X, $y + $Y)
119} 237}
120 238
121sub focus_in { 239sub focus_in {
122 my ($self) = @_; 240 my ($self) = @_;
123 241
124 return if $FOCUS == $self; 242 return if $FOCUS == $self;
243 return unless $self->{can_focus};
125 244
126 my $focus = $FOCUS; $FOCUS = $self; 245 my $focus = $FOCUS; $FOCUS = $self;
246
247 $self->emit (focus_in => $focus);
248
127 $focus->update if $focus; 249 $focus->update if $focus;
128 $FOCUS->update; 250 $FOCUS->update;
129} 251}
130 252
131sub focus_out { 253sub focus_out {
132 my ($self) = @_; 254 my ($self) = @_;
133 255
134 return unless $FOCUS == $self; 256 return unless $FOCUS == $self;
135 257
136 my $focus = $FOCUS; undef $FOCUS; 258 my $focus = $FOCUS; undef $FOCUS;
259
260 $self->emit (focus_out => $focus);
261
137 $focus->update if $focus; #? 262 $focus->update if $focus; #?
138} 263}
139 264
140sub mouse_motion { } 265sub mouse_motion { }
141sub button_up { } 266sub button_up { }
162 glPushMatrix; 287 glPushMatrix;
163 glTranslate $self->{x}, $self->{y}, 0; 288 glTranslate $self->{x}, $self->{y}, 0;
164 $self->_draw; 289 $self->_draw;
165 glPopMatrix; 290 glPopMatrix;
166 291
167 if ($self == $HOVER) { 292 if ($self == $HOVER && $self->{can_hover}) {
168 my ($x, $y) = @$self{qw(x y)}; 293 my ($x, $y) = @$self{qw(x y)};
169 294
170 glColor 1, 1, 1, 0.1; 295 glColor 1, 0.8, 0.5, 0.2;
171 glEnable GL_BLEND; 296 glEnable GL_BLEND;
297 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
172 glBegin GL_QUADS; 298 glBegin GL_QUADS;
173 glVertex $x , $y; 299 glVertex $x , $y;
174 glVertex $x + $self->{w}, $y; 300 glVertex $x + $self->{w}, $y;
175 glVertex $x + $self->{w}, $y + $self->{h}; 301 glVertex $x + $self->{w}, $y + $self->{h};
176 glVertex $x , $y + $self->{h}; 302 glVertex $x , $y + $self->{h};
183 my ($self) = @_; 309 my ($self) = @_;
184 310
185 warn "no draw defined for $self\n"; 311 warn "no draw defined for $self\n";
186} 312}
187 313
188sub bbox {
189 my ($self) = @_;
190 my ($w, $h) = $self->size_request;
191 (
192 $self->{x},
193 $self->{y},
194 $self->{x} = $w,
195 $self->{y} = $h
196 )
197}
198
199sub find_widget { 314sub find_widget {
200 my ($self, $x, $y) = @_; 315 my ($self, $x, $y) = @_;
316
317 return () unless $self->{can_events};
201 318
202 return $self 319 return $self
203 if $x >= $self->{x} && $x < $self->{x} + $self->{w} 320 if $x >= $self->{x} && $x < $self->{x} + $self->{w}
204 && $y >= $self->{y} && $y < $self->{y} + $self->{h}; 321 && $y >= $self->{y} && $y < $self->{y} + $self->{h};
205 322
206 () 323 ()
207} 324}
208 325
209sub del_parent { $_[0]->{parent} = undef }
210
211sub set_parent { 326sub set_parent {
212 my ($self, $par) = @_; 327 my ($self, $parent) = @_;
213 328
214 $self->{parent} = $par;
215 Scalar::Util::weaken $self->{parent}; 329 Scalar::Util::weaken ($self->{parent} = $parent);
216} 330}
217 331
218sub get_parent { 332sub check_size {
219 $_[0]->{parent} 333 my ($self) = @_;
334
335 return unless $self->{parent};
336
337 my ($w, $h) = $self->size_request;
338
339 if ($w != $self->{req_w} || $h != $self->{req_h}) {
340 $self->{req_w} = $w;
341 $self->{req_h} = $h;
342
343 $self->{parent}->check_size;
344 }
220} 345}
221 346
222sub update { 347sub update {
223 my ($self) = @_; 348 my ($self) = @_;
224 349
227} 352}
228 353
229sub connect { 354sub connect {
230 my ($self, $signal, $cb) = @_; 355 my ($self, $signal, $cb) = @_;
231 356
232 push @{ $self->{cb}{$signal} }, $cb; 357 push @{ $self->{signal_cb}{$signal} }, $cb;
233} 358}
234 359
235sub emit { 360sub emit {
236 my ($self, $signal, @args) = @_; 361 my ($self, $signal, @args) = @_;
237 362
363 for my $cb (@{$self->{signal_cb}{$signal} || []}) {
238 $_->($self, @args) 364 $cb->($self, @args);
239 for @{$self->{cb}{$signal} || []}; 365 }
240} 366}
241 367
242sub DESTROY { 368sub DESTROY {
243 my ($self) = @_; 369 my ($self) = @_;
244 370
250package CFClient::UI::DrawBG; 376package CFClient::UI::DrawBG;
251 377
252our @ISA = CFClient::UI::Base::; 378our @ISA = CFClient::UI::Base::;
253 379
254use strict; 380use strict;
255use SDL::OpenGL; 381use CFClient::OpenGL;
256 382
257sub new { 383sub new {
258 my $class = shift; 384 my $class = shift;
259 385
260 # range [value, low, high, page] 386 # range [value, low, high, page]
261 387
262 $class->SUPER::new ( 388 $class->SUPER::new (
263 bg => [0, 0, 0, 0.4], 389 bg => [0, 0, 0, 0.2],
264 active_bg => [1, 1, 1], 390 active_bg => [1, 1, 1, 0.5],
265 @_ 391 @_
266 ) 392 )
267} 393}
268 394
269sub _draw { 395sub _draw {
270 my ($self) = @_; 396 my ($self) = @_;
271 397
272 my ($w, $h) = @$self{qw(w h)}; 398 my ($w, $h) = @$self{qw(w h)};
273 399
400 glEnable GL_BLEND;
401 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
274 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} }; 402 glColor @{ $FOCUS == $self ? $self->{active_bg} : $self->{bg} };
403
275 glBegin GL_QUADS; 404 glBegin GL_QUADS;
276 glVertex 0 , 0; 405 glVertex 0 , 0;
277 glVertex 0 , $h; 406 glVertex 0 , $h;
278 glVertex $w, $h; 407 glVertex $w, $h;
279 glVertex $w, 0; 408 glVertex $w, 0;
280 glEnd; 409 glEnd;
410
411 glDisable GL_BLEND;
281} 412}
282 413
283############################################################################# 414#############################################################################
284 415
285package CFClient::UI::Empty; 416package CFClient::UI::Empty;
286 417
287our @ISA = CFClient::UI::Base::; 418our @ISA = CFClient::UI::Base::;
419
420sub new {
421 my ($class, %arg) = @_;
422 $class->SUPER::new (can_events => 0, %arg);
423}
288 424
289sub size_request { 425sub size_request {
290 (0, 0) 426 (0, 0)
291} 427}
292 428
301sub new { 437sub new {
302 my ($class, %arg) = @_; 438 my ($class, %arg) = @_;
303 439
304 my $children = delete $arg{children} || []; 440 my $children = delete $arg{children} || [];
305 441
306 my $self = $class->SUPER::new (children => [], %arg); 442 my $self = $class->SUPER::new (children => [], can_events => 0, %arg);
307 $self->add ($_) for @$children; 443 $self->add ($_) for @$children;
308 444
309 $self 445 $self
310} 446}
311 447
312sub add { 448sub add {
313 my ($self, $chld, $expand) = @_; 449 my ($self, $child) = @_;
314 450
315 $chld->{expand} = $expand;
316 $chld->set_parent ($self); 451 $child->set_parent ($self);
452
453 use sort 'stable';
317 454
318 $self->{children} = [ 455 $self->{children} = [
319 sort { $a->{z} <=> $b->{z} } 456 sort { $a->{z} <=> $b->{z} }
320 @{$self->{children}}, $chld 457 @{$self->{children}}, $child
321 ]; 458 ];
322 459
323 $self->size_allocate ($self->{w}, $self->{h}) 460 $child->check_size;
324 if $self->{w}; #TODO: check for "realised state"
325} 461}
326 462
327sub remove { 463sub remove {
328 my ($self, $widget) = @_; 464 my ($self, $child) = @_;
329 465
466 delete $child->{parent};
467
330 $self->{children} = [ grep $_ != $widget, @{ $self->{children} } ]; 468 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
331 469
332 $self->size_allocate ($self->{w}, $self->{h}); 470 $self->check_size;
471 $self->update;
333} 472}
334 473
335sub find_widget { 474sub find_widget {
336 my ($self, $x, $y) = @_; 475 my ($self, $x, $y) = @_;
337 476
367 506
368 $class->SUPER::new (children => [$child], %arg) 507 $class->SUPER::new (children => [$child], %arg)
369} 508}
370 509
371sub add { 510sub add {
372 my ($self, $widget) = @_; 511 my ($self, $child) = @_;
373 512
374 $self->{children} = []; 513 $self->{children} = [];
375 514
376 $self->SUPER::add ($widget); 515 $self->SUPER::add ($child);
377} 516}
378 517
379sub remove { 518sub remove {
380 my ($self, $widget) = @_; 519 my ($self, $widget) = @_;
381 520
392} 531}
393 532
394sub size_allocate { 533sub size_allocate {
395 my ($self, $w, $h) = @_; 534 my ($self, $w, $h) = @_;
396 535
397 return unless $self->{w} != $w || $self->{h} != $h;
398
399 $self->SUPER::size_allocate ($w, $h);
400 $self->{children}[0]->size_allocate ($w, $h); 536 $self->{children}[0]->configure (0, 0, $w, $h);
401} 537}
402 538
403############################################################################# 539#############################################################################
404 540
405package CFClient::UI::Window; 541package CFClient::UI::Window;
406 542
407our @ISA = CFClient::UI::Bin::; 543our @ISA = CFClient::UI::Bin::;
408 544
409use SDL::OpenGL; 545use CFClient::OpenGL;
410 546
411sub new { 547sub new {
412 my ($class, %arg) = @_; 548 my ($class, %arg) = @_;
413 549
414 my $self = $class->SUPER::new (%arg); 550 my $self = $class->SUPER::new (%arg);
423} 559}
424 560
425sub render_chld { 561sub render_chld {
426 my ($self) = @_; 562 my ($self) = @_;
427 563
428 $self->{texture} = 564 $self->{texture} = new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub {
429 CFClient::Texture->new_from_opengl ( 565 glClearColor 0, 0, 0, 1;
430 $self->{w}, $self->{h}, sub { $self->child->draw } 566 glClear GL_COLOR_BUFFER_BIT;
431 ); 567 $self->child->draw;
568 };
432} 569}
433 570
434sub size_allocate { 571sub size_allocate {
435 my ($self, $w, $h) = @_; 572 my ($self, $w, $h) = @_;
436 573
437 return unless $self->{w} != $w || $self->{h} != $h; 574 $self->child->configure (0, 0, $w, $h);
438 575
576 $self->render_chld;
577}
578
579sub _draw {
580 my ($self) = @_;
581
582 my ($w, $h) = ($self->w, $self->h);
583
584 my $tex = $self->{texture}
585 or return;
586
587 glEnable GL_BLEND;
588 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
589 glEnable GL_TEXTURE_2D;
590 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
591
592 $tex->draw_quad (0, 0, $w, $h);
593
594 glDisable GL_BLEND;
595 glDisable GL_TEXTURE_2D;
596}
597
598#############################################################################
599
600package CFClient::UI::ViewPort;
601
602our @ISA = CFClient::UI::Window::;
603
604sub new { die }
605
606sub size_request {
607 my ($self) = @_;
608
609 @$self{qw(child_w child_h)} = @{$self->child}{qw(req_w req_h)};
610 $self->child->size_allocate (0, 0, @$self{qw(child_w child_h)});
611
612 @$self{qw(child_w child_h)}
613}
614
615sub _draw {
616 my ($self) = @_;
617
618 $self->{children}[1]->draw;
619}
620
621
622#############################################################################
623
624package CFClient::UI::Frame;
625
626our @ISA = CFClient::UI::Bin::;
627
628use CFClient::OpenGL;
629
630sub new {
631 my $class = shift;
632
633 my $self = $class->SUPER::new (
634 bg => [1, 1, 1, 1],
635 border_bg => [1, 1, 1, 1],
636 border => 0.8,
637 @_
638 );
639
640 $self
641}
642
643sub set_size {
644 my ($self, $w, $h) = @_;
645 $self->{req_w} = $w;
646 $self->{req_h} = $h;
647 $self->check_size;
648}
649
650sub size_request {
651 my ($self) = @_;
652 ($self->{req_w}, $self->{req_h})
653}
654
655sub size_allocate {
656 my ($self, $w, $h) = @_;
439 $self->{w} = $w; 657 $self->{w} = $w;
440 $self->{h} = $h; 658 $self->{h} = $h;
441 659 $self->child->configure (0, 0, $w, $h);
442 $self->child->size_allocate ($w, $h);
443
444 $self->render_chld;
445} 660}
446 661
447sub _draw { 662sub _draw {
448 my ($self) = @_; 663 my ($self) = @_;
449 664
450 my ($w, $h) = ($self->w, $self->h); 665 my ($w, $h) = ($self->{w}, $self->{h});
451
452 my $tex = $self->{texture}
453 or return;
454 666
455 glEnable GL_BLEND; 667 glEnable GL_BLEND;
668 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
456 glEnable GL_TEXTURE_2D; 669 glEnable GL_TEXTURE_2D;
457 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 670 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
458 671
459 $tex->draw_quad (0, 0, $w, $h); 672# glBegin GL_QUADS;
673# glColor 0, 0, 0, 0;
674# glVertex 0 , 0;
675# glVertex 0 , $h;
676# glVertex $w, $h;
677# glVertex $w, 0;
678# glEnd;
460 679
680
681 $self->child->draw;
461 glDisable GL_BLEND; 682 glDisable GL_BLEND;
462 glDisable GL_TEXTURE_2D; 683 glDisable GL_TEXTURE_2D;
463} 684}
464 685
465############################################################################# 686#############################################################################
466 687
467package CFClient::UI::Frame; 688package CFClient::UI::FancyFrame;
468 689
469our @ISA = CFClient::UI::Bin::; 690our @ISA = CFClient::UI::Bin::;
470 691
471use SDL::OpenGL; 692use CFClient::OpenGL;
693
694my @tex =
695 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
696 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
697
698sub new {
699 my $class = shift;
700
701 # TODO: user_x, user_y, overwrite moveto?
702
703 my $self = $class->SUPER::new (
704 bg => [1, 1, 1, 1],
705 border_bg => [1, 1, 1, 1],
706 border => 0.8,
707 can_events => 1,
708 @_
709 );
710
711 $self->{title} &&= new CFClient::UI::Label
712 align => 0,
713 valign => 1,
714 text => $self->{title},
715 fontsize => 1;
716
717 $self
718}
719
720sub border {
721 int $_[0]{border} * $::FONTSIZE
722}
472 723
473sub size_request { 724sub size_request {
474 my ($self) = @_; 725 my ($self) = @_;
475 my $chld = $self->child
476 or return (0, 0);
477 726
478 $chld->move (2, 2); 727 return ($self->{user_w}, $self->{user_h}) if $self->{user_w} && $self->{user_h};
479 728
480 map { $_ + 4 } $chld->size_request; 729 my ($w, $h) = $self->SUPER::size_request;
730
731 (
732 $w + $self->border * 2,
733 $h + $self->border * 2,
734 )
481} 735}
482 736
483sub size_allocate { 737sub size_allocate {
484 my ($self, $w, $h) = @_; 738 my ($self, $w, $h) = @_;
739
740 $h -= List::Util::max 0, $self->border * 2;
741 $w -= List::Util::max 0, $self->border * 2;
742
743 $self->{title}->configure ($self->border, $self->border - $::FONTSIZE * 2, $w, $::FONTSIZE * 2)
744 if $self->{title};
745
746 $self->child->configure ($self->border, $self->border, $w, $h);
747}
748
749sub button_down {
750 my ($self, $ev, $x, $y) = @_;
751
752 my $border = $self->border;
753
754 if ($x < $self->{w} && $x >= $self->{w} - $border
755 && $y < $self->{h} && $y >= $self->{h} - $border) {
756
757 my ($ox, $oy) = ($ev->{x}, $ev->{y});
758 my ($bw, $bh) = ($self->{w}, $self->{h});
759
760 $self->{motion} = sub {
761 my ($ev, $x, $y) = @_;
762
763 ($x, $y) = ($ev->{x}, $ev->{y});
764
765 $self->{user_w} = $bw + $x - $ox;
766 $self->{user_h} = $bh + $y - $oy;
767 $self->check_size;
768 };
769
770 } elsif ($x >= 0 && $x < $self->{w}
771 && $y >= 0 && $y < $border) {
772
773 my ($ox, $oy) = ($ev->{x}, $ev->{y});
774 my ($bx, $by) = ($self->{x}, $self->{y});
775
776 $self->{motion} = sub {
777 my ($ev, $x, $y) = @_;
778
779 ($x, $y) = ($ev->{x}, $ev->{y});
780
781 $self->move ($bx + $x - $ox, $by + $y - $oy);
782 $self->update;
783 };
485 784 }
486 return unless $self->{w} != $w || $self->{h} != $h; 785}
487 786
488 $self->{w} = $w; 787sub button_up {
489 $self->{h} = $h; 788 my ($self, $ev, $x, $y) = @_;
490 789
491 $self->child->size_allocate ($w - 4, $h - 4); 790 delete $self->{motion};
492 $self->child->move (2, 2); 791}
792
793sub mouse_motion {
794 my ($self, $ev, $x, $y) = @_;
795
796 $self->{motion}->($ev, $x, $y) if $self->{motion};
493} 797}
494 798
495sub _draw { 799sub _draw {
496 my ($self) = @_; 800 my ($self) = @_;
497 801
498 my $chld = $self->child; 802 my ($w, $h ) = ($self->{w}, $self->{h});
803 my ($cw, $ch) = ($self->child->{w}, $self->child->{h});
499 804
500 my ($w, $h) = $chld->size_request; 805 glEnable GL_BLEND;
806 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
807 glEnable GL_TEXTURE_2D;
808 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
501 809
502 glBegin GL_QUADS; 810 my $border = $self->border;
503 glColor 0, 0, 0;
504 glVertex 0 , 0;
505 glVertex 0 , $h + 4;
506 glVertex $w + 4 , $h + 4;
507 glVertex $w + 4 , 0;
508 glEnd;
509 811
812 glColor @{ $self->{border_bg} };
813 $tex[1]->draw_quad (0, 0, $w, $border);
814 $tex[3]->draw_quad (0, $border, $border, $ch);
815 $tex[2]->draw_quad ($w - $border, $border, $border, $ch);
816 $tex[4]->draw_quad (0, $h - $border, $w, $border);
817
818 my $bg = $tex[0];
819
820 # TODO: repeat texture not scale
821 my $rep_x = $cw / $bg->{w};
822 my $rep_y = $ch / $bg->{h};
823
824 glColor @{ $self->{bg} };
825
826 $bg->{s} = $rep_x;
827 $bg->{t} = $rep_y;
828 $bg->{wrap_mode} = 1;
829 $bg->draw_quad ($border, $border, $cw, $ch);
830
831 glDisable GL_TEXTURE_2D;
832 glDisable GL_BLEND;
833
834 $self->{title}->draw if $self->{title};
510 $chld->draw; 835 $self->child->draw;
511} 836}
512 837
513############################################################################# 838#############################################################################
514 839
515package CFClient::UI::FancyFrame; 840package CFClient::UI::Table;
516 841
517our @ISA = CFClient::UI::Bin::; 842our @ISA = CFClient::UI::Base::;
518 843
519use SDL::OpenGL; 844use List::Util qw(max sum);
520 845
521my @tex = 846use CFClient::OpenGL;
522 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ } 847
523 qw(d1_bg.png d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png); 848sub new {
849 my $class = shift;
850
851 $class->SUPER::new (
852 col_expand => [],
853 @_
854 )
855}
856
857sub add {
858 my ($self, $x, $y, $child) = @_;
859
860 $child->set_parent ($self);
861 $self->{children}[$y][$x] = $child;
862
863 $child->check_size;
864}
865
866# TODO: move to container class maybe? send childs a signal on removal?
867sub clear {
868 my ($self) = @_;
869
870 delete $self->{children};
871 $self->update;
872}
873
874sub get_wh {
875 my ($self) = @_;
876
877 my (@w, @h);
878
879 for my $y (0 .. $#{$self->{children}}) {
880 my $row = $self->{children}[$y]
881 or next;
882
883 for my $x (0 .. $#$row) {
884 my $widget = $row->[$x]
885 or next;
886 my ($w, $h) = @$widget{qw(req_w req_h)};
887
888 $w[$x] = max $w[$x], $w;
889 $h[$y] = max $h[$y], $h;
890 }
891 }
892
893 (\@w, \@h)
894}
524 895
525sub size_request { 896sub size_request {
526 my ($self) = @_; 897 my ($self) = @_;
527 898
528 my ($w, $h) = $self->SUPER::size_request; 899 my ($ws, $hs) = $self->get_wh;
529 900
530 $h += $tex[1]->{h}; 901 (
531 $h += $tex[4]->{h}; 902 (sum @$ws),
532 $w += $tex[2]->{w}; 903 (sum @$hs),
533 $w += $tex[3]->{w}; 904 )
534
535 ($w, $h)
536} 905}
537 906
538sub size_allocate { 907sub size_allocate {
539 my ($self, $w, $h) = @_; 908 my ($self, $w, $h) = @_;
540 909
541 return unless $self->{w} != $w || $self->{h} != $h; 910 my ($ws, $hs) = $self->get_wh;
542 911
543 $self->SUPER::size_allocate ($w, $h); 912 my $req_w = sum @$ws;
913 my $req_h = sum @$hs;
544 914
545 $h -= $tex[1]->{h}; 915 # TODO: nicer code && do row_expand
546 $h -= $tex[4]->{h}; 916 my @col_expand = @{$self->{col_expand}};
547 $w -= $tex[2]->{w}; 917 @col_expand = (1) x @$ws unless @col_expand;
548 $w -= $tex[3]->{w}; 918 my $col_expand = (sum @col_expand) || 1;
549 919
550 $h = $h < 0 ? 0 : $h; 920 # linearly scale sizes
551 $w = $w < 0 ? 0 : $w; 921 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
922 $hs->[$_] *= 1 * $h / $req_h for 0 .. $#$hs;
552 923
553 my $child = $self->child; 924 CFClient::UI::harmonize $ws;
925 CFClient::UI::harmonize $hs;
554 926
555 $child->size_allocate ($w, $h); 927 my $y;
556 $child->move ($tex[3]->{w}, $tex[1]->{h}); 928
929 for my $r (0 .. $#{$self->{children}}) {
930 my $row = $self->{children}[$r]
931 or next;
932
933 my $x = 0;
934 my $row_h = $hs->[$r];
935
936 for my $c (0 .. $#$row) {
937 my $col_w = $ws->[$c];
938
939 if (my $widget = $row->[$c]) {
940 $widget->configure ($x, $y, $col_w, $row_h);
941 }
942
943 $x += $col_w;
944 }
945
946 $y += $row_h;
947 }
948
949}
950
951sub find_widget {
952 my ($self, $x, $y) = @_;
953
954 $x -= $self->{x};
955 $y -= $self->{y};
956
957 my $res;
958
959 for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
960 $res = $_->find_widget ($x, $y)
961 and return $res;
962 }
963
964 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
557} 965}
558 966
559sub _draw { 967sub _draw {
560 my ($self) = @_; 968 my ($self) = @_;
561 969
562 my ($w, $h) = ($self->{w}, $self->{h}); 970 for (grep $_, @{$self->{children}}) {
563 my ($cw, $ch) = ($self->child->{w}, $self->child->{h}); 971 $_->draw for grep $_, @$_;
564 972 }
565 glEnable GL_BLEND;
566 glEnable GL_TEXTURE_2D;
567 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
568 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
569
570 my $top = $tex[1];
571 $top->draw_quad (0, 0, $w, $top->{h});
572
573 my $left = $tex[3];
574 $left->draw_quad (0, $top->{h}, $left->{w}, $ch);
575
576 my $right = $tex[2];
577 $right->draw_quad ($w - $right->{w}, $top->{h}, $right->{w}, $ch);
578
579 my $bottom = $tex[4];
580 $bottom->draw_quad (0, $h - $bottom->{h}, $w, $bottom->{h});
581
582 my $bg = $tex[0];
583 glBindTexture GL_TEXTURE_2D, $bg->{name};
584 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
585 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT;
586 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT;
587
588 my $rep_x = $cw / $bg->{w};
589 my $rep_y = $ch / $bg->{h};
590
591 $bg->draw_quad ($left->{w}, $top->{h}, $cw, $ch);
592
593 glDisable GL_BLEND;
594 glDisable GL_TEXTURE_2D;
595
596 $self->child->draw;
597
598} 973}
599 974
600############################################################################# 975#############################################################################
601 976
602package CFClient::UI::Table; 977package CFClient::UI::HBox;
603 978
979# TODO: wrap into common Box base class
980
604our @ISA = CFClient::UI::Base::; 981our @ISA = CFClient::UI::Container::;
605 982
606use SDL::OpenGL; 983sub size_request {
984 my ($self) = @_;
607 985
608sub add { 986 my @alloc = map [$_->size_request], @{$self->{children}};
609 my ($self, $x, $y, $chld) = @_;
610 my $old_chld = $self->{children}[$y][$x];
611 987
612 $self->{children}[$y][$x] = $chld; 988 (
613 $chld->set_parent ($self); 989 (List::Util::sum map $_->[0], @alloc),
614 $self->update; 990 (List::Util::max map $_->[1], @alloc),
991 )
615} 992}
616 993
617sub max_row_height { 994sub size_allocate {
618 my ($self, $row) = @_; 995 my ($self, $w, $h) = @_;
619 996
620 my $hs = 0; 997 ($h, $w) = ($w, $h);
621 for (my $xi = 0; $xi <= $#{$self->{children}->[$row] || []}; $xi++) { 998
622 my $c = $self->{children}->[$row]->[$xi]; 999 my $children = $self->{children};
623 if ($c) { 1000
624 my ($w, $h) = $c->size_request; 1001 my @h = map $_->{req_w}, @$children;
625 if ($hs < $h) { $hs = $h } 1002
1003 my $req_h = List::Util::sum @h;
1004
1005 if ($req_h > $h) {
1006 # ah well, not enough space
1007 $_ *= $h / $req_h for @h;
1008 } else {
1009 my $exp = List::Util::sum map $_->{expand}, @$children;
1010 $exp ||= 1;
1011
1012 for (0 .. $#$children) {
1013 my $child = $children->[$_];
1014
1015 my $alloc_h = $h[$_];
1016 $alloc_h += ($h - $req_h) * $child->{expand} / $exp;
1017 $h[$_] = $alloc_h;
626 } 1018 }
627 } 1019 }
628 return $hs;
629}
630 1020
631sub max_col_width { 1021 CFClient::UI::harmonize \@h;
632 my ($self, $col) = @_;
633
634 my $ws = 0;
635 for (my $yi = 0; $yi <= $#{$self->{children} || []}; $yi++) {
636 my $c = ($self->{children}->[$yi] || [])->[$col];
637 if ($c) {
638 my ($w, $h) = $c->size_request;
639 if ($ws < $w) { $ws = $w }
640 }
641 }
642 return $ws;
643}
644
645sub size_request {
646 my ($self) = @_;
647
648 my ($hs, $ws) = (0, 0);
649
650 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) {
651 $hs += $self->max_row_height ($yi);
652 }
653
654 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) {
655 my $wm = 0;
656 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) {
657 $wm += $self->max_col_width ($xi)
658 }
659 if ($ws < $wm) { $ws = $wm }
660 }
661
662 return ($ws, $hs);
663}
664
665sub _draw {
666 my ($self) = @_;
667 1022
668 my $y = 0; 1023 my $y = 0;
669 for (my $yi = 0; $yi <= $#{$self->{children}}; $yi++) { 1024 for (0 .. $#$children) {
1025 my $child = $children->[$_];
670 my $x = 0; 1026 my $h = $h[$_];
1027 $child->configure ($y, 0, $h, $w);
671 1028
672 for (my $xi = 0; $xi <= $#{$self->{children}->[$yi]}; $xi++) { 1029 $y += $h;
1030 }
673 1031
674 my $c = $self->{children}->[$yi]->[$xi];
675 if ($c) {
676 $c->move ($x, $y, 0); #TODO: Move to size_request
677 $c->draw if $c;
678 }
679
680 $x += $self->max_col_width ($xi);
681 }
682
683 $y += $self->max_row_height ($yi);
684 } 1032 1
685} 1033}
686 1034
687############################################################################# 1035#############################################################################
688 1036
689package CFClient::UI::VBox; 1037package CFClient::UI::VBox;
690 1038
1039# TODO: wrap into common Box base class
1040
691our @ISA = CFClient::UI::Container::; 1041our @ISA = CFClient::UI::Container::;
692
693use SDL::OpenGL;
694 1042
695sub size_request { 1043sub size_request {
696 my ($self) = @_; 1044 my ($self) = @_;
697 1045
698 my @alloc = map [$_->size_request], @{$self->{children}}; 1046 my @alloc = map [$_->size_request], @{$self->{children}};
704} 1052}
705 1053
706sub size_allocate { 1054sub size_allocate {
707 my ($self, $w, $h) = @_; 1055 my ($self, $w, $h) = @_;
708 1056
709 return unless $self->{w} != $w || $self->{h} != $h;
710
711 $self->{w} = $w;
712 $self->{h} = $h;
713
714 return unless $self->{h};
715
716 my $children = $self->{children}; 1057 my $children = $self->{children};
717 1058
718 my @h = map +($_->size_request)[1], @$children; 1059 my @h = map $_->{req_h}, @$children;
719 1060
720 my $req_h = List::Util::sum @h; 1061 my $req_h = List::Util::sum @h;
721 1062
722 if ($req_h > $h) { 1063 if ($req_h > $h) {
723 # ah well, not enough space 1064 # ah well, not enough space
724 $_ = $h[$_] * $h / $req_h for @h; 1065 $_ *= $h / $req_h for @h;
725 } else { 1066 } else {
726 my @exp = grep $_->{expand}, @$children; 1067 my $exp = List::Util::sum map $_->{expand}, @$children;
727 @exp = @$children unless @exp; 1068 $exp ||= 1;
728 1069
729 my %exp = map +($_ => 1), @exp;
730
731 for (0 .. $#$children) { 1070 for (0 .. $#$children) {
732 my $child = $children->[$_]; 1071 my $child = $children->[$_];
733 1072
734 my $alloc_h = $h[$_]; 1073 $h[$_] += ($h - $req_h) * $child->{expand} / $exp;
735 $alloc_h += ($h - $req_h) / @exp if $exp{$child};
736 $h[$_] = $alloc_h;
737 } 1074 }
738 } 1075 }
1076
1077 CFClient::UI::harmonize \@h;
739 1078
740 my $y = 0; 1079 my $y = 0;
741 for (0 .. $#$children) { 1080 for (0 .. $#$children) {
742 my $child = $children->[$_]; 1081 my $child = $children->[$_];
743 my $h = $h[$_]; 1082 my $h = $h[$_];
744 $child->move (0, $y); 1083 $child->configure (0, $y, $w, $h);
745 $child->size_allocate ($w, $h);
746 1084
747 $y += $h; 1085 $y += $h;
748 } 1086 }
1087
1088 1
749} 1089}
750 1090
751############################################################################# 1091#############################################################################
752 1092
753package CFClient::UI::Label; 1093package CFClient::UI::Label;
754 1094
755our @ISA = CFClient::UI::Base::; 1095our @ISA = CFClient::UI::Base::;
756 1096
757use SDL::OpenGL; 1097use CFClient::OpenGL;
758 1098
759sub new { 1099sub new {
760 my ($class, %arg) = @_; 1100 my ($class, %arg) = @_;
761 1101
762 my $self = $class->SUPER::new ( 1102 my $self = $class->SUPER::new (
763 fg => [1, 1, 1], 1103 fg => [1, 1, 1],
764 height => $::FONTSIZE, 1104 fontsize => 1,
765 text => "", 1105 text => "",
766 align => -1, 1106 align => -1,
1107 valign => -1,
1108 padding => 2,
767 layout => new CFClient::Layout, 1109 layout => new CFClient::Layout,
1110 can_events => 0,
768 %arg 1111 %arg
769 ); 1112 );
770 1113
771 $self->set_text ($self->{text}); 1114 if (exists $self->{template}) {
1115 my $layout = new CFClient::Layout;
1116 $layout->set_text (delete $self->{template});
1117 $self->{template} = $layout;
1118 }
1119
1120 $self->set_text (delete $self->{text}) if exists $self->{text};
1121 $self->set_markup (delete $self->{markup}) if exists $self->{markup};
772 1122
773 $self 1123 $self
774} 1124}
775 1125
776sub escape_text { 1126sub escape_text {
784} 1134}
785 1135
786sub set_text { 1136sub set_text {
787 my ($self, $text) = @_; 1137 my ($self, $text) = @_;
788 1138
789 $self->{text} = $text;
790 $self->{layout}->set_markup ($text); 1139 $self->{layout}->set_text ($text);
791 1140
792 delete $self->{texture}; 1141 delete $self->{texture};
1142 $self->check_size;
793 $self->update; 1143 $self->update;
794} 1144}
795 1145
796sub get_text { 1146sub set_markup {
797 my ($self, $text) = @_; 1147 my ($self, $markup) = @_;
798 1148
799 $self->{text} 1149 $self->{layout}->set_markup ($markup);
1150
1151 delete $self->{texture};
1152 $self->check_size;
1153 $self->update;
800} 1154}
801 1155
802sub size_request { 1156sub size_request {
803 my ($self) = @_; 1157 my ($self) = @_;
804 1158
805 $self->{layout}->set_width; 1159 $self->{layout}->set_width;
806 $self->{layout}->set_height ($self->{height}); 1160 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1161
807 $self->{layout}->size 1162 my ($w, $h) = $self->{layout}->size;
808# if ($self->{texture}{w} > 1 && $self->{texture}{height} > 1) { #TODO: hack 1163
809# ( 1164 if (exists $self->{template}) {
810# $self->{texture}{w}, 1165 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
811# $self->{texture}{h}, 1166
812# ) 1167 my ($w2, $h2) = $self->{template}->size;
813# } else { 1168
814# my ($w, $h, $data) = CFClient::font_render "Yy", $self->{h}; 1169 $w = List::Util::max $w, $w2;
815# 1170 $h = List::Util::max $h, $h2;
816# ($w, $h)
817# } 1171 }
1172
1173 (
1174 $w + $self->{padding} * 2,
1175 $h + $self->{padding} * 2,
1176 )
818} 1177}
819 1178
820sub size_allocate { 1179sub size_allocate {
821 my ($self, $w, $h) = @_; 1180 my ($self, $w, $h) = @_;
822 1181
823 return unless $self->{w} != $w || $self->{h} != $h;
824
825 $self->SUPER::size_allocate ($w, $h);
826 delete $self->{texture}; 1182 delete $self->{texture};
827} 1183}
828 1184
829sub update { 1185sub set_fontsize {
830 my ($self) = @_; 1186 my ($self, $fontsize) = @_;
831 1187
1188 $self->{fontsize} = $fontsize;
832 delete $self->{texture}; 1189 delete $self->{texture};
1190 $self->check_size;
833 $self->SUPER::update; 1191 $self->update;
834} 1192}
835 1193
836sub _draw { 1194sub _draw {
837 my ($self) = @_; 1195 my ($self) = @_;
838 1196
839 my $tex = $self->{texture} ||= do { 1197 my $tex = $self->{texture} ||= do {
840 $self->{layout}->set_width ($self->{w}); 1198 $self->{layout}->set_width ($self->{w});
1199 $self->{layout}->set_height (List::Util::min $self->{h}, $self->{fontsize} * $::FONTSIZE);
841 new_from_layout CFClient::Texture $self->{layout}; 1200 new_from_layout CFClient::Texture $self->{layout}
842 }; 1201 };
843 1202
844 glEnable GL_BLEND; 1203 glEnable GL_BLEND;
1204 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
845 glEnable GL_TEXTURE_2D; 1205 glEnable GL_TEXTURE_2D;
846 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
847 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 1206 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
848 1207
849 glColor @{$self->{fg}}; 1208 glColor @{$self->{fg}};
850 1209
851 my $x = 1210 $self->{ox} = int (
852 $self->{align} < 0 ? 0 1211 $self->{align} < 0 ? $self->{padding}
853 : $self->{align} > 0 ? $self->{w} - $self->{texture}{w} 1212 : $self->{align} > 0 ? $self->{w} - $tex->{w} - $self->{padding}
854 : ($self->{w} + $self->{texture}{w}) * 0.5; 1213 : ($self->{w} - $tex->{w}) * 0.5
1214 );
855 1215
856 $tex->draw_quad ($x, 0); 1216 $self->{oy} = int (
1217 $self->{valign} < 0 ? $self->{padding}
1218 : $self->{valign} > 0 ? $self->{h} - $tex->{h} - $self->{padding}
1219 : ($self->{h} - $tex->{h}) * 0.5
1220 );
857 1221
1222 $tex->draw_quad ($self->{ox}, $self->{oy});
1223
1224 glDisable GL_TEXTURE_2D;
858 glDisable GL_BLEND; 1225 glDisable GL_BLEND;
859 glDisable GL_TEXTURE_2D;
860} 1226}
861 1227
862############################################################################# 1228#############################################################################
863 1229
864package CFClient::UI::Entry; 1230package CFClient::UI::EntryBase;
865 1231
866our @ISA = CFClient::UI::Label::; 1232our @ISA = CFClient::UI::Label::;
867 1233
868use SDL; 1234use CFClient::OpenGL;
869use SDL::OpenGL;
870 1235
871sub new { 1236sub new {
872 my $class = shift; 1237 my $class = shift;
873 1238
874 $class->SUPER::new ( 1239 $class->SUPER::new (
875 fg => [1, 1, 1], 1240 fg => [1, 1, 1],
876 bg => [0, 0, 0, 0.4], 1241 bg => [0, 0, 0, 0.2],
877 active_bg => [1, 1, 1], 1242 active_bg => [1, 1, 1, 0.5],
878 active_fg => [0, 0, 0], 1243 active_fg => [0, 0, 0],
1244 can_hover => 1,
1245 can_focus => 1,
1246 valign => 0,
1247 can_events => 1,
879 @_ 1248 @_
880 ) 1249 )
881} 1250}
882 1251
883sub _set_text { 1252sub _set_text {
884 my ($self, $text) = @_; 1253 my ($self, $text) = @_;
885 1254
1255 delete $self->{cur_h};
1256
1257 return if $self->{text} eq $text;
1258
1259 delete $self->{texture};
1260
886 $self->{last_activity} = $::NOW; 1261 $self->{last_activity} = $::NOW;
887
888 $self->{text} = $text; 1262 $self->{text} = $text;
889 $self->{layout}->set_width ($self->{w});
890 1263
891 $text =~ s/./*/g if $self->{hidden}; 1264 $text =~ s/./*/g if $self->{hidden};
1265 $self->{layout}->set_text ("$text ");
892 1266
1267 $self->emit (changed => $self->{text});
1268}
893 1269
894 $self->{layout}->set_markup ($self->escape_text ($text)); 1270sub get_text {
895 1271 $_[0]{text}
896 $text = substr $text, 0, $self->{cursor};
897 utf8::encode $text;
898
899 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text);
900} 1272}
901 1273
902sub size_request { 1274sub size_request {
903 my ($self) = @_; 1275 my ($self) = @_;
904 1276
908} 1280}
909 1281
910sub size_allocate { 1282sub size_allocate {
911 my ($self, $w, $h) = @_; 1283 my ($self, $w, $h) = @_;
912 1284
913 return unless $self->{w} != $w || $self->{h} != $h; 1285 $self->_set_text (delete $self->{text});#d# don't check for == inside _set_text
914
915 $self->SUPER::size_allocate ($w, $h);
916
917 $self->_set_text ($self->{text});
918} 1286}
919 1287
920sub set_text { 1288sub set_text {
921 my ($self, $text) = @_; 1289 my ($self, $text) = @_;
922 1290
926} 1294}
927 1295
928sub key_down { 1296sub key_down {
929 my ($self, $ev) = @_; 1297 my ($self, $ev) = @_;
930 1298
931 my $mod = $ev->key_mod; 1299 my $mod = $ev->{mod};
932 my $sym = $ev->key_sym; 1300 my $sym = $ev->{sym};
933
934 my $uni = $ev->key_unicode; 1301 my $uni = $ev->{unicode};
935 1302
936 my $text = $self->get_text; 1303 my $text = $self->get_text;
937 1304
938 if ($sym == SDLK_BACKSPACE) { 1305 if ($sym == 8) {
939 substr $text, --$self->{cursor}, 1, "" if $self->{cursor}; 1306 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
940 } elsif ($sym == SDLK_DELETE) { 1307 } elsif ($sym == 127) {
941 substr $text, $self->{cursor}, 1, ""; 1308 substr $text, $self->{cursor}, 1, "";
942 } elsif ($sym == SDLK_LEFT) { 1309 } elsif ($sym == CFClient::SDLK_LEFT) {
943 --$self->{cursor} if $self->{cursor}; 1310 --$self->{cursor} if $self->{cursor};
944 } elsif ($sym == SDLK_RIGHT) { 1311 } elsif ($sym == CFClient::SDLK_RIGHT) {
945 ++$self->{cursor} if $self->{cursor} < length $self->{text}; 1312 ++$self->{cursor} if $self->{cursor} < length $self->{text};
1313 } elsif ($sym == CFClient::SDLK_HOME) {
1314 $self->{cursor} = 0;
1315 } elsif ($sym == CFClient::SDLK_END) {
1316 $self->{cursor} = length $text;
1317 } elsif ($sym == 27) {
1318 $self->emit ('escape');
946 } elsif ($uni) { 1319 } elsif ($uni) {
947 substr $text, $self->{cursor}++, 0, chr $uni; 1320 substr $text, $self->{cursor}++, 0, chr $uni;
948 } 1321 }
949 1322
950 $self->_set_text ($text); 1323 $self->_set_text ($text);
965 $self->SUPER::button_down ($ev, $x, $y); 1338 $self->SUPER::button_down ($ev, $x, $y);
966 1339
967 my $idx = $self->{layout}->xy_to_index ($x, $y); 1340 my $idx = $self->{layout}->xy_to_index ($x, $y);
968 1341
969 # byte-index to char-index 1342 # byte-index to char-index
970 my $text = $self->{layout}; 1343 my $text = $self->{text};
971 utf8::encode $text; 1344 utf8::encode $text;
972 $self->{cursor} = length substr $text, 0, $idx; 1345 $self->{cursor} = length substr $text, 0, $idx;
973 1346
974 $self->_set_text ($self->{text}); 1347 $self->_set_text ($self->{text});
975 $self->update; 1348 $self->update;
990 $self->{fg} = $self->{active_fg}; 1363 $self->{fg} = $self->{active_fg};
991 } else { 1364 } else {
992 glColor @{$self->{bg}}; 1365 glColor @{$self->{bg}};
993 } 1366 }
994 1367
1368 glEnable GL_BLEND;
1369 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
995 glBegin GL_QUADS; 1370 glBegin GL_QUADS;
996 glVertex 0 , 0; 1371 glVertex 0 , 0;
997 glVertex 0 , $self->{h}; 1372 glVertex 0 , $self->{h};
998 glVertex $self->{w}, $self->{h}; 1373 glVertex $self->{w}, $self->{h};
999 glVertex $self->{w}, 0; 1374 glVertex $self->{w}, 0;
1000 glEnd; 1375 glEnd;
1376 glDisable GL_BLEND;
1001 1377
1002 $self->SUPER::_draw; 1378 $self->SUPER::_draw;
1003 1379
1004 #TODO: force update every cursor change :( 1380 #TODO: force update every cursor change :(
1005 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) { 1381 if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
1382
1383 unless (exists $self->{cur_h}) {
1384 my $text = substr $self->{text}, 0, $self->{cursor};
1385 utf8::encode $text;
1386
1387 @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text)
1388 }
1389
1006 glColor @{$self->{fg}}; 1390 glColor @{$self->{fg}};
1007 glBegin GL_LINES; 1391 glBegin GL_LINES;
1008 glVertex $self->{cur_x}, $self->{cur_y};
1009 glVertex $self->{cur_x}, $self->{cur_y} + $self->{cur_h}; 1392 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy};
1393 glVertex $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy} + $self->{cur_h};
1010 glEnd; 1394 glEnd;
1011 } 1395 }
1012} 1396}
1013 1397
1014#############################################################################
1015
1016package CFClient::UI::Slider; 1398package CFClient::UI::Entry;
1017 1399
1018use strict;
1019
1020use SDL::OpenGL;
1021use SDL::OpenGL::Constants;
1022
1023our @ISA = CFClient::UI::DrawBG::; 1400our @ISA = CFClient::UI::EntryBase::;
1024 1401
1025sub size_request { 1402use CFClient::OpenGL;
1403
1404sub key_down {
1026 my ($self) = @_; 1405 my ($self, $ev) = @_;
1027 1406
1028 my $w = 50; 1407 my $sym = $ev->{sym};
1029 my $h = 10;
1030 1408
1031 $self->{vertical} ? ($h, $w) : ($w, $h) 1409 if ($sym == 13) {
1410 $self->emit (activate => $self->get_text);
1411 $self->update;
1412
1413 } else {
1414 $self->SUPER::key_down ($ev);
1415 }
1416
1032} 1417}
1418
1419#############################################################################
1420
1421package CFClient::UI::Button;
1422
1423our @ISA = CFClient::UI::Label::;
1424
1425use CFClient::OpenGL;
1426
1427my @tex =
1428 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1429 qw(b1_button_active.png);
1033 1430
1034sub new { 1431sub new {
1035 my $class = shift; 1432 my $class = shift;
1036 1433
1434 $class->SUPER::new (
1435 padding => 4,
1436 fg => [1, 1, 1],
1437 bg => [1, 1, 1, 0.2],
1438 active_fg => [0, 0, 1],
1439 can_hover => 1,
1440 align => 0,
1441 valign => 0,
1442 can_events => 1,
1443 @_
1444 )
1445}
1446
1447sub button_up {
1448 my ($self, $ev, $x, $y) = @_;
1449
1450 if ($x >= 0 && $x < $self->{w}
1451 && $y >= 0 && $y < $self->{h}) {
1452 $self->emit ("activate");
1453 }
1454}
1455
1456sub _draw {
1457 my ($self) = @_;
1458
1459 local $self->{fg} = $self->{fg};
1460
1461 if ($GRAB == $self) {
1462 $self->{fg} = $self->{active_fg};
1463 }
1464
1465 glEnable GL_BLEND;
1466 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1467 glEnable GL_TEXTURE_2D;
1468 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1469 glColor 0, 0, 0, 1;
1470
1471 $tex[0]->draw_quad (0, 0, $self->{w}, $self->{h});
1472
1473 glDisable GL_TEXTURE_2D;
1474 glDisable GL_BLEND;
1475
1476 $self->SUPER::_draw;
1477}
1478
1479#############################################################################
1480
1481package CFClient::UI::CheckBox;
1482
1483our @ISA = CFClient::UI::DrawBG::;
1484
1485my @tex =
1486 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1487 qw(c1_checkbox_bg.png c1_checkbox_active.png);
1488
1489use CFClient::OpenGL;
1490
1491sub new {
1492 my $class = shift;
1493
1494 $class->SUPER::new (
1495 padding => 2,
1496 fg => [1, 1, 1],
1497 active_fg => [1, 1, 0],
1498 state => 0,
1499 can_hover => 1,
1500 @_
1501 )
1502}
1503
1504sub size_request {
1505 my ($self) = @_;
1506
1507 ($self->{padding} * 2 + 6) x 2
1508}
1509
1510sub button_down {
1511 my ($self, $ev, $x, $y) = @_;
1512
1513 if ($x >= $self->{padding} && $x < $self->{w} - $self->{padding}
1514 && $y >= $self->{padding} && $y < $self->{h} - $self->{padding}) {
1515 $self->{state} = !$self->{state};
1516 $self->emit (changed => $self->{state});
1517 }
1518}
1519
1520sub _draw {
1521 my ($self) = @_;
1522
1523 $self->SUPER::_draw;
1524
1525 glTranslate $self->{padding} + 0.375, $self->{padding} + 0.375, 0;
1526
1527 my $s = (List::Util::min @$self{qw(w h)}) - $self->{padding} * 2;
1528
1529 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
1530
1531 glEnable GL_BLEND;
1532 glEnable GL_TEXTURE_2D;
1533 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1534
1535 my $tex = $self->{state} ? $tex[1] : $tex[0];
1536
1537 $tex->draw_quad (0, 0, $s, $s);
1538
1539 glDisable GL_TEXTURE_2D;
1540 glDisable GL_BLEND;
1541}
1542
1543#############################################################################
1544
1545package CFClient::UI::Image;
1546
1547our @ISA = CFClient::UI::Base::;
1548
1549use CFClient::OpenGL;
1550use Carp qw/confess/;
1551
1552our %loaded_images;
1553
1554sub new {
1555 my $class = shift;
1556
1557 my $self = $class->SUPER::new (can_events => 0, @_);
1558
1559 $self->{image} or confess "Image has 'image' not set. This is a fatal error!";
1560
1561 $loaded_images{$self->{image}} ||=
1562 new_from_file CFClient::Texture CFClient::find_rcfile $self->{image}, mipmap => 1;
1563
1564 my $tex = $self->{tex} = $loaded_images{$self->{image}};
1565
1566 Scalar::Util::weaken $loaded_images{$self->{image}};
1567
1568 $self->{aspect} = $tex->{w} / $tex->{h};
1569
1570 $self
1571}
1572
1573sub size_request {
1574 my ($self) = @_;
1575
1576 ($self->{tex}->{w}, $self->{tex}->{h})
1577}
1578
1579sub _draw {
1580 my ($self) = @_;
1581
1582 my $tex = $self->{tex};
1583
1584 my ($w, $h) = ($self->{w}, $self->{h});
1585
1586 if ($self->{rot90}) {
1587 glRotate 90, 0, 0, 1;
1588 glTranslate 0, -$self->{w}, 0;
1589
1590 ($w, $h) = ($h, $w);
1591 }
1592
1593 glEnable GL_BLEND;
1594 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1595 glEnable GL_TEXTURE_2D;
1596 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1597
1598 $tex->draw_quad (0, 0, $w, $h);
1599
1600 glDisable GL_BLEND;
1601 glDisable GL_TEXTURE_2D;
1602}
1603
1604#############################################################################
1605
1606package CFClient::UI::VGauge;
1607
1608our @ISA = CFClient::UI::Base::;
1609
1610use CFClient::OpenGL;
1611
1612my %tex = (
1613 food => [
1614 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1615 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
1616 ],
1617 grace => [
1618 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1619 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png/
1620 ],
1621 hp => [
1622 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1623 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
1624 ],
1625 mana => [
1626 map { new_from_file CFClient::Texture CFClient::find_rcfile $_, mipmap => 1 }
1627 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png/
1628 ],
1629);
1630
1631# eg. VGauge->new (gauge => 'food'), default gauge: food
1632sub new {
1633 my $class = shift;
1634
1635 my $self = $class->SUPER::new (
1636 type => 'food',
1637 @_
1638 );
1639
1640 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
1641
1642 $self
1643}
1644
1645sub size_request {
1646 my ($self) = @_;
1647
1648 #my $tex = $tex{$self->{type}}[0];
1649 #@$tex{qw(w h)}
1650 (0, 0)
1651}
1652
1653sub set_max {
1654 my ($self, $max) = @_;
1655
1656 $self->{max_val} = $max;
1657}
1658
1659sub set_value {
1660 my ($self, $val, $max) = @_;
1661
1662 $self->set_max ($max)
1663 if defined $max;
1664
1665 $max = $self->{max_val};
1666 $self->{val} = $val;
1667
1668 $self->update;
1669}
1670
1671sub _draw {
1672 my ($self) = @_;
1673
1674 my $tex = $tex{$self->{type}};
1675
1676 my ($w, $h) = ($self->{w}, $self->{h});
1677
1678 if ($self->{vertical}) {
1679 glRotate 90, 0, 0, 1;
1680 glTranslate 0, -$self->{w}, 0;
1681
1682 ($w, $h) = ($h, $w);
1683 }
1684
1685 my $ycut = $self->{val} / ($self->{max_val} || 1);
1686 $ycut = 1 if $self->{val} > $self->{max_val};
1687
1688 my $t1 = $tex->[0];
1689 my $t2 = $tex->[1];
1690
1691 glEnable GL_BLEND;
1692 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1693 glEnable GL_TEXTURE_2D;
1694 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1695
1696 my $h1 = $self->{h} - $ycut * $self->{h};
1697 my $h2 = $ycut * $self->{h};
1698
1699 glBindTexture GL_TEXTURE_2D, $t1->{name};
1700 glBegin GL_QUADS;
1701 glTexCoord 0 , 0; glVertex 0 , 0;
1702 glTexCoord 0 , $t1->{t} * (1 - $ycut); glVertex 0 , $h1;
1703 glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut); glVertex $w, $h1;
1704 glTexCoord $t1->{s}, 0; glVertex $w, 0;
1705 glEnd;
1706
1707 glBindTexture GL_TEXTURE_2D, $t2->{name};
1708 glBegin GL_QUADS;
1709 glTexCoord 0 , $t2->{t} * (1 - $ycut); glVertex 0 , $h1;
1710 glTexCoord 0 , $t2->{t}; glVertex 0 , $h1 + $h2;
1711 glTexCoord $t2->{s}, $t2->{t}; glVertex $w, $h1 + $h2;
1712 glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut); glVertex $w, $h1;
1713 glEnd;
1714
1715 glDisable GL_BLEND;
1716 glDisable GL_TEXTURE_2D;
1717}
1718
1719#############################################################################
1720
1721package CFClient::UI::Gauge;
1722
1723our @ISA = CFClient::UI::VBox::;
1724
1725sub new {
1726 my ($class, %arg) = @_;
1727
1728 my $self = $class->SUPER::new (
1729 tooltip => $arg{type},
1730 %arg,
1731 );
1732
1733 $self->add ($self->{value} = new CFClient::UI::Label valign => +1, align => 0, template => "999");
1734 $self->add ($self->{gauge} = new CFClient::UI::VGauge type => $self->{type}, expand => 1);
1735 $self->add ($self->{max} = new CFClient::UI::Label valign => -1, align => 0, template => "999");
1736
1737 $self
1738}
1739
1740sub set_fontsize {
1741 my ($self, $fsize) = @_;
1742
1743 $self->{value}->set_fontsize ($fsize);
1744 $self->{max} ->set_fontsize ($fsize);
1745}
1746
1747sub set_value {
1748 my ($self, $val, $max) = @_;
1749
1750 $self->set_max ($max)
1751 if defined $max;
1752
1753 $self->{gauge}->set_value ($val, $max);
1754 $self->{value}->set_text ($val);
1755}
1756
1757sub set_max {
1758 my ($self, $max) = @_;
1759
1760 $self->{gauge}->set_max ($max);
1761 $self->{max}->set_text ($max);
1762}
1763
1764#############################################################################
1765
1766package CFClient::UI::Slider;
1767
1768use strict;
1769
1770use CFClient::OpenGL;
1771
1772our @ISA = CFClient::UI::DrawBG::;
1773
1774my @tex =
1775 map { new_from_file CFClient::Texture CFClient::find_rcfile $_ }
1776 qw(s1_slider.png s1_slider_bg.png);
1777
1778sub new {
1779 my $class = shift;
1780
1037 # range [value, low, high, page] 1781 # range [value, low, high, page]
1038 1782
1783 # TODO: 0-width page
1784 # TODO: req_w/h are wrong with vertical
1785 # TODO: calculations are off
1039 $class->SUPER::new ( 1786 my $self = $class->SUPER::new (
1040 fg => [1, 1, 1], 1787 fg => [1, 1, 1],
1041 active_fg => [0, 0, 0], 1788 active_fg => [0, 0, 0],
1042 range => [0, 0, 100, 10], 1789 range => [0, 0, 100, 10],
1790 req_w => 20,
1791 req_h => 20,
1043 vertical => 1, 1792 vertical => 0,
1793 can_hover => 1,
1794 inner_pad => 5,
1044 @_ 1795 @_
1045 ) 1796 );
1797
1798 $self
1799}
1800
1801sub size_request {
1802 my ($self) = @_;
1803
1804 my $w = $self->{req_w};
1805 my $h = $self->{req_h};
1806
1807 $self->{vertical} ? ($h, $w) : ($w, $h)
1046} 1808}
1047 1809
1048sub button_down { 1810sub button_down {
1049 my ($self, $ev, $x, $y) = @_; 1811 my ($self, $ev, $x, $y) = @_;
1050 1812
1058 if ($GRAB == $self) { 1820 if ($GRAB == $self) {
1059 my ($value, $lo, $hi, $page) = @{$self->{range}}; 1821 my ($value, $lo, $hi, $page) = @{$self->{range}};
1060 1822
1061 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w}); 1823 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
1062 1824
1825 my $inner_pad_px = $self->_calc_inner_pad_px ($w);
1826 my $inner_w = $w - $inner_pad_px * 2; # * 2 for left & right
1827
1828 $x -= $inner_pad_px; # substract the padding
1063 $x = $x * ($hi - $lo) / $w + $lo; 1829 $x = $x * ($hi - $lo) / $inner_w + $lo;
1064 $x = $lo if $x < $lo; 1830 $x = $lo if $x < $lo;
1065 $x = $hi - $page if $x > $hi - $page; 1831 $x = $hi - $page if $x > $hi - $page;
1066 $self->{range}[0] = $x; 1832 $self->{range}[0] = $x;
1067 1833
1068 $self->emit (changed => $x); 1834 $self->emit (changed => $x);
1069 $self->update; 1835 $self->update;
1070 } 1836 }
1837}
1838
1839# the inner_* stuff is for generating a padding for the slider handle,
1840# so that the handle doesn't leave the texture. This calculation isn't 100%
1841# correct propably, but it does the job for now
1842sub _calc_inner_pad_px {
1843 my ($self, $w) = @_;
1844 ($w / 100) * $self->{inner_pad} # % to pixels
1071} 1845}
1072 1846
1073sub _draw { 1847sub _draw {
1074 my ($self) = @_; 1848 my ($self) = @_;
1075 1849
1089 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg}; 1863 my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
1090 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg}; 1864 my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
1091 1865
1092 my ($value, $lo, $hi, $page) = @{$self->{range}}; 1866 my ($value, $lo, $hi, $page) = @{$self->{range}};
1093 1867
1868 $hi = $value + 1 if $lo == $hi;
1869
1870 my $inner_pad_px = $self->_calc_inner_pad_px ($w);
1871 my $inner_w = $w - $inner_pad_px * 2; # * 2 for left & right
1872
1094 $page = int $page * $w / ($hi - $lo); 1873 $page = int $page * $inner_w / ($hi - $lo);
1095 $value = int +($value - $lo) * $w / ($hi - $lo); 1874 $value = int +($value - $lo) * $inner_w / ($hi - $lo);
1096 1875
1097 $w -= $page; 1876 $w -= $page;
1098 $page &= ~1; 1877 $page &= ~1;
1099 glTranslate $page * 0.5, 0, 0; 1878 glTranslate $page * 0.5, 0, 0;
1879 $page ||= 2;
1100 1880
1101 glColor @$fg;
1102 glBegin GL_LINES;
1103 glVertex 0, 0; glVertex 0, $h;
1104 glVertex $w - 1, 0; glVertex $w - 1, $h;
1105 glVertex 0, $h * 0.5; glVertex $w, $h * 0.5;
1106 glEnd;
1107
1108 my $knob_a = $value - $page * 0.5; 1881 my $knob_a = $inner_pad_px + ($value - $page * 0.5);
1109 my $knob_b = $value + $page * 0.5; 1882 my $knob_b = $inner_pad_px + ($value + $page * 0.5);
1110 1883
1111 glBegin GL_QUADS; 1884 glEnable GL_BLEND;
1112 glColor @$fg; 1885 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1113 glVertex $knob_a, 0; 1886 glEnable GL_TEXTURE_2D;
1114 glVertex $knob_a, $h; 1887 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1115 glVertex $knob_b, $h;
1116 glVertex $knob_b, 0;
1117 1888
1118 if ($knob_a < $knob_b - 2) { 1889 # draw background
1119 glColor @$bg; 1890 $tex[1]->draw_quad (0, 0, $w, $h);
1120 glVertex $knob_a + 1, 1;
1121 glVertex $knob_a + 1, $h - 1;
1122 glVertex $knob_b - 1, $h - 1;
1123 glVertex $knob_b - 1, 1;
1124 }
1125 glEnd;
1126}
1127 1891
1128############################################################################# 1892 # draw handle
1893 $tex[0]->draw_quad ($knob_a, 0, $knob_b - $knob_a, $h);
1129 1894
1895 glDisable GL_BLEND;
1896 glDisable GL_TEXTURE_2D;
1897}
1898
1899#############################################################################
1900
1130package CFClient::UI::MapWidget; 1901package CFClient::UI::TextView;
1131 1902
1132use strict;
1133
1134use List::Util qw(min max);
1135
1136use SDL;
1137use SDL::OpenGL;
1138use SDL::OpenGL::Constants;
1139
1140our @ISA = CFClient::UI::Base::; 1903our @ISA = CFClient::UI::HBox::;
1904
1905use CFClient::OpenGL;
1141 1906
1142sub new { 1907sub new {
1143 my $class = shift; 1908 my $class = shift;
1144 1909
1145 $class->SUPER::new ( 1910 my $self = $class->SUPER::new (
1146 z => -1, 1911 fontsize => 1,
1147 list => (glGenLists 1),
1148 @_ 1912 @_,
1913
1914 layout => (new CFClient::Layout),
1915 par => [],
1916 height => 0,
1917 children => [
1918 (new CFClient::UI::Empty expand => 1),
1919 (new CFClient::UI::Slider vertical => 1),
1920 ],
1149 ) 1921 );
1150}
1151 1922
1152sub key_down { 1923 $self->{children}[1]->connect (changed => sub {
1153 print "MAPKEYDOWN\n"; 1924 $self->update;
1154} 1925 });
1155 1926
1156sub key_up { 1927 $self
1157} 1928}
1158 1929
1159sub size_request { 1930sub set_fontsize {
1931 my ($self, $fontsize) = @_;
1932
1933 $self->{fontsize} = $fontsize;
1934 $self->reflow;
1935}
1936
1937sub text_height {
1938 my ($self, $text) = @_;
1939
1940 my $layout = $self->{layout};
1941
1942 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
1943 $layout->set_width ($self->{w});
1944 $layout->set_text ($text);
1160 ( 1945
1161 1 + int $::WIDTH / 32, 1946 ($layout->size)[1]
1162 1 + int $::HEIGHT / 32, 1947}
1163 ) 1948
1949sub reflow {
1950 my ($self) = @_;
1951
1952 $self->{need_reflow}++;
1953 $self->update;
1954}
1955
1956sub size_allocate {
1957 my ($self, $w, $h) = @_;
1958
1959 $self->SUPER::size_allocate ($w, $h);
1960
1961 $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
1962 $self->{layout}->set_width ($self->{children}[0]{w});
1963
1964 $self->reflow;
1965}
1966
1967sub add_paragraph {
1968 my ($self, $color, $text) = @_;
1969
1970 #TODO: intelligently "reformat" paragraph
1971
1972 my $height = $self->text_height ($text);
1973
1974 $self->{height} += $height;
1975
1976 push @{$self->{par}}, [$height, $color, $text];
1977
1978 $self->{children}[1]{range} = [$self->{height} - $self->{h}, 0, $self->{height}, $self->{h}];
1979 $self->{children}[1]->update;
1164} 1980}
1165 1981
1166sub update { 1982sub update {
1167 my ($self) = @_; 1983 my ($self) = @_;
1168 1984
1169 $self->{need_update} = 1; 1985 $self->SUPER::update;
1986
1987 return unless $self->{h} > 0;
1988
1989 delete $self->{texture};
1990
1991 $ROOT->on_refresh ($self, sub {
1992 if (delete $self->{need_reflow}) {
1993 my $height = 0;
1994
1995 $height += $_->[0] = $self->text_height ($_->[2])
1996 for @{$self->{par}};
1997
1998 $self->{height} = $height;
1999
2000 $self->{children}[1]{range} = [$height - $self->{h}, 0, $height, $self->{h}];
2001
2002 delete $self->{texture};
2003 }
2004
2005 $self->{texture} ||= new_from_opengl CFClient::Texture $self->{w}, $self->{h}, sub {
2006 glClearColor 0, 0, 0, 1;
2007 glClear GL_COLOR_BUFFER_BIT;
2008
2009 glEnable GL_BLEND;
2010 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
2011 glEnable GL_TEXTURE_2D;
2012 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2013
2014 my $top = int $self->{children}[1]{range}[0];
2015
2016 my $y0 = $top;
2017 my $y1 = $top + $self->{h};
2018
2019 my $y = 0;
2020
2021 my $layout = $self->{layout};
2022
2023 for my $par (@{$self->{par}}) {
2024 my $h = $par->[0];
2025
2026 if ($y0 < $y + $h && $y < $y1) {
2027 $layout->set_text ($par->[2]);
2028
2029 glColor @{ $par->[1] };
2030 my ($W, $H) = $layout->size;
2031 CFClient::Texture->new_from_layout ($layout)->draw_quad (0, $y - $y0);
2032 }
2033
2034 $y += $h;
2035 }
2036
2037 glDisable GL_TEXTURE_2D;
2038 glDisable GL_BLEND;
2039 };
2040 });
1170} 2041}
1171 2042
1172sub _draw { 2043sub _draw {
1173 my ($self) = @_; 2044 my ($self) = @_;
1174 2045
1175 if (delete $self->{need_update}) { 2046 if ($self->{texture}) {
1176 glNewList $self->{list}, GL_COMPILE;
1177
1178 my $mx = $::CONN->{mapx};
1179 my $my = $::CONN->{mapy};
1180
1181 my $map = $::CONN->{map};
1182
1183 my ($xofs, $yofs);
1184
1185 my $sw = 1 + int $::WIDTH / 32;
1186 my $sh = 1 + int $::HEIGHT / 32;
1187
1188 if ($::CONN->{mapw} > $sw) {
1189 $xofs = $mx + ($::CONN->{mapw} - $sw) * 0.5;
1190 } else {
1191 $xofs = $self->{xofs} = min $mx, max $mx + $::CONN->{mapw} - $sw + 1, $self->{xofs};
1192 }
1193
1194 if ($::CONN->{maph} > $sh) {
1195 $yofs = $my + ($::CONN->{maph} - $sh) * 0.5;
1196 } else {
1197 $yofs = $self->{yofs} = min $my, max $my + $::CONN->{maph} - $sh + 1, $self->{yofs};
1198 }
1199
1200 glEnable GL_TEXTURE_2D; 2047 glEnable GL_TEXTURE_2D;
1201 glEnable GL_BLEND;
1202 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE; 2048 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
1203 2049 $self->{texture}->draw_quad (0, 0, $self->{w}, $self->{h});
1204 my $sw4 = ($sw + 3) & ~3;
1205 my $darkness = "\x00" x ($sw4 * $sh);
1206
1207 for my $x (0 .. $sw - 1) {
1208 my $row = $map->[$x + $xofs];
1209 for my $y (0 .. $sh - 1) {
1210
1211 my $cell = $row->[$y + $yofs]
1212 or next;
1213
1214 my $dark = $cell->[0];
1215 if ($dark < 0) {
1216 substr $darkness, $y * $sw4 + $x, 1, chr 224;
1217 } else {
1218 substr $darkness, $y * $sw4 + $x, 1, chr 255 - $dark;
1219 }
1220
1221 for my $num (grep $_, @$cell[1,2,3]) {
1222 my $tex = $::CONN->{face}[$num]{texture} || next;
1223
1224 my ($w, $h) = @$tex{qw(w h)};
1225
1226 $tex->draw_quad (($x + 1) * 32 - $w, ($y + 1) * 32 - $h, $w, $h);
1227 }
1228 }
1229 }
1230
1231# if (1) { # higher quality darkness
1232# $lighting =~ s/(.)/$1$1$1/gs;
1233# my $pb = new_from_data Gtk2::Gdk::Pixbuf $lighting, "rgb", 0, 8, $sw4, $sh, $sw4 * 3;
1234#
1235# $pb = $pb->scale_simple ($sw4 * 0.5, $sh * 0.5, "bilinear");
1236#
1237# $lighting = $pb->get_pixels;
1238# $lighting =~ s/(.)../$1/gs;
1239# }
1240
1241 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
1242 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1243
1244 $darkness = new CFClient::Texture
1245 width => $sw4,
1246 height => $sh,
1247 data => $darkness,
1248 internalformat => GL_ALPHA,
1249 format => GL_ALPHA;
1250
1251 glColor 0.45, 0.45, 0.45, 1;
1252 $darkness->draw_quad (0, 0, $sw4 * 32, $sh * 32);
1253
1254 glDisable GL_TEXTURE_2D; 2050 glDisable GL_TEXTURE_2D;
1255 glDisable GL_BLEND;
1256
1257 glEndList;
1258 } 2051 }
1259 2052
1260 glCallList $self->{list}; 2053 $self->{children}[1]->draw;
1261}
1262 2054
1263my %DIR = (
1264 SDLK_KP8, [1, "north"],
1265 SDLK_KP9, [2, "northeast"],
1266 SDLK_KP6, [3, "east"],
1267 SDLK_KP3, [4, "southeast"],
1268 SDLK_KP2, [5, "south"],
1269 SDLK_KP1, [6, "southwest"],
1270 SDLK_KP4, [7, "west"],
1271 SDLK_KP7, [8, "northwest"],
1272
1273 SDLK_UP, [1, "north"],
1274 SDLK_RIGHT, [3, "east"],
1275 SDLK_DOWN, [5, "south"],
1276 SDLK_LEFT, [7, "west"],
1277);
1278
1279sub key_down {
1280 my ($self, $ev) = @_;
1281
1282 my $mod = $ev->key_mod;
1283 my $sym = $ev->key_sym;
1284
1285 if ($sym == SDLK_KP5) {
1286 $::CONN->send ("command stay fire");
1287 } elsif (exists $DIR{$sym}) {
1288 if ($mod & KMOD_SHIFT) {
1289 $self->{shft}++;
1290 $::CONN->send ("command fire $DIR{$sym}[0]");
1291 } elsif ($mod & KMOD_CTRL) {
1292 $self->{ctrl}++;
1293 $::CONN->send ("command run $DIR{$sym}[0]");
1294 } else {
1295 $::CONN->send ("command $DIR{$sym}[1]");
1296 }
1297 }
1298}
1299
1300sub key_up {
1301 my ($self, $ev) = @_;
1302
1303 my $mod = $ev->key_mod;
1304 my $sym = $ev->key_sym;
1305
1306 if (!($mod & KMOD_SHIFT) && delete $self->{shft}) {
1307 $::CONN->send ("command fire_stop");
1308 }
1309 if (!($mod & KMOD_CTRL ) && delete $self->{ctrl}) {
1310 $::CONN->send ("command run_stop");
1311 }
1312} 2055}
1313 2056
1314############################################################################# 2057#############################################################################
1315 2058
1316package CFClient::UI::Animator; 2059package CFClient::UI::Animator;
1317 2060
1318use SDL::OpenGL; 2061use CFClient::OpenGL;
1319 2062
1320our @ISA = CFClient::UI::Bin::; 2063our @ISA = CFClient::UI::Bin::;
1321 2064
1322sub moveto { 2065sub moveto {
1323 my ($self, $x, $y) = @_; 2066 my ($self, $x, $y) = @_;
1353 glPopMatrix; 2096 glPopMatrix;
1354} 2097}
1355 2098
1356############################################################################# 2099#############################################################################
1357 2100
1358package CFClient::UI::Toplevel; 2101package CFClient::UI::Flopper;
2102
2103our @ISA = CFClient::UI::Button::;
2104
2105sub new {
2106 my $class = shift;
2107
2108 my $self = $class->SUPER::new (
2109 state => 0,
2110 connect_activate => \&toggle_flopper,
2111 can_events => 1,
2112 @_
2113 );
2114
2115 if ($self->{state}) {
2116 $self->{state} = 0;
2117 $self->toggle_flopper;
2118 }
2119
2120 $self
2121}
2122
2123sub toggle_flopper {
2124 my ($self) = @_;
2125
2126 # TODO: use animation
2127 if ($self->{state} = !$self->{state}) {
2128 $CFClient::UI::ROOT->add ($self->{other});
2129 $self->{other}->move ($self->coord2global (0, $self->{h}));
2130 $self->emit ("open");
2131 } else {
2132 $CFClient::UI::ROOT->remove ($self->{other});
2133 $self->emit ("close");
2134 }
2135
2136 $self->emit (changed => $self->{state});
2137}
2138
2139#############################################################################
2140
2141package CFClient::UI::Tooltip;
2142
2143our @ISA = CFClient::UI::Bin::;
2144
2145use CFClient::OpenGL;
2146
2147sub new {
2148 my $class = shift;
2149
2150 $class->SUPER::new (
2151 @_,
2152 can_events => 0,
2153 )
2154}
2155
2156sub set_text {
2157 my ($self, $text) = @_;
2158
2159 $self->{label} ||= new CFClient::UI::Label fontsize => 0.8, fg => [0, 0, 0];
2160 $self->{label}->set_text ($text);
2161 $self->add ($self->{label});
2162}
2163
2164sub size_request {
2165 my ($self) = @_;
2166
2167 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
2168
2169 $w = List::Util::min $::WIDTH * 0.2, $w;
2170 $h = List::Util::max $::HEIGHT * 0.2, $h;
2171
2172 ($w + 4, $h + 4)
2173}
2174
2175sub _draw {
2176 my ($self) = @_;
2177
2178 glPushMatrix;
2179 glTranslate 0.375, 0.375;
2180
2181 my ($w, $h) = @$self{qw(w h)};
2182
2183 glColor 1, 0.8, 0.4;
2184 glBegin GL_QUADS;
2185 glVertex 0 , 0;
2186 glVertex 0 , $h;
2187 glVertex $w, $h;
2188 glVertex $w, 0;
2189 glEnd;
2190
2191 glColor 0, 0, 0;
2192 glBegin GL_LINE_LOOP;
2193 glVertex 0 , 0;
2194 glVertex 0 , $h;
2195 glVertex $w, $h;
2196 glVertex $w, 0;
2197 glEnd;
2198
2199 glPopMatrix;
2200
2201 glTranslate 2, 2;
2202 $self->SUPER::_draw;
2203}
2204
2205#############################################################################
2206
2207package CFClient::UI::Root;
1359 2208
1360our @ISA = CFClient::UI::Container::; 2209our @ISA = CFClient::UI::Container::;
2210
2211use CFClient::OpenGL;
2212
2213sub check_size {
2214 my ($self) = @_;
2215
2216 $self->configure (0, 0, $::WIDTH, $::HEIGHT);
2217}
1361 2218
1362sub size_request { 2219sub size_request {
1363 ($::WIDTH, $::HEIGHT) 2220 ($::WIDTH, $::HEIGHT)
1364} 2221}
1365 2222
1366sub size_allocate { 2223sub configure {
1367 my ($self, $w, $h) = @_; 2224 my ($self, $x, $y, $w, $h) = @_;
1368 2225
1369 $self->SUPER::size_allocate ($w, $h); 2226 $self->SUPER::configure ($x, $y, $w, $h);
1370 2227
1371 $_->size_allocate ($_->size_request)
1372 for @{$self->{children}}; 2228 for my $child (@{$self->{children}}) {
1373} 2229 my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
1374 2230
1375sub translate { 2231 $X = List::Util::max 0, List::Util::min $w - $W, $X;
2232 $Y = List::Util::max 0, List::Util::min $h - $H, $Y;
2233 $child->configure ($X, $Y, $W,$H);
2234 }
2235}
2236
2237sub _topleft {
1376 my ($self, $x, $y) = @_; 2238 my ($self, $x, $y) = @_;
1377 2239
1378 ($x, $y) 2240 ($x, $y)
1379} 2241}
1380 2242
1381sub update { 2243sub update {
1382 my ($self) = @_; 2244 my ($self) = @_;
1383 2245
1384 $self->size_allocate ($self->size_request); 2246 $self->check_size;
1385 ::refresh (); 2247 ::refresh ();
1386} 2248}
1387 2249
1388sub add { 2250sub add {
1389 my ($self, $widget) = @_; 2251 my ($self, $child) = @_;
1390 2252
2253 # integerize window positions
2254 $child->{x} = int $child->{x};
2255 $child->{y} = int $child->{y};
2256
1391 $self->SUPER::add ($widget); 2257 $self->SUPER::add ($child);
2258}
1392 2259
1393 $widget->size_allocate ($widget->size_request); 2260sub on_refresh {
2261 my ($self, $id, $cb) = @_;
2262
2263 $self->{refresh_hook}{$id} = $cb;
1394} 2264}
1395 2265
1396sub draw { 2266sub draw {
1397 my ($self) = @_; 2267 my ($self) = @_;
1398 2268
2269 while (my $rcb = delete $self->{refresh_hook}) {
2270 $_->() for values %$rcb;
2271 }
2272
2273 glViewport 0, 0, $::WIDTH, $::HEIGHT;
2274 glClearColor +($::CFG->{fow_intensity}) x 3, 1;
2275 glClear GL_COLOR_BUFFER_BIT;
2276
2277 glMatrixMode GL_PROJECTION;
2278 glLoadIdentity;
2279 glOrtho 0, $::WIDTH, $::HEIGHT, 0, -10000 , 10000;
2280 glMatrixMode GL_MODELVIEW;
2281 glLoadIdentity;
2282
1399 $self->_draw; 2283 $self->_draw;
1400} 2284}
1401 2285
1402############################################################################# 2286#############################################################################
1403 2287
1404package CFClient::UI; 2288package CFClient::UI;
1405 2289
2290$ROOT = new CFClient::UI::Root;
1406$TOPLEVEL = new CFClient::UI::Toplevel; 2291$TOOLTIP = new CFClient::UI::Tooltip;
1407 2292
14081 22931
1409 2294

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines