###########################
#  propeller.pl
#     07.09.15

use strict;
use HTML::Template;

my(%t,@fld,$n);

my $template = HTML::Template->new(filename => 'propeller0.htm');
my @loop = ();

$t{htmfile} = 'propeller1.htm';

$t{flag} = 1;
open(IN,"propeller.txt") or die "Can't open the file propeller.txt";
while(<IN>){
    next if $. == 1;
    if ( !/^\t/ ) {
        chop;
        if ( $t{flag} == 1 ) {
            s/\s*$//;
            push(@{ $t{N1s} },$_);
            $t{flag} = 2;
        } elsif ( $t{flag} == 2 ) {
            s/\s*$//;
            push(@{ $t{C1s} },$_);
            $t{flag} = 3;
        } elsif ( $t{flag} == 3 ) {
            s/\s*$//;
            push(@{ $t{E1s} },$_);
            $t{flag} = 1;
        }
    }
}
close(IN);

for $n ( 0 .. $#{ $t{N1s} } ) {
    $t{N0} = $n+1;
    $t{N1} = $t{N1s}[$n];
    $t{c1} = $t{C1s}[$n];
    $t{e1} = $t{E1s}[$n];
    my %row = (
            N0 => $t{N0},
            N1 => $t{N1},
            C1 => $t{c1},
            E1 => $t{e1}
    );
    push(@loop, \%row);
}

$template->param(std_loop => \@loop);
open(OUT,">$t{htmfile}");
print OUT $template->output;
close(OUT);

__END__;