summaryrefslogtreecommitdiffstats
path: root/src/resources
Commit message (Collapse)AuthorAgeFilesLines
* map: Fix shift overflow warningHEADmasterP. J. McDermott2023-02-251-4/+4
| | | | | | | src/resources/map.c: In function ‘tmx_data_end’: src/resources/map.c:541:35: warning: result of ‘255 << 24’ requires 33 bits to represent, but ‘int’ only has 32 bits [-Wshift-overflow=] 541 | (decomp_buf[i * 4 + 3] & 0xFF << 030); | ^~
* ffi: Eliminate call_arg_index static global varP. J. McDermott2023-02-241-0/+1
|
* Add function attributesP. J. McDermott2023-02-241-2/+4
|
* script_get(): Register bindingsP. J. McDermott2015-08-251-2/+2
|
* Manage scripts as resourcesP. J. McDermott2015-08-253-0/+117
|
* Name package and program "boukengine"P. J. McDermott2015-08-241-1/+1
|
* Split up src/resources/map.c.P. J. McDermott2013-11-187-362/+474
| | | | | | | | | src/resources/map.c defines map parsing functions. src/resources/tileset.c defines tileset (internal or external) parsing functions. src/resources/tmx.c defines common parsing functions. Also, tileset_get() is now non-static.
* src/resources/local.mk: Add header files.P. J. McDermott2013-11-121-1/+5
|
* src/resources/local.mk: Sort source file names.P. J. McDermott2013-11-121-2/+2
|
* Use sdlex_SOURCES in makefile fragments.P. J. McDermott2013-11-021-1/+1
|
* src/resources/local.mk: Adjust indentation.P. J. McDermott2013-11-021-4/+4
|
* src/resources/local.mk: Remove .h files.P. J. McDermott2013-11-021-4/+4
|
* Rename Makefile.am files to local.mk.P. J. McDermott2013-11-021-0/+0
|
* Add copyright and license headers.P. J. McDermott2013-11-018-0/+144
|
* 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
|
* Write a GIMP palette parser.P. J. McDermott2013-03-023-1/+183
|
* 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
|
* Improve build system.P. J. McDermott2013-02-201-1/+1
|
* Distribute headers and data.P. J. McDermott2013-02-201-3/+3
|
* Disable TMX parser debugging noise by default.P. J. McDermott2013-02-191-0/+63
|
* Enable and fix a bunch of GCC warnings.P. J. McDermott2013-02-192-2/+2
|
* Limit surfaces to 8 bpp. Set keys and palettes.P. J. McDermott2013-02-191-0/+4
| | | | Also clean up main() a bit more.
* Add struct map * member to struct area.P. J. McDermott2013-02-191-1/+1
|
* Make the tileset firstgid a Uint32.P. J. McDermott2013-02-182-5/+6
|
* Clean up map layers.P. J. McDermott2013-02-182-22/+14
|
* Fix unsafe (char *)->(int *). Ensure byte order.P. J. McDermott2013-02-181-1/+11
|
* Support collision and unknown map layers.P. J. McDermott2013-02-172-2/+11
|
* Support unused tileset properties.P. J. McDermott2013-02-171-0/+3
|
* Handle tiles and properties in tilesets.P. J. McDermott2013-02-172-13/+121
|
* Add map exits to a collisions array.P. J. McDermott2013-02-172-1/+30
|
* Divide map exit dimensions by map tile dimensions.P. J. McDermott2013-02-171-0/+4
|
* Support objectgroups and map exits.P. J. McDermott2013-02-172-3/+256
|
* Delete old map-related files.P. J. McDermott2013-02-174-199/+0
|
* Support layers in maps.P. J. McDermott2013-02-172-19/+205
|
* Give each use of a tileset a unique firstgid.P. J. McDermott2013-02-172-20/+38
|
* Fix base paths for resources referenced in maps.P. J. McDermott2013-02-172-5/+27
|
* Allocate maps & tilesets before their start elems.P. J. McDermott2013-02-171-28/+33
|
* TMX parser rewrite number two.P. J. McDermott2013-02-172-311/+293
|
* TMX parser rewrite number one.P. J. McDermott2013-02-167-1/+652
|
* Split Makefile.am in recursively-included files.P. J. McDermott2013-02-151-0/+3
| | | | | The modular maintenance benefits of recursive make without any of the problems of recursive make!
* Add resource manager and move src/image.*.P. J. McDermott2013-02-154-0/+172