make gameoflife more configurable and fix pull reviews

This commit is contained in:
thoxy
2025-05-30 20:04:52 +02:00
parent 98af3a98c8
commit fa46155f72
4 changed files with 76 additions and 112 deletions

View File

@@ -125,6 +125,32 @@ error_fg = 0x01FF0000
# Foreground color id
fg = 0x00FFFFFF
# Game of Life entropy interval (0 = disabled, >0 = add entropy every N generations)
# 0 -> Pure Conway's Game of Life (will eventually stabilize)
# 10 -> Add entropy every 10 generations (recommended for continuous activity)
# 50+ -> Less frequent entropy for more natural evolution
gameoflife_entropy_interval = 10
# Game of Life animation foreground color id
gameoflife_fg = 0x0000FF00
# Game of Life frame delay (lower = faster animation, higher = slower)
# 1-3 -> Very fast animation
# 6 -> Default smooth animation speed
# 10+ -> Slower, more contemplative speed
gameoflife_frame_delay = 6
# Game of Life initial cell density (0.0 to 1.0)
# 0.1 -> Sparse, minimal activity
# 0.4 -> Balanced activity (recommended)
# 0.7+ -> Dense, chaotic patterns
gameoflife_initial_density = 0.4
# Game of Life randomize colors (true/false)
# false -> Use the fixed gameoflife_fg color
# true -> Generate one random color at startup and use it for the entire session
gameoflife_randomize_colors = false
# Remove main box borders
hide_borders = false