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.6 by elmex, Thu Mar 16 14:00:24 2006 UTC vs.
Revision 1.15 by elmex, Sun Apr 2 17:57:37 2006 UTC

15use Storable; 15use Storable;
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;
21use Cwd 'abs_path';
20 22
21our @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); 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 =~ s/<\/?\s*li>//gi;
31 $html =~ s/<\/?\s*ul>//gi;
32 $html =~ s/&gt;/>/g;
33 $html =~ s/&lt;/</g;
34 $html
35}
36
37sub exit_paths {
38 my ($mappath, $map1path, $map2path) = @_;
39 $mappath = abs_path $mappath;
40 $map1path = abs_path $map1path;
41 $map2path = abs_path $map2path;
42
43 if ( (substr $map1path, 0, length $mappath) eq $mappath
44 and (substr $map2path, 0, length $mappath) eq $mappath) {
45 substr $map1path, 0, length $mappath, '';
46 substr $map2path, 0, length $mappath, '';
47
48 my ($v1, $d1, $f1) = File::Spec->splitpath ($map1path);
49 my ($v2, $d2, $f2) = File::Spec->splitpath ($map2path);
50
51 my @di1 = File::Spec->splitdir ($d1);
52 my @di2 = File::Spec->splitdir ($d2);
53
54 if ((defined $di1[1]) and (defined $di2[1]) and $di1[1] eq $di2[1]) {
55 my $m1 = File::Spec->abs2rel ($map1path, File::Spec->catdir (@di2));
56 my $m2 = File::Spec->abs2rel ($map2path, File::Spec->catdir (@di1));
57 return ($m1, $m2);
58 } else {
59 return ($map1path, $map2path);
60 }
61 } else {
62 return ('', '');
63 }
64}
65
66sub map2abs {
67 my ($dest, $mape) = @_;
68
69 my $dir;
70 if (File::Spec->file_name_is_absolute($dest)) {
71 $dir = catdir ($::CFG->{MAPDIR}, $dest);
72 } else {
73 my ($v, $p, $f) = File::Spec->splitpath ($mape->{path});
74 $dir = File::Spec->rel2abs ($dest, File::Spec->catpath ($v, $p));
75 }
76 return $dir;
77}
22 78
23sub def($$) { 79sub def($$) {
24 return defined ($_[0]) ? $_[0] : $_[1]; 80 return defined ($_[0]) ? $_[0] : $_[1];
25} 81}
26 82
86 142
87 return 'between'; 143 return 'between';
88 } 144 }
89} 145}
90 146
147sub arch_is_exit {
148 my ($a) = @_;
149 my $type = $Crossfire::ARCH{$a->{_name}}->{type};
150 return $type eq '66' || $type eq '41';
151}
152
91sub arch_is_floor { 153sub arch_is_floor {
92 my ($a) = @_; 154 my ($a) = @_;
155 my $ar = Crossfire::arch_attr $a;
156 return (substr $ar->{name}, 0, 5) eq 'Floor';
93 return $Crossfire::ARCH{$a->{_name}}->{is_floor}; 157#return $Crossfire::ARCH{$a->{_name}}->{is_floor};
94} 158}
95 159
96sub arch_is_wall { 160sub arch_is_wall {
97 my ($a) = @_; 161 my ($a) = @_;
162 my $ar = Crossfire::arch_attr $a;
163 return $ar->{name} eq 'Wall';
98 return $Crossfire::ARCH{$a->{_name}}->{no_pass}; 164#return $Crossfire::ARCH{$a->{_name}}->{no_pass};
99} 165}
100 166
101sub arch_is_monster { 167sub arch_is_monster {
102 my ($a) = @_; 168 my ($a) = @_;
103 my $arch = $Crossfire::ARCH{$a->{_name}}; 169 my $arch = $Crossfire::ARCH{$a->{_name}};

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines