summaryrefslogtreecommitdiffstats
path: root/dimension
Commit message (Collapse)AuthorAgeFilesLines
* Clean up finish combination allocation semantics.tavianator2009-12-271-14/+4
|
* Separate finishes into single-purpose finishes.Tavian Barnes2009-12-231-2/+16
|
* Clean up parser, and make it GLR.Tavian Barnes2009-12-213-79/+61
|
* Differentiate between colors and vectors in the AST.Tavian Barnes2009-12-213-9/+102
|
* Support #declare, #local, and #undef.Tavian Barnes2009-12-214-283/+396
|
* Make symbol table semantics line up with povray's.Tavian Barnes2009-12-195-11/+75
|
* Implement a symbol table.Tavian Barnes2009-12-1911-446/+719
|
* Forgot fclose() in dmnsn_realize_string().Tavian Barnes2009-12-191-1/+5
|
* Preliminary dmnsn_realize_string(), just in case.Tavian Barnes2009-12-173-1/+21
|
* Tokenize on-the-fly.Tavian Barnes2009-12-177-181/+190
| | | | | No more manual tokenization and parsing, giving a simpler interface. Also, this brings us closer to a dmnsn_realize_string() interface.
* Accept width and height command-line arguments.Tavian Barnes2009-12-162-8/+33
|
* Support the 'direction' camera item.Tavian Barnes2009-12-161-0/+4
|
* Add support for color keyword groups.Tavian Barnes2009-12-161-0/+54
|
* Fix vector promotion bug.Tavian Barnes2009-12-161-0/+1
|
* Don't use dmnsn_error() in main().Tavian Barnes2009-12-161-25/+37
|
* Finish camera placement routine.Tavian Barnes2009-11-271-44/+89
|
* Fake camera semantics until I figure out the real ones.Tavian Barnes2009-11-271-42/+176
|
* Add cameras to grammar.Tavian Barnes2009-11-264-8/+98
|
* Implement background colors.Tavian Barnes2009-11-264-5/+28
|
* Add vector promotion.Tavian Barnes2009-11-251-6/+9
|
* Fix binary vector arithmetic expressions.Tavian Barnes2009-11-251-1/+1
|
* Implement point lights.Tavian Barnes2009-11-254-35/+47
|
* Use the dmnsn_ prefix for flex/bison generated sources.Tavian Barnes2009-11-252-1/+3
|
* Support solid-color pigments.Tavian Barnes2009-11-254-9/+145
|
* Change grammar indenting scheme.Tavian Barnes2009-11-251-217/+222
|
* Add textures and pigments to grammar.Tavian Barnes2009-11-252-17/+111
| | | | Also remove a shift-reduce conflict caused by not giving a precedence to ".".
* Support scaling and translation transformations.Tavian Barnes2009-11-253-3/+44
|
* Use FLOAT_EXPR in VECTOR_LITERAL rather than FLOAT.Tavian Barnes2009-11-251-4/+6
| | | | This is to future-proof lazily-evaluated vector expressions.
* Implement object modifiers and rotation.Tavian Barnes2009-11-254-37/+108
|
* Support vector component extraction.Tavian Barnes2009-11-242-16/+87
|
* Support vector arithmetic.Tavian Barnes2009-11-241-7/+178
|
* Use associative operators in grammar.Tavian Barnes2009-11-241-30/+25
|
* Rename flex and bison input files.Tavian Barnes2009-11-244-4/+4
|
* Make string lexing O(n).Tavian Barnes2009-11-241-4/+9
|
* Fix off-by-one in string lexing.tavianator2009-11-241-1/+1
|
* Add eager arithmetic evaluation to parser.Tavian Barnes2009-11-232-18/+289
|
* More parser work.Tavian Barnes2009-11-232-26/+118
|
* Begin bison implementation of parser.Tavian Barnes2009-11-236-2096/+1054
|
* Calculate column correctly in tokenizing.Tavian Barnes2009-11-231-21/+38
|
* Support nested /* */ comments.Tavian Barnes2009-11-231-21/+25
|
* Use flex for the tokenizer.Tavian Barnes2009-11-234-1599/+777
|
* Mess with `dimension' output a bit.Tavian Barnes2009-11-212-6/+6
|
* Fix tests.Tavian Barnes2009-11-201-3/+16
|
* Make `dimension' output some things as it works.Tavian Barnes2009-11-207-2/+109
|
* Fix parsing memory leaks, remove debug.Tavian Barnes2009-11-201-13/+23
|
* Evaluate arithmetic expressions during parsing when possible.Tavian Barnes2009-11-201-19/+188
| | | | | This is needed for conditionals to work, and for declared identifiers to be evaluated only once.
* Use dmnsn_new_*() rather than dmnsn_*_construct().Tavian Barnes2009-11-191-12/+12
|
* Store inverse object transformation in a separate field.Tavian Barnes2009-11-091-2/+0
|
* Make dmnsn_delete_scene() delete the scene's elements too.Tavian Barnes2009-11-093-22/+5
|
* Add file, line, and column information to astnodes.Tavian Barnes2009-11-052-24/+33
|