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.4 by root, Tue Feb 7 01:03:44 2006 UTC vs.
Revision 1.24 by root, Wed Jul 19 22:51:40 2006 UTC

1package cf; 1package cf;
2 2
3use Symbol; 3use Symbol;
4use List::Util; 4use List::Util;
5use Storable;
6use Opcode;
7use Safe;
8use Safe::Hole;
9
10use Event;
11$Event::Eval = 1; # no idea why this is required, but it is
5 12
6use strict; 13use strict;
7 14
8our %COMMAND; 15our %COMMAND;
9our @EVENT; 16our @EVENT;
21 print STDERR "cfperl: $msg"; 28 print STDERR "cfperl: $msg";
22 LOG llevError, "cfperl: $msg"; 29 LOG llevError, "cfperl: $msg";
23 }; 30 };
24} 31}
25 32
33my %ignore_set = (MAP_PROP_PATH => 1); # I hate the plug-in api. Deeply!
34
26# generate property mutators 35# generate property mutators
27sub prop_gen { 36sub prop_gen {
28 my ($prefix, $class) = @_; 37 my ($prefix, $class) = @_;
29 38
30 no strict 'refs'; 39 no strict 'refs';
40 $_[0]->get_property ($type, $idx) 49 $_[0]->get_property ($type, $idx)
41 }; 50 };
42 51
43 *{"$class\::set_$sub"} = sub { 52 *{"$class\::set_$sub"} = sub {
44 $_[0]->set_property ($type, $idx, $_[1]); 53 $_[0]->set_property ($type, $idx, $_[1]);
45 }; 54 } unless $ignore_set{$prop};
46 } 55 }
47} 56}
48 57
49# auto-generate most of the API 58# auto-generate most of the API
50 59
58# guessed hierarchies 67# guessed hierarchies
59 68
60@cf::object::player::ISA = 'cf::object'; 69@cf::object::player::ISA = 'cf::object';
61@cf::object::map::ISA = 'cf::object'; 70@cf::object::map::ISA = 'cf::object';
62 71
72$Event::DIED = sub {
73 warn "error in event callback: @_";
74};
75
76my %ext_pkg;
63my @exts; 77my @exts;
64my @hook; 78my @hook;
65my %command; 79my %command;
80my %extcmd;
66 81
67sub inject_event { 82sub inject_event {
68 my ($data) = @_; 83 my $extension = shift;
84 my $event_code = shift;
69 85
70 my $cb = $hook[$data->{event_code}] 86 my $cb = $hook[$event_code]{$extension}
71 or return; 87 or return;
72 88
73 $_->($data) for values %$cb; 89 &$cb
90}
74 91
75 () 92sub inject_global_event {
93 my $event = shift;
94
95 my $cb = $hook[$event]
96 or return;
97
98 List::Util::max map &$_, values %$cb
76} 99}
77 100
78sub inject_command { 101sub inject_command {
79 my ($name, $obj, $params) = @_; 102 my ($name, $obj, $params) = @_;
80 103
87 110
88sub register_command { 111sub register_command {
89 my ($name, $time, $cb) = @_; 112 my ($name, $time, $cb) = @_;
90 113
91 my $caller = caller; 114 my $caller = caller;
92
93 warn "registering command '$name/$time' to '$caller'"; 115 #warn "registering command '$name/$time' to '$caller'";
94 116
95 push @{ $command{$name} }, [$time, $cb, $caller]; 117 push @{ $command{$name} }, [$time, $cb, $caller];
96 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} }; 118 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} };
97} 119}
98 120
121sub register_extcmd {
122 my ($name, $cb) = @_;
123
124 my $caller = caller;
125 #warn "registering extcmd '$name' to '$caller'";
126
127 $extcmd{$name} = [$cb, $caller];
128}
129
130sub register {
131 my ($base, $pkg) = @_;
132
133 for my $idx (0 .. $#EVENT) {
134 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) {
135 #warn "registering $EVENT[$idx] hook to '$pkg'\n";
136 $hook[$idx]{$base} = $ref;
137 }
138 }
139}
140
99sub load_extension { 141sub load_extension {
100 my ($path) = @_; 142 my ($path) = @_;
101 143
102 $path =~ /([^\/\\]+)\.ext$/ or die "$path"; 144 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
145 my $base = $1;
103 my $pkg = $1; 146 my $pkg = $1;
104 $pkg =~ s/[^[:word:]]/_/g; 147 $pkg =~ s/[^[:word:]]/_/g;
105 $pkg = "cf::ext::$pkg"; 148 $pkg = "cf::ext::$pkg";
106 149
107 warn "loading '$path' into '$pkg'\n"; 150 warn "loading '$path' into '$pkg'\n";
117 160
118 eval $source 161 eval $source
119 or die "$path: $@"; 162 or die "$path: $@";
120 163
121 push @exts, $pkg; 164 push @exts, $pkg;
165 $ext_pkg{$base} = $pkg;
122 166
123 no strict 'refs'; 167# no strict 'refs';
124
125# @{"$pkg\::ISA"} = cf::ext::; 168# @{"$pkg\::ISA"} = ext::;
126 169
127 for my $idx (0 .. $#EVENT) { 170 register $base, $pkg;
128 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) {
129 warn "registering $EVENT[$idx] hook\n";
130 $hook[$idx]{$pkg} = $ref;
131 }
132 }
133} 171}
134 172
135sub unload_extension { 173sub unload_extension {
136 my ($pkg) = @_; 174 my ($pkg) = @_;
137 175
138 warn "removing extension $pkg\n"; 176 warn "removing extension $pkg\n";
177
178 if (my $cb = $pkg->can ("on_unload")) {
179 $cb->($pkg);
180 }
139 181
140 # remove hooks 182 # remove hooks
141 for my $idx (0 .. $#EVENT) { 183 for my $idx (0 .. $#EVENT) {
142 delete $hook[$idx]{$pkg}; 184 delete $hook[$idx]{$pkg};
143 } 185 }
153 delete $command{$name}; 195 delete $command{$name};
154 delete $COMMAND{"$name\000"}; 196 delete $COMMAND{"$name\000"};
155 } 197 }
156 } 198 }
157 199
200 # remove extcmds
201 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
202 delete $extcmd{$name};
203 }
204
158 Symbol::delete_package $pkg; 205 Symbol::delete_package $pkg;
159} 206}
160 207
161sub load_extensions { 208sub load_extensions {
162 my $LIBDIR = maps_directory "perl"; 209 my $LIBDIR = maps_directory "perl";
176 if ($who->flag (FLAG_WIZ)) { 223 if ($who->flag (FLAG_WIZ)) {
177 $who->message ("reloading..."); 224 $who->message ("reloading...");
178 225
179 warn "reloading...\n"; 226 warn "reloading...\n";
180 eval { 227 eval {
228 $_->cancel for Event::all_watchers;
229
181 unload_extension $_ for @exts; 230 unload_extension $_ for @exts;
182 delete $INC{"cf.pm"}; 231 delete $INC{"cf.pm"};
183 232
184 # don't, removes xs symbols, too 233 # don't, removes xs symbols, too
185 #Symbol::delete_package $pkg; 234 #Symbol::delete_package __PACKAGE__;
186 235
187 require cf; 236 require cf;
188 }; 237 };
189 warn $@ if $@; 238 warn $@ if $@;
190 $who->message ($@) if $@; 239 $who->message ($@) if $@;
194 } else { 243 } else {
195 $who->message ("Intruder Alert!"); 244 $who->message ("Intruder Alert!");
196 } 245 }
197}; 246};
198 247
248#############################################################################
249# extcmd framework, basically convert ext <id> <pkg> arg1 args
250# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
251
252sub on_extcmd {
253 my ($pl, $buf) = @_;
254
255 my ($type) = $buf =~ s/^(\S+) // ? $1 : "";
256
257 $extcmd{$type}[0]->($pl, $buf)
258 if $extcmd{$type};
259}
260
261#############################################################################
262# load/save/clean perl data associated with a map
263
264*on_mapclean = sub {
265 my ($map) = @_;
266
267 my $path = $map->tmpname;
268 defined $path or return;
269
270 unlink "$path.cfperl";
271};
272
273*on_mapin =
274*on_mapload = sub {
275 my ($map) = @_;
276
277 my $path = $map->tmpname;
278 $path = $map->path unless defined $path;
279
280 open my $fh, "<:raw", "$path.cfperl"
281 or return; # no perl data
282
283 my $data = Storable::thaw do { local $/; <$fh> };
284
285 $data->{version} <= 1
286 or return; # too new
287
288 $map->_set_obs ($data->{obs});
289};
290
291*on_mapout = sub {
292 my ($map) = @_;
293
294 my $path = $map->tmpname;
295 $path = $map->path unless defined $path;
296
297 my $obs = $map->_get_obs;
298
299 if (defined $obs) {
300 open my $fh, ">:raw", "$path.cfperl"
301 or die "$path.cfperl: $!";
302
303 stat $path;
304
305 print $fh Storable::nfreeze {
306 size => (stat _)[7],
307 time => (stat _)[9],
308 version => 1,
309 obs => $obs,
310 };
311
312 chmod SAVE_MODE, "$path.cfperl"; # very racy, but cf-compatible *g*
313 } else {
314 unlink "$path.cfperl";
315 }
316};
317
318#############################################################################
319# load/save perl data associated with player->ob objects
320
321*on_player_load = sub {
322 my ($ob, $path) = @_;
323
324 if (open my $fh, "<:raw", "$path.cfperl") {
325
326 #d##TODO#remove
327
328 my $data = Storable::thaw do { local $/; <$fh> };
329
330 $data->{version} <= 1
331 or return; # too new
332
333 %$ob = %{$data->{ob}};
334 return;
335 }
336
337 for my $o ($ob, $ob->inv) {
338 if (my $value = $o->get_ob_key_value ("_perl_data")) {
339 $o->set_ob_key_value ("_perl_data");
340
341 %$o = %{ Storable::thaw pack "H*", $value };
342 }
343 }
344};
345
346*on_player_save = sub {
347 my ($ob, $path) = @_;
348
349 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
350 for grep %$_, $ob, $ob->inv;
351
352 unlink "$path.cfperl";#d##TODO#remove
353};
354
355#############################################################################
356# core extensions - in perl
357
358=item cf::player::exists $login
359
360Returns true when the given account exists.
361
362=cut
363
364sub cf::player::exists($) {
365 cf::player::find $_[0]
366 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
367}
368
369# rough implementation of a future "reply" method that works
370# with dialog boxes.
371sub cf::object::player::reply($$$;$) {
372 my ($self, $npc, $msg, $flags) = @_;
373
374 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
375
376 if ($self->{record_replies}) {
377 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
378 } else {
379 $msg = $npc->name . " says: $msg" if $npc;
380 $self->message ($msg, $flags);
381 }
382}
383
384#############################################################################
385# map scripting support
386
387our $safe = new Safe "ext";
388our $safe_hole = new Safe::Hole;
389
390$SIG{FPE} = 'IGNORE';
391
392$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
393
394# here we would export the classes and methods available to script code
395#@ext::cf::object::player::ISA = @cf::object::player::ISA;
396#@ext::cf::object::map::ISA = @cf::object::map::ISA;
397
398sub safe_eval($;@) {
399 my ($code, %vars) = @_;
400
401 my $qcode = $code;
402 $qcode =~ s/"/‟/g; # not allowed in #line filenames
403 $qcode =~ s/\n/\\n/g;
404
405 local $_;
406 local @ext::cf::_safe_eval_args = values %vars;
407
408 $safe->reval (
409 "do {\n"
410 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
411 . "#line 0 \"{$qcode}\"\n"
412 . $code
413 . "\n}"
414 )
415}
416
417sub register_script_function {
418 my ($fun, $cb) = @_;
419
420 no strict 'refs';
421 *{"ext::$fun"} = $safe_hole->wrap ($cb);
422}
423
424#############################################################################
425# initialisation
426
427register "<global>", __PACKAGE__;
428
429unshift @INC, maps_directory "perl";
430
199load_extensions; 431load_extensions;
200 432
2011 4331
202 434

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines