ants game
Go to file
Auric Vente 84b4e633ab Mods 2024-07-28 03:41:47 -06:00
cromulant Mods 2024-07-27 23:03:02 -06:00
utils Mods 2024-07-21 10:56:49 -06:00
.gitignore Mods 2024-07-18 02:14:03 -06:00
.pre-commit-config.yaml Mods 2024-07-28 01:10:29 -06:00
LICENSE Mods 2024-07-23 00:44:14 -06:00
README.md Mods 2024-07-28 03:41:47 -06:00
arguments.md Mods 2024-07-27 13:33:03 -06:00
more.md Mods 2024-07-26 07:02:13 -06:00
requirements.txt Mods 2024-07-28 01:10:29 -06:00
run.sh Mods 2024-07-18 02:14:03 -06:00
screenshots.md Mods 2024-07-22 01:26:29 -06:00
setup.py Mods 2024-07-20 09:37:30 -06:00

README.md

Cromulant

Click here for screenshots

What is this?

This is a kind of toy you can use for your amusement.

You start with random ants from a list of 1000 names.

The ants will produce random updates.

The updates can be random non-sensical sentences.

The ants can score triumphs or take hits.

You can adjust the speed of the updates.

Game Loop

You start a new game with 25 to 250 ants.

You get to read funny updates from the ants.

You watch who gets the most triumphs or the most hits.

The ant with the highest score is shown in the footer.

Ants get merged and replaced over time.

All of this happens automatically.

You can manually trigger terminations or merges by clicking or middle clicking the images on the left.

Usage

Just open it and place it somewhere in your monitor.

Installation

Quick Installation

If you have pipx and linux installed you can use the following command:

pipx install git+https://github.com/madprops/cromulant --force

Advanced Installation

  1. Clone this repo.

  2. python -m venv venv

  3. venv/bin/pip install -r requirements.txt

  4. Use run.sh or venv/bin/python -m cromulant.main

  5. (Optional) Manually create desktop entries and icons for the application.

Algorithm

A random ant is picked based on weights (oldest update date weighs more). Then a random number between 0 and 12 is picked. For each number an action happens to produce an update.

The top score is calculated as (Triumph - Hits). If multiple ants have the same score, the oldest one wins.

For merge, the words of each name are used. They get filled with random words if less than 2 words. One word from each set is picked randomly. The triumph and hits get combined. The original ants get terminated and the merged one hatches. An extra random ant is hatched to fill the gap.

Technology

This is made with python + qt (pyside6)

The name

I read the word cromulent being used somewhere which turned out to be invented by The Simpsons.

I created a new programming project to practice/study and tried to use that word for the name but made a typo.

I liked the typo and made a game about ants.


Command line arguments

Click here for more