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.15 by root, Sun Jun 11 15:02:16 2006 UTC vs.
Revision 1.34 by root, Thu Aug 24 13:13:49 2006 UTC

1package cf; 1package cf;
2 2
3use Symbol; 3use Symbol;
4use List::Util; 4use List::Util;
5use Storable; 5use Storable;
6use Opcode;
7use Safe;
8use Safe::Hole;
9
10use Time::HiRes;
11use Event;
12$Event::Eval = 1; # no idea why this is required, but it is
6 13
7use strict; 14use strict;
8 15
9our %COMMAND; 16our %COMMAND;
10our @EVENT; 17our @EVENT;
11our %PROP_TYPE; 18our %PROP_TYPE;
12our %PROP_IDX; 19our %PROP_IDX;
20our $LIBDIR = maps_directory "perl";
13 21
14BEGIN { 22BEGIN {
15 @EVENT = map lc, @EVENT; 23 @EVENT = map lc, @EVENT;
16 24
17 *CORE::GLOBAL::warn = sub { 25 *CORE::GLOBAL::warn = sub {
58prop_gen MAP_PROP => "cf::map"; 66prop_gen MAP_PROP => "cf::map";
59prop_gen ARCH_PROP => "cf::arch"; 67prop_gen ARCH_PROP => "cf::arch";
60 68
61# guessed hierarchies 69# guessed hierarchies
62 70
63@cf::object::player::ISA = 'cf::object'; 71@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
64@cf::object::map::ISA = 'cf::object'; 72@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
73
74# we bless all objects into derived classes to force a method lookup
75# within the Safe compartment.
76for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region cf::arch)) {
77 no strict 'refs';
78 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
79}
80
81$Event::DIED = sub {
82 warn "error in event callback: @_";
83};
65 84
66my %ext_pkg; 85my %ext_pkg;
67my @exts; 86my @exts;
68my @hook; 87my @hook;
69my %command; 88my %command;
100 119
101sub register_command { 120sub register_command {
102 my ($name, $time, $cb) = @_; 121 my ($name, $time, $cb) = @_;
103 122
104 my $caller = caller; 123 my $caller = caller;
105
106 warn "registering command '$name/$time' to '$caller'"; 124 #warn "registering command '$name/$time' to '$caller'";
107 125
108 push @{ $command{$name} }, [$time, $cb, $caller]; 126 push @{ $command{$name} }, [$time, $cb, $caller];
109 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} }; 127 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} };
110} 128}
111 129
130sub register_extcmd {
131 my ($name, $cb) = @_;
132
133 my $caller = caller;
134 #warn "registering extcmd '$name' to '$caller'";
135
136 $extcmd{$name} = [$cb, $caller];
137}
138
112sub register { 139sub register {
113 my ($base, $pkg) = @_; 140 my ($base, $pkg) = @_;
114 141
115 for my $idx (0 .. $#EVENT) { 142 for my $idx (0 .. $#EVENT) {
116 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) { 143 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) {
117 warn "registering $EVENT[$idx] hook to '$pkg'\n"; 144 #warn "registering $EVENT[$idx] hook to '$pkg'\n";
118 $hook[$idx]{$base} = $ref; 145 $hook[$idx]{$base} = $ref;
119 } 146 }
120 } 147 }
121} 148}
122 149
145 172
146 push @exts, $pkg; 173 push @exts, $pkg;
147 $ext_pkg{$base} = $pkg; 174 $ext_pkg{$base} = $pkg;
148 175
149# no strict 'refs'; 176# no strict 'refs';
150# @{"$pkg\::ISA"} = cf::ext::; 177# @{"$pkg\::ISA"} = ext::;
151 178
152 register $base, $pkg; 179 register $base, $pkg;
153} 180}
154 181
155sub unload_extension { 182sub unload_extension {
174 delete $COMMAND{"$name\000"}; 201 delete $COMMAND{"$name\000"};
175 } 202 }
176 } 203 }
177 204
178 # remove extcmds 205 # remove extcmds
179 for my $name (keys %command) { 206 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
180 my @cb = grep $_->[2] ne $pkg, @{ $command{$name} };
181
182 if (@cb) {
183 $command{$name} = \@cb;
184 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @cb;
185 } else {
186 delete $command{$name}; 207 delete $extcmd{$name};
187 delete $COMMAND{"$name\000"};
188 }
189 } 208 }
190 209
210 if (my $cb = $pkg->can ("on_unload")) {
211 eval {
212 $cb->($pkg);
213 1
214 } or warn "$pkg unloaded, but with errors: $@";
215 }
191 216
192 Symbol::delete_package $pkg; 217 Symbol::delete_package $pkg;
193} 218}
194 219
195sub load_extensions { 220sub load_extensions {
210 if ($who->flag (FLAG_WIZ)) { 235 if ($who->flag (FLAG_WIZ)) {
211 $who->message ("reloading..."); 236 $who->message ("reloading...");
212 237
213 warn "reloading...\n"; 238 warn "reloading...\n";
214 eval { 239 eval {
240 # 1. cancel all watchers
241 $_->cancel for Event::all_watchers;
242
243 # 2. unload all extensions
244 for (@exts) {
245 $who->message ("unloading <$_>");
215 unload_extension $_ for @exts; 246 unload_extension $_;
247 }
248
249 # 3. unload all modules loaded from $LIBDIR
250 while (my ($k, $v) = each %INC) {
251 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
252
253 $who->message ("removing <$k>");
254 delete $INC{$k};
255
256 $k =~ s/\.pm$//;
257 $k =~ s/\//::/g;
258
259 if (my $cb = $k->can ("unload_module")) {
260 $cb->();
261 }
262
263 Symbol::delete_package $k;
264 }
265
266 # 4. get rid of ext::, as good as possible
267 Symbol::delete_package "ext::$_"
268 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
269
270 # 5. remove register_script_function callbacks
271 # TODO
272
273 # 6. unload cf.pm "a bit"
216 delete $INC{"cf.pm"}; 274 delete $INC{"cf.pm"};
217 275
218 # don't, removes xs symbols, too 276 # don't, removes xs symbols, too
219 #Symbol::delete_package $pkg; 277 #Symbol::delete_package __PACKAGE__;
220 278
279 # 7. reload cf.pm
280 $who->message ("reloading cf.pm");
221 require cf; 281 require cf;
222 }; 282 };
223 warn $@ if $@; 283 warn $@ if $@;
224 $who->message ($@) if $@; 284 $who->message ($@) if $@;
225 warn "reloaded\n"; 285 warn "reloaded\n";
229 $who->message ("Intruder Alert!"); 289 $who->message ("Intruder Alert!");
230 } 290 }
231}; 291};
232 292
233############################################################################# 293#############################################################################
294# utility functions
295
296use JSON::Syck (); # TODO# replace by JSON::PC once working
297
298sub from_json($) {
299 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
300 JSON::Syck::Load $_[0]
301}
302
303sub to_json($) {
304 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
305 JSON::Syck::Dump $_[0]
306}
307
308#############################################################################
234# extcmd framework, basically convert ext <id> <pkg> arg1 args 309# extcmd framework, basically convert ext <msg>
235# into pkg::->on_extcmd_arg1 (...) while shortcutting a few 310# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
236 311
237sub on_extcmd { 312sub on_extcmd {
238 my ($pl, $buf) = @_; 313 my ($pl, $buf) = @_;
239 314
240 my ($id, $pkg, $name, $data) = split / /, $buf, 4; 315 my $msg = eval { from_json $buf };
241 316
242 if (my $method = "cf::ext::$pkg"->can ("on_extcmd_$name")) { 317 if (ref $msg) {
243 $method->($pl, $id, $buf); 318 if (my $cb = $extcmd{$msg->{msgtype}}) {
319 if (my %reply = $cb->[0]->($pl, $msg)) {
320 $pl->ext_reply ($msg->{msgid}, %reply);
321 }
322 }
323 } else {
324 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
325 }
326
244 } 327 1
245} 328}
246 329
247############################################################################# 330#############################################################################
248# load/save/clean perl data associated with a map 331# load/save/clean perl data associated with a map
249 332
302}; 385};
303 386
304############################################################################# 387#############################################################################
305# load/save perl data associated with player->ob objects 388# load/save perl data associated with player->ob objects
306 389
390sub all_objects(@) {
391 @_, map all_objects ($_->inv), @_
392}
393
307*on_player_load = sub { 394*on_player_load = sub {
308 my ($ob, $path) = @_; 395 my ($ob, $path) = @_;
309 396
310 if (open my $fh, "<:raw", "$path.cfperl") { 397 for my $o (all_objects $ob) {
311
312 #d##TODO#remove
313
314 my $data = Storable::thaw do { local $/; <$fh> };
315
316 $data->{version} <= 1
317 or return; # too new
318
319 %$ob = %{$data->{ob}};
320 return;
321 }
322
323 for my $o ($ob, $ob->inv) {
324 if (my $value = $o->get_ob_key_value ("_perl_data")) { 398 if (my $value = $o->get_ob_key_value ("_perl_data")) {
325 $o->set_ob_key_value ("_perl_data"); 399 $o->set_ob_key_value ("_perl_data");
326 400
327 %$o = %{ Storable::thaw pack "H*", $value }; 401 %$o = %{ Storable::thaw pack "H*", $value };
328 } 402 }
331 405
332*on_player_save = sub { 406*on_player_save = sub {
333 my ($ob, $path) = @_; 407 my ($ob, $path) = @_;
334 408
335 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_) 409 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
336 for grep %$_, $ob, $ob->inv; 410 for grep %$_, all_objects $ob;
337
338 unlink "$path.cfperl";#d##TODO#remove
339}; 411};
412
413#############################################################################
414# core extensions - in perl
415
416=item cf::player::exists $login
417
418Returns true when the given account exists.
419
420=cut
421
422sub cf::player::exists($) {
423 cf::player::find $_[0]
424 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
425}
426
427=item $player->reply ($npc, $msg[, $flags])
428
429Sends a message to the player, as if the npc C<$npc> replied. C<$npc>
430can be C<undef>. Does the right thing when the player is currently in a
431dialogue with the given NPC character.
432
433=cut
434
435# rough implementation of a future "reply" method that works
436# with dialog boxes.
437sub cf::object::player::reply($$$;$) {
438 my ($self, $npc, $msg, $flags) = @_;
439
440 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
441
442 if ($self->{record_replies}) {
443 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
444 } else {
445 $msg = $npc->name . " says: $msg" if $npc;
446 $self->message ($msg, $flags);
447 }
448}
449
450=item $player->ext_reply ($msgid, $msgtype, %msg)
451
452Sends an ext reply to the player.
453
454=cut
455
456sub cf::player::ext_reply($$$%) {
457 my ($self, $id, %msg) = @_;
458
459 $msg{msgid} = $id;
460
461 $self->send ("ext " . to_json \%msg);
462}
463
464#############################################################################
465# map scripting support
466
467our $safe = new Safe "ext";
468our $safe_hole = new Safe::Hole;
469
470$SIG{FPE} = 'IGNORE';
471
472$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
473
474# here we export the classes and methods available to script code
475
476for (
477 ["cf::object" => qw(contr pay_amount pay_player)],
478 ["cf::object::player" => qw(player)],
479 ["cf::player" => qw(peaceful)],
480) {
481 no strict 'refs';
482 my ($pkg, @funs) = @$_;
483 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
484 for @funs;
485}
486
487sub safe_eval($;@) {
488 my ($code, %vars) = @_;
489
490 my $qcode = $code;
491 $qcode =~ s/"/‟/g; # not allowed in #line filenames
492 $qcode =~ s/\n/\\n/g;
493
494 local $_;
495 local @ext::cf::_safe_eval_args = values %vars;
496
497 $code =
498 "do {\n"
499 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
500 . "#line 0 \"{$qcode}\"\n"
501 . $code
502 . "\n}"
503 ;
504
505 sub_generation_inc;
506 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code);
507 sub_generation_inc;
508
509 wantarray ? @res : $res[0]
510}
511
512sub register_script_function {
513 my ($fun, $cb) = @_;
514
515 no strict 'refs';
516 *{"ext::$fun"} = $safe_hole->wrap ($cb);
517}
518
519#############################################################################
520# the server's main()
521
522sub run {
523 my $tick = MAX_TIME * 1e-6;
524 my $next = Event::time;
525 my $timer = Event->timer (at => $next, cb => sub {
526 cf::server_tick; # one server iteration
527
528 $next += $tick;
529 my $NOW = Event::time;
530
531 # if we are delayd by > 0.25 second, skip ticks
532 $next = $NOW if $NOW >= $next + .25;
533
534 $_[0]->w->at ($next);
535 $_[0]->w->start;
536 });
537
538 Event::loop;
539}
540
541#############################################################################
542# initialisation
340 543
341register "<global>", __PACKAGE__; 544register "<global>", __PACKAGE__;
342 545
546unshift @INC, $LIBDIR;
547
343load_extensions; 548load_extensions;
344 549
3451 5501
346 551

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines