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.16 by root, Tue Mar 28 16:08:19 2006 UTC vs.
Revision 1.25 by root, Tue Dec 12 16:59:34 2006 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
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->slaying ($map);
19 $portal->stats->hp ($x);
20 $portal->stats->sp ($y);
21
22 $portal->apply ($pl->ob);
23
24 $portal->free;
25}
26
9my %follow; 27my %follow;
10 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::find $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});
60
11cf::register_command follow => 0, sub { 61cf::register_command follow => sub {
12 my ($who, $args) = @_; 62 my ($who, $args) = @_;
13 63
14 my $name = $who->name; 64 my $name = $who->name;
15 65
16 if ($args ne "" && $name ne $args) { 66 if ($args ne "" && $name ne $args) {
23 $follow{$name} = [ 73 $follow{$name} = [
24 $args, 74 $args,
25 [$other->ob->map->path, $other->ob->x, $other->ob->y], 75 [$other->ob->map->path, $other->ob->x, $other->ob->y],
26 [$who->map->path, $who->x, $who->y], 76 [$who->map->path, $who->x, $who->y],
27 ]; 77 ];
78 $timer->start;
28 } else { 79 } else {
29 $who->message ("You must stand directly beside '$args' to follow her/him"); 80 $who->message ("You must stand directly beside '$args' to follow her/him");
30 delete $follow{$name}; 81 delete $follow{$name};
31 } 82 }
32 } else { 83 } else {
37 $who->message ("follow mode off"); 88 $who->message ("follow mode off");
38 delete $follow{$name}; 89 delete $follow{$name};
39 } 90 }
40}; 91};
41 92
42sub teleport { 93cf::attach_to_players
43 my ($pl, $map, $x, $y) = @_; 94 on_death => sub {
95 my ($pl) = @_;
44 96
45 return if $pl->ob->map->path eq $map 97 my $name = $pl->ob->name;
46 && abs ($pl->ob->x - $x) <= 1
47 && abs ($pl->ob->y - $y) <= 1;
48 98
49 my $portal = cf::object::new "exit"; 99 delete $follow{$name};
50 100
51 $portal->set_slaying ($map);
52 $portal->set_hp ($x);
53 $portal->set_sp ($y);
54
55 $portal->apply ($pl->ob);
56
57 $portal->free;
58}
59
60sub on_player_death {
61 my ($ob) = @_;
62
63 my $name = $ob->name;
64
65 delete $follow{$name};
66
67 while (my ($k, $v) = each %follow) { 101 while (my ($k, $v) = each %follow) {
68 if ($v->[0] eq $name) { 102 if ($v->[0] eq $name) {
69 delete $follow{$k}; 103 delete $follow{$k};
104 }
70 } 105 }
71 } 106 },
72 107;
73 0
74}
75
76sub on_clock {
77 return 0 unless %follow;
78
79 while (my ($name, $v) = each %follow) {
80 my ($target, $his, $mine) = @$v;
81 my ($who, $other) = (cf::player::find $name, cf::player::find $target);
82
83 if ($who && $other && $other->ob->map) {
84 my ($map, $x, $y) = ($other->ob->map->path, $other->ob->x, $other->ob->y);
85
86 if ($map ne $his->[0] || $x != $his->[1] || $y != $his->[2]) {
87 @$mine = @$his;
88 @$his = ($map, $x, $y);
89 }
90
91 my $map;
92
93 if ($map = cf::map::map $mine->[0]
94 and !grep $_->flag (cf::FLAG_UNIQUE) && $_->flag (cf::FLAG_IS_FLOOR),
95 $map->at ($mine->[1], $mine->[2])) {
96 teleport $who, @$mine;
97 } else {
98 delete $follow{$name};
99 $who->ob->message ("You can't follow $target anymore!");
100 }
101 } else {
102 delete $follow{$name};
103 $who->ob->message ("$target is gone...");
104 }
105 }
106}
107 108
108 109
109 110
110 111

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines