summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Move demo out of main().P. J. McDermott2013-11-154-122/+197
|
* src/main.c: Make days longer.P. J. McDermott2013-11-141-1/+1
| | | | | Walking through this forest used to take two days. Now it takes just one.
* src/main.c: Add another shortcut to the demo.P. J. McDermott2013-11-141-2/+2
| | | | This is more realistic; players are lazy pedestrians.
* src/resources/local.mk: Add header files.P. J. McDermott2013-11-121-1/+5
|
* src/local.mk: Add header files.P. J. McDermott2013-11-121-1/+9
|
* src/resources/local.mk: Sort source file names.P. J. McDermott2013-11-121-2/+2
|
* src/local.mk: Sort source file names.P. J. McDermott2013-11-121-6/+6
|
* src/area.c: Change color of demo "sprite".P. J. McDermott2013-11-121-1/+1
|
* src/main.c: Demo new map.P. J. McDermott2013-11-121-15/+19
|
* Use sdlex_SOURCES in makefile fragments.P. J. McDermott2013-11-022-4/+3
|
* src/resources/local.mk: Adjust indentation.P. J. McDermott2013-11-021-4/+4
|
* src/local.mk: Adjust indentation.P. J. McDermott2013-11-021-10/+10
|
* src/resources/local.mk: Remove .h files.P. J. McDermott2013-11-021-4/+4
|
* src/local.mk: Remove .h files.P. J. McDermott2013-11-021-8/+8
|
* Rename Makefile.am files to local.mk.P. J. McDermott2013-11-022-1/+1
|
* Add copyright and license headers.P. J. McDermott2013-11-0125-0/+450
|
* src/main.c: It's summer somewhere...P. J. McDermott2013-03-051-5/+19
|
* Change the viewport size.P. J. McDermott2013-03-052-3/+3
|
* src/main.c: Make demo day length less hardcoded.P. J. McDermott2013-03-041-5/+7
|
* src/area.c: Disable RLE on area layers.P. J. McDermott2013-03-041-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This mostly fixes the performance regression introduced by merging the palette cycling and map movement demos. I removed the 10-ms delay between frames in the demo and tested the framerates: Test Framerate with RLE (fps) Framerate without RLE (fps) 1 160.306202859 1730.255164034 2 142.599639495 1758.024691358 3 167.588560668 1797.97979798 4 162.279202279 1764.560099133 5 157.278550917 1625.570776256 avg 158.010431244 1735.278105752 I then restored the delay and watched the CPU usage: CPU usage with RLE CPU usage without RLE ~9.00% ~1.00% This is happening because we're now cycling palettes each frame and, as a result, SDL needs to decode and encode the surfaces each frame to map palettes (though I'm not sure why it needs a decoded surface just to map palettes). (Normally, we probably wouldn't cycle palettes /each frame/, so this is something of an extreme case.) See for example the SDL_UnRLESurface() call at line 551 of src/video/SDL_pixels.c in SDL 1.2.15.
* Add a sprite color to palettes.P. J. McDermott2013-03-041-2/+2
|
* Support palette cycling in area layers.P. J. McDermott2013-03-043-37/+18
|
* src/main.c: Merge palette cycling & walking demos.P. J. McDermott2013-03-041-106/+60
|
* Make palette cycling a real part of the engine.P. J. McDermott2013-03-044-95/+180
|
* src/main.c: Tweak cosine palette cycling macro.P. J. McDermott2013-03-041-4/+19
|
* Add a default map palette.P. J. McDermott2013-03-032-3/+19
|
* Support palette properties in maps.P. J. McDermott2013-03-032-5/+89
|
* src/resources/palette.c: Fix EOF handling.P. J. McDermott2013-03-031-0/+3
|
* src/main.c: Run morn->day->eve->night cycle.P. J. McDermott2013-03-021-34/+97
|
* Write a GIMP palette parser.P. J. McDermott2013-03-023-1/+183
|
* src/main.c: Run day/night cycle on minutes clock.P. J. McDermott2013-03-021-29/+41
|
* src/main.c: Use cosine curve for day-night cycle.P. J. McDermott2013-03-021-7/+23
|
* src/main.c: Run a day->night palette cycling demo.P. J. McDermott2013-03-021-10/+30
|
* src/area.c: Split up area_new().P. J. McDermott2013-03-022-12/+25
|
* src/resources/image.c: Clean up palette debugging.P. J. McDermott2013-02-241-9/+13
|
* Optionally list palette colors of loaded images.P. J. McDermott2013-02-221-0/+14
|
* Define installation directory preprocessor macros.P. J. McDermott2013-02-201-1/+7
|
* Prevent segmentation faults in some places.P. J. McDermott2013-02-202-3/+24
|
* Organize maps in their own directory.P. J. McDermott2013-02-201-1/+1
|
* Improve build system.P. J. McDermott2013-02-202-2/+2
|
* Distribute headers and data.P. J. McDermott2013-02-202-10/+10
|
* Clean up some "#if 0" conditions.P. J. McDermott2013-02-194-217/+4
|
* Disable TMX parser debugging noise by default.P. J. McDermott2013-02-192-0/+70
|
* Enable and fix a bunch of GCC warnings.P. J. McDermott2013-02-199-17/+18
|
* Try to get some small performance improvements.P. J. McDermott2013-02-192-2/+3
|
* Enable more GCC warnings.P. J. McDermott2013-02-191-0/+1
|
* src/area.c: Consolidate area layer creation code.P. J. McDermott2013-02-191-38/+16
|
* Limit surfaces to 8 bpp. Set keys and palettes.P. J. McDermott2013-02-194-30/+74
| | | | Also clean up main() a bit more.
* Add struct map * member to struct area.P. J. McDermott2013-02-193-24/+26
|
* Merge src/layer.h into src/area.h.P. J. McDermott2013-02-193-13/+6
|