Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add cameras to grammar. | Tavian Barnes | 2009-11-26 | 4 | -8/+98 |
| | |||||
* | Implement background colors. | Tavian Barnes | 2009-11-26 | 4 | -5/+28 |
| | |||||
* | Add vector promotion. | Tavian Barnes | 2009-11-25 | 1 | -6/+9 |
| | |||||
* | Fix binary vector arithmetic expressions. | Tavian Barnes | 2009-11-25 | 1 | -1/+1 |
| | |||||
* | Implement point lights. | Tavian Barnes | 2009-11-25 | 4 | -35/+47 |
| | |||||
* | Use the dmnsn_ prefix for flex/bison generated sources. | Tavian Barnes | 2009-11-25 | 2 | -1/+3 |
| | |||||
* | Support solid-color pigments. | Tavian Barnes | 2009-11-25 | 4 | -9/+145 |
| | |||||
* | Change grammar indenting scheme. | Tavian Barnes | 2009-11-25 | 1 | -217/+222 |
| | |||||
* | Add textures and pigments to grammar. | Tavian Barnes | 2009-11-25 | 2 | -17/+111 |
| | | | | Also remove a shift-reduce conflict caused by not giving a precedence to ".". | ||||
* | Support scaling and translation transformations. | Tavian Barnes | 2009-11-25 | 3 | -3/+44 |
| | |||||
* | Use FLOAT_EXPR in VECTOR_LITERAL rather than FLOAT. | Tavian Barnes | 2009-11-25 | 1 | -4/+6 |
| | | | | This is to future-proof lazily-evaluated vector expressions. | ||||
* | Implement object modifiers and rotation. | Tavian Barnes | 2009-11-25 | 4 | -37/+108 |
| | |||||
* | Support vector component extraction. | Tavian Barnes | 2009-11-24 | 2 | -16/+87 |
| | |||||
* | Support vector arithmetic. | Tavian Barnes | 2009-11-24 | 1 | -7/+178 |
| | |||||
* | Use associative operators in grammar. | Tavian Barnes | 2009-11-24 | 1 | -30/+25 |
| | |||||
* | Rename flex and bison input files. | Tavian Barnes | 2009-11-24 | 4 | -4/+4 |
| | |||||
* | Make string lexing O(n). | Tavian Barnes | 2009-11-24 | 1 | -4/+9 |
| | |||||
* | Fix off-by-one in string lexing. | tavianator | 2009-11-24 | 1 | -1/+1 |
| | |||||
* | Add eager arithmetic evaluation to parser. | Tavian Barnes | 2009-11-23 | 2 | -18/+289 |
| | |||||
* | More parser work. | Tavian Barnes | 2009-11-23 | 2 | -26/+118 |
| | |||||
* | Begin bison implementation of parser. | Tavian Barnes | 2009-11-23 | 6 | -2096/+1054 |
| | |||||
* | Calculate column correctly in tokenizing. | Tavian Barnes | 2009-11-23 | 1 | -21/+38 |
| | |||||
* | Support nested /* */ comments. | Tavian Barnes | 2009-11-23 | 1 | -21/+25 |
| | |||||
* | Use flex for the tokenizer. | Tavian Barnes | 2009-11-23 | 4 | -1599/+777 |
| | |||||
* | Mess with `dimension' output a bit. | Tavian Barnes | 2009-11-21 | 2 | -6/+6 |
| | |||||
* | Fix tests. | Tavian Barnes | 2009-11-20 | 1 | -3/+16 |
| | |||||
* | Make `dimension' output some things as it works. | Tavian Barnes | 2009-11-20 | 7 | -2/+109 |
| | |||||
* | Fix parsing memory leaks, remove debug. | Tavian Barnes | 2009-11-20 | 1 | -13/+23 |
| | |||||
* | Evaluate arithmetic expressions during parsing when possible. | Tavian Barnes | 2009-11-20 | 1 | -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 Barnes | 2009-11-19 | 1 | -12/+12 |
| | |||||
* | Store inverse object transformation in a separate field. | Tavian Barnes | 2009-11-09 | 1 | -2/+0 |
| | |||||
* | Make dmnsn_delete_scene() delete the scene's elements too. | Tavian Barnes | 2009-11-09 | 3 | -22/+5 |
| | |||||
* | Add file, line, and column information to astnodes. | Tavian Barnes | 2009-11-05 | 2 | -24/+33 |
| | |||||
* | Some much-needed comments in parse.c. | Tavian Barnes | 2009-11-05 | 1 | -5/+53 |
| | |||||
* | Parse arithmetic expressions. | Tavian Barnes | 2009-11-04 | 3 | -63/+276 |
| | |||||
* | Handle spheres. | Tavian Barnes | 2009-11-04 | 3 | -13/+125 |
| | |||||
* | Implement dmnsn_print_astree_sexpr(). | Tavian Barnes | 2009-10-31 | 4 | -25/+104 |
| | |||||
* | Initialize `i' in dmnsn_parse(). | Tavian Barnes | 2009-10-30 | 1 | -0/+1 |
| | |||||
* | Don't flip boxes that are specified backwards. | Tavian Barnes | 2009-10-30 | 1 | -3/+6 |
| | |||||
* | Refactor parsing and realization a bit. | Tavian Barnes | 2009-10-30 | 2 | -28/+45 |
| | |||||
* | (Sort of) realize boxes. | Tavian Barnes | 2009-10-30 | 1 | -1/+70 |
| | | | | We now have a working rendering from an SDL input, kinda! | ||||
* | (Sort of) parse boxes. | Tavian Barnes | 2009-10-30 | 6 | -10/+305 |
| | |||||
* | Skeleton of parser and realizer. | Tavian Barnes | 2009-10-29 | 6 | -9/+169 |
| | |||||
* | Correctly tokenize <=, >= and !=. | Tavian Barnes | 2009-10-29 | 2 | -12/+53 |
| | |||||
* | Support all POV-Ray keywords. | Tavian Barnes | 2009-10-29 | 2 | -9/+1282 |
| | |||||
* | Correct locale "transaction" handling in dmnsn_tokenize(). | Tavian Barnes | 2009-10-29 | 1 | -8/+8 |
| | |||||
* | Rename DMNSN_T_EXCLAMATION to DMNSN_T_BANG. | tavianator | 2009-10-29 | 2 | -43/+43 |
| | |||||
* | Refactor tokenizer a bit. | tavianator | 2009-10-29 | 5 | -28/+93 |
| | |||||
* | Don't modify lines, cols, or next in tokenizer helper functions. | Tavian Barnes | 2009-10-29 | 1 | -175/+207 |
| | |||||
* | Even more tokenizer work. | Tavian Barnes | 2009-10-29 | 2 | -116/+95 |
| | | | | | | The tokenizer is now able to tokenize all of POV-Ray 3.6's include files. It turns out that some #includes may be dynamic (ex. with #writes beforehand), so the tokenizer can't directly perform includes - the executor must do this. |