fedcomp/brainloller

This package is abandoned and no longer maintained. No replacement package was suggested.

class to decode brainloller images

0.1 2015-03-23 16:32 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:46:38 UTC


README

Brainloller is a Brainfuck clone designed by Lode Vandevenne in 2005. Commands are read from the pixels of a .png image, with 2 extra commands. The extra commands change the instruction pointer direction so that you can compact the 1D Brainfuck code into a 2D image. More info

Brainloller class uses https://github.com/deralex/phprainfuck as dev-depedency, allowing you to evaluate brainloller code.

How to use

using Composer add requirement to your composer.json file

{
	"require":{
		"fedcomp/brainloller": "0.0.1"
	}
}

or run from console composer require fedcomp/brainloller

Then a bit of code and you are done

<?php require_once __DIR__.'/vendor/autoload.php';

use Fedcomp\BrainLoller;
$brainloller = new BrainLoller();

$brainloller->init(__DIR__.'/tests/images/hello-world.png');
// OR
$brainloller->init(fopen(__DIR__.'/tests/images/hello-world.png', 'r'));
echo $brainloller->getCode();

Method init() accept file paths, file handles (fopen()), and gd handles (not tested).

Open example.php for more details.