ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/follow.ext
Revision: 1.26
Committed: Wed May 4 19:04:44 2011 UTC (13 years ago) by root
Branch: MAIN
CVS Tags: rel-3_1, HEAD
Changes since 1.25: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl
2
3 # TODO: skip arena
4 # TODO: check for player leaving
5
6 # implement a 'follow' command
7 # don't follow on damned ground
8
9 our $MAX_QUEUE = 5; # the # of positions somebody else can lead
10 our %FOLLOW; # $followername => [$follower, $target, [$queue]]
11 our $FOLLOW_HANDLER;
12
13 sub unfollow($) {
14 my $name = shift;
15
16 if (my $f = delete $FOLLOW{$name}) {
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 }
23
24 cf::player::attachment follow_aborter =>
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
35 sub 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;
76 $who->goto ($map, $x, $y);
77 }
78 }
79 }
80
81 Coro::schedule unless keys %FOLLOW;
82 }
83 };
84 }
85
86 start_follow_handler;
87
88 cf::register_command follow => sub {
89 my ($who, $args) = @_;
90
91 my $name = $who->name;
92
93 if ($args ne "" && $name ne $args) {
94 if (my $other = cf::player::find_active $args) {
95 $other = $other->ob;
96
97 if ($other->map == $who->map
98 && abs ($other->x - $who->x) <= 1
99 && abs ($other->y - $who->y) <= 1
100 ) {
101 $who->message ("Following player '$args', to stop, type: 'follow");
102 $other->message ("$name is now following your every step...");
103 $FOLLOW{$name} = [
104 $who,
105 $other,
106 [[$other->map, $other->x, $other->y]],
107 ];
108 $who->contr->attach ("follow_aborter");
109 $FOLLOW_HANDLER->ready;
110 } else {
111 $who->message ("You must stand directly beside '$args' to follow her/him");
112 delete $FOLLOW{$name};
113 }
114 } else {
115 $who->message ("Cannot follow '$args': no such player");
116 delete $FOLLOW{$name};
117 }
118 } else {
119 $who->message ("follow mode off");
120 delete $FOLLOW{$name};
121 }
122 };
123
124 sub 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
137 cf::player->attach (
138 on_death => \&unregister,
139 on_logout => \&unregister,
140 );
141