1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-11-03 17:27:29 -05:00
trader/src
2011-07-15 11:19:14 +10:00
..
game.c Implement the show_map() function that displays the galaxy map 2011-07-15 11:19:14 +10:00
game.h Implement the show_map() function that displays the galaxy map 2011-07-15 11:19:14 +10:00
globals.c Add the --no-color (and --no-colour) command-line options 2011-07-14 20:19:04 +10:00
globals.h Add the --no-color (and --no-colour) command-line options 2011-07-14 20:19:04 +10:00
help.c Add the help text, including all appropriate formatting 2011-07-14 19:27:57 +10:00
help.h Add the prototype and an empty definition for show_help() 2011-07-11 13:57:14 +10:00
intf.c Add the --no-color (and --no-colour) command-line options 2011-07-14 20:19:04 +10:00
intf.h Implement the show_map() function that displays the galaxy map 2011-07-15 11:19:14 +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 Add to the save_game() function to save the current game to disk 2011-07-13 12:52:38 +10:00
trader.c Add the --no-color (and --no-colour) command-line options 2011-07-14 20:19:04 +10:00
trader.h Revise the scramble() and unscramble() functions 2011-07-14 12:30:23 +10:00
utils.c Revise the scramble() and unscramble() functions 2011-07-14 12:30:23 +10:00
utils.h Add the scramble() and unscramble() functions 2011-07-11 23:21:10 +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