ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Deliantra.pm
(Generate patch)

Comparing deliantra/Deliantra/Deliantra.pm (file contents):
Revision 1.15 by root, Sun Feb 12 04:50:24 2006 UTC vs.
Revision 1.17 by root, Wed Feb 22 22:36:45 2006 UTC

224 } 224 }
225 225
226 \%paths 226 \%paths
227} 227}
228 228
229=item ($minx, $miny, $maxx, $maxy) = arch_extents $arch
230
229# arch_extents determines the extents of a given arch 231arch_extents determines the extents of the given arch's face(s), linked
230# bigfaces, linked faces and single faces are handled here 232faces and single faces are handled here it returns (minx, miny, maxx,
231# it returns (minx, miny, maxx, maxy) 233maxy)
234
235=cut
236
232sub arch_extents { 237sub arch_extents {
233 my ($a) = @_; 238 my ($a) = @_;
234 239
235 my $o = $ARCH{$a->{_name}} 240 my $o = $ARCH{$a->{_name}}
236 or return; 241 or return;
267 return if %ARCH; 272 return if %ARCH;
268 273
269 *ARCH = read_arch "$LIB/archetypes", "$cachedir/archetypes.pst"; 274 *ARCH = read_arch "$LIB/archetypes", "$cachedir/archetypes.pst";
270} 275}
271 276
277=item $data = arch_attr $arch
278
279Returns a hashref describing the object and its attributes. It can contain
280the following keys:
281
282 name the name, suitable for display purposes
283 ignore
284 attr
285 desc
286 use
287 section => [name => \%attr, name => \%attr]
288
289=cut
290
291sub arch_attr($) {
292 my ($arch) = @_;
293
294 require Crossfire::Data;
295
296 my %attr;
297
298 if ($arch->{type} > 0) {
299 %attr = %{ $Crossfire::Data::ATTR{$arch->{type}+0} || {} };
300 } else {
301 die;
302 }
303
304 use PApp::Util;
305 warn PApp::Util::dumpval \%attr;
306}
307
308sub arch_edit_sections {
309# if (edit_type == IGUIConstants.TILE_EDIT_NONE)
310# edit_type = 0;
311# else if (edit_type != 0) {
312# // all flags from 'check_type' must be unset in this arch because they get recalculated now
313# edit_type &= ~check_type;
314# }
315#
316# }
317# if ((check_type & IGUIConstants.TILE_EDIT_MONSTER) != 0 &&
318# getAttributeValue("alive", defarch) == 1 &&
319# (getAttributeValue("monster", defarch) == 1 ||
320# getAttributeValue("generator", defarch) == 1)) {
321# // Monster: monsters/npcs/generators
322# edit_type |= IGUIConstants.TILE_EDIT_MONSTER;
323# }
324# if ((check_type & IGUIConstants.TILE_EDIT_WALL) != 0 &&
325# arch_type == 0 && getAttributeValue("no_pass", defarch) == 1) {
326# // Walls
327# edit_type |= IGUIConstants.TILE_EDIT_WALL;
328# }
329# if ((check_type & IGUIConstants.TILE_EDIT_CONNECTED) != 0 &&
330# getAttributeValue("connected", defarch) != 0) {
331# // Connected Objects
332# edit_type |= IGUIConstants.TILE_EDIT_CONNECTED;
333# }
334# if ((check_type & IGUIConstants.TILE_EDIT_EXIT) != 0 &&
335# arch_type == 66 || arch_type == 41 || arch_type == 95) {
336# // Exit: teleporter/exit/trapdoors
337# edit_type |= IGUIConstants.TILE_EDIT_EXIT;
338# }
339# if ((check_type & IGUIConstants.TILE_EDIT_TREASURE) != 0 &&
340# getAttributeValue("no_pick", defarch) == 0 && (arch_type == 4 ||
341# arch_type == 5 || arch_type == 36 || arch_type == 60 ||
342# arch_type == 85 || arch_type == 111 || arch_type == 123 ||
343# arch_type == 124 || arch_type == 130)) {
344# // Treasure: randomtreasure/money/gems/potions/spellbooks/scrolls
345# edit_type |= IGUIConstants.TILE_EDIT_TREASURE;
346# }
347# if ((check_type & IGUIConstants.TILE_EDIT_DOOR) != 0 &&
348# arch_type == 20 || arch_type == 23 || arch_type == 26 ||
349# arch_type == 91 || arch_type == 21 || arch_type == 24) {
350# // Door: door/special door/gates + keys
351# edit_type |= IGUIConstants.TILE_EDIT_DOOR;
352# }
353# if ((check_type & IGUIConstants.TILE_EDIT_EQUIP) != 0 &&
354# getAttributeValue("no_pick", defarch) == 0 && ((arch_type >= 13 &&
355# arch_type <= 16) || arch_type == 33 || arch_type == 34 ||
356# arch_type == 35 || arch_type == 39 || arch_type == 70 ||
357# arch_type == 87 || arch_type == 99 || arch_type == 100 ||
358# arch_type == 104 || arch_type == 109 || arch_type == 113 ||
359# arch_type == 122 || arch_type == 3)) {
360# // Equipment: weapons/armour/wands/rods
361# edit_type |= IGUIConstants.TILE_EDIT_EQUIP;
362# }
363#
364# return(edit_type);
365#
366#
367}
368
272$CACHEDIR ||= "$ENV{HOME}/.crossfire"; 369$CACHEDIR ||= "$ENV{HOME}/.crossfire";
273 370
274init $CACHEDIR; 371init $CACHEDIR;
275 372
276=head1 AUTHOR 373=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines