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-16 10:43:19 +10:00
..
exch.c Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
exch.h Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
fileio.c Move game_load() and game_save() functions to their own source file 2011-07-16 09:58:53 +10:00
fileio.h Move game_load() and game_save() functions to their own source file 2011-07-16 09:58:53 +10:00
game.c Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
game.h Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
globals.c Implement the end_game() function: display the winner of the game 2011-07-15 23:37:56 +10:00
globals.h Implement the end_game() function: display the winner of the game 2011-07-15 23:37:56 +10:00
help.c Add key presses to show_help() and get_move() to be more consistent 2011-07-15 21:45:23 +10:00
help.h Add the prototype and an empty definition for show_help() 2011-07-11 13:57:14 +10:00
intf.c Move the BUFSIZE macro to trader.h; remove the similar GAME_BUFSIZE 2011-07-15 18:52:31 +10:00
intf.h Redefine CURS_ON to be CURS_NORMAL as this works better with xterm 2011-07-15 21:35:51 +10:00
Makefile.am Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
move.c Move the selection and processing of game moves to move.c 2011-07-16 10:30:58 +10:00
move.h Move the selection and processing of game moves to move.c 2011-07-16 10:30:58 +10:00
README Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +10:00
system.h Implement the show_status() and total_value() functions 2011-07-15 17:46:57 +10:00
trader.c Add the --no-color (and --no-colour) command-line options 2011-07-14 20:19:04 +10:00
trader.h Move the stock exchange and bank functions (to be written) to exch.c 2011-07-16 10:43:19 +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.c    trader.h    - Main program, command-line interface
    globals.c   globals.h   - Global game constants and variables
    game.c      game.h      - Game start and end routines
    move.c      move.h      - Routines for making and processing a move
    exch.c      exch.h      - Stock Exchange and Bank routines
    fileio.c    fileio.h    - Load and save game file routines
    help.c      help.h      - Help text routines: how to play Star Traders
    intf.c      intf.h      - Basic text input/output routines
    utils.c     utils.h     - Utility functions needed by Star Traders
    system.h                - All system header files are included here