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

Comparing deliantra/server/ext/map-scheduler.ext (file contents):
Revision 1.2 by root, Mon Jan 1 12:28:46 2007 UTC vs.
Revision 1.8 by root, Wed Jan 3 03:04:12 2007 UTC

1#! perl 1#! perl
2 2
3# this extension swaps out maps and resets them, in essence managing 3# this extension swaps out maps and resets them, in essence managing
4# the reset/swap policy of the server. 4# the reset/swap policy of the server.
5 5
6our $DEACTIVATE_TIMEOUT = 60; # number of seconds after which maps get deactivated to save cpu 6our $DEACTIVATE_TIMEOUT = 20; # number of seconds after which maps get deactivated to save cpu
7our $SWAP_TIMEOUT = 600; # number of seconds after which maps inactive get swapped out 7our $SWAP_TIMEOUT = 50; # number of seconds after which maps inactive get swapped out
8our $SCHEDULE_INTERVAL = 8; # time the map scheduler sleeps between runs 8our $SCHEDULE_INTERVAL = 2; # time the map scheduler sleeps between runs
9our $SAVE_TIMEOUT = 60; # save maps every n seconds 9our $SAVE_TIMEOUT = 30; # save maps every n seconds
10our $SAVE_INTERVAL = 0.4; # save at max. one map every $SAVE_HOLD 10our $SAVE_INTERVAL = 0.3; # save at max. one map every $SAVE_INTERVAL
11
12$DEACTIVATE_TIMEOUT = 3;#d#
13$SWAP_TIMEOUT = 5;#d#
14$SCHEDULE_INTERVAL = 1;
15 11
16our $SCHEDULER = cf::coro { 12our $SCHEDULER = cf::coro {
17 while () { 13 while () {
18 Coro::Timer::sleep $SCHEDULE_INTERVAL; 14 Coro::Timer::sleep $SCHEDULE_INTERVAL;
19 15
20 for my $map (values %cf::MAP) { 16 my @maps = keys %cf::MAP;
17 for (@maps) {
18 my $map = $cf::MAP{$_}
19 or next;
20 $map->valid or next;
21 eval { 21 eval {
22 next if $map->players;
23 my $last_access = $map->last_access;
24 # not yet, because maps might become visible to players nearby 22 # not yet, because maps might become visible to players nearby
25 # we need a tiled meta map for this to work 23 # we need to remove the map from %cf::MAP and all tiled map links
26# if ($last_access + $DEACTIVATE_TIMEOUT <= $cf::RUNTIME) { 24# if ($last_access + $DEACTIVATE_TIMEOUT <= $cf::RUNTIME) {
27# $map->deactivate; 25# $map->deactivate;
28# delete $map->{active}; 26# delete $map->{active};
29# } 27# }
30 if ($map->should_reset) { 28 if ($map->should_reset) {
31 $map->reset; 29 $map->reset;
30 } elsif ($map->in_memory == cf::MAP_IN_MEMORY) {
32 } elsif ($last_access + $SWAP_TIMEOUT <= $cf::RUNTIME) { 31 if ($map->last_access + $SWAP_TIMEOUT <= $cf::RUNTIME && !$map->players) {
33 $map->swap_out; 32 $map->swap_out;
34 Coro::Timer::sleep $SAVE_INTERVAL; 33 Coro::Timer::sleep $SAVE_INTERVAL;
35 } elsif ($map->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) { 34 } elsif ($map->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) {
36 $map->save; 35 $map->save;
37 Coro::Timer::sleep $SAVE_INTERVAL; 36 Coro::Timer::sleep $SAVE_INTERVAL;
37 }
38 } 38 }
39 }; 39 };
40 warn $@ if $@; 40 warn $@ if $@;
41 Coro::cede; 41 Coro::cede;
42 } 42 };
43 } 43 }
44}; 44};
45
45$SCHEDULER->prio (-2); 46$SCHEDULER->prio (-2);
46 47

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines