makemini.pl 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #!/usr/bin/perl
  2. my $doPlugin = 0;
  3. my $x = shift(@ARGV);
  4. if ($x !~ /^-p/) { unshift(@ARGV, $x); }
  5. else { $doPlugin=1; }
  6. my $injs = shift(@ARGV);
  7. my $outjs = shift(@ARGV);
  8. if ($injs eq '' or $outjs eq '') {
  9. print "Please use this script like this: makemini.pl [-p] in.js out.js\n";
  10. exit(0);
  11. }
  12. open(INJS, $injs);
  13. open(OUTJS, ">$outjs");
  14. my $output = '';
  15. while (<INJS>) {
  16. my $line = $_;
  17. if ($line =~ /^\/\//) {
  18. # Remove lines that aren't important: //\
  19. $line = "" if ($line !~ /^\/\/\\/);
  20. $line = "\n//\\ THIS IS A VERY MODIFIED VERSION. DO NOT EDIT OR PUBLISH. GET THE ORIGINAL!\n\n" if ($line =~ /\/\/\\mini/);
  21. } else {
  22. chop $line;
  23. $line =~ s/, /,/g unless ($line =~ /'\], '/); # ,{sp} -> ,
  24. $line =~ s/; /;/g; # ;{sp} -> ;
  25. $line =~ s/ = /=/g; # {sp}={sp} -> =
  26. $line =~ s/ == /==/g; # {sp}=={sp} -> ==
  27. $line =~ s/ < /</g; # {sp}<{sp} -> <
  28. $line =~ s/ > />/g; # {sp}>{sp} -> >
  29. $line =~ s/ & /&/g; # {sp}&{sp} -> &
  30. $line =~ s/ \| /\|/g; # {sp}|{sp} -> |
  31. $line =~ s/ <= /<=/g; # {sp}<={sp} -> <=
  32. $line =~ s/ >= />=/g; # {sp}>={sp} -> >=
  33. $line =~ s/ \+ /\+/g; # {sp}+{sp} -> +
  34. $line =~ s/ - /-/g; # {sp}-{sp} -> -
  35. $line =~ s/ \/ /\//g;
  36. $line =~ s/ \|\| /\|\|/g; # {sp}||{sp} -> ||
  37. $line =~ s/ && /&&/g; # {sp}&&{sp} -> &&
  38. $line =~ s/ \? /\?/g; # {sp?{sp} -> ?
  39. $line =~ s/ \: /\:/g; # {sp}:{sp} -> :
  40. $line =~ s/ != /!=/g; # {sp}!={sp} -> !=
  41. $line =~ s/ += /+=/g; # {sp}+={sp} -> +=
  42. $line =~ s/ -= /-=/g; # {sp}-={sp} -> -=
  43. $line =~ s/ \*= /\*=/g; # {sp}*={sp} -> *=
  44. $line =~ s/ \|= /\|=/g; # {sp}|={sp} -> |=
  45. $line =~ s/ \^= /\^=/g; # {sp}^={sp} -> ^=
  46. $line =~ s/= /=/g; # ={sp} -> =
  47. $line =~ s/ =/=/g; # {sp}= -> =
  48. $line =~ s/\+ /\+/g;
  49. $line =~ s/ \+/\+/g;
  50. $line =~ s/- /-/g;
  51. $line =~ s/ -/-/g;
  52. $line =~ s/\/\/(.*)$//g if ($line !~ /\/\/-->(.*)$/ && $line !~ /http:\/\/(.*)$/); # remove trailing comments unless its part of a javascript insert or web address
  53. $line = '' if $line =~ /^[\n|\/\/]/; # skip blank lines or any line starting with //
  54. $line =~ s/^\s+//g;
  55. $line =~ s/\s+$//g;
  56. $line =~ s/(.+)\s+(.+)/$1 $2/g;
  57. $line =~ s/\{ (\w)/\{$1/g;
  58. $line =~ s/\) (\w)/\)$1/g;
  59. $line =~ s/\) var/\)var/g;
  60. $line =~ s/[ ]+\(/\(/g;
  61. $line =~ s/\) \{/\)\{/g;
  62. $line =~ s/\} else/\}else/g;
  63. $line =~ s/else \{/else\{/g;
  64. if ($line =~ /^\}$/) {
  65. if ($output =~ /;$/) {
  66. $output .= "}";
  67. } else {
  68. $output = substr($output,0,length($output)-1) . "}";
  69. }
  70. $line = '';
  71. }
  72. }
  73. $output .= $line if ($line ne '');
  74. $output .= "\n" unless ($line =~ /;\n*$/ or $line =~ /{\n*$/);
  75. }
  76. $output =~ s/\n+/\n/g;
  77. $output .= "}\n" if ($doPlugin && $output !~ /\}\s+$/);
  78. # replace multiple ;var xx to ,xx if the line contains var
  79. @lines = split(/^/,$output);
  80. foreach $line (@lines) {
  81. $line =~ s/;var /,/g if ($line =~ /^\s*var / && $line !~ /(turn|ment|Capture\(\)|Div'\)|1000\));var /);
  82. print OUTJS $line;
  83. }