summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-06-08Major refactoringBenjamin J. Culkin
A major refactoring to the internals of how things work. I believe that nothing is broken
2018-06-07RefactoringBenjamin J. Culkin
The main refactoring here is removing the type field from the various classes, but there are a few other smaller ones. This also contains the grounds for a refactoring on variable use
2018-06-05Templates pt. 3Benjamin J. Culkin
Templates should now work, though there is no syntax to reference them from rules yet In addition, several internal things have been changed so as to improve code quality
2018-06-05Templates pt.2Benjamin J. Culkin
More work that leads towards getting templates working
2018-06-05Config workBenjamin J. Culkin
More work for getting going on templates, as well as just some refactoring for future changes
2018-06-05Move config loading to new classBenjamin J. Culkin
Move config loading to a new class, in preparation for adding template support
2018-06-05Minor bug-fixesBenjamin J. Culkin
2018-06-04Exhaustion pt. 2Benjamin J. Culkin
There is now syntax for rule references. Use @ instead of $, and use := to indicate you want exhaustion enabled Use @ to refer to it
2018-06-04Rule variables pt. 1Benjamin J. Culkin
Add the capability to store regular/exhaustible rule variables
2018-06-04Declaration follows useBenjamin J. Culkin
Simple/expanding variables are now marked with a $, as they are when used. Additionally, some debugging help was added
2018-06-04Debug infoBenjamin J. Culkin
2018-06-04UpdateBenjamin J. Culkin
2018-06-04Add line offsetBenjamin J. Culkin
Blocks should now properly give absolute numbers as to where they are from
2018-06-04Change inline rule syntaxBenjamin J. Culkin
Inline rules are now enclosed in [...], not {...} to better match other reference types
2018-06-04Change parser token syntaxBenjamin J. Culkin
Parser meta-tokens now use <...> syntax instead of {...} so as not to get them confused with reference tokens.
2018-06-04Add syntax featuresBenjamin J. Culkin
This adds a few new syntax features, as well as allowing certain ones to be used in pragmas. The next syntax feature to be added will be some sort of quote feature, to allow the inclusion of spaces where they would otherwise not be permitted
2018-06-04Add recurrance limitBenjamin J. Culkin
This controls the number of times a rule can be entered into during a single generations, and is set to 5 by default
2018-06-03Weighting part 2Benjamin J. Culkin
Weighting now has a syntax. Include a {^<weight>} token to set the rule weight
2018-06-03Weighting part 1Benjamin J. Culkin
This re-adds the capability to weight rules. However, no syntax has yet been add to perform that rule weighting
2018-06-03Minor updatesBenjamin J. Culkin
This does some minor updates to things, as well as adding some performance tracking
2018-06-03Add inline case elementsBenjamin J. Culkin
This adds inline case elements, essentially cutting down on the need for short 2-3 alternative rules. You'll still need explicit rules for things involving spaces though. Perhaps I will add a quoting feature to solve that problem.
2018-06-03Enable multi-prefixing/suffixingBenjamin J. Culkin
You can now provide multiple prefix/suffix elements, and all of the permutations of them will be applied. For example, providing the elements A & B, will yield the following permutations * A * B * A B * B A
2018-05-29Refactor to split RuleCaseBenjamin J. Culkin
RuleCase now handles its own generation.
2018-05-29Refactor to split RuleCaseElementBenjamin J. Culkin
The various types of RuleCaseElement are now their own things.
2018-05-29Refactor case element generationBenjamin J. Culkin
Case elements are now responsible for generating themselves.
2018-05-29Fix pragma error messages.Benjamin J. Culkin
Malformed pragmas should now give better error messages.
2018-05-29Merge branch 'working'Benjamin J. Culkin
2018-05-29Move files out of folderBenjamin J. Culkin