ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.177
Committed: Mon Apr 24 11:45:17 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.176: +5 -1 lines
Log Message:
fixed many minor bugs reported by pippijn

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.176 BEGIN {
7     if (%PAR::LibCache) {
8     @INC = grep ref, @INC; # weed out all paths except pars loader refs
9    
10     while (my ($filename, $zip) = each %PAR::LibCache) {
11     for ($zip->memberNames) {
12     next unless /^\/root\/(.*)/;
13     $zip->extractMember ($_, "$ENV{PAR_TEMP}/$1")
14     unless -e "$ENV{PAR_TEMP}/$1";
15     }
16     }
17    
18     unshift @INC, $ENV{PAR_TEMP};
19    
20     if ($^O eq "MSWin32") {
21     $ENV{GTK_RC_FILES} = "$ENV{PAR_TEMP}/share/themes/MS-Windows/gtk-2.0/gtkrc";
22     }
23     }
24     }
25    
26     # need to do it again because that pile of garbage called PAR nukes it before main
27     unshift @INC, $ENV{PAR_TEMP};
28    
29 root 1.87 use Time::HiRes 'time';
30     use Event;
31 root 1.13
32 elmex 1.11 use Crossfire;
33 root 1.2 use Crossfire::Protocol;
34    
35 root 1.116 use Compress::LZF;
36    
37 root 1.67 use CFClient;
38 root 1.72 use CFClient::UI;
39 root 1.141 use CFClient::MapWidget;
40 elmex 1.10
41 root 1.177 $Event::DIED = sub {
42     CFClient::error $_[1];
43     };
44 root 1.176
45 root 1.63 our $VERSION = '0.1';
46    
47 root 1.96 my $MAX_FPS = 60;
48 root 1.90 my $MIN_FPS = 5; # unused as of yet
49 root 1.63
50 root 1.112 our $META_SERVER = "crossfire.real-time.com:13326";
51    
52 root 1.116 our $FACEMAP;
53     our $TILECACHE;
54     our $MAPCACHE;
55 root 1.19
56 root 1.87 our $LAST_REFRESH;
57     our $NOW;
58    
59 elmex 1.10 our $CFG;
60 root 1.13 our $CONN;
61 root 1.85 our $FAST; # fast, low-quality mode, possibly useful for software-rendering
62 root 1.2
63 root 1.75 our @SDL_MODES;
64 root 1.30 our $WIDTH;
65     our $HEIGHT;
66     our $FULLSCREEN;
67 root 1.99 our $FONTSIZE;
68 root 1.30
69 root 1.168 our $FONT_PROP;
70     our $FONT_FIXED;
71    
72 root 1.95 our $MAP;
73 root 1.69 our $MAPWIDGET;
74 root 1.112 our $BUTTONBAR;
75     our $LOGVIEW;
76     our $CONSOLE;
77     our $METASERVER;
78 root 1.57
79 root 1.173 our $FLOORBOX;
80 elmex 1.125 our $GAUGES;
81 elmex 1.154 our $STATWIDS;
82 elmex 1.125
83 root 1.86 our $SDL_ACTIVE;
84 root 1.13 our %SDL_CB;
85 root 1.18
86 root 1.134 our $SDL_MIXER;
87     our @SOUNDS; # event => file mapping
88     our %AUDIO_CHUNKS; # audio files
89    
90 root 1.30 our $ALT_ENTER_MESSAGE;
91 root 1.51 our $STATUS_LINE;
92 root 1.64 our $DEBUG_STATUS;
93 root 1.30
94 root 1.82 sub status {
95     $STATUS_LINE->set_text ($_[0]);
96 root 1.128 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
97 root 1.82 }
98    
99     sub debug {
100     $DEBUG_STATUS->set_text ($_[0]);
101 root 1.128 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
102 root 1.82 }
103    
104 root 1.84 sub start_game {
105 root 1.85 status "logging in...";
106    
107 root 1.106 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
108 root 1.84
109 root 1.116 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
110    
111 root 1.95 $MAP = new CFClient::Map $mapsize, $mapsize;
112 root 1.112
113     my ($host, $port) = split /:/, $CFG->{host};
114 root 1.95
115 root 1.84 $CONN = new conn
116 root 1.112 host => $host,
117     port => $port || 13327,
118 root 1.84 user => $CFG->{user},
119     pass => $CFG->{password},
120     mapw => $mapsize,
121     maph => $mapsize,
122     ;
123    
124 root 1.85 status "login successful";
125    
126 root 1.84 CFClient::lowdelay fileno $CONN->{fh};
127     }
128    
129     sub stop_game {
130     undef $CONN;
131     }
132    
133 root 1.111 sub client_setup {
134 root 1.99 my $dialog = new CFClient::UI::FancyFrame
135 root 1.150 title => "Client Setup",
136 root 1.81 child => (my $vbox = new CFClient::UI::VBox);
137     $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
138    
139 root 1.140 $table->add (0, 0, new CFClient::UI::Label valign => 0, align => 1, text => "Video Mode");
140 root 1.81 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
141    
142     $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
143 root 1.150 $hbox->add (my $mode_label = new CFClient::UI::Label align => 0, valign => 0, height => 0.8, template => "9999x9999");
144 root 1.81
145     $mode_slider->connect (changed => sub {
146     my ($self, $value) = @_;
147    
148     $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
149     $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
150     });
151     $mode_slider->emit (changed => $mode_slider->{range}[0]);
152 root 1.82
153 elmex 1.158 my $row = 1;
154    
155     $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fullscreen");
156 elmex 1.166 $table->add (1, $row++, new CFClient::UI::CheckBox
157     state => $CFG->{fullscreen},
158     tooltip => "Bring the client into fullscreen mode",
159     connect_changed => sub {
160     my ($self, $value) = @_;
161     $CFG->{fullscreen} = $value;
162     }
163     );
164 root 1.85
165 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fast & Ugly");
166 root 1.163 $table->add (1, $row++, new CFClient::UI::CheckBox
167     state => $CFG->{fast},
168     tooltip => "Lower the visual quality considerably to speed up rendering.",
169     connect_changed => sub {
170     my ($self, $value) = @_;
171     $CFG->{fast} = $value;
172     }
173     );
174 root 1.89
175 root 1.169 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Map Scale");
176     $table->add (1, $row++, new CFClient::UI::Slider
177     range => [$CFG->{map_scale}, 0.25, 2, 0.05],
178     tooltip => "Enlarge or shrink the displayed map",
179     connect_changed => sub {
180     my ($self, $value) = @_;
181     $CFG->{map_scale} = 0.05 * int $value / 0.05;
182     }
183     );
184    
185 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Fog of War");
186 root 1.163 $table->add (1, $row++, new CFClient::UI::CheckBox
187     state => $CFG->{fow_enable},
188     tooltip => "Fog-of-War marks areas that cannot be seen by the player",
189     connect_changed => sub {
190     my ($self, $value) = @_;
191     $CFG->{fow_enable} = $value;
192     }
193     );
194 root 1.97
195 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "FoW Intensity");
196 root 1.163 $table->add (1, $row++, new CFClient::UI::Slider
197     range => [$CFG->{fow_intensity}, 0, 1 + 0.001, 0.001],
198     tooltip => "The higher the intensity, the lighter the Fog-of-War color",
199     connect_changed => sub {
200     my ($self, $value) = @_;
201     $CFG->{fow_intensity} = $value;
202     }
203     );
204 root 1.90
205 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "FoW Smooth");
206 root 1.163 $table->add (1, $row++, new CFClient::UI::CheckBox
207     state => $CFG->{fow_smooth},
208     tooltip => "Smooth the Fog-of-War a bit to make it more realistic",
209     connect_changed => sub {
210     my ($self, $value) = @_;
211     $CFG->{fow_smooth} = $value;
212     status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
213     }
214     );
215 root 1.91
216 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "GUI Fontsize");
217 root 1.163 $table->add (1, $row++, new CFClient::UI::Slider
218     range => [$CFG->{gui_fontsize}, 0.5, 2, 0.1],
219     tooltip => "The font size used by most GUI elements",
220     connect_changed => sub {
221     $CFG->{gui_fontsize} = 0.1 * int $_[1] * 10;
222 root 1.140 # $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
223 root 1.163 }
224     );
225 root 1.140
226 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Server Log Fontsize");
227 root 1.163 $table->add (1, $row++, new CFClient::UI::Slider
228     range => [$CFG->{log_fontsize}, 0.5, 2, 0.1],
229     tooltip => "The font size used by the server log window only",
230     connect_changed => sub {
231     $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = 0.1 * int $_[1] * 10);
232     }
233     );
234 root 1.105
235 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Stats Fontsize");
236 root 1.163
237     $table->add (1, $row++, new CFClient::UI::Slider
238     range => [$CFG->{stat_fontsize}, 0.5, 2, 0.1],
239     tooltip => "The font size used by the statistics window only",
240     connect_changed => sub {
241     $CFG->{stat_fontsize} = 0.1 * int $_[1] * 10;
242     &set_stats_window_fontsize;
243     }
244     );
245 elmex 1.157
246 root 1.163 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Gauge size");
247     $table->add (1, $row++, new CFClient::UI::Slider
248     range => [$CFG->{gauge_size}, 0.2, 0.8, 0.02],
249     tooltip => "Adjust the size of the stats gauges at the bottom right",
250     connect_changed => sub {
251     $CFG->{gauge_size} = $_[1];
252 root 1.164 my $h = int $HEIGHT * $CFG->{gauge_size};
253 root 1.163 $GAUGES->{win}->set_size ($WIDTH, $h);
254 root 1.164 $GAUGES->{win}->move (0, $HEIGHT - $h);
255 root 1.163 }
256     );
257 elmex 1.158
258     $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Gauge fontsize");
259 root 1.163 $table->add (1, $row++, new CFClient::UI::Slider
260     range => [$CFG->{gauge_fontsize}, 0.5, 2.0, 0.1],
261 elmex 1.166 tooltip => "Adjusts the fontsize of the gauges at the bottom right",
262 root 1.163 connect_changed => sub {
263     $CFG->{gauge_fontsize} = 0.1 * int $_[1] * 10;
264     &set_gauge_window_fontsize;
265     }
266     );
267 elmex 1.158
268 root 1.163 $table->add (1, $row++, new CFClient::UI::Button
269     expand => 1, align => 0, text => "Apply",
270 root 1.168 tooltip => "Apply the video settings",
271 root 1.163 connect_activate => sub {
272     video_shutdown ();
273     video_init ();
274     }
275     );
276 root 1.111
277 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Audio Enable");
278 root 1.163 $table->add (1, $row++, new CFClient::UI::CheckBox
279     state => $CFG->{audio_enable},
280     tooltip => "If enabled, sound effects and music will be played. If disabled, no audio will be used and the soundcard will not be opened.",
281     connect_changed => sub {
282     $CFG->{audio_enable} = $_[1];
283     }
284     );
285 root 1.140 # $table->add (0, 9, new CFClient::UI::Label valign => 0, align => 1, text => "Effects Volume");
286     # $table->add (1, 8, new CFClient::UI::Slider range => [$CFG->{effects_volume}, 0, 128, 1], connect_changed => sub {
287     # $CFG->{effects_volume} = $_[1];
288     # });
289 elmex 1.158 $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Background Music");
290     $table->add (1, $row++, my $hbox = new CFClient::UI::HBox);
291 root 1.163 $hbox->add (new CFClient::UI::CheckBox
292     expand => 1, state => $CFG->{bgm_enable},
293     tooltip => "Enable background music playing",
294     connect_changed => sub {
295     $CFG->{bgm_enable} = $_[1];
296     }
297     );
298     $hbox->add (new CFClient::UI::Slider
299     expand => 1, range => [$CFG->{bgm_volume}, 0, 1, 0.1],
300     tooltip => "The volume of the background music",
301     connect_changed => sub {
302     $CFG->{bgm_volume} = $_[1];
303     CFClient::MixMusic::volume $_[1] * 128;
304     }
305     );
306 root 1.140
307 root 1.163 $table->add (1, $row++, new CFClient::UI::Button
308     expand => 1, align => 0, text => "Apply",
309 root 1.168 tooltip => "Apply the audio settings",
310 root 1.163 connect_activate => sub {
311     audio_shutdown ();
312     audio_init ();
313     }
314     );
315 elmex 1.137
316 root 1.111 $dialog
317     }
318    
319 elmex 1.157 sub set_stats_window_fontsize {
320 elmex 1.158 for (values %{$STATWIDS}) {
321 elmex 1.157 $_->set_fontsize ($::CFG->{stat_fontsize});
322     }
323     }
324    
325 elmex 1.158 sub set_gauge_window_fontsize {
326     for (map { $GAUGES->{$_} } grep { $_ ne 'win' } keys %{$GAUGES}) {
327     $_->set_fontsize ($::CFG->{gauge_fontsize});
328     }
329 root 1.169
330     # local $GAUGES->{win}{parent};#d#
331     # use PApp::Util; open D, ">:utf8", "d"; print D PApp::Util::dumpval $GAUGES->{win}; close D;
332 elmex 1.158 }
333    
334     sub make_gauge_window {
335     my $gh = int ($HEIGHT * $CFG->{gauge_size});
336 elmex 1.161 # my $gw = int ($WIDTH * $CFG->{gauge_w_size});
337 elmex 1.158
338     my $win = new CFClient::UI::Frame (
339 root 1.169 y => $HEIGHT - $gh, x => 0, user_w => $WIDTH, user_h => $gh
340 elmex 1.158 );
341 root 1.173 $win->add (my $hbox = new CFClient::UI::HBox
342     children => [
343     (new CFClient::UI::HBox expand => 1),
344     ($FLOORBOX = new CFClient::UI::VBox),
345     (my $vbox = new CFClient::UI::VBox),
346     ],
347     );
348 elmex 1.158
349 root 1.173 $vbox->add (new CFClient::UI::HBox
350     expand => 1,
351     children => [
352     (new CFClient::UI::Empty expand => 1),
353     (my $hb = new CFClient::UI::HBox),
354     ],
355     );
356 elmex 1.161
357 root 1.172 $hb->add (my $hg = new CFClient::UI::Gauge type => 'hp',
358     tooltip => "Health points - depletes when you get wounded, refills when you heal or idle");
359     $hb->add (my $mg = new CFClient::UI::Gauge type => 'mana',
360     tooltip => "Spell points - deplete when you cast wizard spells, refills when you idle");
361     $hb->add (my $gg = new CFClient::UI::Gauge type => 'grace',
362     tooltip => "Grace points - deplete when you cast priest spells, refills when you pray");
363     $hb->add (my $fg = new CFClient::UI::Gauge type => 'food',
364     tooltip => "Food - depletes with time, faster when you heal or build mana, refills when you eat healthy food");
365    
366 root 1.173 $vbox->add (my $exp = new CFClient::UI::Label valign => 0, align => 1, can_hover => 1, can_events => 1,
367 root 1.172 tooltip => "Experience points and level - increases when you kill monsters or successfully use skills");
368 root 1.173 $vbox->add (my $rng = new CFClient::UI::Label valign => 0, align => 1, can_hover => 1, can_events => 1,
369 root 1.172 tooltip => "Ranged attack - how you attack when you press shift-cursor (spell, skill, weapon etc.)");
370 elmex 1.158
371     $GAUGES = {
372 elmex 1.166 exp => $exp, win => $win, range => $rng,
373 elmex 1.158 food => $fg, mana => $mg, hp => $hg, grace => $gg
374     };
375 root 1.169
376     &set_gauge_window_fontsize;
377    
378 elmex 1.158 $win
379     }
380    
381 elmex 1.154 sub make_stats_window {
382 elmex 1.156 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH * 2/5, y => 0, title => "Stats");
383 root 1.155
384     $tgw->add (my $vb = new CFClient::UI::VBox);
385 root 1.168 $vb->add ($STATWIDS->{title} = new CFClient::UI::Label valign => 0, align => -1, text => "Title:", expand => 1);
386     $vb->add ($STATWIDS->{map} = new CFClient::UI::Label valign => 0, align => -1, text => "Map:", expand => 1);
387 elmex 1.156
388     $vb->add (my $hb = new CFClient::UI::HBox expand => 1);
389    
390     $hb->add (my $tbl = new CFClient::UI::Table expand => 1);
391    
392 root 1.174 my $black = [0, 0, 0];
393    
394 root 1.168 $tbl->add (0, 0, $STATWIDS->{st_str} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
395     $tbl->add (0, 1, $STATWIDS->{st_dex} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
396     $tbl->add (0, 2, $STATWIDS->{st_con} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
397     $tbl->add (0, 3, $STATWIDS->{st_int} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
398     $tbl->add (0, 4, $STATWIDS->{st_wis} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
399     $tbl->add (0, 5, $STATWIDS->{st_pow} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
400     $tbl->add (0, 6, $STATWIDS->{st_cha} = new CFClient::UI::Label valign => 0, align => +1, template => "30");
401    
402 root 1.174 $tbl->add (1, 0, $STATWIDS->{st_str_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Str");
403     $tbl->add (1, 1, $STATWIDS->{st_dex_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Dex");
404     $tbl->add (1, 2, $STATWIDS->{st_con_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Con");
405     $tbl->add (1, 3, $STATWIDS->{st_int_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Int");
406     $tbl->add (1, 4, $STATWIDS->{st_wis_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Wis");
407     $tbl->add (1, 5, $STATWIDS->{st_pow_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Pow");
408     $tbl->add (1, 6, $STATWIDS->{st_cha_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Cha");
409 root 1.168
410     $tbl->add (2, 0, $STATWIDS->{st_wc} = new CFClient::UI::Label valign => 0, align => +1, template => "-120");
411     $tbl->add (2, 1, $STATWIDS->{st_ac} = new CFClient::UI::Label valign => 0, align => +1, template => "-120");
412     $tbl->add (2, 2, $STATWIDS->{st_dam} = new CFClient::UI::Label valign => 0, align => +1, template => "120");
413     $tbl->add (2, 3, $STATWIDS->{st_arm} = new CFClient::UI::Label valign => 0, align => +1, template => "120");
414     $tbl->add (2, 4, $STATWIDS->{st_spd} = new CFClient::UI::Label valign => 0, align => +1, template => "10.54");
415     $tbl->add (2, 5, $STATWIDS->{st_wspd} = new CFClient::UI::Label valign => 0, align => +1, template => "9");
416    
417 root 1.174 $tbl->add (3, 0, $STATWIDS->{st_wc_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Wc");
418     $tbl->add (3, 1, $STATWIDS->{st_ac_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Ac");
419     $tbl->add (3, 2, $STATWIDS->{st_dam_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Dam");
420     $tbl->add (3, 3, $STATWIDS->{st_arm_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Arm");
421     $tbl->add (3, 4, $STATWIDS->{st_spd_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "Sp");
422     $tbl->add (3, 5, $STATWIDS->{st_wspd_lbl} = new CFClient::UI::Label fg => $black, valign => 0, align => -1, text => "WSp");
423 root 1.155
424 elmex 1.158 $hb->add (my $tbl2 = new CFClient::UI::Table expand => 1);
425 root 1.155
426 elmex 1.156 my $row = 0;
427     my $col = 0;
428 root 1.155
429 elmex 1.166 my %resist_names = (
430     slow => "Slow",
431     holyw => "Holy Word",
432     conf => "Confusion",
433     fire => "Fire",
434     depl => "Depletion",
435     magic => "Magic",
436     drain => "Draining",
437     acid => "Acid",
438     pois => "Poison",
439     para => "Paralysation",
440     deat => "Death",
441     phys => "Physical",
442     blind => "Blind",
443     fear => "Fear",
444     tund => "Turn undead",
445     elec => "Electricity",
446     cold => "Cold",
447     ghit => "Ghost hit",
448     );
449 elmex 1.156 for (qw/slow holyw conf fire depl magic
450     drain acid pois para deat phys
451     blind fear tund elec cold ghit/)
452     {
453 root 1.164 $tbl2->add ($col, $row,
454 elmex 1.156 $STATWIDS->{"res_$_"} =
455 root 1.168 new CFClient::UI::Label
456     template => "-100%",
457     align => +1,
458     valign => 0,
459     tooltip => $resist_names{$_}
460     );
461     $tbl2->add ($col + 1, $row, new CFClient::UI::Image
462     can_hover => 1,
463     can_events => 1,
464     image => "ui/resist/resist_$_.png",
465     tooltip => $resist_names{$_}
466 elmex 1.156 );
467    
468     $row++;
469     if ($row % 6 == 0) {
470     $col += 2;
471     $row = 0;
472     }
473     }
474    
475 elmex 1.157 &set_stats_window_fontsize;
476 elmex 1.156 update_stats_window ({});
477 root 1.155
478 elmex 1.154 $tgw
479     }
480    
481 root 1.169 sub formsep {
482     reverse join ",", grep length, split /(...)/, reverse $_[0] * 1
483     }
484    
485 elmex 1.154 sub update_stats_window {
486     my ($stats) = @_;
487    
488 elmex 1.156 # i love text protocols!!!
489 root 1.169 my $hp = $stats->{Crossfire::Protocol::CS_STAT_HP} * 1;
490     my $hp_m = $stats->{Crossfire::Protocol::CS_STAT_MAXHP} * 1;
491     my $sp = $stats->{Crossfire::Protocol::CS_STAT_SP} * 1;
492     my $sp_m = $stats->{Crossfire::Protocol::CS_STAT_MAXSP} * 1;
493     my $fo = $stats->{Crossfire::Protocol::CS_STAT_FOOD} * 1;
494 elmex 1.156 my $fo_m = 999;
495 root 1.169 my $gr = $stats->{Crossfire::Protocol::CS_STAT_GRACE} * 1;
496     my $gr_m = $stats->{Crossfire::Protocol::CS_STAT_MAXGRACE} * 1;
497 elmex 1.156
498     $GAUGES->{hp} ->set_value ($hp, $hp_m);
499     $GAUGES->{mana} ->set_value ($sp, $sp_m);
500     $GAUGES->{food} ->set_value ($fo, $fo_m);
501     $GAUGES->{grace} ->set_value ($gr, $gr_m);
502 root 1.169 $GAUGES->{exp} ->set_text ("Exp: " . (formsep $stats->{Crossfire::Protocol::CS_STAT_EXP64})
503     . " (lvl " . ($stats->{Crossfire::Protocol::CS_STAT_LEVEL} * 1) . ")");
504     my $rng = $stats->{Crossfire::Protocol::CS_STAT_RANGE};
505 elmex 1.159 $rng =~ s/^Range: //; # thank you so much dear server
506     $GAUGES->{range} ->set_text ("Rng: " . $rng);
507 root 1.169 my $title = $stats->{Crossfire::Protocol::CS_STAT_TITLE};
508 elmex 1.165 $title =~ s/^Player: //;
509     $STATWIDS->{title} ->set_text ("Title: " . $title);
510 elmex 1.156
511 root 1.169 $STATWIDS->{st_str} ->set_text (sprintf "%d", $stats->{5});
512     $STATWIDS->{st_dex} ->set_text (sprintf "%d", $stats->{8});
513     $STATWIDS->{st_con} ->set_text (sprintf "%d", $stats->{9});
514     $STATWIDS->{st_int} ->set_text (sprintf "%d", $stats->{6});
515     $STATWIDS->{st_wis} ->set_text (sprintf "%d", $stats->{7});
516     $STATWIDS->{st_pow} ->set_text (sprintf "%d", $stats->{22});
517     $STATWIDS->{st_cha} ->set_text (sprintf "%d", $stats->{10});
518     $STATWIDS->{st_wc} ->set_text (sprintf "%d", $stats->{13});
519     $STATWIDS->{st_ac} ->set_text (sprintf "%d", $stats->{14});
520     $STATWIDS->{st_dam} ->set_text (sprintf "%d", $stats->{15});
521     $STATWIDS->{st_arm} ->set_text (sprintf "%d", $stats->{16});
522     $STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{Crossfire::Protocol::CS_STAT_SPEED});
523     $STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{Crossfire::Protocol::CS_STAT_WEAP_SP});
524 elmex 1.156
525     my %tbl = (
526     phys => 100,
527     magic => 101,
528     fire => 102,
529     elec => 103,
530     cold => 104,
531     conf => 105,
532     acid => 106,
533     drain => 107,
534     ghit => 108,
535     pois => 109,
536     slow => 110,
537     para => 111,
538     tund => 112,
539     fear => 113,
540 elmex 1.165 depl => 113,
541 elmex 1.156 deat => 115,
542     holyw => 116,
543     blind => 117
544 elmex 1.154 );
545 elmex 1.156
546     for (keys %tbl) {
547     $STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$tbl{$_}});
548     }
549    
550 elmex 1.154 }
551    
552 root 1.112 sub metaserver_dialog {
553     my $dialog = new CFClient::UI::FancyFrame
554 root 1.150 title => "Metaserver",
555 root 1.112 child => (my $vbox = new CFClient::UI::VBox);
556    
557     $vbox->add ($dialog->{table} = new CFClient::UI::Table);
558    
559     $dialog
560     }
561    
562     sub update_metaserver {
563 root 1.114 my ($HOST) = @_;
564    
565 root 1.112 status "fetching metaserver list...";
566    
567     my $buf;
568    
569     my $fh = new IO::Socket::INET PeerHost => $META_SERVER, Blocking => 0;
570    
571     Event->io (fd => $fh, poll => 'r', cb => sub {
572     my $res = sysread $fh, $buf, 8192, length $buf;
573    
574     if (!defined $res) {
575     $_[0]->w->cancel;
576     status "metaserver: $!";
577     } elsif ($res == 0) {
578     $_[0]->w->cancel;
579     status "server list retrieved";
580 root 1.113
581     my $table = $METASERVER->{table};
582    
583     $table->clear;
584    
585 root 1.114 my @col = qw(Use #Users Host Uptime Version Description);
586 root 1.113 $table->add ($_, 0, new CFClient::UI::Label align => 0, fg => [1, 1, 0], text => $col[$_])
587     for 0 .. $#col;
588    
589     my @align = qw(1 0 1 1 -1);
590    
591     my $y = 0;
592 root 1.114 for my $m (sort { $b->[3] <=> $a->[3] } map [split /\|/], split /\015?\012/, $buf) {
593 root 1.113 my ($ip, $last, $host, $users, $version, $desc, $ibytes, $obytes, $uptime) = @$m;
594    
595     for ($desc) {
596     s/<br>/\n/gi;
597     s/<li>/\n· /gi;
598     s/<.*?>//sgi;
599     s/&/&amp;/g;
600     s/</&lt;/g;
601     s/>/&gt;/g;
602     }
603    
604     $uptime = sprintf "%dd %02d:%02d:%02d",
605     (int $m->[8] / 86400),
606     (int $m->[8] / 3600) % 24,
607     (int $m->[8] / 60) % 60,
608     $m->[8] % 60;
609    
610     $m = [$users, $host, $uptime, $version, $desc];
611    
612     $y++;
613 root 1.114
614     $table->add (0, $y, new CFClient::UI::VBox children => [
615     (new CFClient::UI::Button text => " ", connect_activate => sub {
616     $HOST->set_text ($CFG->{host} = $host);
617     }),
618     (new CFClient::UI::Empty expand => 1),
619     ]);
620    
621 root 1.140 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => 0.8)
622 root 1.113 for 0 .. $#$m;
623     }
624 root 1.112 }
625     });
626     }
627    
628 root 1.111 sub server_setup {
629     my $dialog = new CFClient::UI::FancyFrame
630 root 1.150 title => "Server Setup",
631 root 1.111 child => (my $vbox = new CFClient::UI::VBox);
632 root 1.81
633 root 1.82 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
634 root 1.141 $table->add (0, 2, new CFClient::UI::Label valign => 0, align => 1, text => "Host:Port");
635 root 1.112
636     {
637     $table->add (1, 2, my $vbox = new CFClient::UI::VBox);
638    
639 elmex 1.166 $vbox->add (
640     my $HOST = new CFClient::UI::Entry
641     expand => 1,
642     text => $CFG->{host},
643     tooltip => "The hostname or ip address of the Crossfire(+) server to connect to",
644     connect_changed => sub {
645     my ($self, $value) = @_;
646     $CFG->{host} = $value;
647     }
648     );
649 root 1.112
650     $METASERVER = metaserver_dialog;
651 elmex 1.101
652 elmex 1.166 $vbox->add (new CFClient::UI::Flopper
653     expand => 1,
654     text => "Metaserver",
655     other => $METASERVER,
656 root 1.167 tooltip => "Show a list of avaible crossfire servers",
657 elmex 1.166 connect_open => sub {
658     update_metaserver $HOST;
659     }
660     );
661 root 1.112 }
662 root 1.81
663 root 1.141 $table->add (0, 4, new CFClient::UI::Label valign => 0, align => 1, text => "Username");
664 elmex 1.166 $table->add (1, 4, new CFClient::UI::Entry
665     text => $CFG->{user},
666     tooltip => "The name of your character on the server",
667     connect_changed => sub {
668     my ($self, $value) = @_;
669     $CFG->{user} = $value;
670     }
671     );
672 root 1.81
673 root 1.141 $table->add (0, 5, new CFClient::UI::Label valign => 0, align => 1, text => "Password");
674 elmex 1.166 $table->add (1, 5, new CFClient::UI::Entry
675     text => $CFG->{password},
676     hidden => 1,
677     tooltip => "The password for your character",
678     connect_changed => sub {
679     my ($self, $value) = @_;
680     $CFG->{password} = $value;
681     }
682     );
683 elmex 1.101
684 root 1.141 $table->add (0, 6, new CFClient::UI::Label valign => 0, align => 1, text => "Def. say cmd");
685 elmex 1.166 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry
686     text => $CFG->{say_command},
687     tooltip => "This is the command that will be used if you write a line in the message window entry. "
688     ."Usually you want to enter something like 'say' or 'shout' or 'gsay' here. "
689 root 1.173 ."But you could also set it to 'tell &lt;playername&gt;' to only chat with that user.",
690 elmex 1.166 connect_changed => sub {
691     my ($self, $value) = @_;
692     $CFG->{say_command} = $value;
693     }
694     );
695 root 1.81
696 root 1.141 $table->add (0, 7, new CFClient::UI::Label valign => 0, align => 1, text => "Map Size");
697 elmex 1.101 $table->add (1, 7, new CFClient::UI::Slider
698 root 1.81 req_w => 100,
699     range => [$CFG->{mapsize}, 10, 100 + 1, 1],
700 elmex 1.166 tooltip => "This is the size of the portion of the map update the server sends you. "
701     ."If you set this to a high value you will be able to see further for example.",
702 root 1.81 connect_changed => sub {
703     my ($self, $value) = @_;
704    
705     $CFG->{mapsize} = $self->{range}[0] = $value = int $value;
706     },
707     );
708    
709 elmex 1.101 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
710 root 1.84 start_game;
711 root 1.82 });
712    
713 root 1.98 $dialog
714 root 1.81 }
715 root 1.58
716 root 1.111 sub message_window {
717 root 1.99 my $window = new CFClient::UI::FancyFrame
718 root 1.150 title => "Messages",
719 root 1.99 border_bg => [1, 1, 1, 0.5],
720     bg => [0.3, 0.3, 0.3, 0.8],
721 root 1.124 user_w => int $::WIDTH / 3,
722     user_h => int $::HEIGHT / 5,
723 root 1.99 child => (my $vbox = new CFClient::UI::VBox);
724    
725 root 1.105 $vbox->add ($LOGVIEW = new CFClient::UI::TextView
726     expand => 1,
727 root 1.168 font => $FONT_FIXED,
728 root 1.105 fontsize => $::CFG->{log_fontsize},
729     );
730    
731 root 1.122 $vbox->add (my $input = new CFClient::UI::Entry
732 elmex 1.118 connect_focus_in => sub {
733     my ($input, $prev_focus) = @_;
734    
735     delete $input->{refocus_map};
736    
737     if ($prev_focus == $MAPWIDGET && $input->{auto_activated}) {
738     $input->{refocus_map} = 1;
739     }
740     delete $input->{auto_activated};
741     },
742 root 1.116 connect_activate => sub {
743 elmex 1.100 my ($input, $text) = @_;
744     $input->set_text ('');
745    
746     if ($text =~ /^\/(.*)/) {
747 root 1.123 $::CONN->user_send ($1);
748 elmex 1.100 } else {
749 elmex 1.101 my $say_cmd = $::CFG->{say_command} || 'say';
750 root 1.123 $::CONN->user_send ("$say_cmd $text");
751 elmex 1.100 }
752 elmex 1.118 if ($input->{refocus_map}) {
753     delete $input->{refocus_map};
754     $MAPWIDGET->focus_in
755     }
756 root 1.116 },
757     connect_escape => sub {
758 elmex 1.102 $MAPWIDGET->focus_in
759 root 1.116 },
760     );
761 elmex 1.102
762     $CONSOLE = {
763     window => $window,
764     input => $input
765     };
766 root 1.99
767     $window
768     }
769    
770 root 1.89 sub sdl_init {
771 root 1.145 CFClient::SDL_Init
772 root 1.89 and die "SDL::Init failed!\n";
773     }
774    
775 root 1.134 sub video_init {
776 root 1.89 sdl_init;
777    
778 root 1.84 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
779     $FULLSCREEN = $CFG->{fullscreen};
780 root 1.89 $FAST = $CFG->{fast};
781 root 1.84
782 root 1.145 CFClient::SDL_SetVideoMode $WIDTH, $HEIGHT, $FULLSCREEN
783     or die "SDL_SetVideoMode failed!\n";
784 root 1.2
785 root 1.86 $SDL_ACTIVE = 1;
786    
787 root 1.87 $LAST_REFRESH = time - 0.01;
788 root 1.45
789 root 1.67 CFClient::gl_init;
790 root 1.30
791 root 1.140 $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
792 root 1.39
793 root 1.52 #############################################################################
794    
795 root 1.99 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
796 root 1.140 $DEBUG_STATUS->show;
797 root 1.52
798 root 1.72 $STATUS_LINE = new CFClient::UI::Label
799 root 1.77 padding => 0,
800 root 1.140 y => $HEIGHT - $FONTSIZE * 1.8;
801     $STATUS_LINE->show;
802 root 1.51
803 root 1.72 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
804 root 1.123 padding => 0,
805 root 1.140 fontsize => 0.8,
806 root 1.123 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
807 root 1.140 $ALT_ENTER_MESSAGE->show;
808     $ALT_ENTER_MESSAGE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h});
809 root 1.30
810 root 1.141 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::MapWidget);
811 root 1.69 $MAPWIDGET->focus_in;
812 elmex 1.102 $MAPWIDGET->connect (activate_console => sub {
813 elmex 1.103 my ($mapwidget, $preset) = @_;
814    
815 elmex 1.102 if ($CONSOLE) {
816 elmex 1.118 $CONSOLE->{input}->{auto_activated} = 1;
817 elmex 1.102 $CONSOLE->{input}->focus_in;
818 elmex 1.103
819     if ($preset && $CONSOLE->{input}->get_text eq '') {
820     $CONSOLE->{input}->set_text ($preset);
821     }
822 elmex 1.102 }
823     });
824 root 1.81
825 root 1.111 $CFClient::UI::ROOT->add ($BUTTONBAR = new CFClient::UI::HBox);
826    
827     $BUTTONBAR->add (new CFClient::UI::Flopper text => "Client Setup", other => client_setup);
828     $BUTTONBAR->add (new CFClient::UI::Flopper text => "Server Setup", other => server_setup);
829     $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => message_window);
830    
831 root 1.167 $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
832     $BUTTONBAR->add (new CFClient::UI::Flopper text => "Stats Window", other => make_stats_window);
833    
834 root 1.111 $BUTTONBAR->add (new CFClient::UI::Button text => "Save Config", connect_activate => sub {
835     CFClient::write_cfg "$Crossfire::VARDIR/pclientrc";
836     status "Configuration Saved";
837     });
838 root 1.98
839 root 1.119 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
840 root 1.2 }
841    
842 root 1.134 sub video_shutdown {
843 root 1.111 $CFClient::UI::ROOT->{children} = [];
844 root 1.177 undef $CFClient::UI::GRAB;
845     undef $CFClient::UI::HOVER;
846 root 1.86 undef $SDL_ACTIVE;
847 root 1.134 }
848    
849 root 1.153 my @bgmusic = qw(game1.ogg game2.ogg game3.ogg game5.ogg game6.ogg ross1.ogg ross2.ogg ross3.ogg ross4.ogg ross5.ogg); #d#
850 root 1.135 my $bgmusic;#TODO#hack#d#
851    
852 root 1.153 sub audio_music_finished {
853     return unless $CFG->{bgm_enable};
854    
855     # TODO: hack, do play loop and mood music
856     $bgmusic = new_from_file CFClient::MixMusic CFClient::find_rcfile "music/$bgmusic[0]";
857     $bgmusic->play (0);
858    
859     push @bgmusic, shift @bgmusic;
860     }
861    
862 root 1.134 sub audio_init {
863 root 1.139 if ($CFG->{audio_enable}) {
864 root 1.134 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") {
865 root 1.146 $SDL_MIXER = !CFClient::Mix_OpenAudio;
866     CFClient::Mix_AllocateChannels 8;
867 root 1.149 CFClient::MixMusic::volume $CFG->{bgm_volume} * 128;
868 root 1.134
869 root 1.153 audio_music_finished;
870 root 1.135
871 root 1.134 while (<$fh>) {
872     next if /^\s*#/;
873     next if /^\s*$/;
874    
875     my ($file, $volume, $event) = split /\s+/, $_, 3;
876    
877     push @SOUNDS, "$volume,$file";
878    
879     $AUDIO_CHUNKS{"$volume,$file"} ||= do {
880 root 1.146 my $chunk = new_from_file CFClient::MixChunk CFClient::find_rcfile "sounds/$file";
881 root 1.134 $chunk->volume ($volume * 128 / 100);
882     $chunk
883     };
884     }
885     } else {
886     status "unable to open sound config: $!";
887     }
888     }
889     }
890    
891     sub audio_shutdown {
892 root 1.146 CFClient::Mix_CloseAudio if $SDL_MIXER;
893 root 1.134 undef $SDL_MIXER;
894     @SOUNDS = ();
895     %AUDIO_CHUNKS = ();
896 root 1.62 }
897    
898 root 1.87 my %animate_object;
899     my $animate_timer;
900    
901     my $want_refresh;
902     my $can_refresh;
903    
904     my $fps = 9;
905    
906 root 1.30 sub force_refresh {
907 root 1.87 $fps = $fps * 0.95 + 1 / ($NOW - $LAST_REFRESH) * 0.05;
908     debug sprintf "%3.2f", $fps;
909    
910 root 1.96 $want_refresh = 0;
911 root 1.87 $can_refresh = 0;
912    
913 root 1.111 $CFClient::UI::ROOT->draw;
914 root 1.1
915 root 1.148 CFClient::SDL_GL_SwapBuffers;
916 root 1.87
917     $LAST_REFRESH = $NOW;
918 root 1.1 }
919    
920 root 1.87 my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
921     $NOW = time;
922    
923 root 1.147 ($SDL_CB{$_->{type}} || sub { warn "unhandled event $_->{type}" })->($_)
924     for CFClient::SDL_PollEvent;
925 root 1.87
926     if (%animate_object) {
927     $_->animate ($LAST_REFRESH - $NOW) for values %animate_object;
928     $want_refresh++;
929     }
930    
931     if ($want_refresh) {
932     force_refresh;
933     } else {
934     $can_refresh = 1;
935     }
936     });
937 root 1.64
938 root 1.30 sub refresh {
939 root 1.87 $want_refresh++;
940 root 1.30 }
941    
942 root 1.45 sub animation_start {
943     my ($widget) = @_;
944 root 1.87 $animate_object{$widget} = $widget;
945 root 1.45 }
946    
947     sub animation_stop {
948     my ($widget) = @_;
949 root 1.87 delete $animate_object{$widget};
950 root 1.45 }
951    
952 root 1.2 @conn::ISA = Crossfire::Protocol::;
953 root 1.1
954 elmex 1.125 sub conn::stats_update {
955     my ($self, $stats) = @_;
956    
957 elmex 1.154 update_stats_window ($stats);
958 elmex 1.125 }
959    
960 root 1.89 sub conn::user_send {
961 root 1.88 my ($self, $command) = @_;
962    
963 root 1.123 $self->send_command ($command);
964 root 1.88 status $command;
965     }
966    
967 root 1.119 sub conn::map_scroll {
968     my ($self, $dx, $dy) = @_;
969    
970     $MAP->scroll ($dx, $dy);
971     }
972    
973 root 1.94 sub conn::feed_map1a {
974     my ($self, $data) = @_;
975    
976 root 1.95 # $self->Crossfire::Protocol::feed_map1a ($data);
977 root 1.1
978 root 1.95 $MAP->map1a_update ($data);
979 root 1.69 $MAPWIDGET->update;
980 root 1.1 }
981    
982 root 1.116 sub conn::flush_map {
983     my ($self) = @_;
984    
985     my $map_info = delete $self->{map_info}
986     or return;
987    
988     my ($hash, $x, $y, $w, $h) = @$map_info;
989    
990     my $data = $MAP->get_rect ($x, $y, $w, $h);
991     $MAPCACHE->put ($hash => Compress::LZF::compress $data);
992 root 1.152 #warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
993 root 1.116 }
994 root 1.1
995 root 1.2 sub conn::map_clear {
996 root 1.1 my ($self) = @_;
997    
998 root 1.116 $self->flush_map;
999 root 1.150 delete $self->{neigh_map};
1000 root 1.116
1001 root 1.95 $MAP->clear;
1002 root 1.1 }
1003    
1004 root 1.116
1005 root 1.119 sub conn::load_map($$$) {
1006     my ($self, $hash, $x, $y) = @_;
1007 root 1.115
1008 root 1.116 if (defined (my $data = $MAPCACHE->get ($hash))) {
1009     $data = Compress::LZF::decompress $data;
1010 root 1.152 #warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
1011 root 1.116 for my $id ($MAP->set_rect ($x, $y, $data)) {
1012     my $data = $TILECACHE->get ($id)
1013     or next;
1014    
1015     $self->set_texture ($id => $data);
1016     }
1017     }
1018 root 1.115 }
1019    
1020 root 1.152 # this method does a "flood fill" into every tile direction
1021     # it assumes that tiles are arranged in a rectangular grid,
1022     # i.e. a map is the same as the left of the right map etc.
1023     # failure to comply are harmless and result in display errors
1024     # at worst.
1025 root 1.119 sub conn::flood_fill {
1026 root 1.150 my ($self, $gx, $gy, $path, $hash, $flags) = @_;
1027 root 1.119
1028 root 1.121 # the server does not allow map paths > 6
1029 root 1.120 return if 6 <= length $path;
1030    
1031 root 1.150 my ($x0, $y0, $x1, $y1) = @{$self->{neigh_rect}};
1032    
1033     for (
1034     [1, 0, -1],
1035     [2, 1, 0],
1036     [3, 0, 1],
1037     [4, -1, 0],
1038     ) {
1039     my ($tile, $dx, $dy) = @$_;
1040    
1041     my $gx = $gx + $dx;
1042     my $gy = $gy + $dy;
1043    
1044 root 1.119 next unless $flags & (1 << ($tile - 1));
1045 root 1.150 next if $self->{neigh_grid}{$gx, $gy}++;
1046 root 1.119
1047 root 1.150 my $neigh = $self->{neigh_map}{$hash} ||= [];
1048     if (my $info = $neigh->[$tile]) {
1049     my ($flags, $x, $y, $w, $h, $hash) = @$info;
1050 root 1.119
1051 root 1.150 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
1052     if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
1053    
1054     } else {
1055     $self->send_mapinfo ("spatial $path$tile", sub {
1056     my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
1057 root 1.119
1058 root 1.150 return if $mode ne "spatial";
1059 root 1.119
1060 root 1.150 $x += $MAP->ox;
1061     $y += $MAP->oy;
1062    
1063     $self->load_map ($hash, $x, $y)
1064     unless $self->{neigh_map}{$hash}[5]++;#d#
1065 root 1.119
1066 root 1.150 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
1067 root 1.119
1068 root 1.150 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
1069     if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
1070     });
1071     }
1072 root 1.119 }
1073     }
1074    
1075     sub conn::map_change {
1076     my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
1077    
1078     $self->flush_map;
1079    
1080     my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
1081    
1082     my $mapmapw = 250;
1083     my $mapmaph = 250;
1084 root 1.150
1085     $self->{neigh_rect} = [
1086 root 1.152 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
1087     $ox + $mapmapw * 0.5 + $w, $oy + $mapmapw * 0.5 + $h,
1088 root 1.150 ];
1089 root 1.119
1090 root 1.150 delete $self->{neigh_grid};
1091     $self->flood_fill (0, 0, "", $hash, $flags);
1092 root 1.119
1093     $x += $ox;
1094     $y += $oy;
1095    
1096     $self->{map_info} = [$hash, $x, $y, $w, $h];
1097    
1098 elmex 1.158 my $map = $self->{map_info}[0];
1099     $map =~ s/^.*?\/([^\/]+)$/\1/;
1100     $STATWIDS->{map}->set_text ("Map: " . $map);
1101 elmex 1.157
1102 root 1.119 $self->load_map ($hash, $x, $y);
1103     }
1104    
1105 root 1.19 sub conn::face_find {
1106 root 1.116 my ($self, $facenum, $face) = @_;
1107    
1108     my $hash = "$face->{chksum},$face->{name}";
1109    
1110     my $id = $FACEMAP->get ($hash);
1111    
1112     unless ($id) {
1113     # create new id for face
1114     # i love transactions
1115     for (1..100) {
1116     my $txn = $CFClient::DB_ENV->txn_begin;
1117     my $status = $FACEMAP->db_get (id => $id, BerkeleyDB::DB_RMW);
1118     if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
1119     $id++;
1120     if ($FACEMAP->put (id => $id) == 0
1121     && $FACEMAP->put ($hash => $id) == 0) {
1122     $txn->txn_commit;
1123    
1124     goto gotid;
1125     }
1126     }
1127     $txn->abort;
1128     }
1129 root 1.19
1130 root 1.116 CFClient::fatal "maximum number of transaction retries reached - database problems?";
1131     }
1132 root 1.114
1133 root 1.116 gotid:
1134     $face->{id} = $id;
1135     $MAP->set_face ($facenum => $id);
1136 root 1.173 $self->{faceid}[$facenum] = $id;#d#
1137 root 1.116 $TILECACHE->get ($id)
1138 root 1.19 }
1139    
1140 root 1.2 sub conn::face_update {
1141 root 1.95 my ($self, $facenum, $face) = @_;
1142 root 1.19
1143 root 1.116 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
1144    
1145     $self->set_texture ($face->{id} => delete $face->{image});
1146     }
1147 root 1.1
1148 root 1.116 sub conn::set_texture {
1149     my ($self, $id, $data) = @_;
1150 root 1.95
1151 root 1.116 $self->{texture}[$id] ||= do {
1152     my $tex =
1153     new_from_image CFClient::Texture
1154 root 1.173 $data, minify => 1, mipmap => 1;
1155 root 1.116
1156     $MAP->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
1157     $MAPWIDGET->update;
1158    
1159     $tex
1160     };
1161 root 1.1 }
1162    
1163 root 1.134 sub conn::sound_play {
1164     my ($self, $x, $y, $soundnum, $type) = @_;
1165    
1166 root 1.139 $SDL_MIXER
1167     or return;
1168    
1169 root 1.134 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
1170     or return;
1171    
1172 root 1.146 $chunk->play;
1173 root 1.143 # warn "sound $x,$y,$soundnum,$type\n";#d#
1174 root 1.134 }
1175    
1176 root 1.170 my $LAST_QUERY; # server is stupid, stupid, stupid
1177    
1178 root 1.33 sub conn::query {
1179     my ($self, $flags, $prompt) = @_;
1180    
1181 root 1.170 $prompt = $LAST_QUERY unless length $prompt;
1182     $LAST_QUERY = $prompt;
1183    
1184     my $dialog = new CFClient::UI::FancyFrame
1185     title => "Query",
1186     child => my $vbox = new CFClient::UI::VBox;
1187    
1188     $vbox->add (new CFClient::UI::Label
1189     max_w => $::WIDTH * 0.4,
1190     text => $prompt);
1191    
1192     if ($flags & Crossfire::Protocol::CS_QUERY_YESNO) {
1193     $vbox->add (my $hbox = new CFClient::HBox);
1194     $hbox->add (new CFClient::Button
1195     text => "No",
1196     connect_activate => sub {
1197     $self->send ("reply n");
1198     $dialog->destroy;
1199     $MAPWIDGET->focus_in;
1200     }
1201     );
1202     $hbox->add (new CFClient::Button
1203     text => "Yes",
1204     connect_activate => sub {
1205     $self->send ("reply y");
1206     $dialog->destroy;
1207     $MAPWIDGET->focus_in;
1208     },
1209     );
1210    
1211     $dialog->focus_in;
1212    
1213     } elsif ($flags & Crossfire::Protocol::CS_QUERY_SINGLECHAR) {
1214     $dialog->{tooltip} = "Press a key (click on the entry to make sure it has keyboard focus)";
1215     $vbox->add (my $entry = new CFClient::UI::Entry
1216     connect_changed => sub {
1217     $self->send ("reply $_[1]");
1218     $dialog->destroy;
1219     $MAPWIDGET->focus_in;
1220     },
1221     );
1222    
1223     $entry->focus_in;
1224    
1225     } else {
1226     $dialog->{tooltip} = "Enter the reply and press return (click on the entry to make sure it has keyboard focus)";
1227    
1228     $vbox->add (my $entry = new CFClient::UI::Entry
1229     $flags & Crossfire::Protocol::CS_QUERY_HIDEINPUT ? (hiddenchar => "*") : (),
1230     connect_activate => sub {
1231     $self->send ("reply $_[1]");
1232     $dialog->destroy;
1233     $MAPWIDGET->focus_in;
1234     },
1235     );
1236    
1237     $entry->focus_in;
1238     }
1239    
1240     $dialog->show;
1241 root 1.33 }
1242    
1243 root 1.99 sub conn::drawinfo {
1244     my ($self, $color, $text) = @_;
1245    
1246     my @color = (
1247     [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
1248     [1.00, 1.00, 1.00],
1249 root 1.117 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
1250 root 1.99 [1.00, 0.00, 0.00],
1251     [1.00, 0.54, 0.00],
1252     [0.11, 0.56, 1.00],
1253     [0.93, 0.46, 0.00],
1254     [0.18, 0.54, 0.34],
1255     [0.56, 0.73, 0.56],
1256     [0.80, 0.80, 0.80],
1257     [0.55, 0.41, 0.13],
1258     [0.99, 0.77, 0.26],
1259     [0.74, 0.65, 0.41],
1260     );
1261    
1262     $LOGVIEW->add_paragraph ($color[$color], $text);
1263     }
1264    
1265 root 1.144 sub conn::spell_add {
1266 root 1.143 my ($self, $spell) = @_;
1267    
1268 root 1.171 # TODO
1269     # create a widget dynamically, using spell face (CF::Protocol downloads them)
1270     $MAPWIDGET->add_command ("invoke $spell->{name}", $spell->{message});
1271     $MAPWIDGET->add_command ("cast $spell->{name}", $spell->{message});
1272 root 1.144 }
1273    
1274     sub conn::spell_delete {
1275     my ($self, $spell) = @_;
1276     }
1277    
1278     sub conn::addme_success {
1279     my ($self) = @_;
1280    
1281     for my $skill (values %{$self->{skill_info}}) {
1282 root 1.171 $MAPWIDGET->add_command ("ready_skill $skill", "Ready the skill '$skill'");
1283     $MAPWIDGET->add_command ("use_skill $skill", "Immediately use the skill '$skill'");
1284 root 1.144 }
1285 root 1.143 }
1286    
1287 root 1.173 sub update_floorbox {
1288     $CFClient::UI::ROOT->on_refresh ($FLOORBOX => sub {
1289     $FLOORBOX->clear;
1290     $FLOORBOX->add (new CFClient::UI::Empty expand => 1);
1291    
1292     my @items = values %{ $CONN->{container}{0} };
1293    
1294     # we basically have to use the same sorting as everybody else
1295     @items = sort { $a->{type} <=> $b->{type} } @items;
1296    
1297     for my $item (reverse @items) {
1298     my $desc = $item->{nrof} < 2
1299     ? $item->{name}
1300     : "$item->{nrof} $item->{name_pl}";
1301     # todo: animation widget, face widget, weight(?) etc.
1302     $FLOORBOX->add (my $hbox = new CFClient::UI::HBox
1303     tooltip => (CFClient::UI::Label->escape ($desc)
1304     . "\n<small>leftclick - pick up\nmiddle click - apply\nrightclick - menu</small>"),
1305     can_hover => 1,
1306     can_events => 1,
1307 root 1.174 connect_button_down => sub {
1308     my ($self, $ev, $x, $y) = @_;
1309    
1310     # todo: maybe put examine on 1? but should just be a tooltip :(
1311     if ($ev->{button} == 1) {
1312     $CONN->send ("move $CONN->{player}{tag} $item->{tag} 0");
1313     } elsif ($ev->{button} == 2) {
1314     $CONN->send ("apply $item->{tag}");
1315     } elsif ($ev->{button} == 3) {
1316     # examine, lock, mark, maybe other things
1317     warn "MENU not implemented yet\n";
1318     }
1319    
1320     1
1321     },
1322 root 1.173 );
1323    
1324     $hbox->add (new CFClient::UI::Face
1325 root 1.175 can_events => 0,
1326     face => $item->{face},
1327     anim => $item->{anim},
1328     animspeed => $item->{animspeed},
1329 root 1.173 );
1330    
1331     $hbox->add (new CFClient::UI::Label
1332 root 1.175 can_events => 0,
1333     text => $desc,
1334 root 1.173 );
1335     }
1336     });
1337     refresh;
1338     }
1339    
1340 root 1.169 sub conn::container_add {
1341     my ($self, $id, $items) = @_;
1342    
1343 root 1.173 update_floorbox if $id == 0;
1344 root 1.169 # $self-<{player}{tag} => player inv
1345     #use PApp::Util; warn PApp::Util::dumpval $self->{container}{$self->{player}{tag}};
1346     }
1347    
1348     sub conn::container_clear {
1349     my ($self, $id) = @_;
1350 root 1.173
1351     update_floorbox if $id == 0;
1352 root 1.169 # use PApp::Util; warn PApp::Util::dumpval $self->{container}{0};
1353     }
1354    
1355 root 1.173 sub conn::item_delete {
1356     my ($self, @items) = @_;
1357    
1358     for (@items) {
1359     update_floorbox if $_->{container} == 0;
1360     }
1361     }
1362    
1363     sub conn::item_update {
1364     my ($self, $item) = @_;
1365    
1366     update_floorbox if $item->{container} == 0;
1367     }
1368    
1369 root 1.87 %SDL_CB = (
1370 root 1.145 CFClient::SDL_QUIT => sub {
1371 root 1.87 Event::unloop -1;
1372     },
1373 root 1.145 CFClient::SDL_VIDEORESIZE => sub {
1374 root 1.87 },
1375 root 1.153 CFClient::SDL_VIDEOEXPOSE => \&refresh,
1376     CFClient::SDL_ACTIVEEVENT => sub {
1377     # printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
1378 root 1.87 },
1379 root 1.145 CFClient::SDL_KEYDOWN => sub {
1380 root 1.147 if ($_[0]{mod} & CFClient::KMOD_ALT && $_[0]{sym} == 13) {
1381 root 1.87 # alt-enter
1382 root 1.134 video_shutdown;
1383 root 1.99 $CFG->{fullscreen} = !$CFG->{fullscreen};
1384 root 1.134 video_init;
1385 root 1.87 } else {
1386 root 1.147 CFClient::UI::feed_sdl_key_down_event ($_[0]);
1387 elmex 1.23 }
1388 root 1.87 },
1389 root 1.153 CFClient::SDL_KEYUP => \&CFClient::UI::feed_sdl_key_up_event,
1390     CFClient::SDL_MOUSEMOTION => \&CFClient::UI::feed_sdl_motion_event,
1391     CFClient::SDL_MOUSEBUTTONDOWN => \&CFClient::UI::feed_sdl_button_down_event,
1392     CFClient::SDL_MOUSEBUTTONUP => \&CFClient::UI::feed_sdl_button_up_event,
1393     CFClient::SDL_USEREVENT => \&audio_music_finished,
1394 root 1.87 );
1395 elmex 1.23
1396 root 1.1 #############################################################################
1397    
1398 root 1.131 $SIG{INT} = $SIG{TERM} = sub { exit };
1399    
1400 root 1.116 $TILECACHE = CFClient::db_table "tilecache";
1401     $FACEMAP = CFClient::db_table "facemap";
1402 root 1.114
1403 root 1.67 CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
1404 elmex 1.10
1405 root 1.90 my %DEF_CFG = (
1406 root 1.105 sdl_mode => 0,
1407 root 1.90 width => 640,
1408     height => 480,
1409 root 1.105 fullscreen => 0,
1410 root 1.90 fast => 0,
1411 root 1.169 map_scale => 0.5,
1412 root 1.97 fow_enable => 1,
1413 root 1.90 fow_intensity => 0.45,
1414 root 1.92 fow_smooth => 0,
1415 root 1.140 gui_fontsize => 1,
1416 elmex 1.157 log_fontsize => 1,
1417 elmex 1.158 gauge_fontsize => 1,
1418     gauge_size => 0.35,
1419 elmex 1.157 stat_fontsize => 1,
1420 root 1.90 mapsize => 100,
1421     host => "crossfire.schmorp.de",
1422 elmex 1.101 say_command => 'say',
1423 root 1.139 audio_enable => 1,
1424     bgm_enable => 1,
1425 root 1.149 bgm_volume => 0.25,
1426 root 1.90 );
1427    
1428     while (my ($k, $v) = each %DEF_CFG) {
1429     $CFG->{$k} = $v unless exists $CFG->{$k};
1430     }
1431 elmex 1.12
1432 root 1.89 sdl_init;
1433 root 1.87
1434 root 1.93 @SDL_MODES = reverse
1435     grep $_->[0] >= 640 && $_->[1] >= 480,
1436 root 1.145 CFClient::SDL_ListModes;
1437 root 1.87
1438 root 1.89 @SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
1439    
1440     $CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
1441    
1442 root 1.65 {
1443 root 1.168 my @fonts = map CFClient::find_rcfile "fonts/$_", qw(
1444     DejaVuSans.ttf
1445     DejaVuSansMono.ttf
1446     DejaVuSans-Bold.ttf
1447     DejaVuSansMono-Bold.ttf
1448     DejaVuSans-Oblique.ttf
1449     DejaVuSansMono-Oblique.ttf
1450     DejaVuSans-BoldOblique.ttf
1451     DejaVuSansMono-BoldOblique.ttf
1452     );
1453 root 1.65
1454 root 1.67 CFClient::add_font $_ for @fonts;
1455 root 1.168
1456     $FONT_PROP = new_from_file CFClient::Font $fonts[0];
1457     $FONT_FIXED = new_from_file CFClient::Font $fonts[1];
1458    
1459     $FONT_PROP->make_default;
1460 root 1.65 }
1461 root 1.40
1462 root 1.134 video_init;
1463     audio_init;
1464 root 1.122
1465 root 1.87 Event::loop;
1466 root 1.19
1467 root 1.148 END { CFClient::SDL_Quit }
1468 root 1.131
1469 root 1.82