Description
SDL Terminal is a library that allows to have a pseudo-ansi color terminal that can be used with any SDL application (without or with OpenGL). The internal terminal surface is an SDL surface that is mapped to a texture when OpenGL is used (and then it is quite simple to use the texture to map it on any GL surface, like in the glcube example from distribution). Any user input raises an SDL_TERMINALEVENT that can be catched like any other SDL event and the event structure holds the user actual input.
/* Terminal creation and settings */
SDL_Terminal *terminal = SDL_CreateTerminal ();
SDL_TerminalSetFont (terminal, "./VeraMono.ttf", 12);
SDL_TerminalSetSize (terminal, 80, 24);
SDL_TerminalSetPosition (terminal, 10, 10);
...
/* Print a new line of text on terminal */
SDL_TerminalPrint (terminal, "Hello !");
...
/* Blit terminal onto current video surface */
SDL_TerminalBlit (terminal);
...
/* Catch terminal event and get user input */
switch (event.type) {
case SDL_TERMINALEVENT:
printf ("User input: %sn", (char *) event.user.data2);
...
The SDL Terminal package comes with several examples showing how to use terminal either in 2D mode or 3D mode. Another example demonstrate the emulation of a python console using the SDL Terminal.
User Reviews for SDL Terminal FOR LINUX 2
-
SDL Terminal FOR LINUX is a versatile library for adding pseudo-ansi color terminal to SDL applications, with user input events and texture mapping support.
-
SDL Terminal FOR LINUX provides a versatile pseudo-ansi color terminal for SDL applications. Easy to use with user input events.