ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.134
Committed: Tue Apr 18 05:13:15 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.133: +58 -8 lines
Log Message:
implement basic sound effects

File Contents

# Content
1 #!/opt/bin/perl
2
3 use strict;
4 use utf8;
5
6 use Time::HiRes 'time';
7 use Event;
8
9 use SDL;
10 use SDL::App;
11 use SDL::Event;
12 use SDL::Surface;
13
14 use SDL::Sound;
15 use SDL::Mixer;
16
17 use SDL::OpenGL;
18
19 use Crossfire;
20 use Crossfire::Protocol;
21
22 use Compress::LZF;
23
24 use CFClient;
25 use CFClient::UI;
26
27 our $VERSION = '0.1';
28
29 my $MAX_FPS = 60;
30 my $MIN_FPS = 5; # unused as of yet
31
32 our $META_SERVER = "crossfire.real-time.com:13326";
33
34 our $FACEMAP;
35 our $TILECACHE;
36 our $MAPCACHE;
37
38 our $LAST_REFRESH;
39 our $NOW;
40
41 our $CFG;
42 our $CONN;
43 our $FAST; # fast, low-quality mode, possibly useful for software-rendering
44
45 our @SDL_MODES;
46 our $WIDTH;
47 our $HEIGHT;
48 our $FULLSCREEN;
49 our $FONTSIZE;
50
51 our $MAP;
52 our $MAPWIDGET;
53 our $BUTTONBAR;
54 our $LOGVIEW;
55 our $CONSOLE;
56 our $METASERVER;
57
58 our $GAUGES;
59
60 our $SDL_ACTIVE;
61 our $SDL_EV;
62 our %SDL_CB;
63
64 our $SDL_MIXER;
65 our @SOUNDS; # event => file mapping
66 our %AUDIO_CHUNKS; # audio files
67
68 our $ALT_ENTER_MESSAGE;
69 our $STATUS_LINE;
70 our $DEBUG_STATUS;
71
72 sub status {
73 $STATUS_LINE->set_text ($_[0]);
74 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
75 }
76
77 sub debug {
78 $DEBUG_STATUS->set_text ($_[0]);
79 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
80 }
81
82 sub start_game {
83 status "logging in...";
84
85 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
86
87 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
88
89 $MAP = new CFClient::Map $mapsize, $mapsize;
90
91 my ($host, $port) = split /:/, $CFG->{host};
92
93 $CONN = new conn
94 host => $host,
95 port => $port || 13327,
96 user => $CFG->{user},
97 pass => $CFG->{password},
98 mapw => $mapsize,
99 maph => $mapsize,
100 ;
101
102 status "login successful";
103
104 CFClient::lowdelay fileno $CONN->{fh};
105 }
106
107 sub stop_game {
108 undef $CONN;
109 }
110
111 sub client_setup {
112 my $dialog = new CFClient::UI::FancyFrame
113 child => (my $vbox = new CFClient::UI::VBox);
114 $vbox->add (new CFClient::UI::Label align => 0, text => "Client Setup");
115 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
116
117 $table->add (0, 0, new CFClient::UI::Label align => 1, text => "Video Mode");
118 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
119
120 $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
121 $hbox->add (my $mode_label = new CFClient::UI::Label height => $FONTSIZE * 0.8);
122
123 $mode_slider->connect (changed => sub {
124 my ($self, $value) = @_;
125
126 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
127 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
128 });
129 $mode_slider->emit (changed => $mode_slider->{range}[0]);
130
131 $table->add (0, 1, new CFClient::UI::Label align => 1, text => "Fullscreen");
132 $table->add (1, 1, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub {
133 my ($self, $value) = @_;
134 $CFG->{fullscreen} = $value;
135 });
136
137 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Fast & Ugly");
138 $table->add (1, 2, new CFClient::UI::CheckBox state => $CFG->{fast}, connect_changed => sub {
139 my ($self, $value) = @_;
140 $CFG->{fast} = $value;
141 });
142
143 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Fog of War");
144 $table->add (1, 3, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub {
145 my ($self, $value) = @_;
146 $CFG->{fow_enable} = $value;
147 });
148
149 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "FoW Intensity");
150 $table->add (1, 4, new CFClient::UI::Slider range => [$CFG->{fow_intensity}, 0, 1 + 0.001, 0.001], connect_changed => sub {
151 my ($self, $value) = @_;
152 $CFG->{fow_intensity} = $value;
153 });
154
155 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "FoW Smooth");
156 $table->add (1, 5, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub {
157 my ($self, $value) = @_;
158 $CFG->{fow_smooth} = $value;
159 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
160 });
161
162 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Log Fontsize");
163 $table->add (1, 6, new CFClient::UI::Slider range => [$CFG->{log_fontsize}, 8, 30, 1], connect_changed => sub {
164 my ($self, $value) = @_;
165 $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = int $value);
166 });
167
168 $table->add (1, 7, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
169 video_shutdown ();
170 video_init ();
171 });
172
173 $dialog
174 }
175
176 sub metaserver_dialog {
177 my $dialog = new CFClient::UI::FancyFrame
178 child => (my $vbox = new CFClient::UI::VBox);
179
180 $vbox->add ($dialog->{table} = new CFClient::UI::Table);
181
182 $dialog
183 }
184
185 sub update_metaserver {
186 my ($HOST) = @_;
187
188 status "fetching metaserver list...";
189
190 my $buf;
191
192 my $fh = new IO::Socket::INET PeerHost => $META_SERVER, Blocking => 0;
193
194 Event->io (fd => $fh, poll => 'r', cb => sub {
195 my $res = sysread $fh, $buf, 8192, length $buf;
196
197 if (!defined $res) {
198 $_[0]->w->cancel;
199 status "metaserver: $!";
200 } elsif ($res == 0) {
201 $_[0]->w->cancel;
202 status "server list retrieved";
203
204 my $table = $METASERVER->{table};
205
206 $table->clear;
207
208 my @col = qw(Use #Users Host Uptime Version Description);
209 $table->add ($_, 0, new CFClient::UI::Label align => 0, fg => [1, 1, 0], text => $col[$_])
210 for 0 .. $#col;
211
212 my @align = qw(1 0 1 1 -1);
213
214 my $y = 0;
215 for my $m (sort { $b->[3] <=> $a->[3] } map [split /\|/], split /\015?\012/, $buf) {
216 my ($ip, $last, $host, $users, $version, $desc, $ibytes, $obytes, $uptime) = @$m;
217
218 for ($desc) {
219 s/<br>/\n/gi;
220 s/<li>/\n· /gi;
221 s/<.*?>//sgi;
222 s/&/&amp;/g;
223 s/</&lt;/g;
224 s/>/&gt;/g;
225 }
226
227 $uptime = sprintf "%dd %02d:%02d:%02d",
228 (int $m->[8] / 86400),
229 (int $m->[8] / 3600) % 24,
230 (int $m->[8] / 60) % 60,
231 $m->[8] % 60;
232
233 $m = [$users, $host, $uptime, $version, $desc];
234
235 $y++;
236
237 $table->add (0, $y, new CFClient::UI::VBox children => [
238 (new CFClient::UI::Button text => " ", connect_activate => sub {
239 $HOST->set_text ($CFG->{host} = $host);
240 }),
241 (new CFClient::UI::Empty expand => 1),
242 ]);
243
244 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => $FONTSIZE * 0.8)
245 for 0 .. $#$m;
246 }
247 }
248 });
249 }
250
251 sub server_setup {
252 my $dialog = new CFClient::UI::FancyFrame
253 child => (my $vbox = new CFClient::UI::VBox);
254
255 $vbox->add (new CFClient::UI::Label align => 0, text => "Server Setup");
256 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
257 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Host:Port");
258
259 {
260 $table->add (1, 2, my $vbox = new CFClient::UI::VBox);
261
262 $vbox->add (my $HOST = new CFClient::UI::Entry text => $CFG->{host}, connect_changed => sub {
263 my ($self, $value) = @_;
264 $CFG->{host} = $value;
265 });
266
267 $METASERVER = metaserver_dialog;
268
269 $vbox->add (new CFClient::UI::Flopper text => "Metaserver", other => $METASERVER, connect_open => sub {
270 update_metaserver $HOST;
271 });
272 }
273
274 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "Username");
275 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub {
276 my ($self, $value) = @_;
277 $CFG->{user} = $value;
278 });
279
280 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "Password");
281 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub {
282 my ($self, $value) = @_;
283 $CFG->{password} = $value;
284 });
285
286 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Def. say cmd");
287 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry text => $CFG->{say_command}, connect_changed => sub {
288 my ($self, $value) = @_;
289 $CFG->{say_command} = $value;
290 });
291
292 $table->add (0, 7, new CFClient::UI::Label align => 1, text => "Map Size");
293 $table->add (1, 7, new CFClient::UI::Slider
294 req_w => 100,
295 range => [$CFG->{mapsize}, 10, 100 + 1, 1],
296 connect_changed => sub {
297 my ($self, $value) = @_;
298
299 $CFG->{mapsize} = $self->{range}[0] = $value = int $value;
300 },
301 );
302
303 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
304 start_game;
305 });
306
307 $dialog
308 }
309
310 sub message_window {
311 my $window = new CFClient::UI::FancyFrame
312 border_bg => [1, 1, 1, 0.5],
313 bg => [0.3, 0.3, 0.3, 0.8],
314 user_w => int $::WIDTH / 3,
315 user_h => int $::HEIGHT / 5,
316 child => (my $vbox = new CFClient::UI::VBox);
317
318 $vbox->add ($LOGVIEW = new CFClient::UI::TextView
319 expand => 1,
320 fontsize => $::CFG->{log_fontsize},
321 );
322
323 $vbox->add (my $input = new CFClient::UI::Entry
324 connect_focus_in => sub {
325 my ($input, $prev_focus) = @_;
326
327 delete $input->{refocus_map};
328
329 if ($prev_focus == $MAPWIDGET && $input->{auto_activated}) {
330 $input->{refocus_map} = 1;
331 }
332 delete $input->{auto_activated};
333 },
334 connect_activate => sub {
335 my ($input, $text) = @_;
336 $input->set_text ('');
337
338 if ($text =~ /^\/(.*)/) {
339 $::CONN->user_send ($1);
340 } else {
341 my $say_cmd = $::CFG->{say_command} || 'say';
342 $::CONN->user_send ("$say_cmd $text");
343 }
344 if ($input->{refocus_map}) {
345 delete $input->{refocus_map};
346 $MAPWIDGET->focus_in
347 }
348 },
349 connect_escape => sub {
350 $MAPWIDGET->focus_in
351 },
352 );
353
354 $CONSOLE = {
355 window => $window,
356 input => $input
357 };
358
359 $window
360 }
361
362 sub sdl_init {
363 #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE
364 SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO
365 and die "SDL::Init failed!\n";
366 }
367
368 sub video_init {
369 sdl_init;
370
371 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
372 $FULLSCREEN = $CFG->{fullscreen};
373 $FAST = $CFG->{fast};
374
375 SDL::GLSetAttribute SDL_GL_RED_SIZE, 5;
376 SDL::GLSetAttribute SDL_GL_GREEN_SIZE, 5;
377 SDL::GLSetAttribute SDL_GL_BLUE_SIZE, 5;
378 SDL::GLSetAttribute SDL_GL_ALPHA_SIZE, 1;
379
380 SDL::GLSetAttribute SDL_GL_ACCUM_RED_SIZE, 0;
381 SDL::GLSetAttribute SDL_GL_ACCUM_GREEN_SIZE, 0;
382 SDL::GLSetAttribute SDL_GL_ACCUM_BLUE_SIZE, 0;
383 SDL::GLSetAttribute SDL_GL_ACCUM_ALPHA_SIZE, 0;
384
385 SDL::GLSetAttribute SDL_GL_DOUBLEBUFFER, 1;
386 SDL::GLSetAttribute SDL_GL_BUFFER_SIZE, 15;
387 SDL::GLSetAttribute SDL_GL_DEPTH_SIZE, 0;
388
389 SDL::SetVideoMode $WIDTH, $HEIGHT, 0,
390 SDL_HWSURFACE | SDL_ANYFORMAT | SDL_OPENGL | SDL_DOUBLEBUF
391 | ($FULLSCREEN ? SDL_FULLSCREEN : 0)
392 or die "SDL::SetVideoMode failed!\n";
393
394 SDL::WMSetCaption "Crossfire+ Client", "Crossfire+";
395
396 $SDL_EV = new SDL::Event;
397 $SDL_EV->set_unicode (1);
398
399 $SDL_ACTIVE = 1;
400
401 $LAST_REFRESH = time - 0.01;
402
403 CFClient::gl_init;
404
405 $FONTSIZE = int $HEIGHT / 40;
406
407 #############################################################################
408
409 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
410 $CFClient::UI::ROOT->add ($DEBUG_STATUS);
411
412 $STATUS_LINE = new CFClient::UI::Label
413 padding => 0,
414 y => $HEIGHT * 44 / 45 - $FONTSIZE;
415 $CFClient::UI::ROOT->add ($STATUS_LINE);
416
417 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
418 padding => 0,
419 y => $HEIGHT * 44 / 45,
420 fontsize => $HEIGHT / 45,
421 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
422 $CFClient::UI::ROOT->add ($ALT_ENTER_MESSAGE);
423
424 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::UI::MapWidget);
425 $MAPWIDGET->focus_in;
426 $MAPWIDGET->connect (activate_console => sub {
427 my ($mapwidget, $preset) = @_;
428
429 if ($CONSOLE) {
430 $CONSOLE->{input}->{auto_activated} = 1;
431 $CONSOLE->{input}->focus_in;
432
433 if ($preset && $CONSOLE->{input}->get_text eq '') {
434 $CONSOLE->{input}->set_text ($preset);
435 }
436 }
437 });
438
439 $CFClient::UI::ROOT->add ($BUTTONBAR = new CFClient::UI::HBox);
440
441 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Client Setup", other => client_setup);
442 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Server Setup", other => server_setup);
443 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => message_window);
444
445 $BUTTONBAR->add (new CFClient::UI::Button text => "Save Config", connect_activate => sub {
446 CFClient::write_cfg "$Crossfire::VARDIR/pclientrc";
447 status "Configuration Saved";
448 });
449
450 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
451
452 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0);
453 $tgw->add (my $hbox = new CFClient::UI::HBox ());
454
455 $hbox->add (my $hg = new CFClient::UI::VGauge (gauge => 'hp'));
456 $hbox->add (my $mg = new CFClient::UI::VGauge (gauge => 'mana'));
457 $hbox->add (my $gg = new CFClient::UI::VGauge (gauge => 'grace'));
458 $hbox->add (my $fg = new CFClient::UI::VGauge (gauge => 'food'));
459
460 $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg };
461 $CFClient::UI::ROOT->add ($tgw);
462 }
463
464 sub video_shutdown {
465 $CFClient::UI::ROOT->{children} = [];
466 undef $SDL_ACTIVE;
467 undef $SDL_EV;
468 }
469
470 sub audio_init {
471 if ($CFG->{sound} || 1) {
472 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") {
473 $SDL_MIXER = new SDL::Mixer;
474 $SDL_MIXER->allocate_channels (8);
475
476 while (<$fh>) {
477 next if /^\s*#/;
478 next if /^\s*$/;
479
480 my ($file, $volume, $event) = split /\s+/, $_, 3;
481
482 push @SOUNDS, "$volume,$file";
483
484 $AUDIO_CHUNKS{"$volume,$file"} ||= do {
485 my $chunk = new SDL::Sound CFClient::find_rcfile "sounds/$file";
486 $chunk->volume ($volume * 128 / 100);
487 $chunk
488 };
489 }
490 } else {
491 status "unable to open sound config: $!";
492 }
493 }
494 }
495
496 sub audio_shutdown {
497 undef $SDL_MIXER;
498 @SOUNDS = ();
499 %AUDIO_CHUNKS = ();
500 }
501
502 my %animate_object;
503 my $animate_timer;
504
505 my $want_refresh;
506 my $can_refresh;
507
508 my $fps = 9;
509
510 sub force_refresh {
511 $fps = $fps * 0.95 + 1 / ($NOW - $LAST_REFRESH) * 0.05;
512 debug sprintf "%3.2f", $fps;
513
514 $want_refresh = 0;
515 $can_refresh = 0;
516
517 $CFClient::UI::ROOT->draw;
518
519 SDL::GLSwapBuffers;
520
521 $LAST_REFRESH = $NOW;
522 }
523
524 my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
525 $NOW = time;
526
527 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
528 while $SDL_EV->poll;
529
530 if (%animate_object) {
531 $_->animate ($LAST_REFRESH - $NOW) for values %animate_object;
532 $want_refresh++;
533 }
534
535 if ($want_refresh) {
536 force_refresh;
537 } else {
538 $can_refresh = 1;
539 }
540 });
541
542 sub refresh {
543 $want_refresh++;
544 }
545
546 sub animation_start {
547 my ($widget) = @_;
548 $animate_object{$widget} = $widget;
549 }
550
551 sub animation_stop {
552 my ($widget) = @_;
553 delete $animate_object{$widget};
554 }
555
556 @conn::ISA = Crossfire::Protocol::;
557
558 sub conn::stats_update {
559 my ($self, $stats) = @_;
560
561 # i love text protocols!!!
562 # FIXME: the stats are somehow weird
563 my $hp = $stats->{1};
564 my $hp_m = $stats->{2};
565 my $sp = $stats->{3};
566 my $sp_m = $stats->{4};
567 my $fo = $stats->{18};
568 my $fo_m = 1000;
569 my $gr = $stats->{23};
570 my $gr_m = $stats->{24};
571
572 #d# warn "DATA $hp $hp_m $sp $sp_m $fo $fo_m $gr $gr_m\n";
573 $GAUGES->{hp}->set_value ($hp, $hp_m);
574 $GAUGES->{mana}->set_value ($sp, $sp_m);
575 $GAUGES->{food}->set_value ($fo, $fo_m);
576 $GAUGES->{grace}->set_value ($gr, $gr_m);
577 }
578
579 sub conn::user_send {
580 my ($self, $command) = @_;
581
582 $self->send_command ($command);
583 status $command;
584 }
585
586 sub conn::map_scroll {
587 my ($self, $dx, $dy) = @_;
588
589 $MAP->scroll ($dx, $dy);
590 }
591
592 sub conn::feed_map1a {
593 my ($self, $data) = @_;
594
595 # $self->Crossfire::Protocol::feed_map1a ($data);
596
597 $MAP->map1a_update ($data);
598 $MAPWIDGET->update;
599 }
600
601 sub conn::flush_map {
602 my ($self) = @_;
603
604 my $map_info = delete $self->{map_info}
605 or return;
606
607 my ($hash, $x, $y, $w, $h) = @$map_info;
608
609 my $data = $MAP->get_rect ($x, $y, $w, $h);
610 $MAPCACHE->put ($hash => Compress::LZF::compress $data);
611
612 warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
613
614 }
615
616 sub conn::map_clear {
617 my ($self) = @_;
618
619 $self->flush_map;
620 delete $self->{neigh};
621
622 $MAP->clear;
623 }
624
625
626 sub conn::load_map($$$) {
627 my ($self, $hash, $x, $y) = @_;
628
629 if (defined (my $data = $MAPCACHE->get ($hash))) {
630 $data = Compress::LZF::decompress $data;
631 warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
632 for my $id ($MAP->set_rect ($x, $y, $data)) {
633 my $data = $TILECACHE->get ($id)
634 or next;
635
636 $self->set_texture ($id => $data);
637 }
638 }
639 }
640
641 sub conn::flood_fill {
642 my ($self, $path, $hash, $flags, $x0, $y0, $x1, $y1) = @_;
643
644 # the server does not allow map paths > 6
645 return if 6 <= length $path;
646
647 for my $tile (1..4) {
648 next if $self->{neigh}{$hash}[$tile];
649 next unless $flags & (1 << ($tile - 1));
650
651 my $neigh = $self->{neigh}{$hash} ||= [];
652
653 $self->send_mapinfo ("spatial $path$tile", sub {
654 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
655
656 #warn "map<$path>_$tile=<$mode,$x,$y,$w,$h,$hash>\n";#d#
657 return if $mode ne "spatial";
658
659 $x += $MAP->ox;
660 $y += $MAP->oy;
661
662 $self->load_map ($hash, $x, $y)
663 unless $self->{neigh}{$hash}[5]++;#d#
664
665 $neigh->[$tile] = [$x, $y, $w, $h];
666
667 $self->flood_fill ("$path$tile", $hash, $flags, $x0, $y0, $x1, $y1)
668 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
669 });
670 }
671 }
672
673 sub conn::map_change {
674 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
675
676 $self->flush_map;
677
678 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
679
680 my $mapmapw = 250;
681 my $mapmaph = 250;
682
683 $self->flood_fill ("", $hash, $flags,
684 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
685 $ox + $mapmapw * 0.5, $oy + $mapmapw * 0.5);
686
687 $x += $ox;
688 $y += $oy;
689
690 $self->{map_info} = [$hash, $x, $y, $w, $h];
691
692 $self->load_map ($hash, $x, $y);
693 }
694
695 sub conn::face_find {
696 my ($self, $facenum, $face) = @_;
697
698 my $hash = "$face->{chksum},$face->{name}";
699
700 my $id = $FACEMAP->get ($hash);
701
702 unless ($id) {
703 # create new id for face
704 # i love transactions
705 for (1..100) {
706 my $txn = $CFClient::DB_ENV->txn_begin;
707 my $status = $FACEMAP->db_get (id => $id, BerkeleyDB::DB_RMW);
708 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
709 $id++;
710 if ($FACEMAP->put (id => $id) == 0
711 && $FACEMAP->put ($hash => $id) == 0) {
712 $txn->txn_commit;
713
714 goto gotid;
715 }
716 }
717 $txn->abort;
718 }
719
720 CFClient::fatal "maximum number of transaction retries reached - database problems?";
721 }
722
723 gotid:
724 $face->{id} = $id;
725 $MAP->set_face ($facenum => $id);
726 $TILECACHE->get ($id)
727 }
728
729 sub conn::face_update {
730 my ($self, $facenum, $face) = @_;
731
732 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
733
734 $self->set_texture ($face->{id} => delete $face->{image});
735 }
736
737 sub conn::set_texture {
738 my ($self, $id, $data) = @_;
739
740 $self->{texture}[$id] ||= do {
741 my $tex =
742 new_from_image CFClient::Texture
743 $data, minify => 1;
744
745 $MAP->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
746 $MAPWIDGET->update;
747
748 $tex
749 };
750 }
751
752 sub conn::sound_play {
753 my ($self, $x, $y, $soundnum, $type) = @_;
754
755 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
756 or return;
757
758 $SDL_MIXER->play_channel (-1, $chunk);
759 warn "sound $x,$y,$soundnum,$type\n";#d#
760 }
761
762 sub conn::query {
763 my ($self, $flags, $prompt) = @_;
764
765 #TODO
766 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
767 }
768
769 sub conn::drawinfo {
770 my ($self, $color, $text) = @_;
771
772 my @color = (
773 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
774 [1.00, 1.00, 1.00],
775 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
776 [1.00, 0.00, 0.00],
777 [1.00, 0.54, 0.00],
778 [0.11, 0.56, 1.00],
779 [0.93, 0.46, 0.00],
780 [0.18, 0.54, 0.34],
781 [0.56, 0.73, 0.56],
782 [0.80, 0.80, 0.80],
783 [0.55, 0.41, 0.13],
784 [0.99, 0.77, 0.26],
785 [0.74, 0.65, 0.41],
786 );
787
788 $LOGVIEW->add_paragraph ($color[$color], $text);
789 }
790
791 %SDL_CB = (
792 SDL_QUIT() => sub {
793 Event::unloop -1;
794 },
795 SDL_VIDEORESIZE() => sub {
796 },
797 SDL_VIDEOEXPOSE() => sub {
798 refresh;
799 },
800 SDL_KEYDOWN() => sub {
801 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) {
802 # alt-enter
803 video_shutdown;
804 $CFG->{fullscreen} = !$CFG->{fullscreen};
805 video_init;
806 } else {
807 CFClient::UI::feed_sdl_key_down_event ($SDL_EV);
808 }
809 },
810 SDL_KEYUP() => sub {
811 CFClient::UI::feed_sdl_key_up_event ($SDL_EV);
812 },
813 SDL_MOUSEMOTION() => sub {
814 CFClient::UI::feed_sdl_motion_event ($SDL_EV);
815 },
816 SDL_MOUSEBUTTONDOWN() => sub {
817 CFClient::UI::feed_sdl_button_down_event ($SDL_EV);
818 },
819 SDL_MOUSEBUTTONUP() => sub {
820 CFClient::UI::feed_sdl_button_up_event ($SDL_EV);
821 },
822 SDL_ACTIVEEVENT() => sub {
823 # printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
824 },
825 );
826
827 #############################################################################
828
829 $SIG{INT} = $SIG{TERM} = sub { exit };
830
831 $TILECACHE = CFClient::db_table "tilecache";
832 $FACEMAP = CFClient::db_table "facemap";
833
834 CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
835
836 my %DEF_CFG = (
837 sdl_mode => 0,
838 width => 640,
839 height => 480,
840 fullscreen => 0,
841 fast => 0,
842 fow_enable => 1,
843 fow_intensity => 0.45,
844 fow_smooth => 0,
845 log_fontsize => 14,
846 mapsize => 100,
847 host => "crossfire.schmorp.de",
848 say_command => 'say',
849 );
850
851 while (my ($k, $v) = each %DEF_CFG) {
852 $CFG->{$k} = $v unless exists $CFG->{$k};
853 }
854
855 sdl_init;
856
857 @SDL_MODES = reverse
858 grep $_->[0] >= 640 && $_->[1] >= 480,
859 map [SDL::RectW ($_), SDL::RectH ($_)],
860 @{ SDL::ListModes 0, SDL_FULLSCREEN | SDL_HWSURFACE | SDL_OPENGL };
861
862 @SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
863
864 $CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
865
866 {
867 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf);
868
869 CFClient::add_font $_ for @fonts;
870 CFClient::set_font $fonts[0];
871 }
872
873 video_init;
874 audio_init;
875
876 Event::loop;
877
878 END { SDL::Quit }
879
880