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

Comparing deliantra/server/ext/dm-support.ext (file contents):
Revision 1.25 by root, Sun Apr 11 04:52:07 2010 UTC vs.
Revision 1.33 by root, Fri May 14 22:56:47 2010 UTC

20You can freely use \$a .. \$z and \@l and \%l 20You can freely use \$a .. \$z and \@l and \%l
21 21
22Useful commands (note the '&'): 22Useful commands (note the '&'):
23 23
24reload_perl & 24reload_perl &
25reload_sound &
25reload_config & 26reload_config &
26reload_regions & 27reload_regions &
27reload_facedata & 28reload_facedata &
29reload_exp_table &
30reload_materials &
28reload_treasures & 31reload_treasures &
29reload_archetypes & 32reload_archetypes &
33reload_resources &
30ext::help::reload & 34ext::help::reload &
31ext::books::reload & 35ext::books::reload &
32ext::map_tags::reload & 36ext::map_tags::reload &
33ext::map_world::reload & 37ext::map_world::reload &
38ext::player_env::reload &
39ext::map_scheduler::reload &
34# ext::map_scheduler::loadall & # debugging only! 40# ext::map_scheduler::loadall & # debugging only!
35while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } & 41while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
36({cf::mallinfo}) 42({mallinfo})
43({objinfo})
37EOF 44EOF
38 print $fh "\n> "; 45 print $fh "\n> ";
39 46
40 my $iow; $iow = AE::io $fh, 0, sub { 47 my $iow; $iow = AE::io $fh, 0, sub {
41 if (defined (my $cmd = <$fh>)) { 48 if (defined (my $cmd = <$fh>)) {
60 my $t2 = Time::HiRes::time; 67 my $t2 = Time::HiRes::time;
61 68
62 print "\n", 69 print "\n",
63 "command: '$cmd'\n", 70 "command: '$cmd'\n",
64 "execution time: ", $t2 - $t1, "\n"; 71 "execution time: ", $t2 - $t1, "\n";
65 warn "evaluation error: $@" if $@;
66 print "evaluation error: $@\n" if $@; 72 print "evaluation error: $@\n" if $@;
67 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 73 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
68 print "\n> "; 74 print "\n> ";
69 75
70 select STDOUT; 76 select STDOUT;
94 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 100 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
95 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept }; 101 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
96 } 102 }
97} 103}
98 104
99

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines