summaryrefslogtreecommitdiffstats
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-243-32/+32
|
* ffi: Reset arg index on each Lua->C function callP. J. McDermott2023-02-241-0/+2
|
* bindings: Make variables not static globalP. J. McDermott2023-02-243-12/+8
|
* ffi: Print full name with namespaces in warningsP. J. McDermott2023-02-242-22/+42
|
* ffi: Fix missing args in warnings about argsP. J. McDermott2023-02-243-26/+37
| | | | Irony, eh?
* games/hello: Fix sleep callP. J. McDermott2023-02-241-1/+1
|
* demo: Fix format specifierP. J. McDermott2023-02-241-1/+1
|
* Add function attributesP. J. McDermott2023-02-244-8/+12
|
* palettes: Don't try to force inliningP. J. McDermott2023-02-241-4/+4
|
* demo: Prevent potential null pointer dereferencesP. J. McDermott2023-02-241-0/+6
|
* build: Use ASAN and GCC warnings from GnulibP. J. McDermott2023-02-2413-18/+891
|
* build: Use AC_CONFIG_SUBDIRS()P. J. McDermott2023-02-243-9/+15
| | | | | | But explain why Automake's SUBDIRS can't be used. Also, exclude instructions to generate files from generated files.
* demo: Exclude delay time from benchmarkP. J. McDermott2023-02-231-5/+7
|
* build: Pass verbosity to xcftools makefileP. J. McDermott2023-02-231-1/+7
| | | | Also run distclean target.
* 3rdparty/xcftools: Update submoduleP. J. McDermott2023-02-231-0/+0
| | | | | | | 1e95f6f Update "dist" target for Git ed0668b Fix missing "Language" header in PO file 3433b09 Support silent makefile rules with `make V=1` c5a712c Update POT and PO files
* build: Use silent rules by defaultP. J. McDermott2023-02-233-2/+3
| | | | The xcftools custom makefile is still noisy as hell, though.
* build: Distribute embedded xcf2png, use by defaultP. J. McDermott2023-02-235-8/+170
|
* 3rdparty/xcftools: New submoduleP. J. McDermott2023-02-232-0/+3
|
* README: WRITEMEP. J. McDermott2023-02-231-2/+3
|
* README: WRITEMEP. J. McDermott2023-02-211-0/+20
|
* init_viewport_lua(): RemoveP. J. McDermott2015-08-252-15/+0
|
* src/script.[ch]: RemoveP. J. McDermott2015-08-253-65/+0
|
* src/game.h: Update #incude directiveP. J. McDermott2015-08-251-1/+1
|
* games/hello/init.lua: Use bouken.viewport.set_sizeP. J. McDermott2015-08-251-1/+1
|
* game_run(): Use FFI functionsP. J. McDermott2015-08-251-1/+4
|
* src/scripting/ffi.c: Fix stack indexP. J. McDermott2015-08-251-1/+1
|
* src/scripting/ffi.c: Fix variableP. J. McDermott2015-08-251-1/+1
|
* init(): Initialize bindingsP. J. McDermott2015-08-251-0/+4
|
* script_get(): Register bindingsP. J. McDermott2015-08-251-2/+2
|
* Add bouken.viewport bindingsP. J. McDermott2015-08-254-3/+55
|
* Finish Lua->C FFI setupP. J. McDermott2015-08-251-1/+23
|
* Save pointer to namespace struct in bindings TUP. J. McDermott2015-08-253-4/+9
|
* Add "bouken" namespace to bindingsP. J. McDermott2015-08-254-0/+56
|
* Add incomplete FFI codeP. J. McDermott2015-08-254-0/+295
|
* Manage scripts as resourcesP. J. McDermott2015-08-256-42/+120
|
* Makefile.am: Add -lm to _LDADDP. J. McDermott2015-08-251-0/+1
|
* configure.ac: Add home pageP. J. McDermott2015-08-241-1/+2
|
* configure.ac: Update e-mail addressP. J. McDermott2015-08-241-1/+1
|
* Name package and program "boukengine"P. J. McDermott2015-08-245-10/+10
|
* src/area.c: Include "resources/tileset.h".P. J. McDermott2013-11-181-0/+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.
* usage(): Mention "games/hello".P. J. McDermott2013-11-161-1/+1
|
* hello: Initialize a viewport.P. J. McDermott2013-11-161-0/+5
|
* Expose init_viewport() to Lua scripts.P. J. McDermott2013-11-163-0/+20
|
* hello: New game.P. J. McDermott2013-11-161-0/+3
| | | | Easiest game ever. Prints "Hello, world!".
* Add code to load and initialize games.P. J. McDermott2013-11-164-0/+93
|
* Add basic scripting interface.P. J. McDermott2013-11-163-0/+101
|
* Makefile.am: Build with the Lua 5.1 library.P. J. McDermott2013-11-151-1/+3
|
* configure.ac: Check for the Lua 5.1 library.P. J. McDermott2013-11-151-0/+4
|