mirror of
https://git.zap.org.au/git/trader.git
synced 2024-12-04 14:46:45 -05:00
625f265108
This function, trade_shares(), is the last function needed for Star Traders: the game is now complete. The current line count is 6667 lines of C code (src/*.[ch]), as compared with 1657 lines in the CP/M-80 version, 1674 lines in CP/M-86, 4266 lines in DOS (2225 in the main program) and 4580 lines in Windows 16-bit. |
||
---|---|---|
.. | ||
exch.c | ||
exch.h | ||
fileio.c | ||
fileio.h | ||
game.c | ||
game.h | ||
globals.c | ||
globals.h | ||
help.c | ||
help.h | ||
intf.c | ||
intf.h | ||
Makefile.am | ||
move.c | ||
move.h | ||
README | ||
system.h | ||
trader.c | ||
trader.h | ||
utils.c | ||
utils.h |
************************************************************************** * * * 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