Last active
November 14, 2017 10:40
-
-
Save kurema/455930e8f62eb8c685b34a08a704e86b to your computer and use it in GitHub Desktop.
perl epub-calc.pl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$MAXNUM=100; | |
$SINGLEFILENUM=1000; | |
open(FILE, "> out/start.xhtml"); | |
print FILE GetHtmlHead(); | |
print FILE "<p><a href=\"".GetRLink(0)."\">START</a></p>"; | |
print FILE GetHtmlTail(); | |
my $currentFile=GetRFile(-$MAXNUM+1); | |
open(FILE, "> out/".$currentFile); | |
print FILE GetHtmlHead(); | |
for(my($i)=-$MAXNUM+1;$i<$MAXNUM;$i++){ | |
if(GetRFile($i) ne $currentFile){ | |
$currentFile=GetRFile($i); | |
print FILE GetHtmlTail(); | |
open(FILE, "> out/".($currentFile)); | |
print FILE GetHtmlHead(); | |
} | |
print FILE <<"EOS"; | |
<a name="r${i}"></a> | |
<table> | |
<tr> | |
<td colspan="4">${i}</td> | |
</tr> | |
EOS | |
print FILE "<tr>\n"; | |
print FILE "<td><a href=\"".GetRLink(0)."\">CE</a></td>\n"; | |
print FILE "<td><a href=\"".GetRLink(0)."\">C</a></td>\n"; | |
print FILE "<td><a href=\"".GetRLink(int($i/10))."\">BS</a></td>\n"; | |
print FILE "<td><a href=\"".GetOLink("d",$i,0)."\">÷</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=7;$k<=9;$k++){ | |
print FILE GetNumberKey($k,$i); | |
} | |
print FILE "<td><a href=\"".GetOLink("m",$i,0)."\">×</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=4;$k<=6;$k++){ | |
print FILE GetNumberKey($k,$i); | |
} | |
print FILE "<td><a href=\"".GetOLink("s",$i,0)."\">-</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=1;$k<=3;$k++){ | |
print FILE GetNumberKey($k,$i); | |
} | |
print FILE "<td><a href=\"".GetOLink("a",$i,0)."\">+</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
print FILE "<td><a href=\"".GetRLink(-$i)."\">±</a></td>\n"; | |
print FILE GetNumberKey(0,$i); | |
print FILE "<td colspan=\"2\"><a href=\"".GetRLink($i)."\">=</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "</table>"; | |
} | |
print FILE GetHtmlTail(); | |
ShowKeyOp("a"); | |
ShowKeyOp("s"); | |
ShowKeyOp("m"); | |
ShowKeyOp("d"); | |
sub GetNumberKey{ | |
my($key,$crtnum)=@_; | |
if($MAXNUM<=abs($crtnum*10+$key)){ | |
return "<td><a href=\"".GetRLink($crtnum)."\">$key</a></td>\n"; | |
}else{ | |
return "<td><a href=\"".GetRLink($crtnum>=0?$crtnum*10+$key:$crtnum*10-$key)."\">$key</a></td>\n"; | |
} | |
} | |
sub GetNumberKeyOp{ | |
my($key,$op,$pnum,$cnum)=@_; | |
if($MAXNUM<=abs($crtnum*10+$key)){ | |
return "<td><a href=\"".GetOLink($op,$pnum,$cnum)."\">$key</a></td>\n"; | |
}else{ | |
return "<td><a href=\"".GetOLink($op,$pnum,($cnum>=0?$cnum*10+$key:$cnum*10-$key))."\">$key</a></td>\n"; | |
} | |
} | |
sub ShowKeyOp{ | |
my ($op)=@_; | |
my $currentFile=GetOFile($op,-$MAXNUM+1,-$MAXNUM+1); | |
open(FILE, "> out/".$currentFile); | |
print FILE GetHtmlHead(); | |
for(my($i)=-$MAXNUM+1;$i<$MAXNUM;$i++){ | |
for(my($j)=-$MAXNUM+1;$j<$MAXNUM;$j++){ | |
if(GetOFile($op,$i,$j) ne $currentFile){ | |
$currentFile=GetOFile($op,$i,$j); | |
print FILE GetHtmlTail(); | |
open(FILE, "> out/".($currentFile)); | |
print FILE GetHtmlHead(); | |
} | |
print FILE <<"EOS"; | |
<a name="o${i}${op}${j}"></a> | |
<table> | |
<tr> | |
<td colspan="4">${j}</td> | |
</tr> | |
EOS | |
my $result=0; | |
my $key=""; | |
if($op eq "a"){$result=$i+$j;$key="+";} | |
elsif($op eq "s"){$result=$i-$j;$key="-";} | |
elsif($op eq "m"){$result=$i*$j;$key="×";} | |
elsif($op eq "d"){$result=$j==0?0:int($i/$j);$key="÷";} | |
print FILE "<tr>\n"; | |
print FILE "<td><a href=\"".GetRLink(0)."\">CE</a></td>\n"; | |
print FILE "<td><a href=\"".GetOLink($op,$i,0)."\">C</a></td>\n"; | |
print FILE "<td><a href=\"".GetOLink($op,$i,int($j/10))."\">BS</a></td>\n"; | |
print FILE "<td><a href=\"".GetOLink("d",$i,$j)."\">÷</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=7;$k<=9;$k++){ | |
print FILE GetNumberKeyOp($k,$op,$i,$j); | |
} | |
print FILE "<td><a href=\"".GetOLink("m",$i,$j)."\">×</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=4;$k<=6;$k++){ | |
print FILE GetNumberKeyOp($k,$op,$i,$j); | |
} | |
print FILE "<td><a href=\"".GetOLink("s",$i,$j)."\">-</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
for(my $k=1;$k<=3;$k++){ | |
print FILE GetNumberKeyOp($k,$op,$i,$j); | |
} | |
print FILE "<td><a href=\"".GetOLink("a",$i,$j)."\">+</a></td>\n"; | |
print FILE "</tr>\n"; | |
print FILE "<tr>\n"; | |
print FILE "<td><a href=\"".GetOLink($op,$i,-$j)."\">±</a></td>\n"; | |
print FILE GetNumberKeyOp(0,$op,$i,$j); | |
if(abs($result)<$MAXNUM){ | |
print FILE "<td colspan=\"2\"><a href=\"".GetRLink($result)."\">=</a></td>\n"; | |
}else{ | |
print FILE "<td colspan=\"2\"><a href=\"#overflow\">=</a></td>\n"; | |
} | |
print FILE "</tr>\n"; | |
print FILE "<td colspan=\"4\">$i$key$j=$result</td>\n"; | |
print FILE "</table>"; | |
} | |
} | |
} | |
sub GetHtmlTail{ | |
return "<a name=\"overflow\"></a>\n<h1>ERROR</h1>\n<p>Overflow.</p>\n<p><a href=\"".GetRLink(0)."\">OK</a></p>\n</body></html>\n"; | |
} | |
sub GetHtmlHead{ | |
return <<"EOS"; | |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html> | |
<html lang="ja" xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops"> | |
<head> | |
<title>Calc</title> | |
<style type="text/css"> | |
<!-- | |
table{page-break-before: always;width:100%;height:100%;text-align: center;} | |
table,td,th { | |
border-collapse: collapse; | |
border:1px solid black; | |
} | |
h1,p{text-align: center;} | |
h1{page-break-before: always;} | |
--> | |
</style></head> | |
<body> | |
EOS | |
} | |
sub GetRFile{ | |
my ($num)=@_; | |
return "r".int($num/$SINGLEFILENUM).".xhtml"; | |
} | |
sub GetRLink{ | |
my ($num)=@_; | |
return GetRFile($num)."#r".$num; | |
} | |
sub GetOFile{ | |
my($op,$pnum,$cnum)=@_; | |
return $op.int((($pnum+$MAXNUM)*$MAXNUM+$cnum)/$SINGLEFILENUM).".xhtml"; | |
} | |
sub GetOLink{ | |
my($op,$pnum,$cnum)=@_; | |
return GetOFile($op,$pnum,$cnum)."#o$pnum$op$cnum"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
静的なepubで計算ができる電卓です。
要するにリンクで全ての状態に飛びます。
目安として圧縮前で2桁100MBとかなのでシャレになりません。