Tcod

Latest version: v17.1.0

Safety actively analyzes 723976 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 40 of 45

1.6.1

Changed
- Python libtcodpy is now better at finding DLLs on Windows
https://bitbucket.org/libtcod/libtcod/commits/eda0075

1.6.0

Added
- added support for autotools builds
https://bitbucket.org/libtcod/libtcod/commits/41e1c24
- added support for Visual Studio builds
- added Visual Studio build script that can fetch and build dependencies, the project, and package up the result
- hooked up Visual Studio build script to continuous integration service to run on each commit
- libtcod is now reentrant which allows the window to be resized among other things
https://bitbucket.org/libtcod/libtcod/commits/14bad22
- added new TCODK_TEXT event to cover the SDL2 SDL_TEXTINPUT event.
https://bitbucket.org/libtcod/libtcod/commits/7a8b072
- lmeta and rmeta modifiers have been added to TCOD_key_t
https://bitbucket.org/libtcod/libtcod/commits/e386362

Changed
- upgraded to SDL2
- upgraded zlib to version 1.2.8
- upgraded lodepng to the 20160501 release
https://bitbucket.org/libtcod/libtcod/commits/60c127e

Fixed
- fixed compilation warnings in pathing code
https://bitbucket.org/libtcod/libtcod/commits/4045633
- fixed memory leaks in pathing (Paral Zsolt)
https://bitbucket.org/libtcod/libtcod/commits/4c4af80
- map numlock key for SDL2
https://bitbucket.org/libtcod/libtcod/commits/83d481c
- reset the cursor in text field when the text field is reset (cottog)
https://bitbucket.org/libtcod/libtcod/commits/6673e6c
- remove superfluous calls to SDL_PumpEvents
https://bitbucket.org/libtcod/libtcod/commits/1edf96d
- alt-tabbing back to the libtcod window would leave the window blank
https://bitbucket.org/libtcod/libtcod/commits/73fdf51

Removed
- removed support for mingw builds because no-one could get it to work

1.5.3

- set_font no longer crashes when loading a file without the implied font
size in its name

1.5.2

Added
- added mid point displacement algorithm to the heightmap toolkit
- added TCODConsole::hasMouseFocus() and TCODConsole::isActive()
- added TCODParser::hasProperty to check if a property is defined when
using the default parser
- added `TCODText::setPos(int x, int y)`

Fixed
- fixed TCODConsole::waitForKeypress returning for both press and release events (returns only on press)
- fixed dynamic font switching not working
- fixed TCOD_image_blit_rect not working with odd width/height
- fixed TCODK_RWIN/TCODK_LWIN not detected
- fixed TCOD_sys_wait_event not returning on mouse events
- fixed mouse dcx/dcy fields always 0 when the cursor moves slowly
- fixed crash in Python console_map_ascii_codes_to_font

1.5.1

Added
- added support for python3k. The samples run with Python 3.2.3
- added support for colored tiles. Standard font characters MUST only use greyscale colors.
- added native support for .ASC and .APF file (Ascii Paint format)
* TCODConsole::TCODConsole(const char *filename)
* bool TCODConsole::loadAsc(const char *filename)
* bool TCODConsole::saveAsc(const char *filename) const
* bool TCODConsole::loadApf(const char *filename)
* bool TCODConsole::saveApf(const char *filename) const
- added mouse wheel support in TCOD_mouse_t.wheel_up/wheel_down
- added TCODSystem::fileExists function for checking whether a given file exists
- added dice to the TCODRandom toolkit
- added support for dynamic property declaration in the parser
- added TCODList::reverse(), TCODPath::reverse(), TCODDijkstra::reverse()
- added weighted Gaussian distribution RNG
- added Gaussian distribution RNG with no minimum/maximum bounds (using only mean and standard deviance)
- added clipboard support in TCODSystem (on Linux, only X clipboard supported)
- added GLSL and OpenGL(fixed pipeline) renderer (FPS increased 880% on true color sample !!!)
- added libtcod.cfg (allows the player to tweaks libtcod overriding the game presets)
- added more TCOD_CHAR_* constants
- added TCODColor::scaleHSV (saturation and value scaling)
- added TCODColor::shiftHue (hue shifting up and down)
- added a TCODColor constructor for HSV values
- added TCODColor H, S and V separate getters and setters
- added TCODColor::rotate90
- added native Mac OSX support
- added support for quote-less HTML color values in the parser (col=FFFFFF instead of col="FFFFFF")
- added color control helpers for C (TCODConsole.getColorControlString/getRGBColorControlString)

Changed
- TCOD_console_wait_for_keypress, TCOD_console_check_for_keypress, TCOD_mouse_get_status
replaced with TCOD_sys_check_for_event and TCOD_sys_wait_for_event
- source width and height can be 0 in TCODConsole::blit to blit the whole console
- Some of the parser-related functions now can be chained.
- The RNG API now has less functions that choose the distribution based on the set flags.
- The noise API now has less functions that choose the noise type based on the set flags.
- Console default and cell foreground and background color getters and setters renamed to more intuitive names:
* `TCOD_console_set_background_color` => `TCOD_console_set_default_background`
* `TCOD_console_set_foreground_color` => `TCOD_console_set_default_foreground`
* `TCOD_console_get_background_color` => `TCOD_console_get_default_background`
* `TCOD_console_get_foreground_color` => `TCOD_console_get_default_foreground`
* `TCOD_console_set_back` => `TCOD_console_set_char_background`
* `TCOD_console_set_fore` => `TCOD_console_set_char_foreground`
* `TCOD_console_get_back` => `TCOD_console_get_char_background`
* `TCOD_console_get_fore` => `TCOD_console_get_char_foreground`
* `setBackgroundColor` => `setDefaultBackground`
* `setForegroundColor` => `setDefaultForeground`
* `getBackgroundColor` => `getDefaultBackground`
* `getForegroundColor` => `getDefaultForeground`
* `setBack` => `setCharBackground`
* `setFore` => `setCharForeground`
* `getBack` => `getCharBackground`
* `getFore` => `getCharForeground`
- `TCODConsole::printLeft/Right/Center` replaced by
`TCODConsole::setBackgroundFlag(TCOD_bkgnd_flag_t)`
`TCODConsole::setAlignment(TCOD_alignment_t)`
`TCODConsole::print(int x, int y, const char *fmt, ...)`
`TCODConsole::printEx(int x, int y, TCOD_bkgnd_flag_t bkgnd, TCOD_alignment_t alignment, const char *fmt, ...)`
- added `TCOD_BKGND_DEFAULT` as default value in rect / putChar / hline / vline / setBack
the default background flag for a console is BKGND_NONE
Warning ! That mean the rect/putChar/... functions now default to BKGND_NONE
instead of BKGND_SET, except if you call setBackgroundFlag before using them.
- `TCODConsole::getHeight[Left/Right/Center]Rect` replaced by
`TCODConsole::getHeightRect(int x, int y, int w, int h, const char *fmt, ...);`
(the 3 functions were useless, the height does not depend on the alignment... X( )
- `TCODConsole::initRoot` has an additional renderer parameter:
`static void TCODConsole::initRoot(int w, int h, const char * title, bool fullscreen = false, TCOD_renderer_t renderer=TCOD_RENDERER_SDL);`
Possible values:
- TCOD_RENDERER_GLSL
- TCOD_RENDERER_OPENGL
- TCOD_RENDERER_SDL
- `TCODMap::clear` now sets walkable and transparent status of all cells:
`void TCODMap::clear` (bool transparent = false, bool walkable = false)
`void TCOD_map_clear` (TCOD_map_t map, bool transparent, bool walkable)
map_clear (map, transparent, walkable)
- cmake compilation works on FreeBSD thanks to namor_
- Restrictive FOV algorithm updated to MRPAS v1.1 (faster, better-looking, improved symmetry)
- Gaussian distribution in `TCODRandom` now uses a more precise Box-Muller transform algorithm
- More default values for `printFrame`:
`void printFrame(int x,int y,int w,int h, bool clear=true, TCOD_bkgnd_flag_t flag = TCOD_BKGND_DEFAULT, const char *fmt=NULL, ...)`
- hardened fov module
- extended list of color constants (the old names can produce slightly different colors)
- `TCODMap` memory consumption divided by 4
- now mouse wheel events are properly detected

Fixed
- fixed namegen crash if generator list is empty
- fixed permissive fov when light_walls is false
- fixed possible crash when clearing an offscreen console before calling initRoot
- fix possible crash when printing a string containing ascii codes > 127
- fixed TCODNamegen returning integers in the Python version
- fixed TCODDijkstra segfault when diagonal movement cost was zero
- fixed setDirty() not working for the last row or column of the console
- fixed Python samples not compiling if numpy installed
- fixed Python TCOD_parser_get_list_property
- fixed TCODDijkstra destructor crash bug
- fixed TCODColor::setHSV bug when using hues below 0 or above 359 grades
- fixed some rare issues in A* pathfinding
- fixed issue in TCODImage::blit2x when blitting only a subregion of the image
- fixed memory leak in TCODImage::save

1.5.0

Added
- added text field toolkit (undocumented)
- added functions for fast Python full console coloring:
- console_fill_foreground(con,r,g,b)
- console_fill_background(con,r,g,b)

r,g,b are 1D arrays of console_width * console_height
- added fast Python rendering sample (Jotaf)
- added TCODConsole::resetCredits() to restart credits animation before it's finished
- added TCODConsole::setDirty(int x, int y, int w,int h) to force libtcod to redraw a part of the console
This might by needed when using the SDL renderer
- added TCODSystem::getCharSize(int *w, int *h) to get the current font's character size
- added name generation module (Mingos)
- added Dijkstra pathfinding (Mingos)
- added approximated gaussian distribution functions in the RNG module
`float TCODRandom::getGaussian(float min, float max)`
- added subcell resolution blitting function TCODImage::blit2x
- added more portable filesystem utilities:
- `static bool TCODSystem::isDirectory(const char *path)`
- `static TCODList<const char *> TCODSystem::getDirectoryContent(const char *path, const char *pattern)`
- added TCODConsole::putCharEx(int x, int y, int c, TCODColor &fore, TCODColor &back) (at last!)
- added waitThread and thread conditions support in (undocumented) threading API
- added unicode support and 4 unicode fonts courtesy of Mingos. Functions with unicode support are :
- static void TCODConsole::mapStringToFont(const wchar_t *s, int fontCharX, int fontCharY);
- void TCODConsole::printLeft(int x, int y, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- void TCODConsole::printRight(int x, int y, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- void TCODConsole::printCenter(int x, int y, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- int TCODConsole::printLeftRect(int x, int y, int w, int h, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- int TCODConsole::printRightRect(int x, int y, int w, int h, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- int TCODConsole::printCenterRect(int x, int y, int w, int h, TCOD_bkgnd_flag_t flag, const wchar_t *fmt, ...);
- int TCODConsole::getHeightLeftRect(int x, int y, int w, int h, const wchar_t *fmt, ...);
- int TCODConsole::getHeightRightRect(int x, int y, int w, int h, const wchar_t *fmt, ...);
- int TCODConsole::getHeightCenterRect(int x, int y, int w, int h,const wchar_t *fmt, ...);

C versions of the functions have _utf suffixes. Unicode fonts are :
- fonts/consolas_unicode_10x10.png
- fonts/consolas_unicode_12x12.png
- fonts/consolas_unicode_16x16.png
- fonts/consolas_unicode_8x8.png

Changed
- the random number generator module now support two algorithms (Mingos)
Mersenne twister, used in previous versions of libtcod
Complementary Multiply With Carry, 2 to 3 times faster and has a much better
period. This is the default algorithm.
You can choose the algorithm in the constructor:
c
typedef enum {
TCOD_RNG_MT,
TCOD_RNG_CMWC
} TCOD_random_algo_t;

- TCODRandom() => CMWC, default seed
- TCODRandom(uint32 seed) => CMWC, custom seed
- TCODRandom(TCOD_random_algo_t algo) => default seed, custom algo
- TCODRandom(uint32 seed, TCOD_random_algo_t aldo) => custom algo and seed
- TCODConsole::printFrame now takes an extra argument: TCOD_bkgnd_flag_t
- renamed libraries on Linux to improve portability :
- libtcod++.so => libtcodxx.so
- libtcod-gui.so => libtcodgui.so
- new compilation system with a debug and release version of the library
- makefiles have been moved to a makefiles subdirectory
- libtcod credits now use subcell resolution

Fixed
- fixed wrong ascii code returned by check/waitForKeypress with AltGr+0-9 combination
- fixed RNG going mad if you delete the default RNG
- fixed wait_for_keypress not working in Python
- now the parser can handle strings/identifiers with unlimited size (previously limited to 256 chars)
- fixed TCODZip module missing from MSVC release
- fixed issue with TCOD_COLCTRL_FORE_RGB and TCOD_COLCTRL_BACK_RGB when using 10 or 37 in rgb values
- fixed issue in color_set_hsv Python wrapper
- fixed bug in console blitting when destination coordinates are outside the destination console

Removed
- TCODRandom::getIntFromByteArray has been deleted
- removed bitfield from TCOD_key_t and TCOD_mouse_t to ease wrappers writing.
existing working wrappers might be broken, though.

Page 40 of 45

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.