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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines