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.464 by root, Thu Jan 1 18:35:48 2009 UTC vs.
Revision 1.469 by root, Mon Mar 2 22:25:19 2009 UTC

21 21
22package cf; 22package cf;
23 23
24use 5.10.0; 24use 5.10.0;
25use utf8; 25use utf8;
26use strict "vars", "subs"; 26use strict qw(vars subs);
27 27
28use Symbol; 28use Symbol;
29use List::Util; 29use List::Util;
30use Socket; 30use Socket;
31use EV; 31use EV;
105our %RESOURCE; 105our %RESOURCE;
106 106
107our $TICK = MAX_TIME * 1e-6; # this is a CONSTANT(!) 107our $TICK = MAX_TIME * 1e-6; # this is a CONSTANT(!)
108our $NEXT_RUNTIME_WRITE; # when should the runtime file be written 108our $NEXT_RUNTIME_WRITE; # when should the runtime file be written
109our $NEXT_TICK; 109our $NEXT_TICK;
110our $USE_FSYNC = 1; # use fsync to write maps - default off 110our $USE_FSYNC = 1; # use fsync to write maps - default on
111 111
112our $BDB_DEADLOCK_WATCHER; 112our $BDB_DEADLOCK_WATCHER;
113our $BDB_CHECKPOINT_WATCHER; 113our $BDB_CHECKPOINT_WATCHER;
114our $BDB_TRICKLE_WATCHER; 114our $BDB_TRICKLE_WATCHER;
115our $DB_ENV; 115our $DB_ENV;
116
117our @EXTRA_MODULES = qw(pod mapscript);
116 118
117our %CFG; 119our %CFG;
118 120
119our $UPTIME; $UPTIME ||= time; 121our $UPTIME; $UPTIME ||= time;
120our $RUNTIME; 122our $RUNTIME;
143unless ($RUNTIME || !-e $RUNTIMEFILE) { 145unless ($RUNTIME || !-e $RUNTIMEFILE) {
144 open my $fh, "<", $RUNTIMEFILE 146 open my $fh, "<", $RUNTIMEFILE
145 or die "unable to read $RUNTIMEFILE file: $!"; 147 or die "unable to read $RUNTIMEFILE file: $!";
146 $RUNTIME = <$fh> + 0.; 148 $RUNTIME = <$fh> + 0.;
147} 149}
150
151eval "sub TICK() { $TICK } 1" or die;
148 152
149mkdir $_ 153mkdir $_
150 for $LOCALDIR, $TMPDIR, $UNIQUEDIR, $PLAYERDIR, $RANDOMDIR, $BDBDIR; 154 for $LOCALDIR, $TMPDIR, $UNIQUEDIR, $PLAYERDIR, $RANDOMDIR, $BDBDIR;
151 155
152our $EMERGENCY_POSITION; 156our $EMERGENCY_POSITION;
2384 2388
2385our $SAY_CHANNEL = { 2389our $SAY_CHANNEL = {
2386 id => "say", 2390 id => "say",
2387 title => "Map", 2391 title => "Map",
2388 reply => "say ", 2392 reply => "say ",
2389 tooltip => "Things said to and replied from npcs near you and other players on the same map only.", 2393 tooltip => "Things said to and replied from NPCs near you and other players on the same map only.",
2390}; 2394};
2391 2395
2392our $CHAT_CHANNEL = { 2396our $CHAT_CHANNEL = {
2393 id => "chat", 2397 id => "chat",
2394 title => "Chat", 2398 title => "Chat",
2769 id => "infobox", 2773 id => "infobox",
2770 title => "Body Parts", 2774 title => "Body Parts",
2771 reply => undef, 2775 reply => undef,
2772 tooltip => "Shows which body parts you posess and are available", 2776 tooltip => "Shows which body parts you posess and are available",
2773 }, 2777 },
2778 "c/statistics" => {
2779 id => "infobox",
2780 title => "Statistics",
2781 reply => undef,
2782 tooltip => "Shows your primary statistics",
2783 },
2774 "c/skills" => { 2784 "c/skills" => {
2775 id => "infobox", 2785 id => "infobox",
2776 title => "Skills", 2786 title => "Skills",
2777 reply => undef, 2787 reply => undef,
2778 tooltip => "Shows your experience per skill and item power", 2788 tooltip => "Shows your experience per skill and item power",
2789 },
2790 "c/resistances" => {
2791 id => "infobox",
2792 title => "Resistances",
2793 reply => undef,
2794 tooltip => "Shows your resistances",
2795 },
2796 "c/pets" => {
2797 id => "infobox",
2798 title => "Pets",
2799 reply => undef,
2800 tooltip => "Shows information abotu your pets/a specific pet",
2779 }, 2801 },
2780 "c/uptime" => { 2802 "c/uptime" => {
2781 id => "infobox", 2803 id => "infobox",
2782 title => "Uptime", 2804 title => "Uptime",
2783 reply => undef, 2805 reply => undef,
3034The following functions and methods are available within a safe environment: 3056The following functions and methods are available within a safe environment:
3035 3057
3036 cf::object 3058 cf::object
3037 contr pay_amount pay_player map x y force_find force_add destroy 3059 contr pay_amount pay_player map x y force_find force_add destroy
3038 insert remove name archname title slaying race decrease split 3060 insert remove name archname title slaying race decrease split
3061 value
3039 3062
3040 cf::object::player 3063 cf::object::player
3041 player 3064 player
3042 3065
3043 cf::player 3066 cf::player
3049=cut 3072=cut
3050 3073
3051for ( 3074for (
3052 ["cf::object" => qw(contr pay_amount pay_player map force_find force_add x y 3075 ["cf::object" => qw(contr pay_amount pay_player map force_find force_add x y
3053 insert remove inv nrof name archname title slaying race 3076 insert remove inv nrof name archname title slaying race
3054 decrease split destroy change_exp)], 3077 decrease split destroy change_exp value msg lore send_msg)],
3055 ["cf::object::player" => qw(player)], 3078 ["cf::object::player" => qw(player)],
3056 ["cf::player" => qw(peaceful)], 3079 ["cf::player" => qw(peaceful send_msg)],
3057 ["cf::map" => qw(trigger)], 3080 ["cf::map" => qw(trigger)],
3058) { 3081) {
3059 no strict 'refs'; 3082 no strict 'refs';
3060 my ($pkg, @funs) = @$_; 3083 my ($pkg, @funs) = @$_;
3061 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"}) 3084 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
3078 my ($code, %vars) = @_; 3101 my ($code, %vars) = @_;
3079 3102
3080 my $qcode = $code; 3103 my $qcode = $code;
3081 $qcode =~ s/"/‟/g; # not allowed in #line filenames 3104 $qcode =~ s/"/‟/g; # not allowed in #line filenames
3082 $qcode =~ s/\n/\\n/g; 3105 $qcode =~ s/\n/\\n/g;
3106
3107 %vars = (_dummy => 0) unless %vars;
3083 3108
3084 local $_; 3109 local $_;
3085 local @safe::cf::_safe_eval_args = values %vars; 3110 local @safe::cf::_safe_eval_args = values %vars;
3086 3111
3087 my $eval = 3112 my $eval =
3675 clear_package "safe::$_" 3700 clear_package "safe::$_"
3676 for qw(cf::attachable cf::object cf::object::player cf::client cf::player cf::map cf::party cf::region); 3701 for qw(cf::attachable cf::object cf::object::player cf::client cf::player cf::map cf::party cf::region);
3677 3702
3678 warn "unloading cf.pm \"a bit\""; 3703 warn "unloading cf.pm \"a bit\"";
3679 delete $INC{"cf.pm"}; 3704 delete $INC{"cf.pm"};
3680 delete $INC{"cf/pod.pm"}; 3705 delete $INC{"cf/$_.pm"} for @EXTRA_MODULES;
3681 3706
3682 # don't, removes xs symbols, too, 3707 # don't, removes xs symbols, too,
3683 # and global variables created in xs 3708 # and global variables created in xs
3684 #clear_package __PACKAGE__; 3709 #clear_package __PACKAGE__;
3685 3710
3902 LOG llevInfo, "[ABT] [suppressed]\n"; 3927 LOG llevInfo, "[ABT] [suppressed]\n";
3903 } 3928 }
3904} 3929}
3905 3930
3906# load additional modules 3931# load additional modules
3907use cf::pod; 3932require "cf/$_.pm" for @EXTRA_MODULES;
3908 3933
3909END { cf::emergency_save } 3934END { cf::emergency_save }
3910 3935
39111 39361
3912 3937

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines