Created
December 7, 2017 16:08
-
-
Save notian/2ad495e93a9dd7e5b3e253e9702f44cc to your computer and use it in GitHub Desktop.
String to BF converter
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
<?php | |
namespace StrBF; | |
// Example Usage: | |
$input = implode(' ',array_slice($argv, 1)); | |
echo wordwrap( Str2BF( $input ), 32, "\n", true ); | |
echo "\n"; | |
/** | |
* @brief Output string in BrainFuck | |
* | |
* @param [str] $input string | |
* @return (brainfuck) string | |
* | |
* @details Has 3 internal modes lower/upper/mixed | |
* The optimization (per mode) is the header | |
*/ | |
function Str2BF( $input ){ | |
if( preg_match('/^[^a-z]+$/', $input)){ | |
return upper( $input ); | |
} | |
if( preg_match('/^[^A-Z]+$/', $input)){ | |
return lower( $input ); | |
} | |
return mixed( $input ); | |
} | |
function MovePointer( &$current, $target ){ | |
$rval = ''; | |
$diff = $target - $current; | |
for($i = 0; $i < abs( $diff ); $i++ ){ | |
$rval .= ( $diff > 0 ) ? '>':'<'; | |
} | |
$current = $target; | |
return $rval; | |
} | |
function MoveChar( &$current, $target ){ | |
$rval = ''; | |
$diff = $target - $current; | |
for($i = 0; $i < abs( $diff ); $i++ ){ | |
$rval .= ( $diff > 0 ) ? '+':'-'; | |
} | |
$current = $target; | |
return $rval; | |
} | |
function mixed( $input ){ | |
$out = ''; | |
/* | |
++++[>++++++++[>+<-]<-] #// 0,0,32 | |
>>[<++<+++>>-] #// 96,64,0 (A=65, A=97) | |
*/ | |
$header = <<<'BFHEADER' | |
++++[>++++[>++<-]<-]>>[<++<+++>>-] | |
BFHEADER; | |
$p = 2; | |
$x = [96,64,0]; | |
return $header.getBF( $input, $x, $p ); | |
} | |
function lower( $input ){ | |
$x = [120,90,0]; | |
$p = 2; | |
$header = <<<'BFHEADER' | |
+++++[>+++[>++<-]<-]>>[<+++<++++>>-] | |
BFHEADER; | |
return $header.getBF( $input, $x, $p ); | |
} | |
function upper( $input ){ | |
$x = [0,0,64]; | |
$p = 2; | |
$header = <<<'BFHEADER' | |
++++[>++++[>++++<-]<-]>> | |
BFHEADER; | |
return $header.getBF( $input, $x, $p ); | |
} | |
function nearest( $chr, $list ){ | |
$min = 255; | |
$rval = 0; | |
foreach( $list as $i => $n ){ | |
$diff = abs( $chr - $n); | |
if( $diff < 5){ | |
return $i; | |
} | |
if( $diff < $min ){ | |
$rval = $i; | |
$min = $diff; | |
} | |
} | |
return $rval; | |
} | |
function getBF( $input, $list, $currentPointer ){ | |
$out = ''; | |
$targetPointer = 0; | |
$l = strlen( $input ); | |
for( $i = 0; $i < $l; $i++ ){ | |
$chr = ord($input[$i]); | |
$targetPointer = nearest($chr, $list ); | |
$out .= MovePointer( $currentPointer, $targetPointer ). | |
MoveChar( $list[$currentPointer], $chr ).'.'; | |
// $out .= "// {$input[$i]}\n"; | |
} | |
return $out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example
Output