Kyle Benesch
Kyle Benesch
I often hear about this game but I don't think there's been a binary release anywhere. I wanted to look at it but would rather not reinstall Python 2.7. I...
At some point the libtcod parser was changed which causes config files used by older libtcod games to fail. ``` player { char='@' color=#FFFFFF speed=8.0 } ``` Here `char` and...
The code at https://github.com/libtcod/libtcod/blob/main/src/libtcod/tileset_fallback.c has been tested with Ubuntu but segfaults with Debain x86_64, possibly due to bad error handing. I can't verify that it's actually this code that fails,...
Something I've always wanted in libtcod was to add an xterm renderer and other console renderers. This is useful for those who want an alternative to Curses that works in...
I'm trying to fix the artifacts found in #83 and #112 but since I don't have the hardware/drivers which trigger the artifacts I will not be able to test if...
I'm mostly making this issue to track the resources I've been collecting: http://www.roguebasin.com/index.php?title=Comparative_study_of_field_of_view_algorithms_for_2D_grid_based_worlds Older benchmarks of TCOD, there should be code added to the repository to reproduce these benchmarks. Some...
Something that'd be really nice would be the ability to compile the samples to WebAssembly, and then make proper instructions on how to build WASM with other libtcod projects. Right...
I need to add logging calls to contexts so that it's easier to debug when things go wrong. - [ ] context_init - [ ] renderer_sdl2 - [x] renderer_gl -...
Had some issues with #78, so I'm tracking Windows support separately with this issue. Windows will likely be supported using the [Windows Console API](https://docs.microsoft.com/en-us/windows/console/console-reference). This will likely be its own...
libtcod can be possessive of the SDL window sometimes, making it hard to add any kind of drawing routine in the middle of libtcod's console_flush function. Splitting `console_flush` into a...