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.14 by root, Fri Jul 11 21:41:38 2008 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 %follow;
10 10
11my $timer = Event->timer (interval => 0.2, parked => 1, data => cf::WF_AUTOCANCEL, cb => sub { 11our $CORO = cf::async {
12 while (my ($name, $v) = each %follow) { 12 $Coro::current->{desc} = "follow handler";
13 my ($target, $his, $mine) = @$v;
14 my ($who, $other) = (cf::player::find_active $name, cf::player::find_active $target);
15 13
16 if ($who && $other && $other->ob->map) { 14 while () { eval {#d#
17 my ($map, $x, $y) = ($other->ob->map->path, $other->ob->x, $other->ob->y);
18 15
19 if ($map ne $his->[0] || $x != $his->[1] || $y != $his->[2]) { 16 while () {
20 @$mine = @$his; 17 cf::wait_for_tick;
21 @$his = ($map, $x, $y);
22 }
23 18
24 my $map; 19 while (my ($name, $v) = each %follow) {
20 my ($target, $his, $mine) = @$v;
21 my ($who, $other) = (cf::player::find_active $name, cf::player::find_active $target);
25 22
23 if ($who && $other && $other->ob->map) {
24 my ($map, $x, $y) = ($other->ob->map->path, $other->ob->x, $other->ob->y);
25
26 if (
27 ($map ne $his->[0] || $x != $his->[1] || $y != $his->[2])
28 && $map !~ /^\{/
29 ) {
30 @$mine = @$his;
31 @$his = ($map, $x, $y);
32 }
33
34 my $map;
35
26 if ($map = cf::map::find $mine->[0] 36 if ($map = cf::map::find $mine->[0]
27 and $map =~ /^\// # short-gap fix 37 and $map =~ /^\// # short-gap fix
28 and !grep +($_->flag (cf::FLAG_UNIQUE) || $_->type == cf::SHOP_FLOOR) && $_->flag (cf::FLAG_IS_FLOOR), 38 and !grep +($_->flag (cf::FLAG_UNIQUE) || $_->type == cf::SHOP_FLOOR) && $_->flag (cf::FLAG_IS_FLOOR),
29 $map->at ($mine->[1], $mine->[2])) { 39 $map->at ($mine->[1], $mine->[2])) {
30 $who->ob->goto (@$mine); 40 $who->ob->goto (@$mine);
41 } else {
42 delete $follow{$name};
43 $who->ob->message ("You can't follow $target anymore!");
44 }
31 } else { 45 } else {
32 delete $follow{$name}; 46 delete $follow{$name};
33 $who->ob->message ("You can't follow $target anymore!"); 47 $who->ob->message ("$target is gone...");
34 } 48 }
35 } else {
36 delete $follow{$name};
37 $who->ob->message ("$target is gone...");
38 } 49 }
50
51 Coro::schedule unless keys %follow;
39 } 52 }
40 53 }; warn "follow handler died <$@>\n"; }#d#
41 $_[0]->w->stop unless keys %follow;
42}); 54};
43 55
44cf::register_command follow => sub { 56cf::register_command follow => sub {
45 my ($who, $args) = @_; 57 my ($who, $args) = @_;
46 58
47 my $name = $who->name; 59 my $name = $who->name;
56 $follow{$name} = [ 68 $follow{$name} = [
57 $args, 69 $args,
58 [$other->ob->map->path, $other->ob->x, $other->ob->y], 70 [$other->ob->map->path, $other->ob->x, $other->ob->y],
59 [$who->map->path, $who->x, $who->y], 71 [$who->map->path, $who->x, $who->y],
60 ]; 72 ];
61 $timer->start; 73 $CORO->ready;
62 } else { 74 } else {
63 $who->message ("You must stand directly beside '$args' to follow her/him"); 75 $who->message ("You must stand directly beside '$args' to follow her/him");
64 delete $follow{$name}; 76 delete $follow{$name};
65 } 77 }
66 } else { 78 } else {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines