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

Comparing deliantra/maps/perl/commands.ext (file contents):
Revision 1.3 by root, Thu Sep 14 19:39:09 2006 UTC vs.
Revision 1.16 by root, Fri Dec 15 19:06:29 2006 UTC

1#! perl 1#! perl
2
3use POSIX ();
2 4
3# miscellaneous commands 5# miscellaneous commands
4 6
5sub rename_to($$$) { 7sub rename_to($$$) {
6 my ($ob, $from, $to) = @_; 8 my ($ob, $from, $to) = @_;
31 $ob->message ("You stop calling your " . $item->base_name . " with weird names."); 33 $ob->message ("You stop calling your " . $item->base_name . " with weird names.");
32 } 34 }
33 35
34 $ob->esrv_update_item (cf::UPD_NAME, $item); 36 $ob->esrv_update_item (cf::UPD_NAME, $item);
35 37
36 return 1; 38 1
37} 39}
38 40
41sub ext::schmorp_irc::users; # HACK: TODO: replace by signal
42
43sub who_listing(;$) {
44 my ($privileged) = @_;
45
46 my ($numwiz, $numafk) = (0, 0);
47 my @pl;
48
49 foreach my $pl (cf::player::list) {
50 my $ob = $pl->ob;
51
52 next unless $ob->map
53 && ($privileged || !$pl->hidden);
54
55 $numwiz++ if $ob->flag (cf::FLAG_WIZ);
56 $numafk++ if $ob->flag (cf::FLAG_AFK);
57
58 push @pl, $pl;
59 }
60
61 (
62 "Total Players in The World. (" . (scalar @pl) . ") -- WIZ($numwiz) AFK($numafk) BOT(0)",
63 (
64 map {
65 my ($pl, $ob) = ($_, $_->ob);
66
67 "* " . $ob->name . "/" . $ob->level . " " . (length $pl->own_title ? $pl->own_title : "the " . $pl->title)
68 . ($pl->peaceful ? " [peaceful]" : " [HOSTILE]")
69 . ($ob->flag (cf::FLAG_AFK) ? " [AFK]" : "")
70 . ($ob->flag (cf::FLAG_WIZ) ? " [WIZ]" : "")
71 . " [" . $pl->socket->client . "]"
72 . " [" . ($pl->peaceful || $privileged ? $ob->map->path : $ob->map->region ? $ob->map->region->name : "the unknown") . "]"
73 . (sprintf " [rtt %.3fs/%.3f]", $pl->socket->rtt * 1e-6, $pl->socket->rttvar * 1e-6)
74 . ($privileged ? " " . $pl->socket->host : "")
75 } sort { (lc $a->ob->name) cmp (lc $b->ob->name) } @pl
76 ),
77 eval { "* IRC: " . join ", ", ext::schmorp_irc::users },
78 )
79}
80
39cf::register_command rename => 0, sub { 81cf::register_command who => sub {
40 my ($ob, $arg) = @_; 82 my ($ob, $arg) = @_;
41 83
84 $ob->speed_left ($ob->speed_left - 0.25);
85
86 $ob->reply (undef, (join "\n", who_listing $ob->may ("extended_who")), cf::NDI_UNIQUE | cf::NDI_DK_ORANGE);
87
88 1
89};
90
91cf::register_command rename => sub {
92 my ($ob, $arg) = @_;
93
94 $ob->speed_left ($ob->speed_left - 0.25);
95
42 if ($arg =~ /^\s* (?: <([^>]+)> \s+)? to \s+ <([^>]+)> \s*$/x) { 96 if ($arg =~ /^\s* (?: <([^>]+)> \s+)? to \s+ <([^>]*)> \s*$/x) {
43 # compatibility syntax 97 # compatibility syntax
44 rename_to $ob, $1, $2; 98 rename_to $ob, $1, $2;
45 } elsif ($arg =~ / 99 } elsif ($arg =~ /
46 ^\s* 100 ^\s*
47 (?: 101 (?:
52 \s*$ 106 \s*$
53 /x) { 107 /x) {
54 # does not unquote $1 or $3 108 # does not unquote $1 or $3
55 rename_to $ob, $2||$1, $4||$3; 109 rename_to $ob, $2||$1, $4||$3;
56 } else { 110 } else {
57 $ob->message ('Syntax error. Rename usage: rename ["oldname"] to "newname"'); 111 $ob->reply (undef, 'Syntax error. Rename usage: rename ["oldname"] to "newname"');
58 } 112 }
113
114 1
59}; 115};
116
117cf::register_command uptime => sub {
118 my ($ob, $arg) = @_;
119
120 my $startup = POSIX::strftime "%Y-%m-%d %H:%M:%S %Z", localtime $cf::UPTIME;
121 my $runtime = sprintf "%.1f", (time - $cf::UPTIME) / 86400;
122 $ob->reply (undef, "server started $startup, uptime ${runtime}\d");
123
124 1
125};
126

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines