ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/utils/cfutil.in
(Generate patch)

Comparing deliantra/server/utils/cfutil.in (file contents):
Revision 1.94 by root, Wed Oct 6 00:18:14 2010 UTC vs.
Revision 1.97 by root, Wed Oct 6 01:23:11 2010 UTC

158 print "maps installed successfully.\n"; 158 print "maps installed successfully.\n";
159} 159}
160 160
161our @WALL_SUFFIX = qw(⬤ ╹ ╺ ┗ ╻ ┃ ┏ ┣ ╸ ┛ ━ ┻ ┓ ┫ ┳ ╋); 161our @WALL_SUFFIX = qw(⬤ ╹ ╺ ┗ ╻ ┃ ┏ ┣ ╸ ┛ ━ ┻ ┓ ┫ ┳ ╋);
162 162
163# used to create crude text glyphs for text-based clients
163sub autoglyph { 164sub autoglyph {
164 my ($stem, $face) = @_; 165 my ($stem, $face) = @_;
165 166
166 if ($stem =~ /^wall\/|Nimwall/) { 167 if ($stem =~ /^wall\/|Nimwall/) {
167 return $WALL_SUFFIX[hex $1] 168 return $WALL_SUFFIX[hex $1]
168 if $stem =~ $stem =~ /(_[0-9A-F]).x11/; 169 if $stem =~ /(_[0-9A-F]).x11/;
169 170
170 "+" 171 "+"
172
173 } elsif ($stem =~ /^monster.*\/(.)/) {
174 $1
171 175
172 } elsif ($stem =~ /^floor\/|^ground\/|Nimfloor/) { 176 } elsif ($stem =~ /^floor\/|^ground\/|Nimfloor/) {
173 "." 177 "."
174 178
175 } elsif ($stem =~ /^player\//) { 179 } elsif ($stem =~ /^player\//) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines