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

# User Rev Content
1 root 1.1 #!/opt/bin/perl
2 root 1.25
3 root 1.2 use strict;
4 root 1.25 use utf8;
5 root 1.2
6 root 1.87 use Time::HiRes 'time';
7     use Event;
8 root 1.13
9     use SDL;
10     use SDL::App;
11     use SDL::Event;
12     use SDL::Surface;
13 root 1.134
14     use SDL::Sound;
15     use SDL::Mixer;
16    
17 root 1.13 use SDL::OpenGL;
18    
19 elmex 1.11 use Crossfire;
20 root 1.2 use Crossfire::Protocol;
21    
22 root 1.116 use Compress::LZF;
23    
24 root 1.67 use CFClient;
25 root 1.72 use CFClient::UI;
26 elmex 1.10
27 root 1.63 our $VERSION = '0.1';
28    
29 root 1.96 my $MAX_FPS = 60;
30 root 1.90 my $MIN_FPS = 5; # unused as of yet
31 root 1.63
32 root 1.112 our $META_SERVER = "crossfire.real-time.com:13326";
33    
34 root 1.116 our $FACEMAP;
35     our $TILECACHE;
36     our $MAPCACHE;
37 root 1.19
38 root 1.87 our $LAST_REFRESH;
39     our $NOW;
40    
41 elmex 1.10 our $CFG;
42 root 1.13 our $CONN;
43 root 1.85 our $FAST; # fast, low-quality mode, possibly useful for software-rendering
44 root 1.2
45 root 1.75 our @SDL_MODES;
46 root 1.30 our $WIDTH;
47     our $HEIGHT;
48     our $FULLSCREEN;
49 root 1.99 our $FONTSIZE;
50 root 1.30
51 root 1.95 our $MAP;
52 root 1.69 our $MAPWIDGET;
53 root 1.112 our $BUTTONBAR;
54     our $LOGVIEW;
55     our $CONSOLE;
56     our $METASERVER;
57 root 1.57
58 elmex 1.125 our $GAUGES;
59    
60 root 1.86 our $SDL_ACTIVE;
61 root 1.58 our $SDL_EV;
62 root 1.13 our %SDL_CB;
63 root 1.18
64 root 1.134 our $SDL_MIXER;
65     our @SOUNDS; # event => file mapping
66     our %AUDIO_CHUNKS; # audio files
67    
68 root 1.30 our $ALT_ENTER_MESSAGE;
69 root 1.51 our $STATUS_LINE;
70 root 1.64 our $DEBUG_STATUS;
71 root 1.30
72 root 1.82 sub status {
73     $STATUS_LINE->set_text ($_[0]);
74 root 1.128 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
75 root 1.82 }
76    
77     sub debug {
78     $DEBUG_STATUS->set_text ($_[0]);
79 root 1.128 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
80 root 1.82 }
81    
82 root 1.84 sub start_game {
83 root 1.85 status "logging in...";
84    
85 root 1.106 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
86 root 1.84
87 root 1.116 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
88    
89 root 1.95 $MAP = new CFClient::Map $mapsize, $mapsize;
90 root 1.112
91     my ($host, $port) = split /:/, $CFG->{host};
92 root 1.95
93 root 1.84 $CONN = new conn
94 root 1.112 host => $host,
95     port => $port || 13327,
96 root 1.84 user => $CFG->{user},
97     pass => $CFG->{password},
98     mapw => $mapsize,
99     maph => $mapsize,
100     ;
101    
102 root 1.85 status "login successful";
103    
104 root 1.84 CFClient::lowdelay fileno $CONN->{fh};
105     }
106    
107     sub stop_game {
108     undef $CONN;
109     }
110    
111 root 1.111 sub client_setup {
112 root 1.99 my $dialog = new CFClient::UI::FancyFrame
113 root 1.81 child => (my $vbox = new CFClient::UI::VBox);
114 root 1.82 $vbox->add (new CFClient::UI::Label align => 0, text => "Client Setup");
115 root 1.81 $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 root 1.82
131 root 1.85 $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 root 1.89 $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 root 1.91 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Fog of War");
144 root 1.97 $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 root 1.90 my ($self, $value) = @_;
152     $CFG->{fow_intensity} = $value;
153     });
154    
155 root 1.97 $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 root 1.91 my ($self, $value) = @_;
158     $CFG->{fow_smooth} = $value;
159 root 1.132 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
160 root 1.91 });
161    
162 root 1.112 $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 root 1.105 my ($self, $value) = @_;
165     $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = int $value);
166     });
167    
168 root 1.112 $table->add (1, 7, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
169 root 1.134 video_shutdown ();
170     video_init ();
171 root 1.82 });
172 root 1.111
173     $dialog
174     }
175    
176 root 1.112 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 root 1.114 my ($HOST) = @_;
187    
188 root 1.112 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 root 1.113
204     my $table = $METASERVER->{table};
205    
206     $table->clear;
207    
208 root 1.114 my @col = qw(Use #Users Host Uptime Version Description);
209 root 1.113 $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 root 1.114 for my $m (sort { $b->[3] <=> $a->[3] } map [split /\|/], split /\015?\012/, $buf) {
216 root 1.113 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 root 1.114
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 root 1.113 for 0 .. $#$m;
246     }
247 root 1.112 }
248     });
249     }
250    
251 root 1.111 sub server_setup {
252     my $dialog = new CFClient::UI::FancyFrame
253     child => (my $vbox = new CFClient::UI::VBox);
254 root 1.81
255 root 1.89 $vbox->add (new CFClient::UI::Label align => 0, text => "Server Setup");
256 root 1.82 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
257 root 1.112 $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 root 1.114 $vbox->add (my $HOST = new CFClient::UI::Entry text => $CFG->{host}, connect_changed => sub {
263 root 1.112 my ($self, $value) = @_;
264     $CFG->{host} = $value;
265     });
266    
267     $METASERVER = metaserver_dialog;
268 elmex 1.101
269 root 1.112 $vbox->add (new CFClient::UI::Flopper text => "Metaserver", other => $METASERVER, connect_open => sub {
270 root 1.114 update_metaserver $HOST;
271 root 1.112 });
272     }
273 root 1.81
274 root 1.82 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "Username");
275 root 1.114 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub {
276 elmex 1.101 my ($self, $value) = @_;
277     $CFG->{user} = $value;
278     });
279 root 1.81
280 root 1.82 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "Password");
281 root 1.114 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub {
282 elmex 1.101 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 root 1.81
292 elmex 1.101 $table->add (0, 7, new CFClient::UI::Label align => 1, text => "Map Size");
293     $table->add (1, 7, new CFClient::UI::Slider
294 root 1.81 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 elmex 1.101 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
304 root 1.84 start_game;
305 root 1.82 });
306    
307 root 1.98 $dialog
308 root 1.81 }
309 root 1.58
310 root 1.111 sub message_window {
311 root 1.99 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 root 1.124 user_w => int $::WIDTH / 3,
315     user_h => int $::HEIGHT / 5,
316 root 1.99 child => (my $vbox = new CFClient::UI::VBox);
317    
318 root 1.105 $vbox->add ($LOGVIEW = new CFClient::UI::TextView
319     expand => 1,
320     fontsize => $::CFG->{log_fontsize},
321     );
322    
323 root 1.122 $vbox->add (my $input = new CFClient::UI::Entry
324 elmex 1.118 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 root 1.116 connect_activate => sub {
335 elmex 1.100 my ($input, $text) = @_;
336     $input->set_text ('');
337    
338     if ($text =~ /^\/(.*)/) {
339 root 1.123 $::CONN->user_send ($1);
340 elmex 1.100 } else {
341 elmex 1.101 my $say_cmd = $::CFG->{say_command} || 'say';
342 root 1.123 $::CONN->user_send ("$say_cmd $text");
343 elmex 1.100 }
344 elmex 1.118 if ($input->{refocus_map}) {
345     delete $input->{refocus_map};
346     $MAPWIDGET->focus_in
347     }
348 root 1.116 },
349     connect_escape => sub {
350 elmex 1.102 $MAPWIDGET->focus_in
351 root 1.116 },
352     );
353 elmex 1.102
354     $CONSOLE = {
355     window => $window,
356     input => $input
357     };
358 root 1.99
359     $window
360     }
361    
362 root 1.89 sub sdl_init {
363 root 1.133 #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE
364     SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO
365 root 1.89 and die "SDL::Init failed!\n";
366     }
367    
368 root 1.134 sub video_init {
369 root 1.89 sdl_init;
370    
371 root 1.84 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
372     $FULLSCREEN = $CFG->{fullscreen};
373 root 1.89 $FAST = $CFG->{fast};
374 root 1.84
375 root 1.86 SDL::GLSetAttribute SDL_GL_RED_SIZE, 5;
376     SDL::GLSetAttribute SDL_GL_GREEN_SIZE, 5;
377     SDL::GLSetAttribute SDL_GL_BLUE_SIZE, 5;
378 root 1.114 SDL::GLSetAttribute SDL_GL_ALPHA_SIZE, 1;
379 root 1.86
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 root 1.2
396 root 1.58 $SDL_EV = new SDL::Event;
397     $SDL_EV->set_unicode (1);
398    
399 root 1.86 $SDL_ACTIVE = 1;
400    
401 root 1.87 $LAST_REFRESH = time - 0.01;
402 root 1.45
403 root 1.67 CFClient::gl_init;
404 root 1.30
405 root 1.77 $FONTSIZE = int $HEIGHT / 40;
406 root 1.39
407 root 1.52 #############################################################################
408    
409 root 1.99 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
410 root 1.111 $CFClient::UI::ROOT->add ($DEBUG_STATUS);
411 root 1.52
412 root 1.72 $STATUS_LINE = new CFClient::UI::Label
413 root 1.77 padding => 0,
414 root 1.99 y => $HEIGHT * 44 / 45 - $FONTSIZE;
415 root 1.111 $CFClient::UI::ROOT->add ($STATUS_LINE);
416 root 1.51
417 root 1.72 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
418 root 1.123 padding => 0,
419     y => $HEIGHT * 44 / 45,
420     fontsize => $HEIGHT / 45,
421     markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
422 root 1.111 $CFClient::UI::ROOT->add ($ALT_ENTER_MESSAGE);
423 root 1.30
424 root 1.111 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::UI::MapWidget);
425 root 1.69 $MAPWIDGET->focus_in;
426 elmex 1.102 $MAPWIDGET->connect (activate_console => sub {
427 elmex 1.103 my ($mapwidget, $preset) = @_;
428    
429 elmex 1.102 if ($CONSOLE) {
430 elmex 1.118 $CONSOLE->{input}->{auto_activated} = 1;
431 elmex 1.102 $CONSOLE->{input}->focus_in;
432 elmex 1.103
433     if ($preset && $CONSOLE->{input}->get_text eq '') {
434     $CONSOLE->{input}->set_text ($preset);
435     }
436 elmex 1.102 }
437     });
438 root 1.81
439 root 1.111 $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 root 1.98
450 root 1.119 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
451 elmex 1.125
452 elmex 1.127 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0);
453     $tgw->add (my $hbox = new CFClient::UI::HBox ());
454 root 1.126
455 root 1.129 $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 elmex 1.125
460     $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg };
461     $CFClient::UI::ROOT->add ($tgw);
462 root 1.2 }
463    
464 root 1.134 sub video_shutdown {
465 root 1.111 $CFClient::UI::ROOT->{children} = [];
466 root 1.86 undef $SDL_ACTIVE;
467 root 1.62 undef $SDL_EV;
468 root 1.134 }
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 root 1.62 }
501    
502 root 1.87 my %animate_object;
503     my $animate_timer;
504    
505     my $want_refresh;
506     my $can_refresh;
507    
508     my $fps = 9;
509    
510 root 1.30 sub force_refresh {
511 root 1.87 $fps = $fps * 0.95 + 1 / ($NOW - $LAST_REFRESH) * 0.05;
512     debug sprintf "%3.2f", $fps;
513    
514 root 1.96 $want_refresh = 0;
515 root 1.87 $can_refresh = 0;
516    
517 root 1.111 $CFClient::UI::ROOT->draw;
518 root 1.1
519 root 1.2 SDL::GLSwapBuffers;
520 root 1.87
521     $LAST_REFRESH = $NOW;
522 root 1.1 }
523    
524 root 1.87 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 root 1.64
542 root 1.30 sub refresh {
543 root 1.87 $want_refresh++;
544 root 1.30 }
545    
546 root 1.45 sub animation_start {
547     my ($widget) = @_;
548 root 1.87 $animate_object{$widget} = $widget;
549 root 1.45 }
550    
551     sub animation_stop {
552     my ($widget) = @_;
553 root 1.87 delete $animate_object{$widget};
554 root 1.45 }
555    
556 root 1.2 @conn::ISA = Crossfire::Protocol::;
557 root 1.1
558 elmex 1.125 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 root 1.89 sub conn::user_send {
580 root 1.88 my ($self, $command) = @_;
581    
582 root 1.123 $self->send_command ($command);
583 root 1.88 status $command;
584     }
585    
586 root 1.119 sub conn::map_scroll {
587     my ($self, $dx, $dy) = @_;
588    
589     $MAP->scroll ($dx, $dy);
590     }
591    
592 root 1.94 sub conn::feed_map1a {
593     my ($self, $data) = @_;
594    
595 root 1.95 # $self->Crossfire::Protocol::feed_map1a ($data);
596 root 1.1
597 root 1.95 $MAP->map1a_update ($data);
598 root 1.69 $MAPWIDGET->update;
599 root 1.1 }
600    
601 root 1.116 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 root 1.1
616 root 1.2 sub conn::map_clear {
617 root 1.1 my ($self) = @_;
618    
619 root 1.116 $self->flush_map;
620 root 1.119 delete $self->{neigh};
621 root 1.116
622 root 1.95 $MAP->clear;
623 root 1.1 }
624    
625 root 1.116
626 root 1.119 sub conn::load_map($$$) {
627     my ($self, $hash, $x, $y) = @_;
628 root 1.115
629 root 1.116 if (defined (my $data = $MAPCACHE->get ($hash))) {
630     $data = Compress::LZF::decompress $data;
631 root 1.119 warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
632 root 1.116 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 root 1.115 }
640    
641 root 1.119 sub conn::flood_fill {
642     my ($self, $path, $hash, $flags, $x0, $y0, $x1, $y1) = @_;
643    
644 root 1.121 # the server does not allow map paths > 6
645 root 1.120 return if 6 <= length $path;
646    
647 root 1.119 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 root 1.122 #warn "map<$path>_$tile=<$mode,$x,$y,$w,$h,$hash>\n";#d#
657 root 1.119 return if $mode ne "spatial";
658    
659     $x += $MAP->ox;
660     $y += $MAP->oy;
661    
662 root 1.124 $self->load_map ($hash, $x, $y)
663     unless $self->{neigh}{$hash}[5]++;#d#
664 root 1.119
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 root 1.19 sub conn::face_find {
696 root 1.116 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 root 1.19
720 root 1.116 CFClient::fatal "maximum number of transaction retries reached - database problems?";
721     }
722 root 1.114
723 root 1.116 gotid:
724     $face->{id} = $id;
725     $MAP->set_face ($facenum => $id);
726     $TILECACHE->get ($id)
727 root 1.19 }
728    
729 root 1.2 sub conn::face_update {
730 root 1.95 my ($self, $facenum, $face) = @_;
731 root 1.19
732 root 1.116 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
733    
734     $self->set_texture ($face->{id} => delete $face->{image});
735     }
736 root 1.1
737 root 1.116 sub conn::set_texture {
738     my ($self, $id, $data) = @_;
739 root 1.95
740 root 1.116 $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 root 1.1 }
751    
752 root 1.134 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 root 1.33 sub conn::query {
763     my ($self, $flags, $prompt) = @_;
764    
765 root 1.99 #TODO
766 root 1.33 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
767     }
768    
769 root 1.99 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 root 1.117 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
776 root 1.99 [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 root 1.87 %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 root 1.134 video_shutdown;
804 root 1.99 $CFG->{fullscreen} = !$CFG->{fullscreen};
805 root 1.134 video_init;
806 root 1.87 } else {
807     CFClient::UI::feed_sdl_key_down_event ($SDL_EV);
808 elmex 1.23 }
809 root 1.87 },
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 elmex 1.23
827 root 1.1 #############################################################################
828    
829 root 1.131 $SIG{INT} = $SIG{TERM} = sub { exit };
830    
831 root 1.116 $TILECACHE = CFClient::db_table "tilecache";
832     $FACEMAP = CFClient::db_table "facemap";
833 root 1.114
834 root 1.67 CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
835 elmex 1.10
836 root 1.90 my %DEF_CFG = (
837 root 1.105 sdl_mode => 0,
838 root 1.90 width => 640,
839     height => 480,
840 root 1.105 fullscreen => 0,
841 root 1.90 fast => 0,
842 root 1.97 fow_enable => 1,
843 root 1.90 fow_intensity => 0.45,
844 root 1.92 fow_smooth => 0,
845 root 1.105 log_fontsize => 14,
846 root 1.90 mapsize => 100,
847     host => "crossfire.schmorp.de",
848 elmex 1.101 say_command => 'say',
849 root 1.90 );
850    
851     while (my ($k, $v) = each %DEF_CFG) {
852     $CFG->{$k} = $v unless exists $CFG->{$k};
853     }
854 elmex 1.12
855 root 1.89 sdl_init;
856 root 1.87
857 root 1.93 @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 root 1.87
862 root 1.89 @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 root 1.65 {
867 root 1.67 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf);
868 root 1.65
869 root 1.67 CFClient::add_font $_ for @fonts;
870     CFClient::set_font $fonts[0];
871 root 1.65 }
872 root 1.40
873 root 1.134 video_init;
874     audio_init;
875 root 1.122
876 root 1.87 Event::loop;
877 root 1.19
878 root 1.131 END { SDL::Quit }
879    
880 root 1.82