ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Protocol.pm
Revision: 1.191
Committed: Tue Mar 25 19:28:54 2008 UTC (16 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-0_9968
Changes since 1.190: +7 -7 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package DC::Protocol;
2
3 use utf8;
4 use strict;
5
6 use Deliantra::Protocol::Constants;
7
8 use DC;
9 use DC::DB;
10 use DC::UI;
11 use DC::Pod;
12 use DC::Macro;
13 use DC::Item;
14
15 use base 'Deliantra::Protocol::Base';
16
17 sub new {
18 my ($class, %arg) = @_;
19
20 my $self = $class->SUPER::new (%arg,
21 setup_req => {
22 extmap => 1,
23 excmd => 1,
24 widget => 2,
25 %{$arg{setup_req} || {}},
26 },
27 );
28
29 $self->{map_widget}->clr_commands;
30
31 my @cmd_help = map {
32 $_->[DC::Pod::N_KW][0] =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x
33 or die "unparseable command help: $_->[DC::Pod::N_KW][0]";
34
35 my $cmd = $1;
36 my @args = split /\|/, $2;
37 @args = (".*") unless @args;
38
39 my (undef, @par) = DC::Pod::section_of $_;
40 my $text = DC::Pod::as_label @par;
41
42 $_ = $_ eq ".*" ? "" : " $_"
43 for @args;
44
45 map ["$cmd$_", $text],
46 sort { (length $a) <=> (length $b) }
47 @args
48 } sort { $a->[DC::Pod::N_PAR] <=> $b->[DC::Pod::N_PAR] }
49 DC::Pod::find command => "*";
50
51 $self->{json_coder}
52 ->convert_blessed
53 ->filter_json_single_key_object ("\fw" => sub {
54 $self->{widget}{$_[0]}
55 })
56 ->filter_json_single_key_object ("\fc" => sub {
57 my ($id) = @_;
58 sub {
59 $self->send_exti_msg (w_e => $id, @_);
60 }
61 });
62
63 # destroy widgets on logout
64 $self->{on_stop_game_guard} = $self->{map_widget}{root}->connect (stop_game => sub {
65 for my $ws (values %{delete $self->{widgetset} || {}}) {
66 $_->destroy
67 for values %{delete $ws->{w} || {}};
68 }
69 });
70
71 $self->{map_widget}->add_command (@$_)
72 for @cmd_help;
73
74 {
75 $self->{dialogue} = my $tex = new_from_file DC::Texture
76 DC::find_rcfile "dialogue.png", minify => 1, mipmap => 1;
77 $self->{map}->set_texture (1, @$tex{qw(name w h s t)}, @{$tex->{minified}});
78 }
79
80 {
81 $self->{noface} = my $tex = new_from_file DC::Texture
82 DC::find_rcfile "noface.png", minify => 1, mipmap => 1;
83 $self->{map}->set_texture (2, @$tex{qw(name w h s t)}, @{$tex->{minified}});
84 }
85
86 $self->{open_container} = 0;
87
88 # per server
89 $self->{mapcache} = "mapcache_$self->{host}_$self->{port}";
90
91 $self
92 }
93
94 sub update_fx_want {
95 my ($self) = @_;
96
97 $self->send_exti_msg (fx_want => {
98 3 => !!$::CFG->{bgm_enable}, # FT_MUSIC
99 5 => !!$::CFG->{audio_enable}, # FT_SOUND
100 6 => 1, # FT_RSRC
101 });
102 }
103
104 sub ext_capabilities {
105 my ($self, %cap) = @_;
106
107 $self->update_fx_want;
108
109 $self->send_exti_req (resource => "exp_table", sub {
110 my ($exp_table) = @_;
111
112 $self->register_face_handler ($exp_table, sub {
113 my ($face) = @_;
114
115 $self->{exp_table} = $self->{json_coder}->decode (delete $face->{data});
116 $_->() for values %{ $self->{on_exp_update} || {} };
117 });
118
119 ()
120 });
121
122 if (my $ts = $cap{tileset}) {
123 if (my ($default) = grep $_->[2] & 1, @$ts) {
124 $self->{tileset} = $default;
125 $self->{tilesize} = $default->[3];
126 $self->setup_req (tileset => $default->[0]);
127
128 my $w = int $self->{mapw} * 32 / $self->{tilesize};
129 my $h = int $self->{maph} * 32 / $self->{tilesize};
130
131 $self->setup_req (mapsize => "${w}x${h}");
132 }
133 }
134 }
135
136 sub ext_ambient_music {
137 my ($self, $songs) = @_;
138 &::audio_music_set_ambient ($songs);
139 }
140
141 #############################################################################
142
143 sub widget_associate {
144 my ($self, $ws, $id, $widget) = @_;
145
146 $widget ||= new DC::UI::Bin;
147
148 $widget->{s_id} = $id;
149 $self->{widget}{$id} = $widget;
150
151 if ($ws) {
152 $widget->{s_ws} = $ws;
153 $self->{widgetset}{$ws}{w}{$id} = $widget;
154 }
155
156 $widget->connect (on_destroy => sub {
157 my ($widget) = @_;
158
159 delete $self->{widget}{$widget->{s_id}};
160 delete $self->{widgetset}{$widget->{s_ws}}{$widget->{s_id}}
161 if exists $widget->{s_ws};
162 });
163 }
164
165 # widgetset new
166 sub ext_ws_n {
167 my ($self, $id) = @_;
168
169 $self->{widgetset}{$id} = {
170 w => {},
171 };
172 }
173
174 # widgetset destroy
175 sub ext_ws_d {
176 my ($self, $id) = @_;
177
178 my $ws = delete $self->{widgetset}{$id}
179 or return;
180
181 $_->destroy
182 for values %{$ws->{w}};
183 }
184
185 # widgetset create
186 sub ext_ws_c {
187 my ($self, $ws, $id, $class, $args) = @_;
188
189 $self->widget_associate (
190 $ws, $id => scalar eval {
191 local $SIG{__DIE__};
192 "DC::UI::$class"->new (%$args)
193 }
194 );
195 }
196
197 # widgetset create template
198 sub ext_ws_ct {
199 my ($self, $ws, $type, $template, $done_cb, $cfg) = @_;
200
201 $done_cb ||= sub { };
202
203 my $parse_list; $parse_list = sub {
204 my ($list) = @_;
205 my @w;
206
207 while (@$list) {
208 my ($class, $args) = splice @$list, 0, 2;
209 my $name = delete $args->{s_id};
210 my $cl = delete $args->{s_cl};
211 my $cfg = delete $cfg->{$name};
212 my $id = delete $cfg->{id};
213 my $w = eval { "DC::UI::$class"->new (%$args, %{ $cfg || {} }) }
214 or next;
215
216 $self->widget_associate ($ws, $id, $w)
217 if $id;
218
219 $w->add ($parse_list->($cl))
220 if $cl;
221
222 push @w, $w;
223 }
224
225 @w
226 };
227
228 # either array reference, or face #
229 if ($type eq "inline") {
230 $done_cb->();
231 $parse_list->($template);
232 } elsif ($type eq "face") {
233 my $handler; $handler = $self->register_face_handler ($template, sub {
234 my ($face) = @_;
235
236 undef $handler;
237 $done_cb->();
238 $parse_list->($self->{json_coder}->decode ($face->{data}));
239 });
240 } else {
241 $done_cb->(0);
242 }
243 }
244
245 # widgetset associate
246 sub ext_ws_a {
247 my ($self, %ass) = @_;
248
249 # everything that has a name, wether conceivably useful or not
250 my %wkw = (
251 root => $DC::UI::ROOT,
252 tooltip => $DC::UI::TOOLTIP,
253
254 mapwidget => $::MAPWIDGET,
255 buttonbar => $::BUTTONBAR,
256 metaserver => $::METASERVER,
257 buttonbar => $::BUTTONBAR,
258 login_button => $::LOGIN_BUTTON,
259 quit_dialog => $::QUIT_DIALOG,
260 host_entry => $::HOST_ENTRY,
261 metaserver => $::METASERVER,
262 server_info => $::SERVER_INFO,
263
264 setup_dialog => $::SETUP_DIALOG,
265 setup_notebook => $::SETUP_NOTEBOOK,
266 setup_server => $::SETUP_SERVER,
267 setup_keyboard => $::SETUP_KEYBOARD,
268
269 pl_notebook => $::PL_NOTEBOOK,
270 pl_window => $::PL_WINDOW,
271 inventory_page => $::INVENTORY_PAGE,
272 stats_page => $::STATS_PAGE,
273 skill_page => $::SKILL_PAGE,
274 spell_page => $::SPELL_PAGE,
275 spell_list => $::SPELL_LIST,
276
277 floorbox => $::FLOORBOX,
278 help_window => $::HELP_WINDOW,
279 message_window => $::MESSAGE_WINDOW,
280 message_dist => $::MESSAGE_DIST,
281 statusbox => $::SDTATUSBOX,
282
283 inv => $::INV,
284 invr => $::INVR,
285 invr_hb => $::INVR_HB,
286 );
287
288 while (my ($id, $name) = each %ass) {
289 $self->widget_associate (undef, $id => $wkw{$name});
290 }
291 }
292
293 # widget call
294 sub ext_w_c {
295 my ($self, $id, $rcb, $method, @args) = @_;
296
297 my $w = $self->{widget}{$id}
298 or return;
299
300 if ($rcb) {
301 $rcb->($w->$method (@args));
302 } else {
303 $w->$method (@args);
304 }
305 }
306
307 # widget set
308 sub ext_w_s {
309 my ($self, $id, $attr) = @_;
310
311 my $w = $self->{widget}{$id}
312 or return;
313
314 for (my $i = 0; $i < $#$attr; $i += 2) {
315 my ($member, $value) = @$attr[$i, $i+1];
316 if (defined $value) {
317 $w->{$member} = $value;
318 } else {
319 delete $w->{$member};
320 }
321 $w->{parent}->realloc if $member =~ /^c_/ && $w->{visible};
322 }
323 }
324
325 # widget get
326 sub ext_w_g {
327 my ($self, $id, $rid, @attr) = @_;
328
329 my $w = $self->{widget}{$id}
330 or return;
331
332 $self->send_exti_msg (w_e => $rid, map $w->{$_}, @attr);
333 }
334
335 # message window
336 sub ext_channel_info {
337 my ($self, $info) = @_;
338 $self->{channels}->{$info->{id}} = $info;
339 $::MESSAGE_DIST->add_channel ($info);
340 }
341
342 #############################################################################
343
344 sub logprint {
345 my ($self, @a) = @_;
346
347 DC::DB::logprint "$Deliantra::VARDIR/log.$self->{host}" => (join "", @a), sub { };
348 }
349
350 sub _stat_numdiff {
351 my ($self, $name, $old, $new) = @_;
352
353 my $diff = $new - $old;
354
355 $diff = 0.01 * int $diff * 100;
356
357 0.1 >= abs $diff ? ()
358 : $diff < 0 ? "$name$diff" : "$name+$diff"
359 }
360
361 sub _stat_skillmaskdiff {
362 my ($self, $name, $old, $new) = @_;
363
364 my $diff = $old ^ $new
365 or return;
366
367 my @diff = map
368 {
369 $diff & $_
370 ? (($new & $_ ? "+" : "-") . $self->{spell_paths}{$_})
371 : ()
372 }
373 sort { $a <=> $b } keys %{$self->{spell_paths}};
374
375 join "", @diff
376 }
377
378 # all stats that are chacked against changes
379 my @statchange = (
380 [&CS_STAT_STR => \&_stat_numdiff, "Str"],
381 [&CS_STAT_INT => \&_stat_numdiff, "Int"],
382 [&CS_STAT_WIS => \&_stat_numdiff, "Wis"],
383 [&CS_STAT_DEX => \&_stat_numdiff, "Dex"],
384 [&CS_STAT_CON => \&_stat_numdiff, "Con"],
385 [&CS_STAT_CHA => \&_stat_numdiff, "Cha"],
386 [&CS_STAT_POW => \&_stat_numdiff, "Pow"],
387 [&CS_STAT_WC => \&_stat_numdiff, "Wc"],
388 [&CS_STAT_AC => \&_stat_numdiff, "Ac"],
389 [&CS_STAT_DAM => \&_stat_numdiff, "Dam"],
390 [&CS_STAT_SPEED => \&_stat_numdiff, "Speed"],
391 [&CS_STAT_WEAP_SP => \&_stat_numdiff, "WSp"],
392 [&CS_STAT_MAXHP => \&_stat_numdiff, "HP"],
393 [&CS_STAT_MAXSP => \&_stat_numdiff, "Mana"],
394 [&CS_STAT_MAXGRACE => \&_stat_numdiff, "Grace"],
395 [&CS_STAT_WEIGHT_LIM => \&_stat_numdiff, "Weight"],
396 [&CS_STAT_SPELL_ATTUNE => \&_stat_skillmaskdiff, "attuned"],
397 [&CS_STAT_SPELL_REPEL => \&_stat_skillmaskdiff, "repelled"],
398 [&CS_STAT_SPELL_DENY => \&_stat_skillmaskdiff, "denied"],
399 [&CS_STAT_RES_PHYS => \&_stat_numdiff, "phys"],
400 [&CS_STAT_RES_MAG => \&_stat_numdiff, "magic"],
401 [&CS_STAT_RES_FIRE => \&_stat_numdiff, "fire"],
402 [&CS_STAT_RES_ELEC => \&_stat_numdiff, "electricity"],
403 [&CS_STAT_RES_COLD => \&_stat_numdiff, "cold"],
404 [&CS_STAT_RES_CONF => \&_stat_numdiff, "confusion"],
405 [&CS_STAT_RES_ACID => \&_stat_numdiff, "acid"],
406 [&CS_STAT_RES_DRAIN => \&_stat_numdiff, "drain"],
407 [&CS_STAT_RES_GHOSTHIT => \&_stat_numdiff, "ghosthit"],
408 [&CS_STAT_RES_POISON => \&_stat_numdiff, "poison"],
409 [&CS_STAT_RES_SLOW => \&_stat_numdiff, "slow"],
410 [&CS_STAT_RES_PARA => \&_stat_numdiff, "paralyse"],
411 [&CS_STAT_TURN_UNDEAD => \&_stat_numdiff, "turnundead"],
412 [&CS_STAT_RES_FEAR => \&_stat_numdiff, "fear"],
413 [&CS_STAT_RES_DEPLETE => \&_stat_numdiff, "depletion"],
414 [&CS_STAT_RES_DEATH => \&_stat_numdiff, "death"],
415 [&CS_STAT_RES_HOLYWORD => \&_stat_numdiff, "godpower"],
416 [&CS_STAT_RES_BLIND => \&_stat_numdiff, "blind"],
417 );
418
419 sub stats_update {
420 my ($self, $stats) = @_;
421
422 my $prev = $self->{prev_stats} || { };
423
424 if (my @diffs =
425 (
426 ($stats->{+CS_STAT_EXP64} > $prev->{+CS_STAT_EXP64} ? ($stats->{+CS_STAT_EXP64} - $prev->{+CS_STAT_EXP64}) . " experience gained" : ()),
427 map {
428 $stats->{$_} && $prev->{$_}
429 && $stats->{$_}[1] > $prev->{$_}[1] ? "($self->{skill_info}{$_}+" . ($stats->{$_}[1] - $prev->{$_}[1]) . ")" : ()
430 } sort { $a <=> $b } keys %{$self->{skill_info}}
431 )
432 ) {
433 my $msg = join " ", @diffs;
434 $self->{statusbox}->add ($msg, group => "experience $msg", fg => [0.5, 1, 0.5, 0.8], timeout => 5);
435 }
436
437 if (
438 my @diffs = map $_->[1]->($self, $_->[2], $prev->{$_->[0]}, $stats->{$_->[0]}), @statchange
439 ) {
440 my $msg = "<b>stat change</b>: " . (join " ", @diffs);
441 $self->{statusbox}->add ($msg, group => "stat $msg", fg => [0.8, 1, 0.2, 1], timeout => 20);
442 }
443
444 $self->update_stats_window ($stats, $prev);
445
446 $self->{prev_stats} = { %$stats };
447 }
448
449 my %RES_TBL = (
450 phys => CS_STAT_RES_PHYS,
451 magic => CS_STAT_RES_MAG,
452 fire => CS_STAT_RES_FIRE,
453 elec => CS_STAT_RES_ELEC,
454 cold => CS_STAT_RES_COLD,
455 conf => CS_STAT_RES_CONF,
456 acid => CS_STAT_RES_ACID,
457 drain => CS_STAT_RES_DRAIN,
458 ghit => CS_STAT_RES_GHOSTHIT,
459 pois => CS_STAT_RES_POISON,
460 slow => CS_STAT_RES_SLOW,
461 para => CS_STAT_RES_PARA,
462 tund => CS_STAT_TURN_UNDEAD,
463 fear => CS_STAT_RES_FEAR,
464 depl => CS_STAT_RES_DEPLETE,
465 deat => CS_STAT_RES_DEATH,
466 holyw => CS_STAT_RES_HOLYWORD,
467 blind => CS_STAT_RES_BLIND,
468 );
469
470 sub update_stats_window {
471 my ($self, $stats, $prev) = @_;
472
473 # I love text protocols...
474
475 my $hp = $stats->{+CS_STAT_HP} * 1;
476 my $hp_m = $stats->{+CS_STAT_MAXHP} * 1;
477 my $sp = $stats->{+CS_STAT_SP} * 1;
478 my $sp_m = $stats->{+CS_STAT_MAXSP} * 1;
479 my $fo = $stats->{+CS_STAT_FOOD} * 1;
480 my $fo_m = 999;
481 my $gr = $stats->{+CS_STAT_GRACE} * 1;
482 my $gr_m = $stats->{+CS_STAT_MAXGRACE} * 1;
483
484 $::GAUGES->{hp} ->set_value ($hp, $hp_m);
485 $::GAUGES->{mana} ->set_value ($sp, $sp_m);
486 $::GAUGES->{food} ->set_value ($fo, $fo_m);
487 $::GAUGES->{grace} ->set_value ($gr, $gr_m);
488 $::GAUGES->{exp} ->set_text ("Exp: " . (::formsep ($stats->{+CS_STAT_EXP64}))
489 . " (lvl " . ($stats->{+CS_STAT_LEVEL} * 1) . ")");
490 $::GAUGES->{prg} ->set_value ($stats->{+CS_STAT_LEVEL}, $stats->{+CS_STAT_EXP64});
491 $::GAUGES->{range} ->set_text ($stats->{+CS_STAT_RANGE});
492 my $title = $stats->{+CS_STAT_TITLE};
493 $title =~ s/^Player: //;
494 $::STATWIDS->{title} ->set_text ("Title: " . $title);
495
496 $::STATWIDS->{st_str} ->set_text (sprintf "%d" , $stats->{+CS_STAT_STR});
497 $::STATWIDS->{st_dex} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DEX});
498 $::STATWIDS->{st_con} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CON});
499 $::STATWIDS->{st_int} ->set_text (sprintf "%d" , $stats->{+CS_STAT_INT});
500 $::STATWIDS->{st_wis} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WIS});
501 $::STATWIDS->{st_pow} ->set_text (sprintf "%d" , $stats->{+CS_STAT_POW});
502 $::STATWIDS->{st_cha} ->set_text (sprintf "%d" , $stats->{+CS_STAT_CHA});
503 $::STATWIDS->{st_wc} ->set_text (sprintf "%d" , $stats->{+CS_STAT_WC});
504 $::STATWIDS->{st_ac} ->set_text (sprintf "%d" , $stats->{+CS_STAT_AC});
505 $::STATWIDS->{st_dam} ->set_text (sprintf "%d" , $stats->{+CS_STAT_DAM});
506 $::STATWIDS->{st_arm} ->set_text (sprintf "%d" , $stats->{+CS_STAT_RES_PHYS});
507 $::STATWIDS->{st_spd} ->set_text (sprintf "%.1f", $stats->{+CS_STAT_SPEED});
508 $::STATWIDS->{st_wspd}->set_text (sprintf "%.1f", $stats->{+CS_STAT_WEAP_SP});
509
510 $self->update_weight;
511
512 $::STATWIDS->{"res_$_"}->set_text (sprintf "%d%", $stats->{$RES_TBL{$_}})
513 for keys %RES_TBL;
514
515 my $sktbl = $::STATWIDS->{skill_tbl};
516 my @skills = keys %{ $self->{skill_info} };
517
518 my @order = sort { $stats->{$b->[0]}[1] <=> $stats->{$a->[0]}[1] or $a->[1] cmp $b->[1] }
519 map [$_, $self->{skill_info}{$_}],
520 grep exists $stats->{$_},
521 @skills;
522
523 if ($self->{stat_order} ne join ",", map $_->[0], @order) {
524 $self->{stat_order} = join ",", map $_->[0], @order;
525
526 $sktbl->clear;
527
528 my $sw = $self->{skillwid}{""} ||= [
529 0, 0, (new DC::UI::Label text => "Experience", align => 1),
530 1, 0, (new DC::UI::Label text => "Lvl.", align => 1),
531 2, 0, (new DC::UI::Label text => "Progress"),
532 3, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0),
533 4, 0, (new DC::UI::Label text => "Experience", align => 1),
534 5, 0, (new DC::UI::Label text => "Lvl.", align => 1),
535 6, 0, (new DC::UI::Label text => "Progress"),
536 7, 0, (new DC::UI::Label text => "Skill", expand => 1, align => 0),
537 ];
538
539 my @add = @$sw;
540
541 my $TOOLTIP_ALL = "\n\n<small>Left click - ready skill\nMiddle click - use spell\nRight click - further options</small>";
542
543 my @TOOLTIP_LVL = (tooltip => "<b>Level</b>. The level of the skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
544 my @TOOLTIP_EXP = (tooltip => "<b>Experience</b>. The experience points you have in this skill.$TOOLTIP_ALL", can_events => 1, can_hover => 1);
545
546 my ($x, $y) = (0, 1);
547 for (@order) {
548 my ($idx, $name) = @$_;
549
550 my $spell_cb = sub {
551 my ($widget, $ev) = @_;
552
553 if ($ev->{button} == 1) {
554 $::CONN->user_send ("ready_skill $name");
555 } elsif ($ev->{button} == 2) {
556 $::CONN->user_send ("use_skill $name");
557 } elsif ($ev->{button} == 3) {
558 my $shortname = DC::shorten $name, 14;
559 (new DC::UI::Menu
560 items => [
561 ["bind <i>ready_skill $shortname</i> to a key" => sub { DC::Macro::quick_macro ["ready_skill $name"] }],
562 ["bind <i>use_skill $shortname</i> to a key" => sub { DC::Macro::quick_macro ["use_skill $name"] }],
563 ],
564 )->popup ($ev);
565 } else {
566 return 0;
567 }
568
569 1
570 };
571
572 my $sw = $self->{skillwid}{$idx} ||= [
573 # exp
574 (new DC::UI::Label
575 align => 1, font => $::FONT_FIXED, fg => [1, 1, 0], on_button_down => $spell_cb, @TOOLTIP_EXP),
576
577 # level
578 (new DC::UI::Label
579 text => "0", align => 1, font => $::FONT_FIXED, fg => [0, 1, 0], padding_x => 4, on_button_down => $spell_cb, @TOOLTIP_LVL),
580
581 # progress
582 (new DC::UI::ExperienceProgress),
583
584 # label
585 (new DC::UI::Label text => $name, on_button_down => $spell_cb, align => 0,
586 can_events => 1, can_hover => 1, tooltip => (DC::Pod::section_label skill_description => $name) . $TOOLTIP_ALL),
587 ];
588
589 push @add,
590 $x * 4 + 0, $y, $sw->[0],
591 $x * 4 + 1, $y, $sw->[1],
592 $x * 4 + 2, $y, $sw->[2],
593 $x * 4 + 3, $y, $sw->[3],
594 ;
595
596 $x++ and ($x, $y) = (0, $y + 1);
597 }
598
599 $sktbl->add_at (@add);
600 }
601
602 for (@order) {
603 my ($idx, $name) = @$_;
604 my $val = $stats->{$idx};
605
606 next if $prev->{$idx}[1] eq $val->[1];
607
608 my $sw = $self->{skillwid}{$idx};
609 $sw->[0]->set_text (::formsep ($val->[1]));
610 $sw->[1]->set_text ($val->[0] * 1);
611 $sw->[2]->set_value (@$val);
612
613 $::GAUGES->{sklprg}->set_label ("$name %d%%");
614 $::GAUGES->{sklprg}->set_value (@$val);
615 }
616 }
617
618 sub user_send {
619 my ($self, $command) = @_;
620
621 $self->{record}->($command)
622 if $self->{record};
623
624 $self->logprint ("send: ", $command);
625 $self->send_command ($command);
626 }
627
628 sub record {
629 my ($self, $cb) = @_;
630
631 $self->{record} = $cb;
632 }
633
634 sub map_scroll {
635 my ($self, $dx, $dy) = @_;
636
637 $self->{map}->scroll ($dx, $dy);
638 }
639
640 sub feed_map1a {
641 my ($self, $data) = @_;
642
643 my $missing = $self->{map}->map1a_update ($data, $self->{setup}{extmap});
644 my $delay;
645
646 for my $tile (@$missing) {
647 next if $self->{delay}{$tile};
648
649 $delay = 1;
650
651 if (my $tex = $::CONN->{texture}[$tile]) {
652 $tex->upload;
653 } else {
654 $self->{delay}{$tile} = 1;
655
656 # we assume the face is in-flight and will eventually come
657 push @{$self->{tile_cb}{$tile}}, sub {
658 delete $self->{delay}{$tile};
659 $_[0]->upload;
660 };
661 }
662 }
663
664 if ($delay) {
665 # delay the map drawing a tiny bit in the hope of getting the missing fetched
666 EV::once undef, 0, 0.03, sub {
667 $self->{map_widget}->update
668 if $self->{map_widget};
669 };
670 } else {
671 $self->{map_widget}->update;
672 }
673 }
674
675 sub magicmap {
676 my ($self, $w, $h, $x, $y, $data) = @_;
677
678 $self->{map_widget}->set_magicmap ($w, $h, $x, $y, $data);
679 }
680
681 sub flush_map {
682 my ($self) = @_;
683
684 my $map_info = delete $self->{map_info}
685 or return;
686
687 my ($hash, $x, $y, $w, $h) = @$map_info;
688
689 my $data = Compress::LZF::compress $self->{map}->get_rect ($x, $y, $w, $h);
690 $self->{map_cache_new}{$hash} = \$data;
691 DC::DB::put $self->{mapcache} => $hash => $data, sub { };
692 }
693
694 sub map_clear {
695 my ($self) = @_;
696
697 $self->flush_map;
698 delete $self->{neigh_map};
699
700 $self->{map}->clear;
701 delete $self->{map_widget}{magicmap};
702 }
703
704 sub bg_fetch {
705 my ($self) = @_;
706
707 my $tile;
708
709 do {
710 $tile = pop @{$self->{bg_fetch}}
711 or return;
712 } while $self->{texture}[$tile];
713
714 DC::DB::get tilecache => $tile, sub {
715 my ($data) = @_;
716
717 return unless $self->{map}; # stop when destroyed
718
719 if (defined $data) {
720 $self->have_tile ($tile, $data);
721 $self->{texture}[$tile]->upload;
722 }
723
724 $self->bg_fetch;
725 };
726 }
727
728 sub load_map($$$) {
729 my ($self, $hash, $x, $y) = @_;
730
731 my $gen = $self->{map_change_gen};
732
733 my $cb = sub {
734 return unless $gen == $self->{map_change_gen};
735
736 my ($data) = @_;
737
738 if (defined $data) {
739 $self->{map_cache_new}{$hash} = \$data;
740
741 my $data = Compress::LZF::decompress $data;
742
743 my $inprogress = @{ $self->{bg_fetch} || [] };
744 unshift @{ $self->{bg_fetch} }, $self->{map}->set_rect ($x, $y, $data);
745 $self->bg_fetch unless $inprogress;
746 }
747 };
748
749 if (my $rdata = $self->{map_cache_old}{$hash}) {
750 $cb->($$rdata);
751 } else {
752 DC::DB::get $self->{mapcache} => $hash, $cb;
753 }
754 }
755
756 # hardcode /world/world_xxx_xxx map names, the savings are enourmous,
757 # (server resource,s latency, bandwidth), so this hack is warranted.
758 # the right fix is to make real tiled maps with an overview file
759 sub send_mapinfo {
760 my ($self, $data, $cb) = @_;
761
762 if ($self->{map_info}[0] =~ m%^/world/world_(\d\d\d)_(\d\d\d)$%) {
763 my ($wx, $wy) = ($1, $2);
764
765 if ($data =~ /^spatial ([1-4]+)$/) {
766 my @dx = (0, 0, 1, 0, -1);
767 my @dy = (0, -1, 0, 1, 0);
768 my ($dx, $dy);
769
770 for (split //, $1) {
771 $dx += $dx[$_];
772 $dy += $dy[$_];
773 }
774
775 $cb->(spatial => 15,
776 $self->{map_info}[1] - $self->{map}->ox + $dx * 50,
777 $self->{map_info}[2] - $self->{map}->oy + $dy * 50,
778 50, 50,
779 sprintf "/world/world_%03d_%03d", $wx + $dx, $wy + $dy
780 );
781
782 return;
783 }
784 }
785
786 $self->SUPER::send_mapinfo ($data, $cb);
787 }
788
789 # this method does a "flood fill" into every tile direction
790 # it assumes that tiles are arranged in a rectangular grid,
791 # i.e. a map is the same as the left of the right map etc.
792 # failure to comply are harmless and result in display errors
793 # at worst.
794 sub flood_fill {
795 my ($self, $block, $gx, $gy, $path, $hash, $flags) = @_;
796
797 # the server does not allow map paths > 6
798 return if 7 <= length $path;
799
800 my ($x0, $y0, $x1, $y1) = @{$self->{neigh_rect}};
801
802 for (
803 [1, 3, 0, -1],
804 [2, 4, 1, 0],
805 [3, 1, 0, 1],
806 [4, 2, -1, 0],
807 ) {
808 my ($tile, $tile2, $dx, $dy) = @$_;
809
810 next if $block & (1 << $tile);
811 my $block = $block | (1 << $tile2);
812
813 my $gx = $gx + $dx;
814 my $gy = $gy + $dy;
815
816 next unless $flags & (1 << ($tile - 1));
817 next if $self->{neigh_grid}{$gx, $gy}++;
818
819 my $neigh = $self->{neigh_map}{$hash} ||= [];
820 if (my $info = $neigh->[$tile]) {
821 my ($flags, $x, $y, $w, $h, $hash) = @$info;
822
823 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
824 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
825
826 } else {
827 my $gen = $self->{map_change_gen};
828 $self->send_mapinfo ("spatial $path$tile", sub {
829 return unless $gen == $self->{map_change_gen};
830
831 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
832
833 return if $mode ne "spatial";
834
835 $x += $self->{map}->ox;
836 $y += $self->{map}->oy;
837
838 $self->load_map ($hash, $x, $y)
839 unless $self->{neigh_map}{$hash}[5]++;#d#
840
841 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
842
843 $self->flood_fill ($block, $gx, $gy, "$path$tile", $hash, $flags)
844 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
845 });
846 }
847 }
848 }
849
850 sub map_change {
851 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
852
853 $self->flush_map;
854
855 ++$self->{map_change_gen};
856 $self->{map_cache_old} = delete $self->{map_cache_new};
857
858 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
859
860 my $mapmapw = $self->{mapmap}->{w};
861 my $mapmaph = $self->{mapmap}->{h};
862
863 $self->{neigh_rect} = [
864 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
865 $ox + $mapmapw * 0.5 + $w, $oy + $mapmapw * 0.5 + $h,
866 ];
867
868 delete $self->{neigh_grid};
869
870 $x += $ox;
871 $y += $oy;
872
873 $self->{map_info} = [$hash, $x, $y, $w, $h];
874
875 (my $map = $hash) =~ s/^.*?\/([^\/]+)$/\1/;
876 $::STATWIDS->{map}->set_text ("Map: " . $map);
877
878 $self->load_map ($hash, $x, $y);
879 $self->flood_fill (0, 0, 0, "", $hash, $flags);
880 }
881
882 sub face_find {
883 my ($self, $facenum, $face, $cb) = @_;
884
885 if ($face->{type} == 0) { # FT_FACE
886 my $id = DC::DB::get_tile_id_sync $face->{name};
887
888 $face->{id} = $id;
889 $self->{map}->set_tileid ($facenum => $id);
890
891 DC::DB::get tilecache => $id, $cb;
892
893 } elsif ($face->{type} & 1) { # with metadata
894 DC::DB::get res_meta => $face->{name}, $cb;
895
896 } else { # no metadata
897 DC::DB::get res_data => $face->{name}, $cb;
898 }
899 }
900
901 sub face_update {
902 my ($self, $facenum, $face, $changed) = @_;
903
904 if ($face->{type} == 0) {
905 # image, FT_FACE
906 DC::DB::put tilecache => $face->{id} => $face->{data}, sub { }
907 if $changed;
908
909 $self->have_tile ($face->{id}, delete $face->{data});
910
911 } elsif ($face->{type} & 1) {
912 # split metadata case, FT_MUSIC, FT_SOUND
913 if ($changed) { # new data
914 my ($meta, $data) = unpack "(w/a*)*", $face->{data};
915 $face->{data} = $meta;
916
917 # rely on strict ordering here and also on later fetch
918 DC::DB::put res_data => $face->{name} => $data, sub { };
919 DC::DB::put res_meta => $face->{name} => $meta, sub { };
920 }
921
922 $face->{data} = $self->{json_coder}->decode ($face->{data});
923 ::add_license ($face);
924 ::message ({ markup => DC::asxml "downloaded resource '$face->{data}{name}', type $face->{type}." })
925 if $changed;
926
927 if ($face->{type} == 3) { # FT_MUSIC
928 &::audio_music_push ($facenum);
929 } elsif ($face->{type} == 5) { # FT_SOUND
930 &::audio_sound_push ($facenum);
931 }
932
933 } else {
934 # flat resource case, FT_RSRC
935 DC::DB::put res_data => $face->{name} => $face->{data}, sub { }
936 if $changed;
937 }
938
939 if (my $cbs = $self->{face_cb}{$facenum}) {
940 $_->($face, $changed) for @$cbs;
941 }
942 }
943
944 sub smooth_update {
945 my ($self, $facenum, $face) = @_;
946
947 $self->{map}->set_smooth ($facenum, $face->{smoothface}, $face->{smoothlevel});
948 }
949
950 sub have_tile {
951 my ($self, $tile, $data) = @_;
952
953 return unless $self->{map};
954
955 my $tex = $self->{texture}[$tile] ||=
956 new DC::Texture
957 tile => $tile,
958 image => $data, delete_image => 1,
959 minify => 1, mipmap => 1;
960
961 if (my $cbs = delete $self->{tile_cb}{$tile}) {
962 $_->($tex) for @$cbs;
963 }
964 }
965
966 # call in non-void context registers a temporary
967 # hook with handle, otherwise its permanent
968 sub on_face_change {
969 my ($self, $num, $cb) = @_;
970
971 push @{$self->{face_cb}{$num}}, $cb;
972
973 defined wantarray
974 ? DC::guard {
975 @{$self->{face_cb}{$num}}
976 = grep $_ != $cb,
977 @{$self->{face_cb}{$num}};
978 }
979 : ()
980 }
981
982 # call in non-void context registers a temporary
983 # hook with handle, otherwise its permanent
984 sub register_face_handler {
985 my ($self, $num, $cb) = @_;
986
987 return unless $num;
988
989 # invoke if available right now
990 $cb->($self->{face}[$num], 0)
991 unless exists $self->{face}[$num]{loading};
992
993 # future changes
994 $self->on_face_change ($num => $cb)
995 }
996
997 sub sound_play {
998 my ($self, $type, $face, $dx, $dy, $vol) = @_;
999
1000 &::audio_sound_play ($face, $dx, $dy, $vol)
1001 unless $type & 1; # odd types are silent for future expansion
1002 }
1003
1004 my $LAST_QUERY; # server is stupid, stupid, stupid
1005
1006 sub query {
1007 my ($self, $flags, $prompt) = @_;
1008
1009 $prompt = $LAST_QUERY unless length $prompt;
1010 $LAST_QUERY = $prompt;
1011
1012 $self->{query}-> ($self, $flags, $prompt);
1013 }
1014
1015 sub sanitise_xml($) {
1016 local $_ = shift;
1017
1018 # we now weed out all tags we do not support
1019 s{ <(?! /?i> | /?u> | /?b> | /?big | /?small | /?s | /?tt | fg\ | /fg>)
1020 }{
1021 "&lt;"
1022 }gex;
1023
1024 # now all entities
1025 s/&(?!amp;|lt;|gt;|apos;|quot;|#[0-9]+;|#x[0-9a-fA-F]+;)/&amp;/g;
1026
1027 # handle some elements
1028 s/<fg name='([^']*)'>(.*?)<\/fg>/<span foreground='$1'>$2<\/span>/gs;
1029 s/<fg name="([^"]*)">(.*?)<\/fg>/<span foreground="$1">$2<\/span>/gs;
1030
1031 $_
1032 }
1033
1034 our %NAME_TO_COLOR = (
1035 black => 0,
1036 white => 1,
1037 darkblue => 2,
1038 red => 3,
1039 orange => 4,
1040 lightblue => 5,
1041 darkorange => 6,
1042 green => 7,
1043 darkgreen => 8,
1044 grey => 9,
1045 brown => 10,
1046 yellow => 11,
1047 tan => 12,
1048 );
1049
1050 our @CF_COLOR = (
1051 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
1052 [1.00, 1.00, 1.00],
1053 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
1054 [1.00, 0.00, 0.00],
1055 [1.00, 0.54, 0.00],
1056 [0.11, 0.56, 1.00],
1057 [0.93, 0.46, 0.00],
1058 [0.18, 0.54, 0.34],
1059 [0.56, 0.73, 0.56],
1060 [0.80, 0.80, 0.80],
1061 [0.75, 0.61, 0.20],
1062 [0.99, 0.77, 0.26],
1063 [0.74, 0.65, 0.41],
1064 );
1065
1066 sub msg {
1067 my ($self, $color, $type, $text, @extra) = @_;
1068
1069 $text = sanitise_xml $text;
1070
1071 if (my $cb = $self->{cb_msg}{$type}) {
1072 $_->($self, $color, $type, $text, @extra) for values %$cb;
1073 } elsif ($type =~ /^(?:chargen-race-title|chargen-race-description)$/) {
1074 $type =~ s/-/_/g;
1075 $self->{$type} = $text;
1076 } else {
1077 $self->logprint ("msg: ", $text);
1078 return if $color < 0; # negative color == ignore if not understood
1079
1080 my $fg = $CF_COLOR[$color & NDI_COLOR_MASK] || [1, 0, 0];
1081
1082 ## try to create single paragraphs of multiple lines sent by the server
1083 # no longer neecssary with TRT servers
1084 #$text =~ s/(?<=\S)\n(?=\w)/ /g;
1085
1086 for (split /\n/, $text) {
1087 ::message ({
1088 fg => $fg,
1089 markup => $_,
1090 type => $type,
1091 extra => [@extra],
1092 color_flags => $color, #d# ugly, kill
1093 });
1094
1095 $color &= ~NDI_CLEAR; # only clear once for multiline messages
1096 # actually, this is an ugly design. _we_ should control the channels,
1097 # not some random other widget, as the channels are clearly protocol-specific.
1098 # then we could also react to flags such as CLEAR without resorting to
1099 # hacks such as color_flags, above.
1100 }
1101
1102 $self->{statusbox}->add ($text,
1103 group => $text,
1104 fg => $fg,
1105 timeout => $color >= 2 ? 180 : 10,
1106 tooltip_font => $::FONT_FIXED,
1107 ) if $type eq "info";
1108 }
1109 }
1110
1111 sub spell_add {
1112 my ($self, $spell) = @_;
1113
1114 # try to create single paragraphs out of the multiple lines sent by the server
1115 $spell->{message} =~ s/(?<=\S)\n(?=\w)/ /g;
1116 $spell->{message} =~ s/\n+$//;
1117 $spell->{message} ||= "Server did not provide a description for this spell.";
1118
1119 $::SPELL_LIST->add_spell ($spell);
1120
1121 $self->{map_widget}->add_command ("invoke $spell->{name}", DC::asxml $spell->{message});
1122 $self->{map_widget}->add_command ("cast $spell->{name}", DC::asxml $spell->{message});
1123 }
1124
1125 sub spell_delete {
1126 my ($self, $spell) = @_;
1127
1128 $::SPELL_LIST->remove_spell ($spell);
1129 }
1130
1131 sub setup {
1132 my ($self, $setup) = @_;
1133
1134 $self->{map_widget}->set_tilesize ($self->{tilesize});
1135 $::MAP->resize ($self->{mapw}, $self->{maph});
1136 }
1137
1138 sub addme_success {
1139 my ($self) = @_;
1140
1141 my %skill_help;
1142
1143 for my $node (DC::Pod::find skill_description => "*") {
1144 my (undef, @par) = DC::Pod::section_of $node;
1145 $skill_help{$node->[DC::Pod::N_KW][0]} = DC::Pod::as_label @par;
1146 };
1147
1148 for my $skill (values %{$self->{skill_info}}) {
1149 $self->{map_widget}->add_command ("ready_skill $skill",
1150 (DC::asxml "Ready the skill '$skill'\n\n")
1151 . $skill_help{$skill});
1152 $self->{map_widget}->add_command ("use_skill $skill",
1153 (DC::asxml "Immediately use the skill '$skill'\n\n")
1154 . $skill_help{$skill});
1155 }
1156 }
1157
1158 sub eof {
1159 my ($self) = @_;
1160
1161 $self->{map_widget}->clr_commands;
1162
1163 ::stop_game ();
1164 }
1165
1166 sub update_floorbox {
1167 $DC::UI::ROOT->on_refresh ($::FLOORBOX => sub {
1168 return unless $::CONN;
1169
1170 $::FLOORBOX->clear;
1171
1172 my @add;
1173
1174 my $row;
1175 for (sort { $a->{count} <=> $b->{count} } values %{ $::CONN->{container}{$::CONN->{open_container} || 0} }) {
1176 if ($row < 6) {
1177 local $_->{face_widget}; # hack to force recreation of widget
1178 local $_->{desc_widget}; # hack to force recreation of widget
1179 DC::Item::update_widgets $_;
1180
1181 push @add,
1182 0, $row, $_->{face_widget},
1183 1, $row, $_->{desc_widget};
1184
1185 $row++;
1186 } else {
1187 push @add, 1, $row, new DC::UI::Button
1188 text => "More...",
1189 on_activate => sub { ::toggle_player_page ($::INVENTORY_PAGE); 0 },
1190 ;
1191 last;
1192 }
1193 }
1194 if ($::CONN->{open_container}) {
1195 push @add, 1, $row++, new DC::UI::Button
1196 text => "Close container",
1197 on_activate => sub { $::CONN->send ("apply $::CONN->{open_container}") }
1198 ;
1199 }
1200
1201 $::FLOORBOX->add_at (@add);
1202 });
1203
1204 $::WANT_REFRESH = 1;
1205 }
1206
1207 sub set_opencont {
1208 my ($conn, $tag, $name) = @_;
1209 $conn->{open_container} = $tag;
1210 update_floorbox;
1211
1212 $::INVR_HB->clear ();
1213 $::INVR_HB->add (new DC::UI::Label expand => 1, text => $name);
1214
1215 if ($tag != 0) { # Floor isn't closable, is it?
1216 $::INVR_HB->add (new DC::UI::Button
1217 text => "Close container",
1218 tooltip => "Close the currently open container (if one is open)",
1219 on_activate => sub {
1220 $::CONN->send ("apply $tag") # $::CONN->{open_container}")
1221 if $tag != 0;
1222 0
1223 },
1224 );
1225 }
1226
1227 $::INVR->set_items ($conn->{container}{$tag});
1228 }
1229
1230 sub update_containers {
1231 my ($self) = @_;
1232
1233 $DC::UI::ROOT->on_refresh ("update_containers_$self" => sub {
1234 my $todo = delete $self->{update_container}
1235 or return;
1236
1237 for my $tag (keys %$todo) {
1238 update_floorbox if $tag == 0 or $tag == $self->{open_container};
1239 if ($tag == 0) {
1240 $::INVR->set_items ($self->{container}{0})
1241 if $tag == $self->{open_container};
1242 } elsif ($tag == $self->{player}{tag}) {
1243 $::INV->set_items ($self->{container}{$tag})
1244 } else {
1245 $::INVR->set_items ($self->{container}{$tag})
1246 if $tag == $self->{open_container};
1247 }
1248 }
1249 });
1250 }
1251
1252 sub container_add {
1253 my ($self, $tag, $items) = @_;
1254
1255 $self->{update_container}{$tag}++;
1256 $self->update_containers;
1257 }
1258
1259 sub container_clear {
1260 my ($self, $tag) = @_;
1261
1262 $self->{update_container}{$tag}++;
1263 $self->update_containers;
1264 }
1265
1266 sub item_delete {
1267 my ($self, @items) = @_;
1268
1269 $self->{update_container}{$_->{container}}++
1270 for @items;
1271
1272 $self->update_containers;
1273 }
1274
1275 sub item_update {
1276 my ($self, $item) = @_;
1277
1278 #d# print "item_update: $item->{tag} in $item->{container} ($self->{player}{tag}) ($::CONN->{open_container})\n";
1279
1280 DC::Item::update_widgets $item;
1281
1282 if ($item->{tag} == $::CONN->{open_container} && not ($item->{flags} & F_OPEN)) {
1283 set_opencont ($::CONN, 0, "Floor");
1284
1285 } elsif ($item->{flags} & F_OPEN) {
1286 set_opencont ($::CONN, $item->{tag}, DC::Item::desc_string $item);
1287
1288 } else {
1289 $self->{update_container}{$item->{container}}++;
1290 $self->update_containers;
1291 }
1292 }
1293
1294 sub player_update {
1295 my ($self, $player) = @_;
1296
1297 $self->update_weight;
1298 }
1299
1300 sub update_weight {
1301 my ($self) = @_;
1302
1303 my $weight = .001 * $self->{player}{weight};
1304 my $limit = .001 * $self->{stat}{+CS_STAT_WEIGHT_LIM};
1305
1306 $::STATWIDS->{weight}->set_text (sprintf "Weight: %.1fkg", $weight);
1307 $::STATWIDS->{m_weight}->set_text (sprintf "Max Weight: %.1fkg", $limit);
1308 $::STATWIDS->{i_weight}->set_text (sprintf "%.1f/%.1fkg", $weight, $limit);
1309 }
1310
1311 sub update_server_info {
1312 my ($self) = @_;
1313
1314 my @yesno = ("<span foreground='red'>no</span>", "<span foreground='green'>yes</span>");
1315
1316 $::SERVER_INFO->set_markup (
1317 "server <tt>$self->{host}:$self->{port}</tt>\n"
1318 . "protocol version <tt>$self->{version}</tt>\n"
1319 . "minimap support $yesno[$self->{setup}{mapinfocmd} > 0]\n"
1320 . "extended command support $yesno[$self->{setup}{extcmd} > 0]\n"
1321 . "examine command support $yesno[$self->{setup}{excmd} > 0]\n"
1322 . "editing support $yesno[!!$self->{editor_support}]\n"
1323 . "map attributes $yesno[$self->{setup}{extmap} > 0]\n"
1324 . "big image protocol support $yesno[$self->{setup}{fxix} > 0]\n"
1325 . "client support $yesno[$self->{cfplus_ext} > 0]"
1326 . ($self->{cfplus_ext} > 0 ? ", version $self->{cfplus_ext}" : "") ."\n"
1327 . "map size $self->{mapw}×$self->{maph}\n"
1328 );
1329
1330 }
1331
1332 sub logged_in {
1333 my ($self) = @_;
1334
1335 $self->send_ext_req (cfplus_support => version => 2, sub {
1336 my (%msg) = @_;
1337
1338 $self->{cfplus_ext} = $msg{version};
1339 $self->update_server_info;
1340
1341 if ($self->{cfplus_ext} >= 2) {
1342 $self->send_ext_req ("editor_support", sub {
1343 $self->{editor_support} = { @_ };
1344 $self->update_server_info;
1345
1346 0
1347 });
1348 }
1349
1350 0
1351 });
1352
1353 $self->update_server_info;
1354
1355 $self->send_command ("output-rate $::CFG->{output_rate}") if $::CFG->{output_rate} > 0;
1356 $self->send_command ("pickup $::CFG->{pickup}");
1357 }
1358
1359 sub lookat {
1360 my ($self, $x, $y) = @_;
1361
1362 if ($self->{cfplus_ext}) {
1363 $self->send_ext_req (lookat => $x, $y, sub {
1364 my (%msg) = @_;
1365
1366 if (exists $msg{npc_dialog}) {
1367 # start npc chat dialog
1368 $self->{npc_dialog} = new DC::NPCDialog::
1369 token => $msg{npc_dialog},
1370 title => "$msg{npc_dialog}[0] (NPC)",
1371 conn => $self,
1372 ;
1373 }
1374 });
1375 }
1376
1377 $self->send ("lookat $x $y");
1378 }
1379
1380 sub destroy {
1381 my ($self) = @_;
1382
1383 (delete $self->{npc_dialog})->destroy
1384 if $self->{npc_dialog};
1385
1386 $self->SUPER::destroy;
1387
1388 %$self = ();
1389 }
1390
1391 package DC::NPCDialog;
1392
1393 our @ISA = 'DC::UI::Toplevel';
1394
1395 sub new {
1396 my $class = shift;
1397
1398 my $self = $class->SUPER::new (
1399 x => 'center',
1400 y => 'center',
1401 name => "npc_dialog",
1402 force_w => $::WIDTH * 0.7,
1403 force_h => $::HEIGHT * 0.7,
1404 title => "NPC Dialog",
1405 kw => { hi => 0, yes => 0, no => 0 },
1406 has_close_button => 1,
1407 @_,
1408 );
1409
1410 DC::weaken (my $this = $self);
1411
1412 $self->connect (delete => sub { $this->destroy; 1 });
1413
1414 # better use a pane...
1415 $self->add (my $hbox = new DC::UI::HBox);
1416 $hbox->add ($self->{textview} = new DC::UI::TextScroller expand => 1);
1417
1418 $hbox->add (my $vbox = new DC::UI::VBox);
1419
1420 $vbox->add (new DC::UI::Label text => "Message Entry:");
1421 $vbox->add ($self->{entry} = new DC::UI::Entry
1422 tooltip => "#npc_message_entry",
1423 on_activate => sub {
1424 my ($entry, $text) = @_;
1425
1426 return unless $text =~ /\S/;
1427
1428 $entry->set_text ("");
1429 $this->send ($text);
1430
1431 0
1432 },
1433 );
1434
1435 $vbox->add ($self->{options} = new DC::UI::VBox);
1436
1437 $self->{bye_button} = new DC::UI::Button
1438 text => "Bye (close)",
1439 tooltip => "Use this button to end talking to the NPC. This also closes the dialog window.",
1440 on_activate => sub { $this->destroy; 1 },
1441 ;
1442
1443 $self->update_options;
1444
1445 $self->{id} = "npc-channel-" . $self->{conn}->token;
1446 $self->{conn}->connect_ext ($self->{id} => sub {
1447 $this->feed (@_) if $this;
1448 });
1449
1450 $self->{conn}->send_ext_msg (npc_dialog_begin => $self->{id}, $self->{token});
1451
1452 $self->{entry}->grab_focus;
1453
1454 $self->{textview}->add_paragraph ({
1455 fg => [1, 1, 0, 1],
1456 markup => "<small>[starting conversation with <b>$self->{title}</b>]</small>\n\n",
1457 });
1458
1459 $self->show;
1460 $self
1461 };
1462
1463 sub update_options {
1464 my ($self) = @_;
1465
1466 DC::weaken $self;
1467
1468 $self->{options}->clear;
1469 $self->{options}->add ($self->{bye_button});
1470
1471 for my $kw (sort keys %{ $self->[DC::Pod::N_KW] }) {
1472 $self->{options}->add (new DC::UI::Button
1473 text => $kw,
1474 on_activate => sub {
1475 $self->send ($kw);
1476 0
1477 },
1478 );
1479 }
1480 }
1481
1482 sub feed {
1483 my ($self, $type, @arg) = @_;
1484
1485 DC::weaken $self;
1486
1487 if ($type eq "update") {
1488 my (%info) = @arg;
1489
1490 $self->[DC::Pod::N_KW]{$_} = 1 for @{$info{add_topics} || []};
1491 $self->[DC::Pod::N_KW]{$_} = 0 for @{$info{del_topics} || []};
1492
1493 if (exists $info{msg}) {
1494 my $text = "\n" . DC::Protocol::sanitise_xml $info{msg};
1495 my $match = join "|", map "\\b\Q$_\E\\b", sort { (length $b) <=> (length $a) } keys %{ $self->[DC::Pod::N_KW] };
1496 my @link;
1497 $text =~ s{
1498 ($match)
1499 }{
1500 my $kw = $1;
1501
1502 push @link, new DC::UI::Label
1503 markup => "<span foreground='#c0c0ff' underline='single'>$kw</span>",
1504 can_hover => 1,
1505 can_events => 1,
1506 padding_x => 0,
1507 padding_y => 0,
1508 on_button_up => sub {
1509 $self->send ($kw);
1510 };
1511
1512 "\x{fffc}"
1513 }giex;
1514
1515 $self->{textview}->add_paragraph ({ markup => $text, widget => \@link });
1516 $self->{textview}->scroll_to_bottom;
1517 }
1518
1519 $self->update_options;
1520 } else {
1521 $self->destroy;
1522 }
1523
1524 1
1525 }
1526
1527 sub send {
1528 my ($self, $msg) = @_;
1529
1530 $self->{textview}->add_paragraph ({ markup => "\n" . DC::asxml $msg });
1531 $self->{textview}->scroll_to_bottom;
1532
1533 $self->{conn}->send_ext_msg (npc_dialog_tell => $self->{id}, $msg);
1534 }
1535
1536 sub destroy {
1537 my ($self) = @_;
1538
1539 #Carp::cluck "debug\n";#d# #todo# enable: destroy gets called twice because scalar keys {} is 1
1540
1541 if ($self->{conn}) {
1542 $self->{conn}->send_ext_msg (npc_dialog_end => $self->{id}) if $self->{id};
1543 delete $self->{conn}{npc_dialog};
1544 $self->{conn}->disconnect_ext ($self->{id});
1545 }
1546
1547 $self->SUPER::destroy;
1548 }
1549
1550 1
1551