ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/cf.pm
(Generate patch)

Comparing deliantra/server/lib/cf.pm (file contents):
Revision 1.220 by root, Sat Feb 17 23:54:35 2007 UTC vs.
Revision 1.224 by root, Mon Mar 12 21:42:12 2007 UTC

4use strict; 4use strict;
5 5
6use Symbol; 6use Symbol;
7use List::Util; 7use List::Util;
8use Storable; 8use Storable;
9use Event;
9use Opcode; 10use Opcode;
10use Safe; 11use Safe;
11use Safe::Hole; 12use Safe::Hole;
12 13
13use Coro 3.5 (); 14use Coro 3.52 ();
15use Coro::State;
14use Coro::Event; 16use Coro::Event;
15use Coro::Timer; 17use Coro::Timer;
16use Coro::Signal; 18use Coro::Signal;
17use Coro::Semaphore; 19use Coro::Semaphore;
18use Coro::AIO; 20use Coro::AIO;
24use IO::AIO 2.32 (); 26use IO::AIO 2.32 ();
25use YAML::Syck (); 27use YAML::Syck ();
26use Time::HiRes; 28use Time::HiRes;
27use Compress::LZF; 29use Compress::LZF;
28 30
31Coro::State::cctx_stacksize 256000; # 1-2MB stack, for deep recursions in maze generator
29Compress::LZF::sfreeze_cr { }; # prime Compress::LZF so it does not use require later 32Compress::LZF::sfreeze_cr { }; # prime Compress::LZF so it does not use require later
30
31use Event; $Event::Eval = 1; # no idea why this is required, but it is 33$Event::Eval = 1; # no idea why this is required, but it is
32 34
33sub WF_AUTOCANCEL () { 1 } # automatically cancel this watcher on reload 35sub WF_AUTOCANCEL () { 1 } # automatically cancel this watcher on reload
34 36
35# work around bug in YAML::Syck - bad news for perl6, will it be as broken wrt. unicode? 37# work around bug in YAML::Syck - bad news for perl6, will it be as broken wrt. unicode?
36$YAML::Syck::ImplicitUnicode = 1; 38$YAML::Syck::ImplicitUnicode = 1;
43our @EXTS = (); # list of extension package names 45our @EXTS = (); # list of extension package names
44our %EXTCMD = (); 46our %EXTCMD = ();
45our %EXT_CORO = (); # coroutines bound to extensions 47our %EXT_CORO = (); # coroutines bound to extensions
46our %EXT_MAP = (); # pluggable maps 48our %EXT_MAP = (); # pluggable maps
47 49
50our $RELOAD; # number of reloads so far
48our @EVENT; 51our @EVENT;
49our $LIBDIR = datadir . "/ext"; 52our $LIBDIR = datadir . "/ext";
50 53
51our $TICK = MAX_TIME * 1e-6; 54our $TICK = MAX_TIME * 1e-6;
52our $TICK_WATCHER; 55our $TICK_WATCHER;
1052 1055
1053 # nuke player maps 1056 # nuke player maps
1054 $cf::MAP{$_}->nuke for grep /$prefix/, keys %cf::MAP; 1057 $cf::MAP{$_}->nuke for grep /$prefix/, keys %cf::MAP;
1055 1058
1056 IO::AIO::aio_rmtree $temp; 1059 IO::AIO::aio_rmtree $temp;
1060}
1061
1062=item $pl->kick
1063
1064Kicks a player out of the game. This destroys the connection.
1065
1066=cut
1067
1068sub kick {
1069 my ($pl, $kicker) = @_;
1070
1071 $pl->invoke (cf::EVENT_PLAYER_KICK, $kicker);
1072 $pl->killer ("kicked");
1073 $pl->ns->destroy;
1057} 1074}
1058 1075
1059=item cf::player::list_logins 1076=item cf::player::list_logins
1060 1077
1061Returns am arrayref of all valid playernames in the system, can take a 1078Returns am arrayref of all valid playernames in the system, can take a
2252} 2269}
2253 2270
2254############################################################################# 2271#############################################################################
2255# the server's init and main functions 2272# the server's init and main functions
2256 2273
2274sub load_faces {
2275 my $path = sprintf "%s/faces", cf::datadir;
2276
2277 warn "loading faces from $path\n";
2278
2279 my $faces;
2280 0 < aio_load $path, $faces
2281 or die "$path: $!";
2282
2283 Coro::cede;
2284 $faces = Storable::thaw $faces;
2285 Coro::cede;
2286
2287 while (my ($face, $info) = each %$faces) {
2288 my $idx = (cf::face::find $face) || cf::face::alloc $face;
2289 cf::face::set $idx, $info->{visibility}, $info->{magicmap};
2290 cf::face::set_data $idx, 0, $info->{data32}, $info->{chksum32};
2291 Coro::cede;
2292 }
2293
2294 1
2295}
2296
2257sub init_resources { 2297sub reload_resources {
2258 load_resource_file sprintf "%s/%s/regions", cf::datadir, cf::mapdir 2298 load_resource_file sprintf "%s/%s/regions", cf::datadir, cf::mapdir
2259 or die "unable to load regions file\n";#d# 2299 or die "unable to load regions file\n";#d#
2300 load_faces
2301 or die "unable to load faces\n";#d#
2302}
2303
2304sub init {
2305 reload_resources;
2260} 2306}
2261 2307
2262sub cfg_load { 2308sub cfg_load {
2263 open my $fh, "<:utf8", cf::confdir . "/config" 2309 open my $fh, "<:utf8", cf::confdir . "/config"
2264 or return; 2310 or return;
2276 $CFG{mlockall} ? eval "mlockall()" : eval "munlockall()" 2322 $CFG{mlockall} ? eval "mlockall()" : eval "munlockall()"
2277 and die "WARNING: m(un)lockall failed: $!\n"; 2323 and die "WARNING: m(un)lockall failed: $!\n";
2278 }; 2324 };
2279 warn $@ if $@; 2325 warn $@ if $@;
2280 } 2326 }
2281}
2282
2283sub init {
2284 init_resources;
2285} 2327}
2286 2328
2287sub main { 2329sub main {
2288 # we must not ever block the main coroutine 2330 # we must not ever block the main coroutine
2289 local $Coro::idle = sub { 2331 local $Coro::idle = sub {
2392 Coro::cede; 2434 Coro::cede;
2393 last unless IO::AIO::nreqs || BDB::nreqs; 2435 last unless IO::AIO::nreqs || BDB::nreqs;
2394 warn "iterate..."; 2436 warn "iterate...";
2395 } 2437 }
2396 2438
2439 ++$RELOAD;
2440
2397 warn "cancelling all extension coros"; 2441 warn "cancelling all extension coros";
2398 $_->cancel for values %EXT_CORO; 2442 $_->cancel for values %EXT_CORO;
2399 %EXT_CORO = (); 2443 %EXT_CORO = ();
2400 2444
2401 warn "removing commands"; 2445 warn "removing commands";
2458 2502
2459 warn "loading extensions"; 2503 warn "loading extensions";
2460 cf::load_extensions; 2504 cf::load_extensions;
2461 2505
2462 warn "reattaching attachments to objects/players"; 2506 warn "reattaching attachments to objects/players";
2463 _global_reattach; 2507 _global_reattach; # objects, sockets
2464 warn "reattaching attachments to maps"; 2508 warn "reattaching attachments to maps";
2465 reattach $_ for values %MAP; 2509 reattach $_ for values %MAP;
2510 warn "reattaching attachments to players";
2511 reattach $_ for values %PLAYER;
2466 2512
2467 warn "loading reloadable resources"; 2513 warn "loading reloadable resources";
2468 init_resources; 2514 reload_resources;
2469 2515
2470 warn "leaving sync_job"; 2516 warn "leaving sync_job";
2471 2517
2472 1 2518 1
2473 } or do { 2519 } or do {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines