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

Comparing deliantra/maps/perl/follow.ext (file contents):
Revision 1.4 by root, Sat Feb 4 05:28:41 2006 UTC vs.
Revision 1.20 by root, Fri Aug 25 15:07:43 2006 UTC

2 2
3# TODO: skip arena 3# TODO: skip arena
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
8
9sub teleport {
10 my ($pl, $map, $x, $y) = @_;
11
12 return if $pl->ob->map->path eq $map
13 && abs ($pl->ob->x - $x) <= 1
14 && abs ($pl->ob->y - $y) <= 1;
15
16 my $portal = cf::object::new "exit";
17
18 $portal->set_slaying ($map);
19 $portal->set_hp ($x);
20 $portal->set_sp ($y);
21
22 $portal->apply ($pl->ob);
23
24 $portal->free;
25}
7 26
8my %follow; 27my %follow;
28
29my $timer = Event->timer (interval => 0.2, parked => 1, cb => sub {
30 while (my ($name, $v) = each %follow) {
31 my ($target, $his, $mine) = @$v;
32 my ($who, $other) = (cf::player::find $name, cf::player::find $target);
33
34 if ($who && $other && $other->ob->map) {
35 my ($map, $x, $y) = ($other->ob->map->path, $other->ob->x, $other->ob->y);
36
37 if ($map ne $his->[0] || $x != $his->[1] || $y != $his->[2]) {
38 @$mine = @$his;
39 @$his = ($map, $x, $y);
40 }
41
42 my $map;
43
44 if ($map = cf::map::map $mine->[0]
45 and !grep $_->flag (cf::FLAG_UNIQUE) && $_->flag (cf::FLAG_IS_FLOOR),
46 $map->at ($mine->[1], $mine->[2])) {
47 teleport $who, @$mine;
48 } else {
49 delete $follow{$name};
50 $who->ob->message ("You can't follow $target anymore!");
51 }
52 } else {
53 delete $follow{$name};
54 $who->ob->message ("$target is gone...");
55 }
56 }
57
58 $_[0]->w->stop unless keys %follow;
59});
9 60
10cf::register_command follow => 0, sub { 61cf::register_command follow => 0, sub {
11 my ($who, $args) = @_; 62 my ($who, $args) = @_;
12 63
13 my $name = $who->name; 64 my $name = $who->name;
14 65
15 if ($args ne "" && $name ne $args) { 66 if ($args ne "" && $name ne $args) {
16 if (cf::player::find $args) { 67 if (my $other = cf::player::find $args) {
68 if ($other->ob->map->path eq $who->map->path
69 && abs ($other->ob->x - $who->x) <= 1
70 && abs ($other->ob->y - $who->y) <= 1) {
17 $who->message ("following player '$args', to stop, type: 'follow"); 71 $who->message ("Following player '$args', to stop, type: 'follow");
72 $other->ob->message ("$name is now following your every step...");
18 $follow{$name} = $args; 73 $follow{$name} = [
74 $args,
75 [$other->ob->map->path, $other->ob->x, $other->ob->y],
76 [$who->map->path, $who->x, $who->y],
77 ];
78 $timer->start;
79 } else {
80 $who->message ("You must stand directly beside '$args' to follow her/him");
81 delete $follow{$name};
82 }
19 } else { 83 } else {
20 $who->message ("cannot follow '$args': no such player"); 84 $who->message ("Cannot follow '$args': no such player");
85 delete $follow{$name};
21 } 86 }
22 } else { 87 } else {
23 $who->message ("follow mode off"); 88 $who->message ("follow mode off");
24 delete $follow{$name}; 89 delete $follow{$name};
25 } 90 }
26}; 91};
27 92
28sub teleport { 93cf::attach_to_player
29 my ($pl, $map, $x, $y) = @_; 94 on_death => sub {
95 my ($pl) = @_;
30 96
31 my $portal = cf::object::new ("exit"); 97 my $name = $pl->ob->name;
32 98
33 $portal->set_slaying ($map->path); 99 delete $follow{$name};
34 $portal->set_hp ($x);
35 $portal->set_sp ($y);
36 100
37 $portal->apply ($pl->ob, 0);
38
39 $portal->free;
40}
41
42sub on_clock {
43 my ($event) = @_;
44
45 return unless %follow;
46
47 while (my ($name, $target) = each %follow) { 101 while (my ($k, $v) = each %follow) {
48 my ($who, $other) = (cf::player::find $name, cf::player::find $target); 102 if ($v->[0] eq $name) {
49 if ($who && $other) {
50 teleport $who, $other->ob->map, $other->ob->x, $other->ob->y
51 if $who->ob->map->path ne $other->ob->map->path;
52 } else {
53 warn "follow: $name or $target is gone, removing from follow list\n";
54 delete $follow{$name}; 103 delete $follow{$k};
104 }
55 } 105 }
56 } 106 },
57} 107;
58 108
59 109
60 110
61 111

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines