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 c5eda1eaab Add code to the load_game() function
The load_game() function now checks for errors while opening the game
file.
2011-07-11 18:07:51 +10:00
..
game.c Add code to the load_game() function 2011-07-11 18:07:51 +10:00
game.h Add the init_game() function that initialises the actual game 2011-07-11 16:14:07 +10:00
globals.c Rename company_names[] to company_name[] for consistency 2016-12-09 08:55:09 +11:00
globals.h Add the init_game() function that initialises the actual game 2011-07-11 16:14:07 +10:00
help.c Add the prototype and an empty definition for show_help() 2011-07-11 13:57:14 +10:00
help.h Add the prototype and an empty definition for show_help() 2011-07-11 13:57:14 +10:00
intf.c Modify the wait_for_key() routine to take a window attribute parameter 2011-07-11 17:57:52 +10:00
intf.h Add code to the load_game() function 2011-07-11 18:07:51 +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 gettxline() to read a line of input from the keyboard 2011-07-11 10:31:19 +10:00
trader.c Add the init_game() function that initialises the actual game 2011-07-11 16:14:07 +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 Add gettxline() to read a line of input from the keyboard 2011-07-11 10:31:19 +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