ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/cf.pm
(Generate patch)

Comparing deliantra/server/lib/cf.pm (file contents):
Revision 1.315 by root, Mon Jul 23 17:53:55 2007 UTC vs.
Revision 1.316 by root, Mon Jul 23 21:02:50 2007 UTC

1181 my ($pl, $buf) = @_; 1181 my ($pl, $buf) = @_;
1182 1182
1183 my $msg = eval { $pl->ns->{json_coder}->decode ($buf) }; 1183 my $msg = eval { $pl->ns->{json_coder}->decode ($buf) };
1184 1184
1185 if (ref $msg) { 1185 if (ref $msg) {
1186 my ($type, $reply, @payload) =
1187 "ARRAY" eq ref $msg
1188 ? @$msg
1189 : ($msg->{msgtype}, $msg->{msgid}, %$msg); # TODO: version 1, remove
1190
1186 if (my $cb = $EXTCMD{$msg->{msgtype}}) { 1191 if (my $cb = $EXTCMD{$type}) {
1187 if (my %reply = $cb->($pl, $msg)) { 1192 my @reply = $cb->($pl, @payload);
1193
1188 $pl->ext_reply ($msg->{msgid}, %reply); 1194 $pl->ext_reply ($reply, @reply)
1189 } 1195 if $reply;
1190 } 1196 }
1191 } else { 1197 } else {
1192 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n"; 1198 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
1193 } 1199 }
1194 1200
1517sub hintmode { 1523sub hintmode {
1518 $_[0]{hintmode} = $_[1] if @_ > 1; 1524 $_[0]{hintmode} = $_[1] if @_ > 1;
1519 $_[0]{hintmode} 1525 $_[0]{hintmode}
1520} 1526}
1521 1527
1522=item $player->ext_reply ($msgid, %msg) 1528=item $player->ext_reply ($msgid, @msg)
1523 1529
1524Sends an ext reply to the player. 1530Sends an ext reply to the player.
1525 1531
1526=cut 1532=cut
1527 1533
1528sub ext_reply($$%) { 1534sub ext_reply($$@) {
1529 my ($self, $id, %msg) = @_; 1535 my ($self, $id, @msg) = @_;
1530 1536
1531 $msg{msgid} = $id; 1537 if ($self->ns->extcmd == 2) {
1538 $self->send ("ext " . $self->ns->{json_coder}->encode (["reply-$id", @msg]));
1539 } elsif ($self->ns->extcmd == 1) {
1540 #TODO: version 1, remove
1541 unshift @msg, msgtype => "reply", msgid => $id;
1532 $self->send ("ext " . $self->ns->{json_coder}->encode (\%msg)); 1542 $self->send ("ext " . $self->ns->{json_coder}->encode ({@msg}));
1543 }
1533} 1544}
1534 1545
1535=item $player->ext_event ($type, %msg) 1546=item $player->ext_msg ($type, @msg)
1536 1547
1537Sends an ext event to the client. 1548Sends an ext event to the client.
1538 1549
1539=cut 1550=cut
1540 1551
1541sub ext_event($$%) { 1552sub ext_msg($$@) {
1542 my ($self, $type, %msg) = @_; 1553 my ($self, $type, @msg) = @_;
1543 1554
1544 $self->ns->ext_event ($type, %msg); 1555 $self->ns->ext_msg ($type, @msg);
1545} 1556}
1546 1557
1547=head3 cf::region 1558=head3 cf::region
1548 1559
1549=over 4 1560=over 4
2219 2230
2220 } else { 2231 } else {
2221 my $pl = $self->contr; 2232 my $pl = $self->contr;
2222 2233
2223 if ($pl->{npc_dialog} && $pl->{npc_dialog}->{id}) { 2234 if ($pl->{npc_dialog} && $pl->{npc_dialog}->{id}) {
2224 my $diag = $pl->{npc_dialog}; 2235 my $dialog = $pl->{npc_dialog};
2225 $diag->{pl}->ext_reply ( 2236 $dialog->{pl}->ext_msg ($dialog->{id}, update => msg => $dialog->{pl}->expand_cfpod ($msg));
2226 $diag->{id},
2227 msgtype => "reply",
2228 msg => $diag->{pl}->expand_cfpod ($msg),
2229 add_topics => []
2230 );
2231 2237
2232 } else { 2238 } else {
2233 $msg = $npc->name . " says: $msg" if $npc; 2239 $msg = $npc->name . " says: $msg" if $npc;
2234 $self->message ($msg, $flags); 2240 $self->message ($msg, $flags);
2235 } 2241 }
2512 2518
2513 if (ref $channel) { 2519 if (ref $channel) {
2514 # send meta info to client, if not yet sent 2520 # send meta info to client, if not yet sent
2515 unless (exists $self->{channel}{$channel->{id}}) { 2521 unless (exists $self->{channel}{$channel->{id}}) {
2516 $self->{channel}{$channel->{id}} = $channel; 2522 $self->{channel}{$channel->{id}} = $channel;
2517 $self->ext_event (channel_info => %$channel); 2523 $self->ext_msg (channel_info => %$channel);
2518 } 2524 }
2519 2525
2520 $channel = $channel->{id}; 2526 $channel = $channel->{id};
2521 } 2527 }
2522 2528
2544 } 2550 }
2545 } 2551 }
2546 } 2552 }
2547} 2553}
2548 2554
2549=item $client->ext_event ($type, %msg) 2555=item $client->ext_msg ($type, @msg)
2550 2556
2551Sends an ext event to the client. 2557Sends an ext event to the client.
2552 2558
2553=cut 2559=cut
2554 2560
2555sub cf::client::ext_event($$%) { 2561sub cf::client::ext_msg($$@) {
2556 my ($self, $type, %msg) = @_; 2562 my ($self, $type, @msg) = @_;
2557 2563
2558 return unless $self->extcmd; 2564 my $extcmd = $self->extcmd;
2559 2565
2566 if ($extcmd == 2) {
2567 $self->send_packet ("ext " . $self->{json_coder}->encode ([$type, @msg]));
2568 } elsif ($extcmd == 1) { # TODO: remove
2560 $msg{msgtype} = "event_$type"; 2569 push @msg, msgtype => "event_$type";
2561 $self->send_packet ("ext " . $self->{json_coder}->encode (\%msg)); 2570 $self->send_packet ("ext " . $self->{json_coder}->encode ({@msg}));
2571 }
2562} 2572}
2563 2573
2564=item $success = $client->query ($flags, "text", \&cb) 2574=item $success = $client->query ($flags, "text", \&cb)
2565 2575
2566Queues a query to the client, calling the given callback with 2576Queues a query to the client, calling the given callback with
2621 my ($ns, $buf) = @_; 2631 my ($ns, $buf) = @_;
2622 2632
2623 my $msg = eval { $ns->{json_coder}->decode ($buf) }; 2633 my $msg = eval { $ns->{json_coder}->decode ($buf) };
2624 2634
2625 if (ref $msg) { 2635 if (ref $msg) {
2636 my ($type, $reply, @payload) =
2637 "ARRAY" eq ref $msg
2638 ? @$msg
2639 : ($msg->{msgtype}, $msg->{msgid}, %$msg); # TODO: version 1, remove
2640
2626 if (my $cb = $EXTICMD{$msg->{msgtype}}) { 2641 if (my $cb = $EXTICMD{$type}) {
2627 if (my %reply = $cb->($ns, $msg)) { 2642 my @reply = $cb->($ns, @payload);
2628 $reply{msgid} = $msg->{msgid}; 2643
2629 $ns->send ("ext " . $ns->{json_coder}->encode (\%reply)); 2644 $ns->ext_reply ($reply, @reply)
2630 } 2645 if $reply;
2631 } 2646 }
2632 } else { 2647 } else {
2633 warn "client " . ($ns->pl ? $ns->pl->ob->name : $ns->host) . " sent unparseable exti message: <$buf>\n"; 2648 warn "client " . ($ns->pl ? $ns->pl->ob->name : $ns->host) . " sent unparseable exti message: <$buf>\n";
2634 } 2649 }
2635 2650

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines