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.19 by elmex, Mon Aug 14 03:55:50 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
24 fill_pb_from_arch arch_is_floor stack_find_floor stack_find_wall
25 stack_find arch_is_wall arch_is_monster add_table_widget quick_msg
26 def arch_is_exit map2abs exit_paths pseudohtml2txt arch_is_connector);
27
28sub pseudohtml2txt {
29 my ($html) = @_;
30
31 $html =~ s/<br\s*?\/?>/\n/gsi;
32 $html =~ s/<b>(.*?)<\/b>/_\1_/gsi;
33 $html =~ s/<li>/\n* /gi;
34 $html =~ s/<\/?\s*li>//gi;
35 $html =~ s/<\/?\s*ul>//gi;
36 $html =~ s/&gt;/>/g;
37 $html =~ s/&lt;/</g;
38 $html
39}
40
41sub exit_paths {
42 my ($mappath, $map1path, $map2path) = @_;
43 $mappath = abs_path $mappath;
44 $map1path = abs_path $map1path;
45 $map2path = abs_path $map2path;
46
47 if ( (substr $map1path, 0, length $mappath) eq $mappath
48 and (substr $map2path, 0, length $mappath) eq $mappath) {
49 substr $map1path, 0, length $mappath, '';
50 substr $map2path, 0, length $mappath, '';
51
52 my ($v1, $d1, $f1) = File::Spec->splitpath ($map1path);
53 my ($v2, $d2, $f2) = File::Spec->splitpath ($map2path);
54
55 my @di1 = File::Spec->splitdir ($d1);
56 my @di2 = File::Spec->splitdir ($d2);
57
58 if ((defined $di1[1]) and (defined $di2[1]) and $di1[1] eq $di2[1]) {
59 my $m1 = File::Spec->abs2rel ($map1path, File::Spec->catdir (@di2));
60 my $m2 = File::Spec->abs2rel ($map2path, File::Spec->catdir (@di1));
61 return ($m1, $m2);
62 } else {
63 return ($map1path, $map2path);
64 }
65 } else {
66 return ('', '');
67 }
68}
69
70sub map2abs {
71 my ($dest, $mape) = @_;
72
73 $mappath = abs_path $mappath;
74 my $dir;
75 if (File::Spec->file_name_is_absolute($dest)) {
76 $dir = catdir ($::CFG->{MAPDIR}, $dest);
77 } else {
78 my ($v, $p, $f) = File::Spec->splitpath ($mape->{path});
79 $dir = File::Spec->rel2abs ($dest, File::Spec->catpath ($v, $p));
80 }
81 return $dir;
82}
22 83
23sub def($$) { 84sub def($$) {
24 return defined ($_[0]) ? $_[0] : $_[1]; 85 return defined ($_[0]) ? $_[0] : $_[1];
25} 86}
26 87
86 147
87 return 'between'; 148 return 'between';
88 } 149 }
89} 150}
90 151
152sub arch_is_exit {
153 my ($a) = @_;
154 my $type = $Crossfire::ARCH{$a->{_name}}->{type};
155 return $type eq '66' || $type eq '41';
156}
157
91sub arch_is_floor { 158sub arch_is_floor {
92 my ($a) = @_; 159 my ($a) = @_;
93 return $Crossfire::ARCH{$a->{_name}}->{is_floor}; 160 my $ar = Crossfire::arch_attr $a;
161 warn "NAME: $ar->{name}\n";
162 return (
163 (substr $ar->{name}, 0, 5) eq 'Floor'
164 or (substr $ar->{name}, 0, 10) eq 'Shop Floor'
165 )
166}
167
168sub arch_is_connector {
169 my ($a) = @_;
170 my $ar = Crossfire::arch_attr $a;
171 my $has_connect_field = 0;
172
173 TOP: for (@{$ar->{section}}) {
174 my $name = shift @$_;
175 my @r = @$_;
176 if ($name eq 'general') {
177 for (@r) {
178 my ($k, $s) = ($_->[0], $_->[1]);
179 if ($k eq 'connected' && $s->{name} eq 'connection') {
180 $has_connect_field = 1;
181 last TOP;
182 }
183 }
184 last TOP;
185 }
186 }
187
188 return $has_connect_field;
94} 189}
95 190
96sub arch_is_wall { 191sub arch_is_wall {
97 my ($a) = @_; 192 my ($a) = @_;
193 my $ar = Crossfire::arch_attr $a;
194 return $ar->{name} eq 'Wall';
98 return $Crossfire::ARCH{$a->{_name}}->{no_pass}; 195#return $Crossfire::ARCH{$a->{_name}}->{no_pass};
99} 196}
100 197
101sub arch_is_monster { 198sub arch_is_monster {
102 my ($a) = @_; 199 my ($a) = @_;
103 my $arch = $Crossfire::ARCH{$a->{_name}}; 200 my $arch = $Crossfire::ARCH{$a->{_name}};

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines