ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.160
Committed: Sat Apr 22 23:11:34 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.159: +24 -24 lines
Log Message:
fix resize slowness

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 Crossfire;
10 use Crossfire::Protocol;
11
12 use Compress::LZF;
13
14 use CFClient;
15 use CFClient::UI;
16 use CFClient::MapWidget;
17
18 our $VERSION = '0.1';
19
20 my $MAX_FPS = 60;
21 my $MIN_FPS = 5; # unused as of yet
22
23 our $META_SERVER = "crossfire.real-time.com:13326";
24
25 our $FACEMAP;
26 our $TILECACHE;
27 our $MAPCACHE;
28
29 our $LAST_REFRESH;
30 our $NOW;
31
32 our $CFG;
33 our $CONN;
34 our $FAST; # fast, low-quality mode, possibly useful for software-rendering
35
36 our @SDL_MODES;
37 our $WIDTH;
38 our $HEIGHT;
39 our $FULLSCREEN;
40 our $FONTSIZE;
41
42 our $MAP;
43 our $MAPWIDGET;
44 our $BUTTONBAR;
45 our $LOGVIEW;
46 our $CONSOLE;
47 our $METASERVER;
48
49 our $GAUGES;
50 our $STATWIDS;
51
52 our $SDL_ACTIVE;
53 our %SDL_CB;
54
55 our $SDL_MIXER;
56 our @SOUNDS; # event => file mapping
57 our %AUDIO_CHUNKS; # audio files
58
59 our $ALT_ENTER_MESSAGE;
60 our $STATUS_LINE;
61 our $DEBUG_STATUS;
62
63 sub status {
64 $STATUS_LINE->set_text ($_[0]);
65 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
66 }
67
68 sub debug {
69 $DEBUG_STATUS->set_text ($_[0]);
70 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
71 }
72
73 sub start_game {
74 status "logging in...";
75
76 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
77
78 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
79
80 $MAP = new CFClient::Map $mapsize, $mapsize;
81
82 my ($host, $port) = split /:/, $CFG->{host};
83
84 $CONN = new conn
85 host => $host,
86 port => $port || 13327,
87 user => $CFG->{user},
88 pass => $CFG->{password},
89 mapw => $mapsize,
90 maph => $mapsize,
91 ;
92
93 status "login successful";
94
95 CFClient::lowdelay fileno $CONN->{fh};
96 }
97
98 sub stop_game {
99 undef $CONN;
100 }
101
102 sub client_setup {
103 my $dialog = new CFClient::UI::FancyFrame
104 title => "Client Setup",
105 child => (my $vbox = new CFClient::UI::VBox);
106 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
107
108 $table->add (0, 0, new CFClient::UI::Label valign => 0, align => 1, text => "Video Mode");
109 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
110
111 $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
112 $hbox->add (my $mode_label = new CFClient::UI::Label align => 0, valign => 0, height => 0.8, template => "9999x9999");
113
114 $mode_slider->connect (changed => sub {
115 my ($self, $value) = @_;
116
117 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
118 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
119 });
120 $mode_slider->emit (changed => $mode_slider->{range}[0]);
121
122 my $row = 1;
123
124 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fullscreen");
125 $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub {
126 my ($self, $value) = @_;
127 $CFG->{fullscreen} = $value;
128 });
129
130 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fast & Ugly");
131 $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{fast}, connect_changed => sub {
132 my ($self, $value) = @_;
133 $CFG->{fast} = $value;
134 });
135
136 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fog of War");
137 $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub {
138 my ($self, $value) = @_;
139 $CFG->{fow_enable} = $value;
140 });
141
142 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "FoW Intensity");
143 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{fow_intensity}, 0, 1 + 0.001, 0.001], connect_changed => sub {
144 my ($self, $value) = @_;
145 $CFG->{fow_intensity} = $value;
146 });
147
148 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "FoW Smooth");
149 $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub {
150 my ($self, $value) = @_;
151 $CFG->{fow_smooth} = $value;
152 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
153 });
154
155 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "GUI Fontsize");
156 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{gui_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
157 $CFG->{gui_fontsize} = 0.1 * int $_[1] * 10;
158 # $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
159 });
160
161 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Server Log Fontsize");
162 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{log_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
163 $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = 0.1 * int $_[1] * 10);
164 });
165
166 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Stats Fontsize");
167 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{stat_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
168 $CFG->{stat_fontsize} = 0.1 * int $_[1] * 10;
169 &set_stats_window_fontsize;
170 });
171
172 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Gauge width");
173 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{gauge_w_size}, 0.1, 0.5, 0.02], connect_changed => sub {
174 $CFG->{gauge_w_size} = $_[1];
175 my $h = int ($HEIGHT * $CFG->{gauge_size});
176 my $w = int ($WIDTH * $CFG->{gauge_w_size});
177 $GAUGES->{win}->set_size ($w, $h);
178 $GAUGES->{win}->{y} = $HEIGHT - $h;
179 $GAUGES->{win}->{x} = $WIDTH - $w;
180 $GAUGES->{win}->update;
181 });
182
183 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Gauge height");
184 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{gauge_size}, 0.2, 0.8, 0.02], connect_changed => sub {
185 $CFG->{gauge_size} = $_[1];
186 my $h = int ($HEIGHT * $CFG->{gauge_size});
187 my $w = int ($WIDTH * $CFG->{gauge_w_size});
188 $GAUGES->{win}->set_size ($w, $h);
189 $GAUGES->{win}->{y} = $HEIGHT - $h;
190 $GAUGES->{win}->{x} = $WIDTH - $w;
191 $GAUGES->{win}->update;
192 });
193
194
195 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Gauge fontsize");
196 $table->add (1, $row++, new CFClient::UI::Slider range => [$CFG->{gauge_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
197 $CFG->{gauge_fontsize} = 0.1 * int $_[1] * 10;
198 &set_gauge_window_fontsize;
199 $GAUGES->{win}->check_size;
200 $GAUGES->{win}->update;
201 });
202
203
204
205 $table->add (1, $row++, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
206 video_shutdown ();
207 video_init ();
208 });
209
210 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Audio Enable");
211 $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{audio_enable}, connect_changed => sub {
212 $CFG->{audio_enable} = $_[1];
213 });
214 # $table->add (0, 9, new CFClient::UI::Label valign => 0, align => 1, text => "Effects Volume");
215 # $table->add (1, 8, new CFClient::UI::Slider range => [$CFG->{effects_volume}, 0, 128, 1], connect_changed => sub {
216 # $CFG->{effects_volume} = $_[1];
217 # });
218 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Background Music");
219 $table->add (1, $row++, my $hbox = new CFClient::UI::HBox);
220 $hbox->add (new CFClient::UI::CheckBox expand => 1, state => $CFG->{bgm_enable}, connect_changed => sub {
221 $CFG->{bgm_enable} = $_[1];
222 });
223 $hbox->add (new CFClient::UI::Slider expand => 1, range => [$CFG->{bgm_volume}, 0, 1, 0.1], connect_changed => sub {
224 $CFG->{bgm_volume} = $_[1];
225 CFClient::MixMusic::volume $_[1] * 128;
226 });
227
228 $table->add (1, $row++, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
229 audio_shutdown ();
230 audio_init ();
231 });
232
233 $dialog
234 }
235
236 sub set_stats_window_fontsize {
237 for (values %{$STATWIDS}) {
238 $_->set_fontsize ($::CFG->{stat_fontsize});
239 }
240 }
241
242 sub set_gauge_window_fontsize {
243 for (map { $GAUGES->{$_} } grep { $_ ne 'win' } keys %{$GAUGES}) {
244 $_->set_fontsize ($::CFG->{gauge_fontsize});
245 }
246 }
247
248 sub make_gauge_window {
249 my $gh = int ($HEIGHT * $CFG->{gauge_size});
250 my $gw = int ($WIDTH * $CFG->{gauge_w_size});
251
252 my $win = new CFClient::UI::Frame (
253 y => $HEIGHT - $gh, x => $WIDTH - $gw, req_w => $gw, req_h => $gh
254 );
255 $win->add (my $vb = new CFClient::UI::VBox);
256
257 $vb->add (my $hb = new CFClient::UI::HBox expand => 1);
258 $hb->add (my $hg = new CFClient::UI::Gauge type => 'hp', expand => 1);
259 $hb->add (my $mg = new CFClient::UI::Gauge type => 'mana', expand => 1);
260 $hb->add (my $gg = new CFClient::UI::Gauge type => 'grace', expand => 1);
261 $hb->add (my $fg = new CFClient::UI::Gauge type => 'food', expand => 1);
262 $vb->add (my $exp = new CFClient::UI::Label valign => 0, align => -1, text => "XP:");
263 $vb->add (my $lvl = new CFClient::UI::Label valign => 0, align => -1, text => "Lvl:");
264 $vb->add (my $rng = new CFClient::UI::Label valign => 0, align => -1, text => "Rng:");
265
266
267 $GAUGES = {
268 exp => $exp, lvl => $lvl, win => $win, range => $rng,
269 food => $fg, mana => $mg, hp => $hg, grace => $gg
270 };
271 $win
272 }
273
274 sub make_stats_window {
275 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH * 2/5, y => 0, title => "Stats");
276
277 $tgw->add (my $vb = new CFClient::UI::VBox);
278 $vb->add (my $uhb = new CFClient::UI::HBox);
279 $uhb->add ($STATWIDS->{title} = new CFClient::UI::Label valign => 0, align => -1, text => "Title:", expand => 1);
280 $uhb->add ($STATWIDS->{map} = new CFClient::UI::Label valign => 0, align => -1, text => "Map:", expand => 1);
281
282 $vb->add (my $hb = new CFClient::UI::HBox expand => 1);
283
284 $hb->add (my $tbl = new CFClient::UI::Table expand => 1);
285
286 $tbl->add (0, 0, $STATWIDS->{st_str_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Str");
287 $tbl->add (0, 1, $STATWIDS->{st_dex_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Dex");
288 $tbl->add (0, 2, $STATWIDS->{st_con_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Con");
289 $tbl->add (0, 3, $STATWIDS->{st_int_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Int");
290 $tbl->add (0, 4, $STATWIDS->{st_wis_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Wis");
291 $tbl->add (0, 5, $STATWIDS->{st_pow_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Pow");
292 $tbl->add (0, 6, $STATWIDS->{st_cha_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Cha");
293
294 $tbl->add (1, 0, $STATWIDS->{st_str} = new CFClient::UI::Label valign => 0, align => +1, text => "");
295 $tbl->add (1, 1, $STATWIDS->{st_dex} = new CFClient::UI::Label valign => 0, align => +1, text => "");
296 $tbl->add (1, 2, $STATWIDS->{st_con} = new CFClient::UI::Label valign => 0, align => +1, text => "");
297 $tbl->add (1, 3, $STATWIDS->{st_int} = new CFClient::UI::Label valign => 0, align => +1, text => "");
298 $tbl->add (1, 4, $STATWIDS->{st_wis} = new CFClient::UI::Label valign => 0, align => +1, text => "");
299 $tbl->add (1, 5, $STATWIDS->{st_pow} = new CFClient::UI::Label valign => 0, align => +1, text => "");
300 $tbl->add (1, 6, $STATWIDS->{st_cha} = new CFClient::UI::Label valign => 0, align => +1, text => "");
301
302 $tbl->add (2, 0, $STATWIDS->{st_wc_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Wc");
303 $tbl->add (2, 1, $STATWIDS->{st_ac_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Ac");
304 $tbl->add (2, 2, $STATWIDS->{st_dam_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Dam");
305 $tbl->add (2, 3, $STATWIDS->{st_arm_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Arm");
306 $tbl->add (2, 4, $STATWIDS->{st_spd_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "Sp");
307 $tbl->add (2, 5, $STATWIDS->{st_wspd_lbl} = new CFClient::UI::Label valign => 0, align => +1, text => "WSp");
308
309 $tbl->add (3, 0, $STATWIDS->{st_wc} = new CFClient::UI::Label valign => 0, align => +1, text => "");
310 $tbl->add (3, 1, $STATWIDS->{st_ac} = new CFClient::UI::Label valign => 0, align => +1, text => "");
311 $tbl->add (3, 2, $STATWIDS->{st_dam} = new CFClient::UI::Label valign => 0, align => +1, text => "");
312 $tbl->add (3, 3, $STATWIDS->{st_arm} = new CFClient::UI::Label valign => 0, align => +1, text => "");
313 $tbl->add (3, 4, $STATWIDS->{st_spd} = new CFClient::UI::Label valign => 0, align => +1, text => "");
314 $tbl->add (3, 5, $STATWIDS->{st_wspd} = new CFClient::UI::Label valign => 0, align => +1, text => "");
315
316 $hb->add (my $tbl2 = new CFClient::UI::Table expand => 1);
317
318 my $row = 0;
319 my $col = 0;
320
321 for (qw/slow holyw conf fire depl magic
322 drain acid pois para deat phys
323 blind fear tund elec cold ghit/)
324 {
325 $tbl2->add ($col , $row,
326 $STATWIDS->{"res_$_"} =
327 new CFClient::UI::Label text => "0", align => +1, valign => 0
328 );
329 $tbl2->add ($col + 1, $row, new CFClient::UI::Image image => "ui/resist/resist_$_.png");
330
331 $row++;
332 if ($row % 6 == 0) {
333 $col += 2;
334 $row = 0;
335 }
336 }
337
338 &set_stats_window_fontsize;
339 update_stats_window ({});
340
341 $tgw
342 }
343
344 sub update_stats_window {
345 my ($stats) = @_;
346
347 # i love text protocols!!!
348 my $hp = $stats->{1} * 1;
349 my $hp_m = $stats->{2} * 1;
350 my $sp = $stats->{3} * 1;
351 my $sp_m = $stats->{4} * 1;
352 my $fo = $stats->{18} * 1;
353 my $fo_m = 999;
354 my $gr = $stats->{23} * 1;
355 my $gr_m = $stats->{24} * 1;
356
357 $GAUGES->{hp} ->set_value ($hp, $hp_m);
358 $GAUGES->{mana} ->set_value ($sp, $sp_m);
359 $GAUGES->{food} ->set_value ($fo, $fo_m);
360 $GAUGES->{grace} ->set_value ($gr, $gr_m);
361 $GAUGES->{exp} ->set_text ("XP: " . ($stats->{11} || $stats->{28}));
362 my $rng = $stats->{20};
363 $rng =~ s/^Range: //; # thank you so much dear server
364 $GAUGES->{range} ->set_text ("Rng: " . $rng);
365 $GAUGES->{lvl} ->set_text ("LVL: " . $stats->{12});
366 $STATWIDS->{title} ->set_text ("Title: " . $stats->{21});
367
368 if (0) { # this code can vanish, just wanted to preserver it for a checkin
369 $STATWIDS->{st_str} ->set_text (sprintf "S%d", $stats->{5});
370 $STATWIDS->{st_dex} ->set_text (sprintf "D%d", $stats->{8});
371 $STATWIDS->{st_con} ->set_text (sprintf "Co%d", $stats->{9});
372 $STATWIDS->{st_int} ->set_text (sprintf "I%d", $stats->{6});
373 $STATWIDS->{st_wis} ->set_text (sprintf "W%d", $stats->{7});
374 $STATWIDS->{st_pow} ->set_text (sprintf "P%d", $stats->{22});
375 $STATWIDS->{st_cha} ->set_text (sprintf "Ch%d", $stats->{10});
376 $STATWIDS->{st_wc} ->set_text (sprintf "Wc%d", $stats->{13});
377 $STATWIDS->{st_ac} ->set_text (sprintf "Ac%d", $stats->{14});
378 $STATWIDS->{st_dam} ->set_text (sprintf "Dam%d", $stats->{15});
379 $STATWIDS->{st_arm} ->set_text (sprintf "Arm%d", $stats->{16});
380 $STATWIDS->{st_spd} ->set_text (sprintf "Sp%.1f", $stats->{17});
381 $STATWIDS->{st_wspd}->set_text (sprintf "WSp%.1f", $stats->{19});
382 } else {
383 $STATWIDS->{st_str} ->set_text (sprintf "%d", $stats->{5});
384 $STATWIDS->{st_dex} ->set_text (sprintf "%d", $stats->{8});
385 $STATWIDS->{st_con} ->set_text (sprintf "%d", $stats->{9});
386 $STATWIDS->{st_int} ->set_text (sprintf "%d", $stats->{6});
387 $STATWIDS->{st_wis} ->set_text (sprintf "%d", $stats->{7});
388 $STATWIDS->{st_pow} ->set_text (sprintf "%d", $stats->{22});
389 $STATWIDS->{st_cha} ->set_text (sprintf "%d", $stats->{10});
390 $STATWIDS->{st_wc} ->set_text (sprintf "%d", $stats->{13});
391 $STATWIDS->{st_ac} ->set_text (sprintf "%d", $stats->{14});
392 $STATWIDS->{st_dam} ->set_text (sprintf "%d", $stats->{15});
393 $STATWIDS->{st_arm} ->set_text (sprintf "%d", $stats->{16});
394 $STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{17});
395 $STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{19});
396 }
397
398 my %tbl = (
399 phys => 100,
400 magic => 101,
401 fire => 102,
402 elec => 103,
403 cold => 104,
404 conf => 105,
405 acid => 106,
406 drain => 107,
407 ghit => 108,
408 pois => 109,
409 slow => 110,
410 para => 111,
411 tund => 112,
412 fear => 113,
413 deat => 115,
414 holyw => 116,
415 blind => 117
416 );
417
418 for (keys %tbl) {
419 $STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$tbl{$_}});
420 }
421
422 }
423
424 sub metaserver_dialog {
425 my $dialog = new CFClient::UI::FancyFrame
426 title => "Metaserver",
427 child => (my $vbox = new CFClient::UI::VBox);
428
429 $vbox->add ($dialog->{table} = new CFClient::UI::Table);
430
431 $dialog
432 }
433
434 sub update_metaserver {
435 my ($HOST) = @_;
436
437 status "fetching metaserver list...";
438
439 my $buf;
440
441 my $fh = new IO::Socket::INET PeerHost => $META_SERVER, Blocking => 0;
442
443 Event->io (fd => $fh, poll => 'r', cb => sub {
444 my $res = sysread $fh, $buf, 8192, length $buf;
445
446 if (!defined $res) {
447 $_[0]->w->cancel;
448 status "metaserver: $!";
449 } elsif ($res == 0) {
450 $_[0]->w->cancel;
451 status "server list retrieved";
452
453 my $table = $METASERVER->{table};
454
455 $table->clear;
456
457 my @col = qw(Use #Users Host Uptime Version Description);
458 $table->add ($_, 0, new CFClient::UI::Label align => 0, fg => [1, 1, 0], text => $col[$_])
459 for 0 .. $#col;
460
461 my @align = qw(1 0 1 1 -1);
462
463 my $y = 0;
464 for my $m (sort { $b->[3] <=> $a->[3] } map [split /\|/], split /\015?\012/, $buf) {
465 my ($ip, $last, $host, $users, $version, $desc, $ibytes, $obytes, $uptime) = @$m;
466
467 for ($desc) {
468 s/<br>/\n/gi;
469 s/<li>/\n· /gi;
470 s/<.*?>//sgi;
471 s/&/&amp;/g;
472 s/</&lt;/g;
473 s/>/&gt;/g;
474 }
475
476 $uptime = sprintf "%dd %02d:%02d:%02d",
477 (int $m->[8] / 86400),
478 (int $m->[8] / 3600) % 24,
479 (int $m->[8] / 60) % 60,
480 $m->[8] % 60;
481
482 $m = [$users, $host, $uptime, $version, $desc];
483
484 $y++;
485
486 $table->add (0, $y, new CFClient::UI::VBox children => [
487 (new CFClient::UI::Button text => " ", connect_activate => sub {
488 $HOST->set_text ($CFG->{host} = $host);
489 }),
490 (new CFClient::UI::Empty expand => 1),
491 ]);
492
493 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => 0.8)
494 for 0 .. $#$m;
495 }
496 }
497 });
498 }
499
500 sub server_setup {
501 my $dialog = new CFClient::UI::FancyFrame
502 title => "Server Setup",
503 child => (my $vbox = new CFClient::UI::VBox);
504
505 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
506 $table->add (0, 2, new CFClient::UI::Label valign => 0, align => 1, text => "Host:Port");
507
508 {
509 $table->add (1, 2, my $vbox = new CFClient::UI::VBox);
510
511 $vbox->add (my $HOST = new CFClient::UI::Entry expand => 1, text => $CFG->{host}, connect_changed => sub {
512 my ($self, $value) = @_;
513 $CFG->{host} = $value;
514 });
515
516 $METASERVER = metaserver_dialog;
517
518 $vbox->add (new CFClient::UI::Flopper expand => 1, text => "Metaserver", other => $METASERVER, connect_open => sub {
519 update_metaserver $HOST;
520 });
521 }
522
523 $table->add (0, 4, new CFClient::UI::Label valign => 0, align => 1, text => "Username");
524 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub {
525 my ($self, $value) = @_;
526 $CFG->{user} = $value;
527 });
528
529 $table->add (0, 5, new CFClient::UI::Label valign => 0, align => 1, text => "Password");
530 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub {
531 my ($self, $value) = @_;
532 $CFG->{password} = $value;
533 });
534
535 $table->add (0, 6, new CFClient::UI::Label valign => 0, align => 1, text => "Def. say cmd");
536 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry text => $CFG->{say_command}, connect_changed => sub {
537 my ($self, $value) = @_;
538 $CFG->{say_command} = $value;
539 });
540
541 $table->add (0, 7, new CFClient::UI::Label valign => 0, align => 1, text => "Map Size");
542 $table->add (1, 7, new CFClient::UI::Slider
543 req_w => 100,
544 range => [$CFG->{mapsize}, 10, 100 + 1, 1],
545 connect_changed => sub {
546 my ($self, $value) = @_;
547
548 $CFG->{mapsize} = $self->{range}[0] = $value = int $value;
549 },
550 );
551
552 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
553 start_game;
554 });
555
556 $dialog
557 }
558
559 sub message_window {
560 my $window = new CFClient::UI::FancyFrame
561 title => "Messages",
562 border_bg => [1, 1, 1, 0.5],
563 bg => [0.3, 0.3, 0.3, 0.8],
564 user_w => int $::WIDTH / 3,
565 user_h => int $::HEIGHT / 5,
566 child => (my $vbox = new CFClient::UI::VBox);
567
568 $vbox->add ($LOGVIEW = new CFClient::UI::TextView
569 expand => 1,
570 fontsize => $::CFG->{log_fontsize},
571 );
572
573 $vbox->add (my $input = new CFClient::UI::Entry
574 connect_focus_in => sub {
575 my ($input, $prev_focus) = @_;
576
577 delete $input->{refocus_map};
578
579 if ($prev_focus == $MAPWIDGET && $input->{auto_activated}) {
580 $input->{refocus_map} = 1;
581 }
582 delete $input->{auto_activated};
583 },
584 connect_activate => sub {
585 my ($input, $text) = @_;
586 $input->set_text ('');
587
588 if ($text =~ /^\/(.*)/) {
589 $::CONN->user_send ($1);
590 } else {
591 my $say_cmd = $::CFG->{say_command} || 'say';
592 $::CONN->user_send ("$say_cmd $text");
593 }
594 if ($input->{refocus_map}) {
595 delete $input->{refocus_map};
596 $MAPWIDGET->focus_in
597 }
598 },
599 connect_escape => sub {
600 $MAPWIDGET->focus_in
601 },
602 );
603
604 $CONSOLE = {
605 window => $window,
606 input => $input
607 };
608
609 $window
610 }
611
612 sub sdl_init {
613 CFClient::SDL_Init
614 and die "SDL::Init failed!\n";
615 }
616
617 sub video_init {
618 sdl_init;
619
620 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
621 $FULLSCREEN = $CFG->{fullscreen};
622 $FAST = $CFG->{fast};
623
624 CFClient::SDL_SetVideoMode $WIDTH, $HEIGHT, $FULLSCREEN
625 or die "SDL_SetVideoMode failed!\n";
626
627 $SDL_ACTIVE = 1;
628
629 $LAST_REFRESH = time - 0.01;
630
631 CFClient::gl_init;
632
633 $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
634
635 #############################################################################
636
637 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
638 $DEBUG_STATUS->show;
639
640 $STATUS_LINE = new CFClient::UI::Label
641 padding => 0,
642 y => $HEIGHT - $FONTSIZE * 1.8;
643 $STATUS_LINE->show;
644
645 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
646 padding => 0,
647 fontsize => 0.8,
648 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
649 $ALT_ENTER_MESSAGE->show;
650 $ALT_ENTER_MESSAGE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h});
651
652 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::MapWidget);
653 $MAPWIDGET->focus_in;
654 $MAPWIDGET->connect (activate_console => sub {
655 my ($mapwidget, $preset) = @_;
656
657 if ($CONSOLE) {
658 $CONSOLE->{input}->{auto_activated} = 1;
659 $CONSOLE->{input}->focus_in;
660
661 if ($preset && $CONSOLE->{input}->get_text eq '') {
662 $CONSOLE->{input}->set_text ($preset);
663 }
664 }
665 });
666
667 $CFClient::UI::ROOT->add ($BUTTONBAR = new CFClient::UI::HBox);
668
669 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Client Setup", other => client_setup);
670 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Server Setup", other => server_setup);
671 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => message_window);
672
673 $BUTTONBAR->add (new CFClient::UI::Button text => "Save Config", connect_activate => sub {
674 CFClient::write_cfg "$Crossfire::VARDIR/pclientrc";
675 status "Configuration Saved";
676 });
677
678 $CFClient::UI::ROOT->add (make_gauge_window); # XXX: this has to be set before make_stats_window as make_stats_window calls update_stats_window which updated the gauges also X-D
679 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Stats Window", other => make_stats_window);
680
681 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
682
683
684 }
685
686 sub video_shutdown {
687 $CFClient::UI::ROOT->{children} = [];
688 undef $SDL_ACTIVE;
689 }
690
691 my @bgmusic = qw(game1.ogg game2.ogg game3.ogg game5.ogg game6.ogg ross1.ogg ross2.ogg ross3.ogg ross4.ogg ross5.ogg); #d#
692 my $bgmusic;#TODO#hack#d#
693
694 sub audio_music_finished {
695 return unless $CFG->{bgm_enable};
696
697 # TODO: hack, do play loop and mood music
698 $bgmusic = new_from_file CFClient::MixMusic CFClient::find_rcfile "music/$bgmusic[0]";
699 $bgmusic->play (0);
700
701 push @bgmusic, shift @bgmusic;
702 }
703
704 sub audio_init {
705 if ($CFG->{audio_enable}) {
706 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") {
707 $SDL_MIXER = !CFClient::Mix_OpenAudio;
708 CFClient::Mix_AllocateChannels 8;
709 CFClient::MixMusic::volume $CFG->{bgm_volume} * 128;
710
711 audio_music_finished;
712
713 while (<$fh>) {
714 next if /^\s*#/;
715 next if /^\s*$/;
716
717 my ($file, $volume, $event) = split /\s+/, $_, 3;
718
719 push @SOUNDS, "$volume,$file";
720
721 $AUDIO_CHUNKS{"$volume,$file"} ||= do {
722 my $chunk = new_from_file CFClient::MixChunk CFClient::find_rcfile "sounds/$file";
723 $chunk->volume ($volume * 128 / 100);
724 $chunk
725 };
726 }
727 } else {
728 status "unable to open sound config: $!";
729 }
730 }
731 }
732
733 sub audio_shutdown {
734 CFClient::Mix_CloseAudio if $SDL_MIXER;
735 undef $SDL_MIXER;
736 @SOUNDS = ();
737 %AUDIO_CHUNKS = ();
738 }
739
740 my %animate_object;
741 my $animate_timer;
742
743 my $want_refresh;
744 my $can_refresh;
745
746 my $fps = 9;
747
748 sub force_refresh {
749 $fps = $fps * 0.95 + 1 / ($NOW - $LAST_REFRESH) * 0.05;
750 debug sprintf "%3.2f", $fps;
751
752 $want_refresh = 0;
753 $can_refresh = 0;
754
755 $CFClient::UI::ROOT->draw;
756
757 CFClient::SDL_GL_SwapBuffers;
758
759 $LAST_REFRESH = $NOW;
760 }
761
762 my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
763 $NOW = time;
764
765 ($SDL_CB{$_->{type}} || sub { warn "unhandled event $_->{type}" })->($_)
766 for CFClient::SDL_PollEvent;
767
768 if (%animate_object) {
769 $_->animate ($LAST_REFRESH - $NOW) for values %animate_object;
770 $want_refresh++;
771 }
772
773 if ($want_refresh) {
774 force_refresh;
775 } else {
776 $can_refresh = 1;
777 }
778 });
779
780 sub refresh {
781 $want_refresh++;
782 }
783
784 sub animation_start {
785 my ($widget) = @_;
786 $animate_object{$widget} = $widget;
787 }
788
789 sub animation_stop {
790 my ($widget) = @_;
791 delete $animate_object{$widget};
792 }
793
794 @conn::ISA = Crossfire::Protocol::;
795
796 sub conn::stats_update {
797 my ($self, $stats) = @_;
798
799 update_stats_window ($stats);
800 }
801
802 sub conn::user_send {
803 my ($self, $command) = @_;
804
805 $self->send_command ($command);
806 status $command;
807 }
808
809 sub conn::map_scroll {
810 my ($self, $dx, $dy) = @_;
811
812 $MAP->scroll ($dx, $dy);
813 }
814
815 sub conn::feed_map1a {
816 my ($self, $data) = @_;
817
818 # $self->Crossfire::Protocol::feed_map1a ($data);
819
820 $MAP->map1a_update ($data);
821 $MAPWIDGET->update;
822 }
823
824 sub conn::flush_map {
825 my ($self) = @_;
826
827 my $map_info = delete $self->{map_info}
828 or return;
829
830 my ($hash, $x, $y, $w, $h) = @$map_info;
831
832 my $data = $MAP->get_rect ($x, $y, $w, $h);
833 $MAPCACHE->put ($hash => Compress::LZF::compress $data);
834 #warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
835 }
836
837 sub conn::map_clear {
838 my ($self) = @_;
839
840 $self->flush_map;
841 delete $self->{neigh_map};
842
843 $MAP->clear;
844 }
845
846
847 sub conn::load_map($$$) {
848 my ($self, $hash, $x, $y) = @_;
849
850 if (defined (my $data = $MAPCACHE->get ($hash))) {
851 $data = Compress::LZF::decompress $data;
852 #warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
853 for my $id ($MAP->set_rect ($x, $y, $data)) {
854 my $data = $TILECACHE->get ($id)
855 or next;
856
857 $self->set_texture ($id => $data);
858 }
859 }
860 }
861
862 # this method does a "flood fill" into every tile direction
863 # it assumes that tiles are arranged in a rectangular grid,
864 # i.e. a map is the same as the left of the right map etc.
865 # failure to comply are harmless and result in display errors
866 # at worst.
867 sub conn::flood_fill {
868 my ($self, $gx, $gy, $path, $hash, $flags) = @_;
869
870 # the server does not allow map paths > 6
871 return if 6 <= length $path;
872
873 my ($x0, $y0, $x1, $y1) = @{$self->{neigh_rect}};
874
875 for (
876 [1, 0, -1],
877 [2, 1, 0],
878 [3, 0, 1],
879 [4, -1, 0],
880 ) {
881 my ($tile, $dx, $dy) = @$_;
882
883 my $gx = $gx + $dx;
884 my $gy = $gy + $dy;
885
886 next unless $flags & (1 << ($tile - 1));
887 next if $self->{neigh_grid}{$gx, $gy}++;
888
889 my $neigh = $self->{neigh_map}{$hash} ||= [];
890 if (my $info = $neigh->[$tile]) {
891 my ($flags, $x, $y, $w, $h, $hash) = @$info;
892
893 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
894 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
895
896 } else {
897 $self->send_mapinfo ("spatial $path$tile", sub {
898 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
899
900 return if $mode ne "spatial";
901
902 $x += $MAP->ox;
903 $y += $MAP->oy;
904
905 $self->load_map ($hash, $x, $y)
906 unless $self->{neigh_map}{$hash}[5]++;#d#
907
908 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
909
910 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
911 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
912 });
913 }
914 }
915 }
916
917 sub conn::map_change {
918 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
919
920 $self->flush_map;
921
922 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
923
924 my $mapmapw = 250;
925 my $mapmaph = 250;
926
927 $self->{neigh_rect} = [
928 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
929 $ox + $mapmapw * 0.5 + $w, $oy + $mapmapw * 0.5 + $h,
930 ];
931
932 delete $self->{neigh_grid};
933 $self->flood_fill (0, 0, "", $hash, $flags);
934
935 $x += $ox;
936 $y += $oy;
937
938 $self->{map_info} = [$hash, $x, $y, $w, $h];
939
940 my $map = $self->{map_info}[0];
941 $map =~ s/^.*?\/([^\/]+)$/\1/;
942 $STATWIDS->{map}->set_text ("Map: " . $map);
943
944 $self->load_map ($hash, $x, $y);
945 }
946
947 sub conn::face_find {
948 my ($self, $facenum, $face) = @_;
949
950 my $hash = "$face->{chksum},$face->{name}";
951
952 my $id = $FACEMAP->get ($hash);
953
954 unless ($id) {
955 # create new id for face
956 # i love transactions
957 for (1..100) {
958 my $txn = $CFClient::DB_ENV->txn_begin;
959 my $status = $FACEMAP->db_get (id => $id, BerkeleyDB::DB_RMW);
960 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
961 $id++;
962 if ($FACEMAP->put (id => $id) == 0
963 && $FACEMAP->put ($hash => $id) == 0) {
964 $txn->txn_commit;
965
966 goto gotid;
967 }
968 }
969 $txn->abort;
970 }
971
972 CFClient::fatal "maximum number of transaction retries reached - database problems?";
973 }
974
975 gotid:
976 $face->{id} = $id;
977 $MAP->set_face ($facenum => $id);
978 $TILECACHE->get ($id)
979 }
980
981 sub conn::face_update {
982 my ($self, $facenum, $face) = @_;
983
984 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
985
986 $self->set_texture ($face->{id} => delete $face->{image});
987 }
988
989 sub conn::set_texture {
990 my ($self, $id, $data) = @_;
991
992 $self->{texture}[$id] ||= do {
993 my $tex =
994 new_from_image CFClient::Texture
995 $data, minify => 1;
996
997 $MAP->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
998 $MAPWIDGET->update;
999
1000 $tex
1001 };
1002 }
1003
1004 sub conn::sound_play {
1005 my ($self, $x, $y, $soundnum, $type) = @_;
1006
1007 $SDL_MIXER
1008 or return;
1009
1010 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
1011 or return;
1012
1013 $chunk->play;
1014 # warn "sound $x,$y,$soundnum,$type\n";#d#
1015 }
1016
1017 sub conn::query {
1018 my ($self, $flags, $prompt) = @_;
1019
1020 #TODO, display dialog with relevant information
1021 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
1022 }
1023
1024 sub conn::drawinfo {
1025 my ($self, $color, $text) = @_;
1026
1027 my @color = (
1028 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
1029 [1.00, 1.00, 1.00],
1030 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
1031 [1.00, 0.00, 0.00],
1032 [1.00, 0.54, 0.00],
1033 [0.11, 0.56, 1.00],
1034 [0.93, 0.46, 0.00],
1035 [0.18, 0.54, 0.34],
1036 [0.56, 0.73, 0.56],
1037 [0.80, 0.80, 0.80],
1038 [0.55, 0.41, 0.13],
1039 [0.99, 0.77, 0.26],
1040 [0.74, 0.65, 0.41],
1041 );
1042
1043 $LOGVIEW->add_paragraph ($color[$color], $text);
1044 }
1045
1046 sub conn::spell_add {
1047 my ($self, $spell) = @_;
1048
1049 $MAPWIDGET->add_command ("invoke $spell->{name}", $spell->{message}, sub {
1050 });
1051 $MAPWIDGET->add_command ("cast $spell->{name}", $spell->{message}, sub {
1052 });
1053 }
1054
1055 sub conn::spell_delete {
1056 my ($self, $spell) = @_;
1057 }
1058
1059 sub conn::addme_success {
1060 my ($self) = @_;
1061
1062 for my $skill (values %{$self->{skill_info}}) {
1063 $MAPWIDGET->add_command ("ready_skill $skill", "", sub {
1064 });
1065 $MAPWIDGET->add_command ("use_skill $skill", "", sub {
1066 });
1067 }
1068 }
1069
1070 %SDL_CB = (
1071 CFClient::SDL_QUIT => sub {
1072 Event::unloop -1;
1073 },
1074 CFClient::SDL_VIDEORESIZE => sub {
1075 },
1076 CFClient::SDL_VIDEOEXPOSE => \&refresh,
1077 CFClient::SDL_ACTIVEEVENT => sub {
1078 # printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
1079 },
1080 CFClient::SDL_KEYDOWN => sub {
1081 if ($_[0]{mod} & CFClient::KMOD_ALT && $_[0]{sym} == 13) {
1082 # alt-enter
1083 video_shutdown;
1084 $CFG->{fullscreen} = !$CFG->{fullscreen};
1085 video_init;
1086 } else {
1087 CFClient::UI::feed_sdl_key_down_event ($_[0]);
1088 }
1089 },
1090 CFClient::SDL_KEYUP => \&CFClient::UI::feed_sdl_key_up_event,
1091 CFClient::SDL_MOUSEMOTION => \&CFClient::UI::feed_sdl_motion_event,
1092 CFClient::SDL_MOUSEBUTTONDOWN => \&CFClient::UI::feed_sdl_button_down_event,
1093 CFClient::SDL_MOUSEBUTTONUP => \&CFClient::UI::feed_sdl_button_up_event,
1094 CFClient::SDL_USEREVENT => \&audio_music_finished,
1095 );
1096
1097 #############################################################################
1098
1099 $SIG{INT} = $SIG{TERM} = sub { exit };
1100
1101 $TILECACHE = CFClient::db_table "tilecache";
1102 $FACEMAP = CFClient::db_table "facemap";
1103
1104 CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
1105
1106 my %DEF_CFG = (
1107 sdl_mode => 0,
1108 width => 640,
1109 height => 480,
1110 fullscreen => 0,
1111 fast => 0,
1112 fow_enable => 1,
1113 fow_intensity => 0.45,
1114 fow_smooth => 0,
1115 gui_fontsize => 1,
1116 log_fontsize => 1,
1117 gauge_fontsize => 1,
1118 gauge_size => 0.35,
1119 gauge_w_size => 0.14,
1120 stat_fontsize => 1,
1121 mapsize => 100,
1122 host => "crossfire.schmorp.de",
1123 say_command => 'say',
1124 audio_enable => 1,
1125 bgm_enable => 1,
1126 bgm_volume => 0.25,
1127 );
1128
1129 while (my ($k, $v) = each %DEF_CFG) {
1130 $CFG->{$k} = $v unless exists $CFG->{$k};
1131 }
1132
1133 sdl_init;
1134
1135 @SDL_MODES = reverse
1136 grep $_->[0] >= 640 && $_->[1] >= 480,
1137 CFClient::SDL_ListModes;
1138
1139 @SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
1140
1141 $CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
1142
1143 {
1144 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf);
1145
1146 CFClient::add_font $_ for @fonts;
1147 CFClient::set_font $fonts[0];
1148 }
1149
1150 video_init;
1151 audio_init;
1152
1153 Event::loop;
1154
1155 END { CFClient::SDL_Quit }
1156
1157