ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/cfplus.ext
Revision: 1.9
Committed: Fri Aug 25 15:07:43 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.8: +7 -9 lines
Log Message:
Convert remainin scripts to new event system, noted
conversion status of all plugins in second line, to aid
in further event conversions.

File Contents

# Content
1 #! perl
2
3 # additional support for cfplus client
4
5 use NPC_Dialogue;
6
7 cf::register_extcmd cfplus_support => sub {
8 my ($pl, $msg) = @_;
9
10 # $msg->{version}
11
12 (version => 1)
13 };
14
15 my %dialog; # currently active dialogs
16
17 my $timer = Event->timer (interval => 0.2, parked => 1, cb => sub {
18 while (my ($id, $dialog) = each %dialog) {
19 my (undef, $dx, $dy) = $dialog->{ob}->rangevector ($dialog->{npc});
20 next if (abs $dx) <= 2 && (abs $dy) <= 2;
21
22 $dialog->{ob}->contr->ext_reply ($id => msgtype => "error", msg => "out of range");
23 delete $dialog{$id};
24 }
25
26 $_[0]->w->stop unless keys %dialog;
27 });
28
29 sub dialog_tell {
30 my ($id, $dialog, $msg) = @_;
31
32 my $pl = $dialog->{ob}->contr;
33 my ($reply, @kw) = $dialog->tell ($msg);
34 $reply = "..." unless $reply;
35
36 $pl->ext_reply ($id => msgtype => "reply", msg => $reply, add_topics => \@kw);
37 }
38
39 # return "interesting" information about the given tile
40 # currently only returns the npc_dialog title when a dialog is possible
41 cf::register_extcmd lookat => sub {
42 my ($pl, $msg) = @_;
43 my ($dx, $dy) = @$msg{qw(dx dy)};
44
45 my $near = (abs $dx) <= 2 && (abs $dy) <= 2;
46
47 my %res;
48
49 if ($pl->cell_visible ($dx, $dy)) {
50 for my $ob ($pl->ob->map->at ($pl->ob->x + $dx, $pl->ob->y + $dy)) {
51 $res{npc_dialog} = $ob->name
52 if $near && NPC_Dialogue::has_dialogue $ob;
53 }
54 }
55
56 %res
57 };
58
59 cf::register_extcmd npc_dialog_begin => sub {
60 my ($pl, $msg) = @_;
61 my ($id, $dx, $dy) = @$msg{qw(msgid dx dy)};
62
63 return unless (abs $dx) <= 2 && (abs $dy) <= 2;
64 return unless $pl->cell_visible ($dx, $dy);
65
66 for my $npc ($pl->ob->map->at ($pl->ob->x + $dx, $pl->ob->y + $dy)) {
67 if (NPC_Dialogue::has_dialogue $npc) {
68 $dialog{$id} = new NPC_Dialogue ob => $pl->ob, npc => $npc;
69 dialog_tell $id, $dialog{$id}, "hi";
70 $timer->start;
71 return;
72 }
73 }
74
75 (msgtype => "error", msg => "nothing to talk to found")
76 };
77
78 cf::register_extcmd npc_dialog_tell => sub {
79 my ($pl, $msg) = @_;
80
81 dialog_tell $msg->{msgid}, $dialog{$msg->{msgid}}, $msg->{msg}
82 if $dialog{$msg->{msgid}};
83
84 ()
85 };
86
87 cf::register_extcmd npc_dialog_end => sub {
88 my ($pl, $msg) = @_;
89
90 delete $dialog{$msg->{msgid}};
91
92 ()
93 };
94
95 cf::attach_to_players
96 on_logout => sub {
97 my ($pl) = @_;
98
99 delete $dialog{$_} for grep $pl->ob == $dialog{$_}{ob}, keys %dialog;
100 },
101 ;
102
103 sub on_unload {
104 while (my ($id, $dialog) = each %dialog) {
105 $dialog->{ob}->contr->ext_reply ($id => msgtype => "error", msg => "npc dialogue module was reloaded");
106 }
107
108 %dialog = ();
109 }
110
111