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

Comparing deliantra/gde/GCE/Util.pm (file contents):
Revision 1.10 by elmex, Tue Mar 21 01:02:14 2006 UTC vs.
Revision 1.14 by elmex, Sun Apr 2 09:54:18 2006 UTC

16use List::Util qw(min max); 16use List::Util qw(min max);
17 17
18use Crossfire; 18use Crossfire;
19use Crossfire::MapWidget; 19use Crossfire::MapWidget;
20use File::Spec::Functions; 20use File::Spec::Functions;
21use Cwd 'abs_path';
21 22
22our @EXPORT = qw(insert_arch_stack_layer replace_arch_stack_layer new_arch_pb fill_pb_from_arch arch_is_floor stack_find_floor stack_find_wall stack_find arch_is_wall arch_is_monster add_table_widget quick_msg def arch_is_exit map2abs); 23our @EXPORT = qw(insert_arch_stack_layer replace_arch_stack_layer new_arch_pb fill_pb_from_arch arch_is_floor stack_find_floor stack_find_wall stack_find arch_is_wall arch_is_monster add_table_widget quick_msg def arch_is_exit map2abs exit_paths pseudohtml2txt);
24
25sub pseudohtml2txt {
26 my ($html) = @_;
27
28 $html =~ s/<br\s*?\/?>/\n/gsi;
29 $html =~ s/<b>(.*?)<\/b>/_\1_/gsi;
30 $html
31}
32
33sub exit_paths {
34 my ($mappath, $map1path, $map2path) = @_;
35 $mappath = abs_path $mappath;
36 $map1path = abs_path $map1path;
37 $map2path = abs_path $map2path;
38
39 if ( (substr $map1path, 0, length $mappath) eq $mappath
40 and (substr $map2path, 0, length $mappath) eq $mappath) {
41 substr $map1path, 0, length $mappath, '';
42 substr $map2path, 0, length $mappath, '';
43
44 my ($v1, $d1, $f1) = File::Spec->splitpath ($map1path);
45 my ($v2, $d2, $f2) = File::Spec->splitpath ($map2path);
46
47 my @di1 = File::Spec->splitdir ($d1);
48 my @di2 = File::Spec->splitdir ($d2);
49
50 if ((defined $di1[1]) and (defined $di2[1]) and $di1[1] eq $di2[1]) {
51 my $m1 = File::Spec->abs2rel ($map1path, File::Spec->catdir (@di2));
52 my $m2 = File::Spec->abs2rel ($map2path, File::Spec->catdir (@di1));
53 return ($m1, $m2);
54 } else {
55 return ($map1path, $map2path);
56 }
57 } else {
58 return ('', '');
59 }
60}
23 61
24sub map2abs { 62sub map2abs {
25 my ($dest, $mape) = @_; 63 my ($dest, $mape) = @_;
26 64
27 my $dir; 65 my $dir;
28 if (File::Spec->file_name_is_absolute($dest)) { 66 if (File::Spec->file_name_is_absolute($dest)) {
29 $dir = catdir ($CFG->{MAPDIR}, $dest); 67 $dir = catdir ($::CFG->{MAPDIR}, $dest);
30 } else { 68 } else {
31 my ($v, $p, $f) = File::Spec->splitpath ($mape->{path}); 69 my ($v, $p, $f) = File::Spec->splitpath ($mape->{path});
32 $dir = File::Spec->rel2abs ($dest, File::Spec->catpath ($v, $p)); 70 $dir = File::Spec->rel2abs ($dest, File::Spec->catpath ($v, $p));
33 } 71 }
34 return $dir; 72 return $dir;
109} 147}
110 148
111sub arch_is_floor { 149sub arch_is_floor {
112 my ($a) = @_; 150 my ($a) = @_;
113 my $ar = Crossfire::arch_attr $a; 151 my $ar = Crossfire::arch_attr $a;
114 return $ar->{name} eq 'Floor'; 152 return (substr $ar->{name}, 0, 5) eq 'Floor';
115#return $Crossfire::ARCH{$a->{_name}}->{is_floor}; 153#return $Crossfire::ARCH{$a->{_name}}->{is_floor};
116} 154}
117 155
118sub arch_is_wall { 156sub arch_is_wall {
119 my ($a) = @_; 157 my ($a) = @_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines