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.27 by root, Mon Apr 12 17:13:36 2010 UTC vs.
Revision 1.35 by root, Tue Nov 6 23:33:15 2012 UTC

19Remember that everything entered here will be in the main coro context within cf::! 19Remember that everything entered here will be in the main coro context within cf::!
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_pod &
24reload_perl & 25reload_perl &
26reload_sound &
25reload_config & 27reload_config &
26reload_regions & 28reload_regions &
27reload_facedata & 29reload_facedata &
30reload_exp_table &
31reload_materials &
28reload_treasures & 32reload_treasures &
33reload_resources &
29reload_archetypes & 34reload_archetypes &
30ext::help::reload & 35ext::help::reload &
31ext::books::reload & 36ext::books::reload &
32ext::map_tags::reload & 37ext::map_tags::reload &
33ext::map_world::reload & 38ext::map_world::reload &
39ext::player_env::reload &
40ext::map_scheduler::reload &
34# ext::map_scheduler::loadall & # debugging only! 41# ext::map_scheduler::loadall & # debugging only!
35while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } & 42until (Coro::AnyEvent::readable \$fh, 1) { Coro::Debug::command "ps" } &
36({mallinfo}) 43({mallinfo})
37({objinfo}) 44({objinfo})
38EOF 45EOF
39 print $fh "\n> "; 46 print $fh "\n> ";
40 47
61 my $t2 = Time::HiRes::time; 68 my $t2 = Time::HiRes::time;
62 69
63 print "\n", 70 print "\n",
64 "command: '$cmd'\n", 71 "command: '$cmd'\n",
65 "execution time: ", $t2 - $t1, "\n"; 72 "execution time: ", $t2 - $t1, "\n";
66 warn "evaluation error: $@" if $@;
67 print "evaluation error: $@\n" if $@; 73 print "evaluation error: $@\n" if $@;
68 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 74 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
69 print "\n> "; 75 print "\n> ";
70 76
71 select STDOUT; 77 select STDOUT;
95 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 101 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
96 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept }; 102 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
97 } 103 }
98} 104}
99 105
100

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines