Menu

Tree [759091] master /
 History

HTTPS access


File Date Author Commit
 .github 2024-06-10 Dirk Stolle Dirk Stolle [a29eb9] ci: also build on Ubuntu 24.04
 ci 2024-01-24 Dirk Stolle Dirk Stolle [849f73] ci: create build artifacts for Windows
 engine 2024-06-30 Dirk Stolle Dirk Stolle [759091] localize switcher button captions in colony view
 .gitignore 2024-02-01 Dirk Stolle Dirk Stolle [f46e5a] extend .gitignore to include generated binary
 .gitlab-ci.yml 2024-02-01 Dirk Stolle Dirk Stolle [44891b] ci: switch from Rocky Linux 8 to Rocky Linux 9 ...
 CONTRIBUTING.md 2024-03-03 Dirk Stolle Dirk Stolle [2224aa] documentation: add contribution guidelines
 LICENSE 2020-11-03 Dirk Stolle Dirk Stolle [533f17] move license file to top level directory
 changelog.md 2024-06-30 Dirk Stolle Dirk Stolle [759091] localize switcher button captions in colony view
 known_bugs.md 2020-11-03 Dirk Stolle Dirk Stolle [cac1a4] move text files as Markdown to top level directory
 readme.md 2024-05-12 Dirk Stolle Dirk Stolle [6e7940] documentation: fix typo in readme
 todo.md 2020-11-03 Dirk Stolle Dirk Stolle [831c0d] fix file name + add link in todo.md

Read Me

Vespucci

Vespucci is an open-source remake of the old Colonization classic, a game
similar to Civilization. It is still in an early stage of development.

Available releases

Check out the release page to
download the latest available release.

Currently, only binaries for Windows are provided. However, the Windows binary
also works on Linux and macOS with the help of the
Wine compatibility layer.

Build status

  • GitLab:
    GitLab pipeline status
  • GitHub:
    GitHub CI status

Building from source

Prerequisites

To build Vespucci from source you need an Object Pascal / Delphi compiler like
Free Pascal, and the GLUT or freeglut library.

It also helps to have Git, a distributed version control system, on your build
system to get the latest source code directly from the Git repository.

All of that can usually be installed by typing

# Debian 11 and earlier versions
apt-get install fp-compiler fp-units-gfx freeglut3 git

or

# Debian 12
apt-get install fp-compiler fp-units-gfx libglut3.12 git

or

yum install epel-release # needed for fpc (Free Pascal compiler) on Rocky Linux 9
                         # ... and maybe on other Red Hat-based distros, too
yum install fpc freeglut git glibc-devel

into a root terminal.

Getting the source code

Get the source directly from Git by cloning the Git repository and change to
the directory after the repository is completely cloned:

git clone https://gitlab.com/striezel/vespucci.git
cd vespucci

That's it, you should now have the current source code on your machine.

Build process

The build process is relatively easy, because you just have to invoke the
FreePascal compiler. Starting in the root directory of the source, you can do
the following steps:

cd engine
fpc -S2 vespucci.dpr

Usage

To start the compiled program, type ./vespucci into the terminal.

Note that the game currently only has a German GUI, so you might want to wait
for the English translation, or - even better - help with that.

History of changes

A changelog is provided as separate file.

Copyright 2008-2020 Dirk Stolle

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.