Skip to content

A C implementation of Alien: Fate of the Nostromo, a 2021 board game of the same name

License

Notifications You must be signed in to change notification settings

CharlesAverill/aftn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ALIEN: Fate of The Nostromo

This is a terminal-based clone of the "ALIEN: Fate of The Nostromo" board game, implemented in C.

Installation

Debug

Installs to bin/aftn

git clone https://github.com/CharlesAverill/aftn.git
cd aftn

cmake -S . -B build
cmake --build build -DDebugBuild=ON

Full Install

Installs to /usr/games/aftn

git clone https://github.com/CharlesAverill/aftn.git
cd aftn

cmake -S . -B build
cmake --build build
sudo cmake --build build --target install -DDebugBuild=OFF

Usage

Usage: aftn [OPTION...]

  -a, --use_ash              Include Ash for a more challenging game
  -c, --n_characters=integer Number of characters to create
  -d, --draw_map             Draw the game map if an ASCII map is provided
  -g, --game=FILE            Read game board from this path rather than the
                             default.
  -n, --n_players=integer    Number of players to create
  -p, --print_map            Print out a text representation of the game map
  -?, --help                 Give this help list
      --usage                Give a short usage message
  -V, --version              Print program version

Check game_data/maps/format.txt to create your own game boards

About

A C implementation of Alien: Fate of the Nostromo, a 2021 board game of the same name

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published