Esolang.Piet.Processor
2.0.1
dotnet add package Esolang.Piet.Processor --version 2.0.1
NuGet\Install-Package Esolang.Piet.Processor -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Esolang.Piet.Processor" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Esolang.Piet.Processor" Version="2.0.1" />
<PackageReference Include="Esolang.Piet.Processor" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Esolang.Piet.Processor --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Esolang.Piet.Processor, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Esolang.Piet.Processor@2.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Esolang.Piet.Processor&version=2.0.1
#tool nuget:?package=Esolang.Piet.Processor&version=2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Esolang.Piet.Processor
Execution engine primitives for Piet programs.
This package is intended to execute parsed Piet programs and host the core Piet runtime model.
Install
dotnet add package Esolang.Piet.Processor
Usage
Basic Usage (Event Streaming)
This is the basic approach for processing events as a stream.
using Esolang.Piet.Parser;
using Esolang.Piet.Processor;
using Esolang.Processor;
var program = PietParser.Parse("hello-world.png");
var processor = new PietProcessor(program);
await foreach (var ev in processor.RunAsyncEnumerable())
{
// Handle events (OutputInt, OutputChar, etc.)
}
Simplified Execution (Extensions)
This approach uses the Esolang.Processor.Extensions.IO package to run the processor with an explicit exit code and output target.
using Esolang.Piet.Parser;
using Esolang.Piet.Processor;
using Esolang.Processor;
using Esolang.Processor.Extensions.IO; // Requires the Esolang.Processor.Extensions.IO package
var program = PietParser.Parse("hello-world.png");
var processor = new PietProcessor(program);
// Prepare an output sink
using var output = new StringWriter();
// Execute and get the exit code (output is written through the TextWriter argument)
int exitCode = await processor.RunToEndAsync(output: output);
Console.WriteLine($"Exit code: {exitCode}");
Console.WriteLine($"Output: {output}");
Current Status
PietProcessorexecutes parsedPietPrograminstances.- The processor implements
IEventProcessorand streams events viaRunAsyncEnumerable().
Notes
- Use this package when you want to build on the execution model as it evolves.
- For image loading and normalization, use
Esolang.Piet.Parser.
See also
- Piet language reference: https://www.dangermouse.net/esoteric/piet.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Esolang.Piet.Parser (>= 2.0.1)
- Esolang.Processor.Abstractions (>= 2.0.2)
-
net8.0
- Esolang.Piet.Parser (>= 2.0.1)
- Esolang.Processor.Abstractions (>= 2.0.2)
-
net9.0
- Esolang.Piet.Parser (>= 2.0.1)
- Esolang.Processor.Abstractions (>= 2.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.