Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make build system more bourne-compatible. | Tavian Barnes | 2010-01-07 | 1 | -1/+1 | |
| | ||||||
* | Clean up parser, and make it GLR. | Tavian Barnes | 2009-12-21 | 2 | -3/+3 | |
| | ||||||
* | Differentiate between colors and vectors in the AST. | Tavian Barnes | 2009-12-21 | 2 | -8/+8 | |
| | ||||||
* | Support #declare, #local, and #undef. | Tavian Barnes | 2009-12-21 | 2 | -6/+37 | |
| | ||||||
* | Accept width and height command-line arguments. | Tavian Barnes | 2009-12-16 | 1 | -1/+1 | |
| | ||||||
* | Work in sRGB to be more like POV-Ray. | Tavian Barnes | 2009-12-07 | 2 | -2/+2 | |
| | ||||||
* | Finish camera placement routine. | Tavian Barnes | 2009-11-27 | 2 | -4/+5 | |
| | ||||||
* | Fake camera semantics until I figure out the real ones. | Tavian Barnes | 2009-11-27 | 2 | -3/+3 | |
| | ||||||
* | Add cameras to grammar. | Tavian Barnes | 2009-11-26 | 2 | -1/+18 | |
| | ||||||
* | Implement background colors. | Tavian Barnes | 2009-11-26 | 2 | -28/+13 | |
| | ||||||
* | Add vector promotion. | Tavian Barnes | 2009-11-25 | 2 | -3/+4 | |
| | ||||||
* | Fix binary vector arithmetic expressions. | Tavian Barnes | 2009-11-25 | 2 | -2/+3 | |
| | ||||||
* | Implement point lights. | Tavian Barnes | 2009-11-25 | 2 | -7/+18 | |
| | ||||||
* | Support solid-color pigments. | Tavian Barnes | 2009-11-25 | 2 | -3/+22 | |
| | ||||||
* | Format S-expressions a bit nicer in test scripts. | Tavian Barnes | 2009-11-25 | 3 | -5/+53 | |
| | ||||||
* | Implement object modifiers and rotation. | Tavian Barnes | 2009-11-25 | 3 | -3/+4 | |
| | ||||||
* | Support vector component extraction. | Tavian Barnes | 2009-11-24 | 2 | -2/+2 | |
| | ||||||
* | New arithmetic expression test. | Tavian Barnes | 2009-11-24 | 5 | -5/+60 | |
| | ||||||
* | Support vector arithmetic. | Tavian Barnes | 2009-11-24 | 2 | -3/+3 | |
| | ||||||
* | More parser work. | Tavian Barnes | 2009-11-23 | 3 | -3/+3 | |
| | ||||||
* | Begin bison implementation of parser. | Tavian Barnes | 2009-11-23 | 3 | -3/+3 | |
| | ||||||
* | Support nested /* */ comments. | Tavian Barnes | 2009-11-23 | 1 | -1/+3 | |
| | ||||||
* | Use flex for the tokenizer. | Tavian Barnes | 2009-11-23 | 1 | -1/+1 | |
| | ||||||
* | Evaluate arithmetic expressions during parsing when possible. | Tavian Barnes | 2009-11-20 | 2 | -3/+3 | |
| | | | | | This is needed for conditionals to work, and for declared identifiers to be evaluated only once. | |||||
* | rm -f *.png in clean target. | tavianator | 2009-11-05 | 1 | -1/+1 | |
| | ||||||
* | Don't use GNU make %-style target extension. | Tavian Barnes | 2009-11-04 | 1 | -1/+1 | |
| | ||||||
* | Parse arithmetic expressions. | Tavian Barnes | 2009-11-04 | 2 | -4/+4 | |
| | ||||||
* | Handle spheres. | Tavian Barnes | 2009-11-04 | 3 | -13/+14 | |
| | ||||||
* | Implement dmnsn_print_astree_sexpr(). | Tavian Barnes | 2009-10-31 | 1 | -0/+10 | |
| | ||||||
* | Refactor parsing and realization a bit. | Tavian Barnes | 2009-10-30 | 1 | -1/+4 | |
| | ||||||
* | (Sort of) realize boxes. | Tavian Barnes | 2009-10-30 | 1 | -1/+1 | |
| | | | | We now have a working rendering from an SDL input, kinda! | |||||
* | (Sort of) parse boxes. | Tavian Barnes | 2009-10-30 | 4 | -17/+55 | |
| | ||||||
* | Correctly tokenize <=, >= and !=. | Tavian Barnes | 2009-10-29 | 2 | -10/+2 | |
| | ||||||
* | Support all POV-Ray keywords. | Tavian Barnes | 2009-10-29 | 2 | -2/+2 | |
| | ||||||
* | Even more tokenizer work. | Tavian Barnes | 2009-10-29 | 1 | -1/+1 | |
| | | | | | | 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. | |||||
* | Complete string parsing. | Tavian Barnes | 2009-10-29 | 2 | -3/+2 | |
| | ||||||
* | Split tokenizer.sh into multiple tests. | Tavian Barnes | 2009-10-28 | 6 | -47/+137 | |
| | ||||||
* | Make '#include' work. | Tavian Barnes | 2009-10-28 | 1 | -1/+1 | |
| | ||||||
* | Tokenize strings and language directives. | Tavian Barnes | 2009-10-28 | 3 | -0/+64 | |
| | ||||||
* | Add a vector to numeric tokenizer test. | tavianator | 2009-10-28 | 2 | -1/+4 | |
| | ||||||
* | Tokenize keywords. | Tavian Barnes | 2009-10-28 | 3 | -2/+45 | |
| | ||||||
* | Ignore comments in tokenizer. | Tavian Barnes | 2009-10-27 | 3 | -2/+52 | |
| | ||||||
* | Tokenize numeric values. | Tavian Barnes | 2009-10-27 | 3 | -2/+13 | |
| | ||||||
* | Support more symbols in tokenizer. | Tavian Barnes | 2009-10-27 | 4 | -14/+34 | |
| | ||||||
* | Use the parallel-tests automake option. | Tavian Barnes | 2009-10-27 | 1 | -2/+5 | |
| | ||||||
* | Fix tokenizer test in VPATH build. | Tavian Barnes | 2009-10-27 | 2 | -3/+3 | |
| | ||||||
* | New tokenizer test. | Tavian Barnes | 2009-10-27 | 3 | -0/+43 | |