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

Comparing deliantra/server/ext/schmorplog.ext (file contents):
Revision 1.13 by root, Wed Apr 30 06:40:28 2008 UTC vs.
Revision 1.17 by root, Thu May 1 06:47:03 2008 UTC

1#! perl # depends=irc 1#! perl # depends=irc
2
3# statistics-package
2 4
3use Fcntl; 5use Fcntl;
4use Coro::AIO; 6use Coro::AIO;
5 7
6our $UPDATE_LOGINS = EV::idle sub { 8our $UPDATE_LOGINS = EV::idle sub {
24 or return; 26 or return;
25 aio_write $fh, 0, undef, $who, 0; 27 aio_write $fh, 0, undef, $who, 0;
26 aio_close $fh; 28 aio_close $fh;
27 }; 29 };
28}; 30};
31
32cf::object->attach (
33 on_kill => sub {
34 my ($ob, $hitter) = @_;
35
36 return unless $hitter;
37 $hitter = $hitter->outer_owner;
38 my $pl = $hitter->contr
39 or return;
40
41 ++$hitter->{stats_kill}{$ob->name};
42 },
43);
29 44
30cf::player->attach ( 45cf::player->attach (
31 on_login => sub { 46 on_login => sub {
32 my ($pl) = @_; 47 my ($pl) = @_;
33 $pl->ob->set_ob_key_value (schmorplog_last_login => time); 48 $pl->ob->set_ob_key_value (schmorplog_last_login => time);
69 }, 84 },
70 on_death => sub { 85 on_death => sub {
71 my ($pl) = @_; 86 my ($pl) = @_;
72 ext::irc::do_notice (sprintf "%s was killed by %s", $pl->ob->name, $pl->killer_name); 87 ext::irc::do_notice (sprintf "%s was killed by %s", $pl->ob->name, $pl->killer_name);
73 88
89 ++$pl->ob->{stats_death}{$pl->killer_name};
90
74 $pl->ob->set_ob_key_value (schmorplog_death_count => 91 $pl->ob->set_ob_key_value (schmorplog_death_count =>
75 1 + $pl->ob->get_ob_key_value ("schmorplog_death_count")); 92 1 + $pl->ob->get_ob_key_value ("schmorplog_death_count"));
76 }, 93 },
77 on_load => sub { 94 on_load => sub {
78 my ($pl, $path) = @_; 95 my ($pl, $path) = @_;
82 my ($pl, $path) = @_; 99 my ($pl, $path) = @_;
83 $pl->ob->set_ob_key_value (schmorplog_last_save => time); 100 $pl->ob->set_ob_key_value (schmorplog_last_save => time);
84 }, 101 },
85); 102);
86 103
104cf::register_script_function "statistician::talk" => sub {
105 my ($who, $msg, $npc) = @_;
106
107 my ($cmd, $args) = split /\s+/, $msg, 2;
108
109 $args ||= $who->name;
110
111 if ($cmd eq "deaths") {
112 cf::async {
113 my $pl = cf::player::find $args
114 or return $who->reply ($npc, "I don't know any person named '$args'.");
115
116 my $s = $pl->ob->{stats_death}
117 or return $who->reply ($npc, "$args didn't die even once.");
118
119 my $rep = "$args died a total of " . $pl->ob->get_ob_key_value ("schmorplog_death_count") . " times, among them:\n\n\n\n";
120
121 for (sort { $s->{$b} <=> $s->{$a} } keys %$s) {
122 $rep .= "$s->{$_} times due to $_.\n\n";
123 }
124
125 $who->reply ($npc, $rep);
126 };
127 } elsif ($cmd eq "kills") {
128 cf::async {
129 my $pl = cf::player::find $args
130 or return $who->reply ($npc, "I don't know any person named '$args'.");
131
132 my $s = $pl->ob->{stats_kill}
133 or return $who->reply ($npc, "I don't know of I<anything> that $args has killed so far.");
134
135 my $rep = sprintf "\n\nC<%6s> %s\n\n", "#", "Name";
136 for (sort { $s->{$a} <=> $s->{$b} } keys %$s) {
137 $rep .= sprintf "C<%6s> %s\n\n", $s->{$_}, $_;
138 }
139
140 $who->reply ($npc, $rep);
141 };
142 } elsif ($cmd eq "hi") {
143 $who->reply ($npc, "Hello!\n\n"
144 . "I am a statistician, I keep statistics about all people here.\n\n"
145 . "To know how often somebody died, ask C<deaths> I<playername>\n\n"
146 . "To know how many kills somebody scored, ask C<kills> I<playername>");
147 } else {
148 $who->reply ($npc, "No idea what you want of me, how about saying 'hi' first?");
149 }
150
151 $cmd = lc $cmd;
152};
153

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines