mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-01 10:05:56 +00:00
105 lines
2.4 KiB
Perl
Executable File
105 lines
2.4 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
sub nospace($) {
|
|
my ($s) = @_;
|
|
$s =~ s/\s//g;
|
|
return $s;
|
|
}
|
|
|
|
sub respace_comment($) {
|
|
my ($s) = @_;
|
|
$s =~ s/^(;+)\s+(.*)/$1 $2/g;
|
|
return $s;
|
|
}
|
|
|
|
my $tab = 8;
|
|
my $comment_column = 32;
|
|
|
|
# TODO: untabify input
|
|
# TODO: sigils to disable/enable formatting around blocks
|
|
|
|
while (<STDIN>) {
|
|
chomp;
|
|
my $orig = $_;
|
|
$_ =~ s/^\s+|\s+$//g;
|
|
|
|
if (m/^$/) {
|
|
# empty line - ignore
|
|
|
|
} elsif (m/^(;;;.*)/) {
|
|
|
|
# full line comment - flush left
|
|
$_ = respace_comment($1);
|
|
|
|
} elsif (m/^(;;.*)/) {
|
|
|
|
# indented comment - one tab stop
|
|
$_ = (' ' x $tab) . respace_comment($1);
|
|
|
|
} else {
|
|
|
|
my $comment = '';
|
|
if (m/^(.*?)(;.*)$/) {
|
|
$_ = $1;
|
|
$comment = respace_comment($2);
|
|
}
|
|
|
|
if (m/^(\w+)\s*:=\s*(.*)$/) {
|
|
|
|
# equate - flush left (!!), spaced out
|
|
my ($identifier, $expression) = ($1 // '', $2 // '', $3 // '');
|
|
|
|
$_ = '';
|
|
$_ .= $identifier . ' ';
|
|
$_ .= ' ' while length($_) % $tab;
|
|
$_ .= ':= ' . $expression . ' ';
|
|
|
|
} elsif (m/^(\.(?:end)?(?:proc|scope|macro|struct|enum)\b)\s*(.*)$/) {
|
|
|
|
# scope - flush left
|
|
my ($opcode, $arguments) = ($1 // '', $2 // '');
|
|
|
|
$_ = $opcode . ' ' . $arguments;
|
|
|
|
} elsif (m/^(\.(?:if\w*|elseif|else|endif)\b)\s*(.*)$/) {
|
|
|
|
# conditional - half indent left
|
|
my ($opcode, $arguments) = ($1 // '', $2 // '');
|
|
|
|
$_ = ' ' x ($tab/2);
|
|
$_ .= $opcode . ' ' . $arguments;
|
|
|
|
} elsif (m/^(\w*:)?\s*(\S+)?\s*(.*?)\s*(;.*)?$/) {
|
|
|
|
# label / opcode / arguments / comment
|
|
my ($label, $opcode, $arguments, $comment) = ($1 // '', $2 // '', $3 // '', $4 // '');
|
|
|
|
$_ = '';
|
|
$_ .= $label . ' ';
|
|
$_ .= ' ' while length($_) % $tab;
|
|
$_ .= $opcode . ' ';
|
|
if ($opcode =~ m/^([a-z]{3}\w*)$|^(\.(byte|word|addr|res))$/) {
|
|
$_ .= ' ' while length($_) % $tab;
|
|
}
|
|
$_ .= $arguments . ' ';
|
|
|
|
} else {
|
|
die "Unexpected line: $_\n";
|
|
}
|
|
|
|
if ($comment ) {
|
|
$_ .= ' ' while length($_) < $comment_column;
|
|
$_ .= $comment;
|
|
}
|
|
}
|
|
|
|
$_ =~ s/\s+$//; # trim right
|
|
|
|
die "Mismatch:\n> $orig\n<$_\n"unless nospace($_) eq nospace($orig);
|
|
|
|
print $_, "\n";
|
|
}
|