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.51 by root, Mon Aug 28 14:05:24 2006 UTC vs.
Revision 1.53 by root, Tue Aug 29 13:11:58 2006 UTC

107############################################################################# 107#############################################################################
108# "new" plug-in system 108# "new" plug-in system
109 109
110=item $object->attach ($attachment, key => $value...) 110=item $object->attach ($attachment, key => $value...)
111 111
112=item $object->detach ($attachment)
113
112Attach a pre-registered attachment to an object. 114Attach/detach a pre-registered attachment to an object.
113 115
114=item $player->attach ($attachment, key => $value...) 116=item $player->attach ($attachment, key => $value...)
115 117
118=item $player->detach ($attachment)
119
116Attach a pre-registered attachment to a player. 120Attach/detach a pre-registered attachment to a player.
117 121
118=item $map->attach ($attachment, key => $value...) # not yet persistent 122=item $map->attach ($attachment, key => $value...)
119 123
124=item $map->detach ($attachment)
125
120Attach a pre-registered attachment to a map. 126Attach/detach a pre-registered attachment to a map.
121 127
122=item cf::attach_global ... 128=item cf::attach_global ...
123 129
124Attach handlers for global events. 130Attach handlers for global events.
125 131
173=item cf::attach_to_maps ... 179=item cf::attach_to_maps ...
174 180
175Attach handlers to all maps. 181Attach handlers to all maps.
176 182
177=item cf:register_attachment $name, ... 183=item cf:register_attachment $name, ...
184
185Register an attachment by name through which objects can refer to this
186attachment.
187
188=item cf:register_map_attachment $name, ...
189
190Register an attachment by name through which maps can refer to this
191attachment.
178 192
179=cut 193=cut
180 194
181# the following variables are defined in .xs and must not be re-created 195# the following variables are defined in .xs and must not be re-created
182our @CB_GLOBAL = (); # registry for all global events 196our @CB_GLOBAL = (); # registry for all global events
277} 291}
278 292
279sub cf::player::attach { 293sub cf::player::attach {
280 my ($obj, $name, %arg) = @_; 294 my ($obj, $name, %arg) = @_;
281 295
282 _attach_attachment KLASS_PLAYER, $obj, $name, %arg; 296 _attach_attachment $obj, $name, %arg;
283} 297}
284 298
285sub cf::map::attach { 299sub cf::map::attach {
286 my ($obj, $name, %arg) = @_; 300 my ($obj, $name, %arg) = @_;
287 301
288 _attach_attachment KLASS_MAP, $obj, $name, %arg; 302 _attach_attachment $obj, $name, %arg;
303}
304
305sub cf::object::detach {
306 my ($obj, $name) = @_;
307 die;#d#
308}
309sub cf::player::detach {
310 my ($obj, $name) = @_;
311 die;#d#
312}
313sub cf::map::detach {
314 my ($obj, $name) = @_;
315 die;#d#
289} 316}
290 317
291sub attach_global { 318sub attach_global {
292 _attach @CB_GLOBAL, KLASS_GLOBAL, @_ 319 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
293} 320}
313 340
314sub register_attachment { 341sub register_attachment {
315 my $name = shift; 342 my $name = shift;
316 343
317 $attachment{$name} = [[KLASS_OBJECT, @_]]; 344 $attachment{$name} = [[KLASS_OBJECT, @_]];
345}
346
347sub register_map_attachment {
348 my $name = shift;
349
350 $attachment{$name} = [[KLASS_MAP, @_]];
318} 351}
319 352
320our $override; 353our $override;
321our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals? 354our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals?
322 355

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines