1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-09-01 17:14:15 -04:00
trader/src
2011-07-21 13:16:42 +10:00
..
exch.c Rename character renditions (attributes) to something more regular 2011-07-20 17:01:25 +10:00
exch.h Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
fileio.c Rename character renditions (attributes) to something more regular 2011-07-20 17:01:25 +10:00
fileio.h Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
game.c Move printing a prompt into answer_yesno(); document wait_for_key() 2011-07-21 13:10:51 +10:00
game.h Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
globals.c Add the --no-encrypt command-line option 2011-07-19 23:24:17 +10:00
globals.h Add the --no-encrypt command-line option 2011-07-19 23:24:17 +10:00
help.c Minor code cleanups 2011-07-20 21:18:28 +10:00
help.h Clean up help.c and help.h: remove superfluous lines, add comments 2011-07-19 23:07:26 +10:00
intf.c Allow a second default key, ";" as well as "=", to help touch-typists! 2011-07-21 13:16:42 +10:00
intf.h Allow a second default key, ";" as well as "=", to help touch-typists! 2011-07-21 13:16:42 +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 printing a prompt into answer_yesno(); document wait_for_key() 2011-07-21 13:10:51 +10:00
move.h Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
README Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
system.h Include microseconds as well as seconds for the random number seed 2011-07-20 12:42:10 +10:00
trader.c Minor code cleanups 2011-07-20 21:18:28 +10:00
trader.h Clean up various comments, etc, in header files 2011-07-19 20:32:00 +10:00
utils.c Replace "tv.tv_sec * tv.tv_usec" with "tv.tv_sec + tv.tv_usec" 2011-07-20 23:19:12 +10:00
utils.h Add the restrict keyword where appropriate 2011-07-20 21:18:49 +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, end and (some) display functions
    move.c      move.h      - Functions for making and processing a move
    exch.c      exch.h      - Stock Exchange and Bank functions
    fileio.c    fileio.h    - Load and save game file functions
    help.c      help.h      - Help text functions: how to play the game
    intf.c      intf.h      - Basic text input/output functions
    utils.c     utils.h     - Utility functions needed by Star Traders
    system.h                - All system header files are included here