Generates text variations based on simple rules.
final textGenerator = GeneratedParser.parse('(The weather is {very really} nice today)');
final text = textGenerator!.buildVariant();
The use is as simple as it is easy. All you need to start with is a sentence or a phrase.
Let's take for example: The weather is very nice today
This sentence could actually be used like this now, even though the variation in it is rather small so far.
To be exact, there is exactly one variation yet: The weather is very nice today
To bring variation into the text, curly brackets are used in the text.
In this example, the word very could be varied quite well.
The weather is {very really} nice today
This string can now be understood by the parser in such a way that there is one sentence with very and one with really at the corresponding position.
In the code this could look like this:
final textGenerator = GeneratedParser.parse('The weather is {very really} nice today');
With this, these variants can now be generated lazily.
The variants are completely reproducible. I.e. with the same index you always get the same text.
String variant1 = textGenerator.buildVariant(0); // The weather is very nice today
String variant2 = textGenerator.buildVariant(1); // The weather is really nice today
This method can also randomly generate one of all possible variants on its own.
To do this, simply omit the index.
String randomVariant = textGenerator.buildVariant(); // The weather is really nice today
String randomVariant = textGenerator.buildVariant(); // The weather is very nice today
String randomVariant = textGenerator.buildVariant(); // The weather is very nice today
//...
If the variation should consist of more than a single word, the text can be linked with round brackets, so that this is seen as a contiguous text.
(The weather is {(very nice) (so lovely)} today)
There are no limits to creativity and complexity. These three simple building blocks (text, variation, link) can be nested arbitrarily and used to build large text models.
So there can be a variation in a variation, which is part of a link, which in turn is part of a variation. And so on...