Metadata-Version: 1.1
Name: tdl
Version: 1.4.0
Summary: Pythonic cffi port of libtcod.
Home-page: https://github.com/HexDecimal/python-tdl
Author: Kyle Stewart
Author-email: 4B796C65+pythonTDL@gmail.com
License: Simplified BSD License
Download-URL: https://pypi.python.org/pypi/tdl
Description: ==============
         Installation
        ==============
        The latest Windows installer can be found on PyPI: https://pypi.python.org/pypi/tdl
        
        If it's available you can use pip instead by running the command:
        
            pip install tdl
        
        This module can also be manually installed by going into the "setup.py" directory and running the command:
        
            python setup.py install
        
        This will require that your Python installation can compile binaries.
        
        =======
         About
        =======
        TDL is a port of the C library libtcod in an attempt to make it more "Pythonic"
        
        The library can be used for displaying tilesets (ANSI, Unicode, or graphical) in true color.
        
        It also provides functionality to compute path-finding and field of view.
        
        python-tdl is hosted on GitHub: https://github.com/HexDecimal/python-tdl
        
        Online Documentation: http://pythonhosted.org/tdl/
        
        Issue Tracker: https://github.com/HexDecimal/python-tdl/issues
        
        python-tdl is a cffi port of "libtcod".  You can find more about libtcod at http://roguecentral.org/doryen/libtcod/
        
        ==============
         Requirements
        ==============
        * Python 2.7+ or 3.x
        * 32 bit Windows, 32/64 bit Linux, or Mac OS/X (64 bit architecture)
        * libtcod-cffi:  found at https://pypi.python.org/pypi/libtcod-cffi
        * the cffi module: found at https://pypi.python.org/pypi/cffi
        
        =========
         License
        =========
        python-tdl is distributed under the Simplified 2-clause FreeBSD license.
        Read LICENSE.txt for more details.
        
        ===========
         Changelog
        ===========
        1.4.0
         * The DLL's have been moved into another library which you can find at https://github.com/HexDecimal/libtcod-cffi
           You can use this library to have some raw access to libtcod if you want.
           Plus it can be used alongside TDL.
         * The libtocd console objects in Console instances have been made public.
         * Added tdl.event.wait function.  This function can called with a timeout and
           can automatically call tdl.flush.
        
        1.3.1
         * Fixed pathfinding regressions.
        
        1.3.0
         * Updated backend to use python-cffi instead of ctypes.  This gives decent
           boost to speed in CPython and a drastic to boost in speed in PyPy.
        
        1.2.0
         * The set_colors method now changes the default colors used by the draw_*
           methods.  You can use Python's Ellipsis to explicitly select default colors
           this way.
         * Functions and Methods renamed to match Python's style-guide PEP 8, the old
           function names still exist and are depreciated.
         * The fgcolor and bgcolor parameters have been shortened to fg and bg
        
        1.1.7
         * Noise generator now seeds properly
         * The OS event queue will now be handled during a call to tdl.flush. This
           prevents a common newbie programmer hang where events are handled
           infrequently during long animations, simulations, or early development
         * Fixed a major bug that would cause a crash in later versions of Python 3
        
        1.1.6
         * Fixed a race condition when importing on some platforms
         * Fixed a type issue with quickFOV on Linux
         * Added a bresenham function to the tdl.map module
        
        1.1.5
         * a for loop can iterate over all coordinates of a Console
         * drawStr can be configured to scroll or raise an error
         * You can now configure or disable key repeating with tdl.event.setKeyRepeat
         * Typewriter class removed, use a Window instance for the same functionality
         * setColors method fixed
         
        1.1.4
         * Merged the Typewriter and MetaConsole classes,
           You now have a virtual cursor with Console and Window objects
         * Fixed the clear method on the Window class
         * Fixed screenshot function
         * Fixed some drawing operations with unchanging backgrounds
         * Instances of Console and Noise can be pickled and copied
         * Added KeyEvent.keychar
         * Fixed event.keyWait, and now converts window closed events into Alt+F4
        
        1.1.3
         * Some of the setFont parameters were incorrectly labeled and documented
         * setFont can auto-detect tilesets if the font sizes are in the filenames
         * Added some X11 unicode tilesets, including unifont.
        
        1.1.2
         * Window title now defaults to the running scripts filename
         * Fixed incorrect deltaTime for App.update
         * App will no longer call tdl.flush on its own, you'll need to call this yourself
         * tdl.noise module added
         * clear method now defaults to black on black
        
        1.1.1
         * map submodule added with AStar class and quickFOV function
         * new Typewriter class
         * most console functions can use Python-style negative indexes now
         * new App.runOnce method
         * rectangle geometry is less strict
        
        1.1.0
         * KeyEvent.keyname is now KeyEvent.key
         * MouseButtonEvent.button now behaves like KeyEvent.keyname does
         * event.App class added
         * drawing methods no longer have a default for the character parameter
         * KeyEvent.ctrl is now KeyEvent.control
        
Keywords: rogue-like rogue-likes text cffi ASCII ANSI Unicode libtcod fov
Platform: Windows
Platform: Mac OS X
Platform: Linux
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: MacOS X
Classifier: Environment :: X11 Applications
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
