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.8 by root, Sun Mar 11 21:26:06 2007 UTC vs.
Revision 1.38 by root, Thu Jul 12 08:40:14 2007 UTC

6my $exec_prefix = "@exec_prefix@"; 6my $exec_prefix = "@exec_prefix@";
7my $datarootdir = "@datarootdir@"; 7my $datarootdir = "@datarootdir@";
8my $DATADIR = "@datadir@/@PACKAGE@"; 8my $DATADIR = "@datadir@/@PACKAGE@";
9 9
10my $CONVERT = "@CONVERT@"; 10my $CONVERT = "@CONVERT@";
11my $IDENTIFY = "@IDENTIFY@"; 11#my $IDENTIFY = "@IDENTIFY@";
12my $OPTIPNG = "@OPTIPNG@"; 12my $OPTIPNG = "@OPTIPNG@";
13my $RSYNC = "@RSYNC@"; 13my $RSYNC = "@RSYNC@";
14my $PNGNQ = "@PNGNQ@";
14 15
15use Getopt::Long; 16use Getopt::Long;
16use Coro::Event; 17use Coro::Event;
17use AnyEvent; 18use AnyEvent;
18use IO::AIO (); 19use IO::AIO ();
20use Crossfire; 21use Crossfire;
21use Coro; 22use Coro;
22use Coro::AIO; 23use Coro::AIO;
23use POSIX (); 24use POSIX ();
24use Digest::MD5; 25use Digest::MD5;
26use Coro::Storable; $Storable::canonical = 1;
25 27
26sub usage { 28sub usage {
27 warn <<EOF; 29 warn <<EOF;
28Usage: cfutil [-v] [-q] [--force] [--cache] 30Usage: cfutil [-v] [-q] [--force] [--cache]
29 [--install-arch path] 31 [--install-arch path]
41my $CACHE = 0; 43my $CACHE = 0;
42my $FORCE; 44my $FORCE;
43my $TMPDIR = "/tmp/cfutil$$~"; 45my $TMPDIR = "/tmp/cfutil$$~";
44my $TMPFILE = "aaaa0"; 46my $TMPFILE = "aaaa0";
45 47
48our %COLOR = (
49 black => 0,
50 white => 1,
51 navy => 2,
52 red => 3,
53 orange => 4,
54 blue => 5,
55 darkorange => 6,
56 green => 7,
57 lightgreen => 8,
58 grey => 9,
59 brown => 10,
60 gold => 11,
61 tan => 12,
62);
63
46END { system "rm", "-rf", $TMPDIR } 64END { system "rm", "-rf", $TMPDIR }
47 65
48Event->signal (signal => "INT", cb => sub { exit 1 }); 66Event->signal (signal => "INT", cb => sub { exit 1 });
49Event->signal (signal => "TERM", cb => sub { exit 1 }); 67Event->signal (signal => "TERM", cb => sub { exit 1 });
50 68
67} 85}
68 86
69sub inst_maps($) { 87sub inst_maps($) {
70 my (undef, $path) = @_; 88 my (undef, $path) = @_;
71 89
72 print "installing '$path' to '$DATADIR/maps'\n\n"; 90 print "\nInstalling '$path' to '$DATADIR/maps'\n\n";
73 91
74 if (!-f "$path/regions") { 92 if (!-f "$path/regions") {
75 warn "'$path' does not look like a maps directory ('regions' file is missing).\n"; 93 warn "'$path' does not look like a maps directory ('regions' file is missing).\n";
76 exit 1 unless $FORCE; 94 exit 1 unless $FORCE;
77 } 95 }
78 96
79 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"; 97 system $RSYNC, "-av", "$path/.", "$DATADIR/maps/.", "--delete", "--exclude", "CVS", "--delete-excluded"
98 and die "map installation failed.\n";
99
100 print "maps installed successfully.\n";
80} 101}
81 102
82{ 103{
83 our %PNG32; 104 our %ANIMINFO;
84 our %FACEINFO; 105 our %FACEINFO;
106 our %RESOURCE;
85 our @ARC; 107 our @ARC;
108 our %ARC;
109 our $TRS;
86 our $NFILE; 110 our $NFILE;
87 our %ANIM; 111 our $PATH;
88 112
113 our $QUANTIZE = "+dither -colorspace RGB -colors 256";
114
89 our (@png, @trs, @arc); # files we are interested in 115 our (@png, @trs, @arc, @res); # files we are interested in
90 116
91 sub commit_png { 117 sub commit_png($$$) {
92 my ($name, $data) = @_; 118 my ($name, $data, $T) = @_;
93 119
94 $PNG32{$name} = $data; 120 $FACEINFO{$name}{"data$T"} = $data;
95 $FACEINFO{$name} ||= {};
96 } 121 }
97 122
98 sub process_png { 123 sub process_png {
99 while (@png) { 124 while (@png) {
100 my $path = pop @png; 125 my ($path, $delete) = @{pop @png};
101 126
102 my $png; 127 my $png;
103 aio_lstat $path; 128 aio_lstat $path;
104 my ($size, $mtime) = (stat _)[7,9]; 129 my ($size, $mtime) = (stat _)[7,9];
105 130
106 if (0 > aio_load $path, $png) { 131 if (0 > aio_load $path, $png) {
107 warn "$path: $!, skipping.\n"; 132 warn "$path: $!, skipping.\n";
108 next; 133 next;
109 } 134 }
110 135
136 my $stem = $path;
137 my $T;
138
139 if ($stem =~ s/\.32x32\.png~?$//) {
140 $T = 32;
141 } elsif ($stem =~ s/\.64x64\.png~?$//) {
142 $T = 64;
143 } else {
144 warn "$path: weird filename, skipping.\n";
145 next;
146 }
147
111 # quickly extract width and height of the (necessarily PNG) image 148 # quickly extract width and height of the (necessarily PNG) image
112 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) { 149 unless ($png =~ /^\x89PNG\x0d\x0a\x1a\x0a....IHDR(........)/s) {
113 warn "$path: not a recongized png file, skipping.\n"; 150 warn "$path: not a recognized png file, skipping.\n";
114 next; 151 next;
115 } 152 }
116 153
117 my ($w, $h) = unpack "NN", $1; 154 my ($w, $h) = unpack "NN", $1;
118
119 (my $face = $path) =~ s/^.*\///;
120 my $T = 32;
121
122 unless ($face =~ s/\.base\.(...)\.png$/.$1/) {
123 warn "$path: weird filename, skipping.\n";
124 next;
125 }
126 155
127 if ($w < $T || $h < $T) { 156 if ($w < $T || $h < $T) {
128 warn "$path: too small ($w $h), skipping.\n"; 157 warn "$path: too small ($w $h), skipping.\n";
129 next; 158 next;
130 } 159 }
132 if ($w % $T || $h % $T) { 161 if ($w % $T || $h % $T) {
133 warn "$path: weird png size ($w $h), skipping.\n"; 162 warn "$path: weird png size ($w $h), skipping.\n";
134 next; 163 next;
135 } 164 }
136 165
166 unless ($path =~ /~$/) {
167 # possibly enlarge
168 if (0 > aio_stat "$stem.64x64.png") {
169 my $other = "$stem.64x64.png~";
170
171 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
172 my $wrap = 0; # for the time being
173 fork_sub {
174 system "convert png:\Q$path\E -depth 8 rgba:-"
175 . "| $exec_prefix/bin/cfhq2xa $w $h $wrap"
176 . "| convert -depth 8 -size ".($w * 2)."x".($h * 2)." rgba:- $QUANTIZE -quality 00 png32:\Q$other\E~"
177 and die "convert/hq2xa pipeline error: status $? ($!)";
178 system $OPTIPNG, "-i0", "-q", "$other~";
179 die "$other~ has zero size, aborting." unless -s "$other~";
180 rename "$other~", $other;
181 };
182 }
183
184 push @png, [$other, !$CACHE];
185 }
186
187 # possibly scale down
188 if (0 > aio_stat "$stem.32x32.png") {
189 my $other = "$stem.32x32.png~";
190
191 if (0 > aio_lstat $other or (-M _) > (-M $path)) {
192 fork_sub {
193 system "convert png:\Q$path\E -geometry 50% -filter lanczos $QUANTIZE -quality 00 png32:\Q$other\E~";
194 system $OPTIPNG, "-i0", "-q", "$other~";
195
196 # reduce smoothfaces >10000 bytes
197 if ($stem =~ /_S\./ && (-s "$other~") > 10000) {
198 my $ncolor = 256;
199 while () {
200 system "<\Q$other~\E $PNGNQ -s1 -n$ncolor >\Q$other~~\E";
201 system $OPTIPNG, "-i0", "-q", "$other~~";
202 last if 10000 > -s "$other~~";
203 $ncolor = int $ncolor * 0.9;
204 $ncolor > 8 or die "cannot reduce filesize to < 10000 bytes";
205 }
206
207 printf "reduced %s from %d to %d bytes using %d colours.\n",
208 $other, -s "$other~", -s "$other~~", $ncolor
209 if $VERBOSE >= 2;
210 rename "$other~~", "$other~";
211 }
212
213 die "$other~ has zero size, aborting." unless -s "$other~";
214 rename "$other~", $other;
215 };
216 }
217
218 #warn "scaled down $path to $other\n";#d#
219 push @png, [$other, !$CACHE];
220 }
221 }
222
223 (my $face = $stem) =~ s/^.*\///;
224
225 # split all bigfaces, but avoid smoothfaces (*_S)
137 if (($w > $T || $h > $T) && $face !~ /_S\./) { 226 if (($w > $T || $h > $T) && $face !~ /_S\./) {
138 # split 227 # split
139 my @tile; 228 my @tile;
140 for my $x (0 .. (int $w / $T) - 1) { 229 for my $x (0 .. (int $w / $T) - 1) {
141 for my $y (0 .. (int $h / $T) - 1) { 230 for my $y (0 .. (int $h / $T) - 1) {
155 ( 244 (
156 "(", 245 "(",
157 "+clone", 246 "+clone",
158 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T), 247 -crop => (sprintf "%dx%d+%d+%d", $T, $T, $_->[0] * $T, $_->[1] * $T),
159 "+repage", 248 "+repage",
249 -quality => "00",
160 -write => "png:$_->[2]~", 250 -write => "png32:$_->[2]~",
161 "+delete", 251 "+delete",
162 ")", 252 ")",
163 ) 253 )
164 } @todo), 254 } @todo),
165 "null:"; 255 "null:";
169 close $convert; 259 close $convert;
170 260
171 # pass 2, optimise, and rename 261 # pass 2, optimise, and rename
172 for (@todo) { 262 for (@todo) {
173 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~"; 263 system $OPTIPNG, "-o5", "-i0", "-q", "$_->[2]~";
264 die "$_->[2]~ has zero size, aborting." unless -s "$_->[2]~";
174 rename "$_->[2]~", $_->[2]; 265 rename "$_->[2]~", $_->[2];
175 } 266 }
176 }; 267 };
177 } 268 }
178 269
182 273
183 if (0 > aio_load $file, $tile) { 274 if (0 > aio_load $file, $tile) {
184 die "$path: unable to read tile +$x+$y, aborting.\n"; 275 die "$path: unable to read tile +$x+$y, aborting.\n";
185 } 276 }
186 IO::AIO::aio_unlink $file unless $CACHE; 277 IO::AIO::aio_unlink $file unless $CACHE;
187 commit_png $x|$y ? "$face+$x+$y" : $face, $tile; 278 commit_png $x|$y ? "$face+$x+$y" : $face, $tile, $T;
188 } 279 }
189 } else { 280 } else {
190 # use as-is (either small, use smooth) 281 # use as-is (either small, use smooth)
191 commit_png $face, $png; 282 commit_png $face, $png, $T;
192 } 283 }
284
285 aio_unlink $path if $delete;
193 } 286 }
194 } 287 }
195 288
196 sub process_arc { 289 sub process_arc {
197 while (@arc) { 290 while (@arc) {
201 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/ 294 aio_load "$dir/$file", $arc; # simply pre-cache, as read_arch wants a file :/
202 295
203 my $arc = read_arch "$dir/$file"; 296 my $arc = read_arch "$dir/$file";
204 for my $o (values %$arc) { 297 for my $o (values %$arc) {
205 push @ARC, $o; 298 push @ARC, $o;
299 for (my $m = $o; $m; $m = $m->{more}) {
300 $ARC{$m->{_name}} = $m;
301 }
302
303 $o->{editor_folder} = $dir;
206 304
207 my $visibility = delete $o->{visibility}; 305 my $visibility = delete $o->{visibility};
208 my $magicmap = delete $o->{magicmap}; 306 my $magicmap = delete $o->{magicmap};
209 307
210 # find upper left corner :/ 308 # find upper left corner :/
219 my $x = $o->{x} - $dx; 317 my $x = $o->{x} - $dx;
220 my $y = $o->{y} - $dy; 318 my $y = $o->{y} - $dy;
221 319
222 my $ext = $x|$y ? "+$x+$y" : ""; 320 my $ext = $x|$y ? "+$x+$y" : "";
223 321
224 $o->{face} .= $ext; 322 $o->{face} .= $ext unless /^blank.x11$|^empty.x11$/ || !$o->{face};
225 323
226 my $visibility = delete $o->{visibility} if exists $o->{visibility}; 324 $visibility = delete $o->{visibility} if exists $o->{visibility};
227 my $magicmap = delete $o->{magicmap} if exists $o->{magicmap}; 325 $magicmap = delete $o->{magicmap} if exists $o->{magicmap};
228 326
229 my $anim = delete $o->{anim}; 327 my $anim = delete $o->{anim};
230 328
231 if ($anim) { 329 if ($anim) {
330 # possibly add $ext to the animation name to avoid
331 # the need to specify archnames for all parts
332 # of a multipart archetype.
232 $o->{animation} = "$o->{_name}"; 333 $o->{animation} = "$o->{_name}";
334 my $facings = 1;
335 my @frames;
233 336
234 for (@$anim) { 337 for (@$anim) {
235 $_ .= $ext unless /^facings\s/; 338 if (/^facings\s+(\d+)/) {
339 $facings = $1*1;
340 } elsif (/^blank.x11$|^empty.x11$/) {
341 push @frames, $_;
342 } else {
343 push @frames, "$_$ext";
344 }
236 } 345 }
237 346
238 $ANIM{"$o->{_name}$ext"} = 347 $ANIMINFO{$o->{animation}} = {
239 join "", map "$_\n", 348 facings => $facings,
240 "anim $o->{_name}", 349 frames => \@frames,
241 @$anim, 350 };
242 "mina";
243 } 351 }
244 352
245 for my $face ($o->{face} || (), @{$anim || []}) { 353 for my $face ($o->{face} || (), @{$anim || []}) {
246 next if /^facings\s/; 354 next if $face =~ /^facings\s|^blank.x11$|^empty.x11$/;
247 355
248 my $info = $FACEINFO{$face} ||= {}; 356 my $info = $FACEINFO{$face} ||= {};
249 357
250 $info->{visibility} = $visibility if defined $visibility; 358 $info->{visibility} = $visibility if defined $visibility;
251 $info->{magicmap} = $magicmap if defined $magicmap; 359 $info->{magicmap} = $magicmap if defined $magicmap;
360 }
361
362 if (my $smooth = delete $o->{smoothface}) {
363 my %kv =split /\s+/, $smooth;
364 my $level = $o->{smoothlevel}; #TODO: delete from $o if !gcfclient-support
365 while (my ($face, $smooth) = each %kv) {
366 $FACEINFO{$face}{smooth} = $smooth;
367 $FACEINFO{$face}{smoothlevel} = $level;
368 }
252 } 369 }
253 } 370 }
254 } 371 }
255 } 372 }
256 } 373 }
257 374
258 sub process_trs { 375 sub process_trs {
259 while (@trs) { 376 while (@trs) {
260 my ($dir, $file) = @{pop @trs}; 377 my ($dir, $file) = @{pop @trs};
378 my $path = "$dir/$file";
379
380 my $trs;
381 if (0 > aio_load $path, $trs) {
382 warn "$path: $!, skipping.\n";
383 next;
384 }
385
386 $TRS .= $trs;
387 }
388 }
389
390 sub process_res {
391 while (@res) {
392 my ($dir, $file) = @{pop @res};
393
394 my $data;
395 aio_load "$dir/$file", $data;
396
397 my $copyright;
398 aio_load "$dir/copyright", $copyright;
399
400 $file =~ s/\.res$//;
401 $file =~ /\.([^.]+)$/
402 or next;
403
404 my $type = $1;
405
406 substr $dir, 0, 1 + length $PATH, "";
407
408 $RESOURCE{"$dir/$file"} = {
409 type => $1,
410 copyright => $copyright,
411 data => $data,
412 chksum => Digest::MD5::md5 $data,
413 };
261 } 414 }
262 } 415 }
263 416
264 sub find_files; 417 sub find_files;
265 sub find_files { 418 sub find_files {
272 find_files "$path/$_" 425 find_files "$path/$_"
273 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs; 426 for grep $_ !~ /^(?:CVS|dev)$/, @$dirs;
274 427
275 for my $file (@$nondirs) { 428 for my $file (@$nondirs) {
276 if ($file =~ /\.png$/) { 429 if ($file =~ /\.png$/) {
277 push @png, "$path/$file"; 430 push @png, ["$path/$file", 0];
278 } elsif ($file =~ /\.trs$/) { 431 } elsif ($file =~ /\.trs$/) {
279 push @trs, [$path, $file]; 432 push @trs, [$path, $file];
280 } elsif ($file =~ /\.arc$/) { 433 } elsif ($file =~ /\.arc$/) {
281 push @arc, [$path, $file]; 434 push @arc, [$path, $file];
435 } elsif ($file =~ /\.(ogg|res)$/) {
436 push @res, [$path, $file];
282 } else { 437 } else {
283 warn "ignoring $path/$file\n" if $VERBOSE >= 2; 438 warn "ignoring $path/$file\n" if $VERBOSE >= 3;
284 } 439 }
285 } 440 }
286 }; 441 };
287 } 442 }
288 443
289 sub inst_arch($) { 444 sub inst_arch($) {
290 my (undef, $path) = @_; 445 my (undef, $path) = @_;
291 446
447 $PATH = $path;
448
449 print "\n",
292 print "installing '$path' to '$DATADIR'\n\n"; 450 "Installing '$path' to '$DATADIR'\n",
451 "\n",
452 "This can take a long time if you run this\n",
453 "for the first time or do not use --cache.\n",
454 "\n",
455 "Unless you run verbosely, all following warning\n",
456 "or error messages indicate serious problems.\n",
457 "\n";
293 458
294 if (!-d "$path/treasures") { 459 if (!-d "$path/treasures") {
295 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n"; 460 warn "'$path' does not look like an arch directory ('treasures' directory is missing).\n";
296 exit 1 unless $FORCE; 461 exit 1 unless $FORCE;
297 } 462 }
298 463
299 find_files $path; 464 find_files $path;
300 IO::AIO::flush; 465 IO::AIO::flush;
301 466
302 $_->join for ( 467 $_->join for (
303 (async \&process_png), (async \&process_png), 468 # four png crunchers work fine for my 2x smp machine
469 (async \&process_png), (async \&process_png), (async \&process_png), (async \&process_png),
304 (async \&process_trs), (async \&process_trs), 470 (async \&process_trs), (async \&process_trs),
305 (async \&process_arc), (async \&process_arc), 471 (async \&process_arc), (async \&process_arc),
472 (async \&process_res), (async \&process_res),
306 ); 473 );
307 474
308 { 475 {
309 open my $fh, ">:utf8", "$DATADIR/animations~" 476 # remove path prefix from editor_folder
310 or die "$DATADIR/animations~: $!"; 477 substr $_->{editor_folder}, 0, 1 + length $path, ""
311 print $fh join "", map $ANIM{$_}, sort keys %ANIM 478 for values %ARC;
479
480 # resolve inherit
481 while () {
482 my $progress;
483 my $loop;
484
485 for my $o (values %ARC) {
486 if (my $other = $o->{inherit}) {
487 if (my $s = $ARC{$other}) {
488 if ($s->{inherit}) {
489 $loop = $s;
490 } else {
491 delete $o->{inherit};
492 my %s = %$s;
493 delete @s{qw(_name more name name_pl)};
494 %$o = ( %s, %$o );
495 ++$progress;
496 }
497 } else {
498 warn "'$o->{_name}' tries to inherit from undefined archetype '$other', skipping.\n";
499 delete $ARC{$o->{_name}};
500 }
501 }
502 }
503
504 unless ($progress) {
505 die "inheritance loop detected starting at archetype '$loop->{_name}', aborting.\n"
506 if $loop;
507
508 last;
509 }
312 } 510 }
313 511
314 { 512 # remove base classes (by naming scheme, should use something like "baseclass xxx" to inherit
513 @ARC = grep $_->{_name} !~ /^(?:type|class)_/, @ARC;
514
315 open my $fh, ">:utf8", "$DATADIR/archetypes~" 515 open my $fh, ">:utf8", "$DATADIR/archetypes~"
316 or die "$DATADIR/archetypes~: $!"; 516 or die "$DATADIR/archetypes~: $!";
317 print $fh Crossfire::archlist_to_string \@ARC; 517 print $fh Crossfire::archlist_to_string [sort { $a->{_name} cmp $b->{_name} } @ARC];
518 }
519
520 {
521 open my $fh, ">:utf8", "$DATADIR/treasures~"
522 or die "$DATADIR/treasures~: $!";
523 print $fh $TRS;
318 } 524 }
319 525
320 { 526 {
321 while (my ($k, $v) = each %FACEINFO) { 527 while (my ($k, $v) = each %FACEINFO) {
322 $v->{data32} ||= delete $PNG32{$k}; 528 length $v->{data32} or warn "$k: face has no png32. this will not work (shoddy gcfclient will crash of course).\n";
323 }
324
325 while (my ($k, $v) = each %FACEINFO) {
326 exists $v->{data32} or warn "$k: face has no png32. this will crash the server.\n"; 529 length $v->{data64} or warn "$k: face has no png64. this will not work very well.\n";
530
531 length $v->{data32} <= 10000 or warn "$k: face32 larger than 10000 bytes, will not work with crossfire client.\n";
532 #length $v->{data64} <= 10000 or warn "$k: face64 larger than 10000 bytes.\n";
327 533
328 $v->{chksum32} = Digest::MD5::md5 $v->{data32}; 534 $v->{chksum32} = Digest::MD5::md5 $v->{data32};
535 $v->{chksum64} = Digest::MD5::md5 $v->{data64};
536
537 if (my $magicmap = $v->{magicmap}) {
538 $magicmap =~ y/A-Z_\-/a-z/d;
539 $v->{magicmap} = $COLOR{$magicmap};
329 } 540 }
541 }
330 542
331 open my $fh, ">:perlio", "$DATADIR/faces~" 543 open my $fh, ">:perlio", "$DATADIR/facedata~"
332 or die "$DATADIR/faces~: $!"; 544 or die "$DATADIR/facedata~: $!";
333 545
334 print $fh Storable::nfreeze \%FACEINFO; 546 print $fh freeze {
335 547 version => 2,
336 #use PApp::Util; warn PApp::Util::dumpval \%FACEINFO; 548 faceinfo => \%FACEINFO,
549 animinfo => \%ANIMINFO,
550 resource => \%RESOURCE,
337 } 551 };
552 }
338 553
339 for (qw(archetypes faces animations)) { 554 for (qw(archetypes facedata treasures)) {
340 chmod 0644, "$DATADIR/$_~"; 555 chmod 0644, "$DATADIR/$_~";
341 rename "$DATADIR/$_~", "$DATADIR/$_"; 556 rename "$DATADIR/$_~", "$DATADIR/$_"
557 or die "$DATADIR/$_: $!";
342 } 558 }
343 559
344 die "--install-arch not fully implemented\n"; 560 print "archetype data installed successfully.\n";
345 } 561 }
346} 562}
347 563
348Getopt::Long::Configure ("bundling", "no_ignore_case"); 564Getopt::Long::Configure ("bundling", "no_ignore_case");
349GetOptions ( 565GetOptions (

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines