griddle 0.4.0 griddle: ^0.4.0 copied to clipboard
Creating terminal-based UIs and games in Dart should be accessible and fun!
CHANGELOG #
0.4.0 #
-
BREAKING:
Display.fromAnsiTerminal
reportsheight
asheight - 1
.This is because attempting to write the entire height of the terminal causes scrollback in most terminals, which in practice means the first line of every UI is accidentally hidden.
-
BREAKING: Split
Buffer
into two interfaces:Buffer
(immutable) andWritableBuffer
.- If you were just using
Buffer
indirectly throughScreen
, no API changes. - If you were creating a
Buffer
and writing to it, useWritableBuffer
now:
- final buffer = Buffer(3, 3); + final buffer = WritableBuffer(3, 3); buffer.print('Hello', 0, 1);
- If you were just using
-
Added
<WritableBuffer>.fillFrom
, which is spiritually aBITBLT
:// Pre-define a sprite-like object in an immutable buffer. final other = Buffer.fromMatrix([ [Cell('┏'), Cell('┓')], [Cell('┃'), Cell('┃')], [Cell('┗'), Cell('┛')], ]); // Copy it into a writable buffer. final buffer = WritableBuffer(5, 5)..fillFrom(other, x: 2, y: 1);
0.3.1 #
Applied basic optimizations to ANSI escape code screens.
// Before
screen.print('GREEN', 0, 2, foreground: green, background: blue);
screen.update();
... produced:
\x1B[2J\n
\x1B[0m \x1B[0m \x1B[0m \x1B[0m \x1B[0m\n
\x1B[0mH\x1B[0mE\x1B[0mL\x1B[0mL\x1B[0mO\n
\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mG\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mR\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mE\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mE\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mN\n
... and after the optimizations:
\x1B[2J\n
\n
\x1B[0m\x1B[38;2;0;255;0m\x1B[48;2;0;0;255mGREEN\n
0.3.0 #
In accordance with our design, any features that are not appropriate for a high-level canvas-like API were removed from this package:
-
Screen(framesPerSecond: ...)
andScreen.terminal(framesPerSecond: ...)
. -
<Screen>.onFrame
:// Before final screen = Screen(framesPerSecond: 30); screen.onFrame.listen((_) { /* ... */ }) // After final screen = Screen(); final frames = Stopwatch()..start(); Stream.periodic(Duration(milliseconds: 1000 ~/ 30)).listen((_) { final time = frames.elapsed; frames.reset(); /* ... */ });
-
Terminal.usingAnsiStdio({stdin: ...})
:// Before import 'package:griddle/griddle.dart'; void main() { Screen.terminal(Terminal.usingAnsiStdio()); }
// After import 'dart:io'; import 'package:griddle/griddle.dart'; void main() { Screen.display( Display.fromAnsiTerminal( stdout, width: () => stdout.width, height: () => stdout.height, ), ); }
These changes allow us to focus on just pushing pixels and output, versus worrying about other elements of UI, such as the update loop or user input, which are better suited to other packages, as well as keeping this package completely platform agnostic.
If this API remains relatively stable, it will (eventually) become 1.0.0
.
0.2.0 #
New release with many bug fixes, changes, and new examples!
-
Added
Buffer.fromCells
andBuffer.fromMatrix
as helpful factory methods. -
Added
<Buffer>.length
as an alias for<Buffer>.width * <Buffer>.height
. -
Added
<Buffer>[]
and<Buffer>[]=
for indexed reads/writes into a buffer. -
Added
<Buffer>.toList()
which returns a copy of the underlying cells. -
Added
<Buffer>.toMatrix()
which returns a copy of cells as nested lists. -
Changed
Buffer(width, height)
, added an optionalinitialCell
parameter:// Before. Buffer(3, 3); // Semantically identical. Buffer(3, 3, initialCell: Cell.blank); // Newly possible. Buffer(3, 3, initialCell: Cell('X'));
-
Terminal output always skips line
0
and starts on line1
for readability. -
Fixed a bug where cells were stored as
y * height + x
, noty * width + x
. -
Fixed a bug where
<Buffer>.clear()
just didn't work, period. -
Fixed a bug where
<Buffer>.resize()
created an invalid state. -
Changed
<Buffer>.resize()
to have named parameters, and addedexpand
:// Before buffer.resize(3, 4); // Semantically identical. buffer.resize(width: 3, height: 4); // Newly possible: just change width OR heght. buffer.resize(width: 3); buffer.resize(height: 4); // Newly possible: specify what cell to fill when expanding the buffer. // (Defaults to Cell.blank) buffer.resize(width: 3, height: 4, expand: Cell('X'));
-
Changed
<Buffer>.fill()
to have only named parameters:// Before buffer.fill(1, 1, 2, 2); // Semantically identical. buffer.fill(x: 1, y: 1, width: 2, height: 2);
0.1.0 #
- Initial (real) commit, with a simple API and animated text example.
0.0.0 #
- Initial release as a placeholder only.