1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-06-30 19:45:23 +00:00
trader/src
John Zaitseff 9cb3a46693 Completely rewrite the scramble() and unscramble() functions
The file output is now completely in ASCII---and will be much harder to
break for casual cheating!
2014-05-23 18:56:24 +10:00
..
exch.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
exch.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
fileio.c Completely rewrite the scramble() and unscramble() functions 2014-05-23 18:56:24 +10:00
fileio.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
game.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
game.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
globals.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
globals.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
help.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
help.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
intf.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
intf.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
Makefile.am Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
move.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
move.h Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
README Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
system.h Add the CRC32 functions from the GNU Portability Library 2014-05-22 18:17:02 +10:00
trader.c Update the copyright year to 2014 2014-05-22 11:05:51 +10:00
trader.h Completely rewrite the scramble() and unscramble() functions 2014-05-23 18:56:24 +10:00
utils.c Completely rewrite the scramble() and unscramble() functions 2014-05-23 18:56:24 +10:00
utils.h Completely rewrite the scramble() and unscramble() functions 2014-05-23 18:56:24 +10:00

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

This directory, src, contains the  main source code for 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