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.98 by root, Wed Oct 6 01:48:15 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 =~ /^traps\//) {
174 "☠"
175
176 } elsif ($stem =~ /^armour\//) {
177 "☗"
178
179 } elsif ($stem =~ /^weapon\//) {
180 "†"
181
182 } elsif ($stem =~ /^readable\//) {
183 "✉"
184
185 } elsif ($stem =~ /^river\//) {
186 "⌇"
171 187
172 } elsif ($stem =~ /^floor\/|^ground\/|Nimfloor/) { 188 } elsif ($stem =~ /^floor\/|^ground\/|Nimfloor/) {
173 "." 189 "."
174 190
175 } elsif ($stem =~ /^player\//) { 191 } elsif ($stem =~ /^player\//) {
176 "\@" 192 "\@"
193
194 } elsif ($stem =~ /^(?:monster|misc|class|connect|gods|indoor|inorganic|mining|music|skills).*\/(.)/) {
195 $1
177 196
178 } else { 197 } else {
179 substr $stem, 0, 1 198 substr $stem, 0, 1
180 } 199 }
181} 200}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines