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

Comparing deliantra/server/ext/login.ext (file contents):
Revision 1.49 by root, Sun Jun 10 03:11:16 2007 UTC vs.
Revision 1.54 by root, Sat Jun 16 00:12:20 2007 UTC

1#! perl # MANDATORY 1#! perl # mandatory
2 2
3# login handling 3# login handling
4 4
5use Fcntl; 5use Fcntl;
6use Coro::AIO; 6use Coro::AIO;
7use List::Util qw(min max); 7use List::Util qw(min max);
8
9our %EXT_SETUP;
8 10
9# paranoia function to overwrite a string-in-place 11# paranoia function to overwrite a string-in-place
10sub nuke_str { 12sub nuke_str {
11 substr $_[0], 0, (length $_[0]), "x" x length $_[0] 13 substr $_[0], 0, (length $_[0]), "x" x length $_[0]
12} 14}
593 $pl->save; 595 $pl->save;
594 596
595 unless ($pl->active || $pl->ns) { 597 unless ($pl->active || $pl->ns) {
596 # check refcounts, this is tricky and needs to be adjusted to fit server internals 598 # check refcounts, this is tricky and needs to be adjusted to fit server internals
597 my $ob = $pl->ob; 599 my $ob = $pl->ob;
598 Scalar::Util::weaken $pl; 600
599 Scalar::Util::weaken $ob;
600 my $a_ = $pl->refcnt;#d#
601 my $b_ = $ob->refcnt;#d#
602 my $pl_ref = $pl->refcnt_cnt; 601 my $pl_ref = $pl->refcnt_cnt;
603 my $ob_ref = $ob->refcnt_cnt; 602 my $ob_ref = $ob->refcnt_cnt;
604 603
605 ## pl_ref == one from object + one from cf::PLAYER 604 ## pl_ref == $pl + ob->contr + %cf::PLAYER
606 ## ob_ref == one from simply being an object + one from pl->observe 605 ## ob_ref == $ob + pl->observe + simply being an object
607 if ($pl_ref == 2 && $ob_ref == 2) { 606 if ($pl_ref == 3 && $ob_ref == 3) {
608 warn "player-scheduler destroy ", $ob->name;#d# 607 warn "player-scheduler destroy ", $ob->name;#d#
609 608
610 # remove from sight and get fresh "copies" 609 # remove from sight and get fresh "copies"
611 $pl = delete $cf::PLAYER{$ob->name}; 610 $pl = delete $cf::PLAYER{$ob->name};
612 $ob = $pl->ob; 611 $ob = $pl->ob;
613 612
614 $ob->destroy;
615 $pl->destroy; 613 $pl->destroy; # destroys $ob
616 } else { 614 } else {
615 my $a_ = $pl->refcnt;#d#
616 my $b_ = $ob->refcnt;#d#
617
617 warn "player-scheduler refcnt ", $ob->name, " pp$pl_ref,pc$a_ op$ob_ref,oc$b_\n";#d# 618 warn "player-scheduler refcnt ", $ob->name, " pl $pl_ref ob $ob_ref (C pl $a_ ob $b_)\n";#d#
618 } 619 }
619 } 620 }
620 } 621 }
621 }; 622 };
622 warn $@ if $@; 623 warn $@ if $@;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines