ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/player-scheduler.ext
Revision: 1.3
Committed: Wed Nov 4 17:24:00 2009 UTC (14 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-2_90, rel-2_92, rel-2_93
Changes since 1.2: +3 -2 lines
Log Message:
interim checkin, new spell

File Contents

# User Rev Content
1 root 1.1 #! perl # mandatory
2    
3     # player scheduler, evoking players from ram
4    
5     our $SCHEDULE_INTERVAL = $cf::CFG{player_schedule_interval} || 10; # time the player scheduler sleeps between runs
6     our $SAVE_TIMEOUT = $cf::CFG{player_save_interval} || 20; # save players every n seconds
7    
8     our $SCHEDULER = cf::async_ext {
9     $Coro::current->{desc} = "player scheduler";
10    
11     while () {
12     Coro::EV::timer_once $SCHEDULE_INTERVAL;
13    
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.1 warn "player-scheduler destroy ", $ob->name;#d#
40    
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     warn "player-scheduler refcnt ", $ob->name, " pl $pl_ref/3 ob $ob_ref/3 (C pl $a_/1 ob $b_/2)\n";#d#
51     }
52     }
53     }
54     };
55     warn $@ if $@;
56     cf::cede_to_tick;
57     };
58     }
59     };
60    
61     $SCHEDULER->prio (1);
62