1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-09-01 17:14:15 -04:00
trader/src
John Zaitseff c7e1f6096f Replace PACKAGE_NAME with "Star Traders"
The gettext utilities don't like C macros in gettext() invocations, so
replace each occurrence of PACKAGE_NAME with "Star Traders".
2011-08-01 19:49:16 +10:00
..
exch.c Replace the WCENTER(x) macro with WCENTER; refactor newtxwin() to suit 2011-07-23 10:16:03 +10:00
exch.h Finish moving all comments from source files to headers 2011-07-22 13:05:06 +10:00
fileio.c First pass at adding _() and N_() to allow string translation 2011-08-01 19:30:19 +10:00
fileio.h Document and clean up fileio.c: functions load_game() and save_game() 2011-07-21 22:18:14 +10:00
game.c First pass at adding _() and N_() to allow string translation 2011-08-01 19:30:19 +10:00
game.h Refactor some code in init_game() 2011-07-22 10:49:26 +10:00
globals.c Minor modifications to allow the first pass to compile! 2011-08-01 19:43:55 +10:00
globals.h Change the "--no-encrypt" command line option to "--dont-encrypt" 2011-07-22 12:20:58 +10:00
help.c Replace the WCENTER(x) macro with WCENTER; refactor newtxwin() to suit 2011-07-23 10:16:03 +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 Replace PACKAGE_NAME with "Star Traders" 2011-08-01 19:49:16 +10:00
intf.h Replace the WCENTER(x) macro with WCENTER; refactor newtxwin() to suit 2011-07-23 10:16:03 +10:00
Makefile.am Rearrange order of linked libraries; move definition of LOCALEDIR 2011-08-01 18:59:11 +10:00
move.c Replace the WCENTER(x) macro with WCENTER; refactor newtxwin() to suit 2011-07-23 10:16:03 +10:00
move.h Add more comments to process_move() 2011-07-22 12:43:21 +10:00
README Final minor edits of various documentation files 2011-07-25 17:00:59 +10:00
system.h Add preliminary support for GNU gettext internationalisation 2011-08-01 18:17:02 +10:00
trader.c Replace PACKAGE_NAME with "Star Traders" 2011-08-01 19:49:16 +10:00
trader.h Replace PACKAGE_NAME with "Star Traders" 2011-08-01 19:49:16 +10:00
utils.c First pass at adding _() and N_() to allow string translation 2011-08-01 19:30:19 +10:00
utils.h Replace the global variable localeconv_info with lconvinfo 2011-07-22 10:23:58 +10:00

**************************************************************************
*                                                                        *
*              Star Traders: A Game of Interstellar Trading              *
*                 Copyright (C) 1990-2011, 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