Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
... | |||||
* | src/main.c: Run morn->day->eve->night cycle. | P. J. McDermott | 2013-03-02 | 1 | -34/+97 |
| | |||||
* | Write a GIMP palette parser. | P. J. McDermott | 2013-03-02 | 3 | -1/+183 |
| | |||||
* | src/main.c: Run day/night cycle on minutes clock. | P. J. McDermott | 2013-03-02 | 1 | -29/+41 |
| | |||||
* | src/main.c: Use cosine curve for day-night cycle. | P. J. McDermott | 2013-03-02 | 1 | -7/+23 |
| | |||||
* | src/main.c: Run a day->night palette cycling demo. | P. J. McDermott | 2013-03-02 | 1 | -10/+30 |
| | |||||
* | src/area.c: Split up area_new(). | P. J. McDermott | 2013-03-02 | 2 | -12/+25 |
| | |||||
* | src/resources/image.c: Clean up palette debugging. | P. J. McDermott | 2013-02-24 | 1 | -9/+13 |
| | |||||
* | Optionally list palette colors of loaded images. | P. J. McDermott | 2013-02-22 | 2 | -3/+28 |
| | |||||
* | Clean up dirstamp for data/tilesets/. | P. J. McDermott | 2013-02-22 | 3 | -0/+4 |
| | |||||
* | configure.ac: Add an AC_CONFIG_AUX_DIR() macro. | P. J. McDermott | 2013-02-22 | 1 | -0/+1 |
| | |||||
* | Define installation directory preprocessor macros. | P. J. McDermott | 2013-02-20 | 4 | -1/+13 |
| | |||||
* | Prevent segmentation faults in some places. | P. J. McDermott | 2013-02-20 | 2 | -3/+24 |
| | |||||
* | Organize maps in their own directory. | P. J. McDermott | 2013-02-20 | 7 | -9/+29 |
| | |||||
* | Improve build system. | P. J. McDermott | 2013-02-20 | 9 | -18/+52 |
| | |||||
* | .gitignore: Update. | P. J. McDermott | 2013-02-20 | 1 | -0/+3 |
| | |||||
* | Distribute headers and data. | P. J. McDermott | 2013-02-20 | 3 | -10/+21 |
| | |||||
* | Clean up some "#if 0" conditions. | P. J. McDermott | 2013-02-19 | 5 | -217/+15 |
| | |||||
* | Disable TMX parser debugging noise by default. | P. J. McDermott | 2013-02-19 | 3 | -0/+90 |
| | |||||
* | Enable and fix a bunch of GCC warnings. | P. J. McDermott | 2013-02-19 | 10 | -18/+29 |
| | |||||
* | Try to get some small performance improvements. | P. J. McDermott | 2013-02-19 | 2 | -2/+3 |
| | |||||
* | Enable more GCC warnings. | P. J. McDermott | 2013-02-19 | 2 | -1/+5 |
| | |||||
* | src/area.c: Consolidate area layer creation code. | P. J. McDermott | 2013-02-19 | 1 | -38/+16 |
| | |||||
* | data/forest1-8bit.tmx: Add. | P. J. McDermott | 2013-02-19 | 1 | -0/+63 |
| | |||||
* | Limit surfaces to 8 bpp. Set keys and palettes. | P. J. McDermott | 2013-02-19 | 4 | -30/+74 |
| | | | | Also clean up main() a bit more. | ||||
* | Add struct map * member to struct area. | P. J. McDermott | 2013-02-19 | 3 | -24/+26 |
| | |||||
* | Merge src/layer.h into src/area.h. | P. J. McDermott | 2013-02-19 | 3 | -13/+6 |
| | |||||
* | Consolidate area layers a bit. | P. J. McDermott | 2013-02-19 | 2 | -28/+30 |
| | | | | Statically blit together as much as possible before rendering. | ||||
* | Adjust height of demo "sprite". | P. J. McDermott | 2013-02-19 | 1 | -3/+3 |
| | |||||
* | Make demo smoother. | P. J. McDermott | 2013-02-19 | 1 | -16/+16 |
| | |||||
* | Improve demo and clean up main(). | P. J. McDermott | 2013-02-19 | 2 | -153/+58 |
| | |||||
* | Attempt to store surfaces in video memory. | P. J. McDermott | 2013-02-19 | 2 | -2/+2 |
| | | | | This shouldn't noticably affect performance on any modern PC. | ||||
* | configure.ac: Check for inttypes.h. | P. J. McDermott | 2013-02-19 | 1 | -0/+1 |
| | |||||
* | Fix graphics glitch with negative viewport coords. | P. J. McDermott | 2013-02-19 | 2 | -15/+34 |
| | |||||
* | Implement and test renderer. | P. J. McDermott | 2013-02-19 | 4 | -15/+222 |
| | |||||
* | Make the tileset firstgid a Uint32. | P. J. McDermott | 2013-02-18 | 4 | -5/+31 |
| | |||||
* | Clean up map layers. | P. J. McDermott | 2013-02-18 | 3 | -26/+14 |
| | |||||
* | Begin work on areas and viewports. | P. J. McDermott | 2013-02-18 | 9 | -8/+128 |
| | |||||
* | Fix unsafe (char *)->(int *). Ensure byte order. | P. J. McDermott | 2013-02-18 | 2 | -1/+15 |
| | |||||
* | Support collision and unknown map layers. | P. J. McDermott | 2013-02-17 | 3 | -3/+12 |
| | |||||
* | Support unused tileset properties. | P. J. McDermott | 2013-02-17 | 1 | -0/+3 |
| | |||||
* | Handle tiles and properties in tilesets. | P. J. McDermott | 2013-02-17 | 2 | -13/+121 |
| | |||||
* | Add map exits to a collisions array. | P. J. McDermott | 2013-02-17 | 2 | -1/+30 |
| | |||||
* | Divide map exit dimensions by map tile dimensions. | P. J. McDermott | 2013-02-17 | 2 | -1/+8 |
| | |||||
* | Support objectgroups and map exits. | P. J. McDermott | 2013-02-17 | 3 | -3/+263 |
| | |||||
* | Delete old map-related files. | P. J. McDermott | 2013-02-17 | 8 | -619/+0 |
| | |||||
* | Support layers in maps. | P. J. McDermott | 2013-02-17 | 2 | -19/+205 |
| | |||||
* | Give each use of a tileset a unique firstgid. | P. J. McDermott | 2013-02-17 | 3 | -22/+42 |
| | |||||
* | Fix base paths for resources referenced in maps. | P. J. McDermott | 2013-02-17 | 2 | -5/+27 |
| | |||||
* | Allocate maps & tilesets before their start elems. | P. J. McDermott | 2013-02-17 | 2 | -29/+38 |
| | |||||
* | TMX parser rewrite number two. | P. J. McDermott | 2013-02-17 | 6 | -315/+364 |
| |