1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-07-21 16:14:14 -04:00
trader/src
John Zaitseff 568c3738b2 Add the attrpr() function; add a missing va_end() call in center()
The attrpr() function prints a string with a particular set of Curses
attributes.
2011-07-04 19:41:55 +10:00
..
game.c Add source files game.c and game.h 2011-07-04 15:54:39 +10:00
game.h Add source files game.c and game.h 2011-07-04 15:54:39 +10:00
globals.c Rename company_names[] to company_name[] for consistency 2016-12-09 08:55:09 +11:00
globals.h Rename company_names[] to company_name[] for consistency 2016-12-09 08:55:09 +11:00
help.c Add the files help.c and help.h 2011-07-02 21:50:47 +10:00
help.h Add the files help.c and help.h 2011-07-02 21:50:47 +10:00
intf.c Add the attrpr() function; add a missing va_end() call in center() 2011-07-04 19:41:55 +10:00
intf.h Add the attrpr() function; add a missing va_end() call in center() 2011-07-04 19:41:55 +10:00
Makefile.am Add source files game.c and game.h 2011-07-04 15:54:39 +10:00
README Add source files game.c and game.h 2011-07-04 15:54:39 +10:00
system.h Move definition of "enum curs_type"; rename CURS_VERYVISIBLE 2011-07-04 19:15:38 +10:00
trader.c Move (and abstract) the random number functions to utils.c 2011-07-04 17:13:29 +10:00
trader.h Add source files game.c and game.h 2011-07-04 15:54:39 +10:00
utils.c Move (and abstract) the random number functions to utils.c 2011-07-04 17:13:29 +10:00
utils.h Move (and abstract) the random number functions to utils.c 2011-07-04 17:13:29 +10:00

**************************************************************************
*                                                                        *
*              Star Traders: A Game of Interstellar Trading              *
*                 Copyright (C) 1990-2011, John Zaitseff                 *
*                                                                        *
**************************************************************************

This directory, "src", contains the main source code to Star Traders.  The
source code is split up among the following files:

    trader.h     - Main program header file
    trader.c     - Main program, command-line interface
    system.h     - All system header files are included here
    globals.h    - Global game constants and variables
    globals.c    - Global game variables
    game.h       - Game functions header file
    game.c       - Game functions for Star Traders
    help.h       - Help text routines header file
    help.c       - Help text routines: how to play Star Traders
    intf.h       - Basic text input/output header file
    intf.c       - Basic text input/output routines
    utils.h      - Utility functions header file
    utils.c      - Utility functions needed by Star Traders