ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/follow.ext
(Generate patch)

Comparing deliantra/server/ext/follow.ext (file contents):
Revision 1.12 by root, Mon Oct 8 14:32:44 2007 UTC vs.
Revision 1.26 by root, Wed May 4 19:04:44 2011 UTC

4# TODO: check for player leaving 4# TODO: check for player leaving
5 5
6# implement a 'follow' command 6# implement a 'follow' command
7# don't follow on damned ground 7# don't follow on damned ground
8 8
9my %follow; 9our $MAX_QUEUE = 5; # the # of positions somebody else can lead
10our %FOLLOW; # $followername => [$follower, $target, [$queue]]
11our $FOLLOW_HANDLER;
10 12
11my $timer = Event->timer (interval => 0.2, parked => 1, data => cf::WF_AUTOCANCEL, cb => sub { 13sub unfollow($) {
12 while (my ($name, $v) = each %follow) { 14 my $name = shift;
13 my ($target, $his, $mine) = @$v;
14 my ($who, $other) = (cf::player::find_active $name, cf::player::find_active $target);
15 15
16 if ($who && $other && $other->ob->map) { 16 if (my $f = delete $FOLLOW{$name}) {
17 my ($map, $x, $y) = ($other->ob->map->path, $other->ob->x, $other->ob->y); 17 my ($who, $target, undef) = @$f;
18 $who->contr->detach ("follow_aborter");
19 $target->message ("$name no longer follows you.");
20 $who->message ("You no longer follow " . $target->name . ".");
21 }
22}
18 23
19 if ($map ne $his->[0] || $x != $his->[1] || $y != $his->[2]) { 24cf::player::attachment follow_aborter =>
20 @$mine = @$his; 25 on_move => sub {
26 my ($pl, $dir) = @_;
27 unfollow $pl->ob->name;
28 },
29 on_login => sub {
30 my ($pl, $dir) = @_;
31 $pl->detach ("follow_aborter");
32 },
33;
34
35sub start_follow_handler {
36 $FOLLOW_HANDLER = cf::async_ext {
37 $Coro::current->{desc} = "follow handler";
38
39 while () {
40 $cf::WAIT_FOR_TICK->wait;
41
42 for (values %FOLLOW) {
43 my ($who, $target, $queue) = @$_;
44
45 $target->active
46 or next;
47
48 my ($map, $x, $y) = ($target->map, $target->x, $target->y);
49
50 # add new position to queue, if any
51 push @$queue, [$map, $x, $y]
52 if !@$queue
53 || $map != $queue->[-1][0]
54 || $x != $queue->[-1][1]
55 || $y != $queue->[-1][2];
56
57 # try to move to oldest position
58 if (@$queue > $MAX_QUEUE) {
59 $who->message ($target->name . " is too far away - you can't follow anymore!");
60 unfollow $who->name;
61 } elsif (@$queue) {
62 my ($map, $x, $y) = @{ $queue->[0] };
63
64 $map->load;
65
66 if (
67 !$map->valid
68 or $map->path !~ /^(\{link\}|\/)/
69 or grep $_->flag (cf::FLAG_IS_FLOOR) && ($_->flag (cf::FLAG_UNIQUE) || $_->type == cf::SHOP_FLOOR),
70 $map->at ($x, $y)
71 ) {
72 $who->message ("You can't follow " . $target->name . " anymore!");
73 unfollow $who->name;
74 } elsif (!$who->blocked ($map, $x, $y)) {
75 shift @$queue;
21 @$his = ($map, $x, $y); 76 $who->goto ($map, $x, $y);
77 }
78 }
22 } 79 }
23 80
24 my $map; 81 Coro::schedule unless keys %FOLLOW;
82 }
83 };
84}
25 85
26 if ($map = cf::map::find $mine->[0] 86start_follow_handler;
27 and $map =~ /^\// # short-gap fix
28 and !grep +($_->flag (cf::FLAG_UNIQUE) || $_->type == cf::SHOP_FLOOR) && $_->flag (cf::FLAG_IS_FLOOR),
29 $map->at ($mine->[1], $mine->[2])) {
30 $who->ob->goto (@$mine);
31 } else {
32 delete $follow{$name};
33 $who->ob->message ("You can't follow $target anymore!");
34 }
35 } else {
36 delete $follow{$name};
37 $who->ob->message ("$target is gone...");
38 }
39 }
40
41 $_[0]->w->stop unless keys %follow;
42});
43 87
44cf::register_command follow => sub { 88cf::register_command follow => sub {
45 my ($who, $args) = @_; 89 my ($who, $args) = @_;
46 90
47 my $name = $who->name; 91 my $name = $who->name;
48 92
49 if ($args ne "" && $name ne $args) { 93 if ($args ne "" && $name ne $args) {
50 if (my $other = cf::player::find_active $args) { 94 if (my $other = cf::player::find_active $args) {
95 $other = $other->ob;
96
51 if ($other->ob->map == $who->map 97 if ($other->map == $who->map
52 && abs ($other->ob->x - $who->x) <= 1 98 && abs ($other->x - $who->x) <= 1
53 && abs ($other->ob->y - $who->y) <= 1) { 99 && abs ($other->y - $who->y) <= 1
100 ) {
54 $who->message ("Following player '$args', to stop, type: 'follow"); 101 $who->message ("Following player '$args', to stop, type: 'follow");
55 $other->ob->message ("$name is now following your every step..."); 102 $other->message ("$name is now following your every step...");
56 $follow{$name} = [ 103 $FOLLOW{$name} = [
104 $who,
57 $args, 105 $other,
58 [$other->ob->map->path, $other->ob->x, $other->ob->y], 106 [[$other->map, $other->x, $other->y]],
59 [$who->map->path, $who->x, $who->y],
60 ]; 107 ];
61 $timer->start; 108 $who->contr->attach ("follow_aborter");
109 $FOLLOW_HANDLER->ready;
62 } else { 110 } else {
63 $who->message ("You must stand directly beside '$args' to follow her/him"); 111 $who->message ("You must stand directly beside '$args' to follow her/him");
64 delete $follow{$name}; 112 delete $FOLLOW{$name};
65 } 113 }
66 } else { 114 } else {
67 $who->message ("Cannot follow '$args': no such player"); 115 $who->message ("Cannot follow '$args': no such player");
68 delete $follow{$name}; 116 delete $FOLLOW{$name};
69 } 117 }
70 } else { 118 } else {
71 $who->message ("follow mode off"); 119 $who->message ("follow mode off");
72 delete $follow{$name}; 120 delete $FOLLOW{$name};
73 } 121 }
74}; 122};
75 123
124sub unregister {
125 my ($pl) = @_;
126
127 my $name = $pl->ob->name;
128
129 unfollow $name;
130
131 while (my ($k, $v) = each %FOLLOW) {
132 unfollow $k
133 if $v->[1]->name eq $name;
134 }
135}
136
76cf::player->attach ( 137cf::player->attach (
77 on_death => sub { 138 on_death => \&unregister,
78 my ($pl) = @_; 139 on_logout => \&unregister,
79
80 my $name = $pl->ob->name;
81
82 delete $follow{$name};
83
84 while (my ($k, $v) = each %follow) {
85 if ($v->[0] eq $name) {
86 delete $follow{$k};
87 }
88 }
89 },
90); 140);
91 141
92
93
94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines