ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/player-scheduler.ext
Revision: 1.8
Committed: Fri Feb 3 03:01:45 2012 UTC (12 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-3_1, HEAD
Changes since 1.7: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #! perl # mandatory
2    
3     # player scheduler, evoking players from ram
4    
5 root 1.8 CONF SCHEDULE_INTERVAL : player_schedule_interval = 10; # time the player scheduler sleeps between runs
6     CONF SAVE_TIMEOUT : player_save_interval = 20; # save players every n seconds
7 root 1.1
8     our $SCHEDULER = cf::async_ext {
9     $Coro::current->{desc} = "player scheduler";
10    
11     while () {
12 root 1.7 Coro::AnyEvent::sleep $SCHEDULE_INTERVAL;
13 root 1.1
14     # this weird form of iteration over values is used because
15     # the hash changes underneath us frequently, and for
16     # keeps a direct reference to the value without (in 5.8 perls)
17     # keeping a reference, so this is prone to crashes or worse.
18     my @players = keys %cf::PLAYER;
19     for (@players) {
20     my $pl = $cf::PLAYER{$_}
21     or next;
22     $pl->valid or next;
23    
24     eval {
25     if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) {
26     $pl->save;
27    
28     unless ($pl->active || $pl->ns) {
29     # check refcounts, this is tricky and needs to be adjusted to fit server internals
30     my $ob = $pl->ob;
31    
32     my $pl_ref = $pl->refcnt_cnt;
33     my $ob_ref = $ob->refcnt_cnt;
34    
35 root 1.2 ## pl_ref == (P)$pl + (P)%cf::PLAYER + (C)ob->contr
36 root 1.3 ## ob_ref == (P)$ob + (C)pl->observe + (C)pl->viewpoint + (C)simply being an object
37     ## !$pl->ns ensures that ob == viewpoint == observe
38     if ($pl_ref == 3 && $ob_ref == 4) {
39 root 1.6 cf::trace "player-scheduler destroy ", $ob->name;#d#
40 root 1.1
41     # remove from sight and get fresh "copies"
42     $pl = delete $cf::PLAYER{$ob->name};
43     $ob = $pl->ob;
44    
45     $pl->destroy; # destroys $ob
46     } else {
47     my $a_ = $pl->refcnt;#d#
48     my $b_ = $ob->refcnt;#d#
49    
50 root 1.6 cf::debug "player-scheduler refcnt ", $ob->name, " pl $pl_ref/3 ob $ob_ref/3 (C pl $a_/1 ob $b_/2)\n";#d#
51 root 1.1 }
52     }
53     }
54     };
55 root 1.6 cf::error $@ if $@;
56    
57 root 1.1 cf::cede_to_tick;
58     };
59     }
60     };
61    
62     $SCHEDULER->prio (1);
63