ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.129
Committed: Mon Apr 17 21:22:54 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.128: +4 -4 lines
Log Message:
reorder gauges

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