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.8 by root, Thu Mar 16 21:08:16 2006 UTC vs.
Revision 1.40 by root, Fri Aug 25 15:21:57 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;
18our @PLUGIN_EVENT;
11our %PROP_TYPE; 19our %PROP_TYPE;
12our %PROP_IDX; 20our %PROP_IDX;
21our $LIBDIR = maps_directory "perl";
22
23our $TICK = MAX_TIME * 1e-6;
24our $TICK_WATCHER;
25our $NEXT_TICK;
13 26
14BEGIN { 27BEGIN {
15 @EVENT = map lc, @EVENT; 28 @PLUGIN_EVENT = map lc, @PLUGIN_EVENT;
16 29
17 *CORE::GLOBAL::warn = sub { 30 *CORE::GLOBAL::warn = sub {
18 my $msg = join "", @_; 31 my $msg = join "", @_;
19 $msg .= "\n" 32 $msg .= "\n"
20 unless $msg =~ /\n$/; 33 unless $msg =~ /\n$/;
22 print STDERR "cfperl: $msg"; 35 print STDERR "cfperl: $msg";
23 LOG llevError, "cfperl: $msg"; 36 LOG llevError, "cfperl: $msg";
24 }; 37 };
25} 38}
26 39
40my %ignore_set = (MAP_PROP_PATH => 1); # I hate the plug-in api. Deeply!
41
27# generate property mutators 42# generate property mutators
28sub prop_gen { 43sub prop_gen {
29 my ($prefix, $class) = @_; 44 my ($prefix, $class) = @_;
30 45
31 no strict 'refs'; 46 no strict 'refs';
41 $_[0]->get_property ($type, $idx) 56 $_[0]->get_property ($type, $idx)
42 }; 57 };
43 58
44 *{"$class\::set_$sub"} = sub { 59 *{"$class\::set_$sub"} = sub {
45 $_[0]->set_property ($type, $idx, $_[1]); 60 $_[0]->set_property ($type, $idx, $_[1]);
46 }; 61 } unless $ignore_set{$prop};
47 } 62 }
48} 63}
49 64
50# auto-generate most of the API 65# auto-generate most of the API
51 66
56prop_gen MAP_PROP => "cf::map"; 71prop_gen MAP_PROP => "cf::map";
57prop_gen ARCH_PROP => "cf::arch"; 72prop_gen ARCH_PROP => "cf::arch";
58 73
59# guessed hierarchies 74# guessed hierarchies
60 75
61@cf::object::player::ISA = 'cf::object'; 76@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
62@cf::object::map::ISA = 'cf::object'; 77@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
78
79# we bless all objects into derived classes to force a method lookup
80# within the Safe compartment.
81for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region cf::arch)) {
82 no strict 'refs';
83 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
84}
85
86$Event::DIED = sub {
87 warn "error in event callback: @_";
88};
63 89
64my %ext_pkg; 90my %ext_pkg;
65my @exts; 91my @exts;
66my @hook; 92my @hook;
67my %command; 93my %command;
94my %extcmd;
95
96#############################################################################
97# "new" plug-in system
98
99=item cf::object::attach ... # NYI
100
101=item cf::attach_global ...
102
103=item cf::attach_to_type ...
104
105=item cf::attach_to_objects ...
106
107=item cf::attach_to_players ...
108
109=item cf::attach_to_maps ...
110
111 prio => $number, # lower is earlier
112 on_xxx => \&cb,
113 package => package::,
114
115=cut
116
117# the following variables are defined in .xs and must not be re-created
118our @CB_GLOBAL = (); # registry for all global events
119our @CB_OBJECT = ();
120our @CB_PLAYER = ();
121our @CB_TYPE = (); # registry for type (cf-object class) based events
122our @CB_MAP = ();
123
124sub _attach_cb($\%$$$) {
125 my ($registry, $undo, $event, $prio, $cb) = @_;
126
127 use sort 'stable';
128
129 $cb = [$prio, $cb];
130
131 @{$registry->[$event]} = sort
132 { $a->[0] cmp $b->[0] }
133 @{$registry->[$event] || []}, $cb;
134
135 push @{$undo->{cb}}, [$event, $cb];
136}
137
138# attach handles attaching event callbacks
139# the only thing the caller has to do is pass the correct
140# registry (== where the callback attaches to).
141sub _attach(\@$\@) {
142 my ($registry, $klass, $arg) = @_;
143
144 my $prio = 0;
145
146 my %undo = (
147 registry => $registry,
148 cb => [],
149 );
150
151 my %cb_id = map +("on_" . lc $EVENT[$_][0], $_) , grep $EVENT[$_][1] == $klass, 0 .. $#EVENT;
152
153 while (@$arg) {
154 my $type = shift @$arg;
155
156 if ($type eq "prio") {
157 $prio = shift @$arg;
158
159 } elsif ($type eq "package") {
160 my $pkg = shift @$arg;
161
162 while (my ($name, $id) = each %cb_id) {
163 if (my $cb = $pkg->can ($name)) {
164 _attach_cb $registry, %undo, $id, $prio, $cb;
165 }
166 }
167
168 } elsif (exists $cb_id{$type}) {
169 _attach_cb $registry, %undo, $cb_id{$type}, $prio, shift @$arg;
170
171 } elsif (ref $type) {
172 warn "attaching objects not supported, ignoring.\n";
173
174 } else {
175 shift @$arg;
176 warn "attach argument '$type' not supported, ignoring.\n";
177 }
178 }
179
180 \%undo
181}
182
183sub cf::object::attach {
184 die;
185}
186
187sub attach_global {
188 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
189}
190
191sub attach_to_type {
192 my $type = shift;
193 _attach @{$CB_TYPE[$type]}, KLASS_OBJECT, @_
194}
195
196sub attach_to_objects {
197 _attach @CB_OBJECT, KLASS_OBJECT, @_
198}
199
200sub attach_to_players {
201 _attach @CB_PLAYER, KLASS_PLAYER, @_
202}
203
204sub attach_to_maps {
205 _attach @CB_MAP, KLASS_MAP, @_
206}
207
208our $override;
209
210sub override() {
211 $override = 1
212}
213
214sub invoke {
215 my $event = shift;
216 my $callbacks = shift;
217
218 local $override;
219
220 for (@$callbacks) {
221 eval { &{$_->[1]} };
222
223 if ($@) {
224 warn "$@";
225 warn "... while processing $EVENT[$event][0] event, skipping processing altogether.\n";
226 override;
227 }
228
229 return 1 if $override;
230 }
231
232 0
233}
234
235#############################################################################
236# old plug-in events
68 237
69sub inject_event { 238sub inject_event {
70 my ($data) = @_; 239 my $extension = shift;
240 my $event_code = shift;
71 241
72 my $cb = $hook[$data->{event_code}]{$data->{extension}} 242 my $cb = $hook[$event_code]{$extension}
73 or return; 243 or return;
74 244
75 $cb->($data) 245 &$cb
76} 246}
77 247
78sub inject_global_event { 248sub inject_global_event {
79 my ($data) = @_; 249 my $event = shift;
80 250
81 my $cb = $hook[$data->{event_code}] 251 my $cb = $hook[$event]
82 or return; 252 or return;
83 253
84 $_->($data) for values %$cb; 254 List::Util::max map &$_, values %$cb
85
86 ()
87} 255}
88 256
89sub inject_command { 257sub inject_command {
90 my ($name, $obj, $params) = @_; 258 my ($name, $obj, $params) = @_;
91 259
98 266
99sub register_command { 267sub register_command {
100 my ($name, $time, $cb) = @_; 268 my ($name, $time, $cb) = @_;
101 269
102 my $caller = caller; 270 my $caller = caller;
103
104 warn "registering command '$name/$time' to '$caller'"; 271 #warn "registering command '$name/$time' to '$caller'";
105 272
106 push @{ $command{$name} }, [$time, $cb, $caller]; 273 push @{ $command{$name} }, [$time, $cb, $caller];
107 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} }; 274 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} };
108} 275}
109 276
277sub register_extcmd {
278 my ($name, $cb) = @_;
279
280 my $caller = caller;
281 #warn "registering extcmd '$name' to '$caller'";
282
283 $extcmd{$name} = [$cb, $caller];
284}
285
110sub register { 286sub register {
111 my ($base, $pkg) = @_; 287 my ($base, $pkg) = @_;
112 288
113 for my $idx (0 .. $#EVENT) { 289 for my $idx (0 .. $#PLUGIN_EVENT) {
114 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) { 290 if (my $ref = $pkg->can ("on_$PLUGIN_EVENT[$idx]")) {
115 warn "registering $EVENT[$idx] hook to '$pkg'\n"; 291 #warn "registering $PLUGIN_EVENT[$idx] hook to '$pkg'\n";
116 $hook[$idx]{$base} = $ref; 292 $hook[$idx]{$base} = $ref;
117 } 293 }
118 } 294 }
119} 295}
120 296
143 319
144 push @exts, $pkg; 320 push @exts, $pkg;
145 $ext_pkg{$base} = $pkg; 321 $ext_pkg{$base} = $pkg;
146 322
147# no strict 'refs'; 323# no strict 'refs';
148# @{"$pkg\::ISA"} = cf::ext::; 324# @{"$pkg\::ISA"} = ext::;
149 325
150 register $base, $pkg; 326 register $base, $pkg;
151} 327}
152 328
153sub unload_extension { 329sub unload_extension {
154 my ($pkg) = @_; 330 my ($pkg) = @_;
155 331
156 warn "removing extension $pkg\n"; 332 warn "removing extension $pkg\n";
157 333
158 # remove hooks 334 # remove hooks
159 for my $idx (0 .. $#EVENT) { 335 for my $idx (0 .. $#PLUGIN_EVENT) {
160 delete $hook[$idx]{$pkg}; 336 delete $hook[$idx]{$pkg};
161 } 337 }
162 338
163 # remove commands 339 # remove commands
164 for my $name (keys %command) { 340 for my $name (keys %command) {
171 delete $command{$name}; 347 delete $command{$name};
172 delete $COMMAND{"$name\000"}; 348 delete $COMMAND{"$name\000"};
173 } 349 }
174 } 350 }
175 351
352 # remove extcmds
353 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
354 delete $extcmd{$name};
355 }
356
357 if (my $cb = $pkg->can ("on_unload")) {
358 eval {
359 $cb->($pkg);
360 1
361 } or warn "$pkg unloaded, but with errors: $@";
362 }
363
176 Symbol::delete_package $pkg; 364 Symbol::delete_package $pkg;
177} 365}
178 366
179sub load_extensions { 367sub load_extensions {
180 my $LIBDIR = maps_directory "perl"; 368 my $LIBDIR = maps_directory "perl";
186 1 374 1
187 } or warn "$ext not loaded: $@"; 375 } or warn "$ext not loaded: $@";
188 } 376 }
189} 377}
190 378
379sub _perl_reload(&) {
380 my ($msg) = @_;
381
382 $msg->("reloading...");
383
384 eval {
385 # 1. cancel all watchers
386 $_->cancel for Event::all_watchers;
387
388 # 2. unload all extensions
389 for (@exts) {
390 $msg->("unloading <$_>");
391 unload_extension $_;
392 }
393
394 # 3. unload all modules loaded from $LIBDIR
395 while (my ($k, $v) = each %INC) {
396 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
397
398 $msg->("removing <$k>");
399 delete $INC{$k};
400
401 $k =~ s/\.pm$//;
402 $k =~ s/\//::/g;
403
404 if (my $cb = $k->can ("unload_module")) {
405 $cb->();
406 }
407
408 Symbol::delete_package $k;
409 }
410
411 # 4. get rid of ext::, as good as possible
412 Symbol::delete_package "ext::$_"
413 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
414
415 # 5. remove register_script_function callbacks
416 # TODO
417
418 # 6. unload cf.pm "a bit"
419 delete $INC{"cf.pm"};
420
421 # don't, removes xs symbols, too
422 #Symbol::delete_package __PACKAGE__;
423
424 # 7. reload cf.pm
425 $msg->("reloading cf.pm");
426 require cf;
427 };
428 $msg->($@) if $@;
429
430 $msg->("reloaded");
431};
432
433sub perl_reload() {
434 _perl_reload {
435 warn $_[0];
436 print "$_[0]\n";
437 };
438}
439
191register_command "perl-reload", 0, sub { 440register_command "perl-reload", 0, sub {
192 my ($who, $arg) = @_; 441 my ($who, $arg) = @_;
193 442
194 if ($who->flag (FLAG_WIZ)) { 443 if ($who->flag (FLAG_WIZ)) {
195 $who->message ("reloading..."); 444 _perl_reload {
196 445 warn $_[0];
197 warn "reloading...\n"; 446 $who->message ($_[0]);
198 eval {
199 unload_extension $_ for @exts;
200 delete $INC{"cf.pm"};
201
202 # don't, removes xs symbols, too
203 #Symbol::delete_package $pkg;
204
205 require cf;
206 }; 447 };
207 warn $@ if $@; 448 }
208 $who->message ($@) if $@; 449};
209 warn "reloaded\n";
210 450
211 $who->message ("reloaded"); 451#############################################################################
452# utility functions
453
454use JSON::Syck (); # TODO# replace by JSON::PC once working
455
456sub from_json($) {
457 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
458 JSON::Syck::Load $_[0]
459}
460
461sub to_json($) {
462 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
463 JSON::Syck::Dump $_[0]
464}
465
466#############################################################################
467# extcmd framework, basically convert ext <msg>
468# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
469
470sub on_extcmd {
471 my ($pl, $buf) = @_;
472
473 my $msg = eval { from_json $buf };
474
475 if (ref $msg) {
476 if (my $cb = $extcmd{$msg->{msgtype}}) {
477 if (my %reply = $cb->[0]->($pl, $msg)) {
478 $pl->ext_reply ($msg->{msgid}, %reply);
479 }
480 }
212 } else { 481 } else {
213 $who->message ("Intruder Alert!"); 482 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
483 }
484
214 } 485 1
215}; 486}
216 487
217############################################################################# 488#############################################################################
218# load/save/clean perl data associated with a map 489# load/save/clean perl data associated with a map
219 490
220*on_mapclean = sub { 491*cf::mapsupport::on_clean = sub {
221 my $map = shift->{map}; 492 my ($map) = @_;
222 493
223 my $path = $map->tmpname; 494 my $path = $map->tmpname;
224 defined $path or return; 495 defined $path or return;
225 496
226 unlink "$path.cfperl"; 497 unlink "$path.cfperl";
227}; 498};
228 499
229*on_mapin = 500*cf::mapsupport::on_swapin =
230*on_mapload = sub { 501*cf::mapsupport::on_load = sub {
231 my $map = shift->{map}; 502 my ($map) = @_;
232 503
233 my $path = $map->tmpname; 504 my $path = $map->tmpname;
234 $path = $map->path unless defined $path; 505 $path = $map->path unless defined $path;
235 506
236 open my $fh, "<:raw", "$path.cfperl" 507 open my $fh, "<:raw", "$path.cfperl"
242 or return; # too new 513 or return; # too new
243 514
244 $map->_set_obs ($data->{obs}); 515 $map->_set_obs ($data->{obs});
245}; 516};
246 517
247*on_mapout = sub { 518*cf::mapsupport::on_swapout = sub {
248 my $map = shift->{map}; 519 my ($map) = @_;
249 520
250 my $path = $map->tmpname; 521 my $path = $map->tmpname;
251 $path = $map->path unless defined $path; 522 $path = $map->path unless defined $path;
252 523
253 my $obs = $map->_get_obs; 524 my $obs = $map->_get_obs;
269 } else { 540 } else {
270 unlink "$path.cfperl"; 541 unlink "$path.cfperl";
271 } 542 }
272}; 543};
273 544
545attach_to_maps prio => -10000, package => cf::mapsupport::;
546
274############################################################################# 547#############################################################################
275# load/save perl data associated with player->ob objects 548# load/save perl data associated with player->ob objects
276 549
277*on_player_load = sub { 550sub all_objects(@) {
278 my ($event) = @_; 551 @_, map all_objects ($_->inv), @_
279 my $path = $event->{message}; 552}
280 my $ob = $event->{who};
281 553
282 open my $fh, "<:raw", "$path.cfperl" 554attach_to_players
283 or return; # no perl data 555 on_load => sub {
556 my ($pl, $path) = @_;
284 557
285 my $data = Storable::thaw do { local $/; <$fh> }; 558 for my $o (all_objects $pl->ob) {
559 if (my $value = $o->get_ob_key_value ("_perl_data")) {
560 $o->set_ob_key_value ("_perl_data");
286 561
287 $data->{version} <= 1 562 %$o = %{ Storable::thaw pack "H*", $value };
288 or return; # too new 563 }
289
290 %$ob = %{$data->{ob}};
291};
292
293*on_player_save = sub {
294 my ($event) = @_;
295 my $path = $event->{message};
296 my $ob = $event->{who};
297
298 if (keys %$ob) {
299 open my $fh, ">:raw", "$path.cfperl"
300 or die "$path.cfperl: $!";
301
302 stat $path;
303
304 print $fh Storable::nfreeze {
305 size => (stat _)[7],
306 time => (stat _)[9],
307 version => 1,
308 ob => $ob,
309 }; 564 }
565 },
566 on_save => sub {
567 my ($pl, $path) = @_;
310 568
311 chmod SAVE_MODE, "$path.cfperl"; # very racy, but cf-compatible *g* 569 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
570 for grep %$_, all_objects $pl->ob;
571 },
572;
573
574#############################################################################
575# core extensions - in perl
576
577=item cf::player::exists $login
578
579Returns true when the given account exists.
580
581=cut
582
583sub cf::player::exists($) {
584 cf::player::find $_[0]
585 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
586}
587
588=item $player->reply ($npc, $msg[, $flags])
589
590Sends a message to the player, as if the npc C<$npc> replied. C<$npc>
591can be C<undef>. Does the right thing when the player is currently in a
592dialogue with the given NPC character.
593
594=cut
595
596# rough implementation of a future "reply" method that works
597# with dialog boxes.
598sub cf::object::player::reply($$$;$) {
599 my ($self, $npc, $msg, $flags) = @_;
600
601 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
602
603 if ($self->{record_replies}) {
604 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
312 } else { 605 } else {
313 unlink "$path.cfperl"; 606 $msg = $npc->name . " says: $msg" if $npc;
607 $self->message ($msg, $flags);
608 }
609}
610
611=item $player->ext_reply ($msgid, $msgtype, %msg)
612
613Sends an ext reply to the player.
614
615=cut
616
617sub cf::player::ext_reply($$$%) {
618 my ($self, $id, %msg) = @_;
619
620 $msg{msgid} = $id;
621
622 $self->send ("ext " . to_json \%msg);
623}
624
625#############################################################################
626# map scripting support
627
628our $safe = new Safe "ext";
629our $safe_hole = new Safe::Hole;
630
631$SIG{FPE} = 'IGNORE';
632
633$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
634
635# here we export the classes and methods available to script code
636
637for (
638 ["cf::object" => qw(contr pay_amount pay_player)],
639 ["cf::object::player" => qw(player)],
640 ["cf::player" => qw(peaceful)],
641) {
642 no strict 'refs';
643 my ($pkg, @funs) = @$_;
644 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
645 for @funs;
646}
647
648sub safe_eval($;@) {
649 my ($code, %vars) = @_;
650
651 my $qcode = $code;
652 $qcode =~ s/"/‟/g; # not allowed in #line filenames
653 $qcode =~ s/\n/\\n/g;
654
655 local $_;
656 local @ext::cf::_safe_eval_args = values %vars;
657
658 $code =
659 "do {\n"
660 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
661 . "#line 0 \"{$qcode}\"\n"
662 . $code
663 . "\n}"
314 } 664 ;
315}; 665
666 sub_generation_inc;
667 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code);
668 sub_generation_inc;
669
670 wantarray ? @res : $res[0]
671}
672
673sub register_script_function {
674 my ($fun, $cb) = @_;
675
676 no strict 'refs';
677 *{"ext::$fun"} = $safe_hole->wrap ($cb);
678}
679
680#############################################################################
681# the server's main()
682
683sub main {
684 Event::loop;
685}
686
687#############################################################################
688# initialisation
316 689
317register "<global>", __PACKAGE__; 690register "<global>", __PACKAGE__;
318 691
692unshift @INC, $LIBDIR;
693
319load_extensions; 694load_extensions;
320 695
696$TICK_WATCHER = Event->timer (
697 prio => 1,
698 at => $NEXT_TICK || 1,
699 cb => sub {
700 cf::server_tick; # one server iteration
701
702 my $NOW = Event::time;
703 $NEXT_TICK += $TICK;
704
705 # if we are delayed by four ticks, skip them all
706 $NEXT_TICK = $NOW if $NOW >= $NEXT_TICK + $TICK * 4;
707
708 $TICK_WATCHER->at ($NEXT_TICK);
709 $TICK_WATCHER->start;
710 },
711);
712
3211 7131
322 714

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines