cleanup keywords

This commit is contained in:
Trilarion 2020-12-14 00:30:41 +01:00
parent 8d66fe6533
commit 489adf0f88
533 changed files with 660 additions and 628 deletions

View File

@ -5,7 +5,7 @@
[comment]: # (start of autogenerated content, do not edit)
**[Games](entries/tocs/_games.md#Games)** (1280) - **[Tools](entries/tocs/_tools.md#Tools)** (41) - **[Frameworks](entries/tocs/_frameworks.md#Frameworks)** (82) - **[Libraries](entries/tocs/_libraries.md#Libraries)** (49)
By category: **[Action](entries/tocs/_action.md#action)** (237), **[Adventure](entries/tocs/_adventure.md#adventure)** (54), **[Arcade](entries/tocs/_arcade.md#arcade)** (120), **[Board](entries/tocs/_board.md#board)** (23), **[Cards](entries/tocs/_cards.md#cards)** (17), **[Educational](entries/tocs/_educational.md#educational)** (12), **[Framework](entries/tocs/_framework.md#framework)** (82), **[Game engine](entries/tocs/_game-engine.md#game-engine)** (118), **[Library](entries/tocs/_library.md#library)** (49), **[Music](entries/tocs/_music.md#music)** (13), **[Platform](entries/tocs/_platform.md#platform)** (59), **[Puzzle](entries/tocs/_puzzle.md#puzzle)** (141), **[Remake](entries/tocs/_remake.md#remake)** (531), **[Role playing](entries/tocs/_role-playing.md#role-playing)** (199), **[Simulation](entries/tocs/_simulation.md#simulation)** (115), **[Sports](entries/tocs/_sports.md#sports)** (25), **[Strategy](entries/tocs/_strategy.md#strategy)** (268), **[Tool](entries/tocs/_tool.md#tool)** (41), **[Visual novel](entries/tocs/_visual-novel.md#visual-novel)** (6)
By category: **[Action](entries/tocs/_action.md#action)** (238), **[Adventure](entries/tocs/_adventure.md#adventure)** (55), **[Arcade](entries/tocs/_arcade.md#arcade)** (120), **[Board](entries/tocs/_board.md#board)** (23), **[Cards](entries/tocs/_cards.md#cards)** (17), **[Educational](entries/tocs/_educational.md#educational)** (12), **[Framework](entries/tocs/_framework.md#framework)** (82), **[Game engine](entries/tocs/_game-engine.md#game-engine)** (118), **[Library](entries/tocs/_library.md#library)** (49), **[Music](entries/tocs/_music.md#music)** (13), **[Platform](entries/tocs/_platform.md#platform)** (59), **[Puzzle](entries/tocs/_puzzle.md#puzzle)** (141), **[Remake](entries/tocs/_remake.md#remake)** (531), **[Role playing](entries/tocs/_role-playing.md#role-playing)** (199), **[Simulation](entries/tocs/_simulation.md#simulation)** (115), **[Sports](entries/tocs/_sports.md#sports)** (25), **[Strategy](entries/tocs/_strategy.md#strategy)** (268), **[Tool](entries/tocs/_tool.md#tool)** (41), **[Visual novel](entries/tocs/_visual-novel.md#visual-novel)** (6)
By platform: **[Windows](entries/tocs/_windows.md#windows)** (451), **[Linux](entries/tocs/_linux.md#linux)** (437), **[macOS](entries/tocs/_macos.md#macos)** (242), **[Android](entries/tocs/_android.md#android)** (69), **[iOS](entries/tocs/_ios.md#ios)** (15), **[Web](entries/tocs/_web.md#web)** (132)

View File

@ -198,7 +198,6 @@ https://github.com/adriengivry/Overload
https://github.com/aloisdeniel/awesome-monogame
https://github.com/Alzter/TuxBuilder
https://github.com/amerkoleci/Vortice.Windows
https://github.com/Hotride/OrionUO
https://github.com/Apostolique/Apos.Gui
https://github.com/armory3d/iron
https://github.com/arturkot/the-house-game
@ -336,6 +335,7 @@ https://github.com/Noesis/UE4-ShooterGame
https://github.com/ogarcia/opensudoku
https://github.com/Ogmo-Editor-3/OgmoEditor3-CE
https://github.com/OGRECave/scape
https://github.com/openfl/starling
https://github.com/OpenHV/OpenHV
https://github.com/OpenMandrivaAssociation
https://github.com/OpenMandrivaAssociation/nexuiz/blob/master/nexuiz.spec
@ -351,6 +351,7 @@ https://github.com/Patapom/GodComplex
https://github.com/PavelDoGreat/WebGL-Fluid-Simulation
https://github.com/perbone/luascript
https://github.com/Phyronnaz/VoxelPlugin
https://github.com/PixelGuys/Cubyz
https://github.com/pixijs/pixi.js
https://github.com/pld-linux
https://github.com/pld-linux/nexuiz/blob/master/nexuiz.spec
@ -363,6 +364,7 @@ https://github.com/qiciengine/qiciengine
https://github.com/Quaver/Wobble
https://github.com/quinnvoker/qurobullet
https://github.com/rakugoteam/Rakugo
https://github.com/rds1983/Jord
https://github.com/rds1983/Myra
https://github.com/redomar/JavaGame
https://github.com/Renanse/Ardor3D

View File

@ -11,7 +11,7 @@ import re
import datetime
import json
import textwrap
from utils import osg, osg_ui, utils, constants as c
from utils import osg, osg_ui, osg_parse, utils, constants as c
import requests
@ -206,6 +206,13 @@ class EntriesMaintainer:
if title[0] == 'j' and title[1] == title[1].upper() and not 'Java' in entry['Code language']:
print('Entry "{}" title starts with j? but Java is not a code language.'.format(name))
# search for duplicate keywords
for entry in self.entries:
keywords = entry['Keyword']
duplicates = [keyword for keyword in keywords if keywords.count(keyword) > 1]
if duplicates:
print('"{}" has duplicate keywords: {}'.format(entry['File'], duplicates))
# if there is a @see-download there should be download fields...
def clean_rejected(self):
@ -508,6 +515,11 @@ class EntriesMaintainer:
unique_languages = set(languages)
unique_languages = [(l, languages.count(l) / len(languages)) for l in unique_languages]
unique_languages.sort(key=lambda x: str.casefold(x[0])) # first sort by name
# print languages to console
print('\nLanguages\n')
print('\n'.join('{} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_languages))
unique_languages.sort(key=lambda x: x[1], reverse=True) # then sort by occurrence (highest occurrence first)
unique_languages = ['- {} ({:.1f}%)\n'.format(x[0], x[1] * 100) for x in unique_languages]
statistics += '##### Language frequency\n\n' + ''.join(unique_languages) + '\n'
@ -525,6 +537,11 @@ class EntriesMaintainer:
unique_licenses = set(licenses)
unique_licenses = [(l, licenses.count(l) / len(licenses)) for l in unique_licenses]
unique_licenses.sort(key=lambda x: str.casefold(x[0])) # first sort by name
# print licenses to console
print('\nLicenses\n')
print('\n'.join('{} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_licenses))
unique_licenses.sort(key=lambda x: -x[1]) # then sort by occurrence (highest occurrence first)
unique_licenses = ['- {} ({:.1f}%)\n'.format(x[0], x[1] * 100) for x in unique_licenses]
statistics += '##### Licenses frequency\n\n' + ''.join(unique_licenses) + '\n'
@ -545,6 +562,11 @@ class EntriesMaintainer:
unique_keywords = set(keywords)
unique_keywords = [(l, keywords.count(l) / len(keywords)) for l in unique_keywords]
unique_keywords.sort(key=lambda x: str.casefold(x[0])) # first sort by name
# print keywords to console
print('\nKeywords\n')
print('\n'.join('{} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_keywords))
unique_keywords.sort(key=lambda x: -x[1]) # then sort by occurrence (highest occurrence first)
unique_keywords = ['- {} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_keywords]
statistics += '##### Keywords frequency\n\n' + '\n'.join(unique_keywords) + '\n\n'
@ -598,6 +620,11 @@ class EntriesMaintainer:
unique_code_dependencies = [(l, code_dependencies.count(l) / len(code_dependencies)) for l in
unique_code_dependencies]
unique_code_dependencies.sort(key=lambda x: str.casefold(x[0])) # first sort by name
# print code dependencies to console
print('\nCode dependencies\n')
print('\n'.join('{} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_code_dependencies))
unique_code_dependencies.sort(key=lambda x: -x[1]) # then sort by occurrence (highest occurrence first)
unique_code_dependencies = ['- {} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_code_dependencies]
statistics += '##### Code dependencies frequency\n\n' + '\n'.join(unique_code_dependencies) + '\n\n'
@ -619,6 +646,11 @@ class EntriesMaintainer:
unique_build_systems = set(build_systems)
unique_build_systems = [(l, build_systems.count(l) / len(build_systems)) for l in unique_build_systems]
unique_build_systems.sort(key=lambda x: str.casefold(x[0])) # first sort by name
# print build systems to console
print('\nBuild systems\n')
print('\n'.join('{} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_build_systems))
unique_build_systems.sort(key=lambda x: -x[1]) # then sort by occurrence (highest occurrence first)
unique_build_systems = ['- {} ({:.1f}%)'.format(x[0], x[1] * 100) for x in unique_build_systems]
statistics += '##### Build systems frequency ({})\n\n'.format(len(build_systems)) + '\n'.join(
@ -827,25 +859,21 @@ class EntriesMaintainer:
print('entries not yet loaded')
return
# list all java projects that are inactive and mature, sort by year
entries = [(e['Title'], e['Code license'][0], osg.extract_inactive_year(e)) for e in self.entries if 'Java' in e['Code language'] and osg.is_inactive(e) and 'mature' in e['State']]
entries.sort(key=lambda x: x[2])
for entry in entries:
print('{} ({}, {})'.format(*entry))
# list all java projects that are inactive and beta, sort by year
entries = [(e['Title'], e['Code license'][0], osg.extract_inactive_year(e)) for e in self.entries if 'Java' in e['Code language'] and osg.is_inactive(e) and 'beta' in e['State']]
entries.sort(key=lambda x: x[2])
for entry in entries:
print('{} ({}, {})'.format(*entry))
# # remove all downloads that only have a single entry with @see-home (this is the default anyway)
# field = 'Download'
# for entry in self.entries:
# if field in entry:
# content = entry[field]
# if len(content) == 1 and content[0].value == '@see-home' and not content[0].comment:
# del entry[field]
# combine content keywords
n = len('content ')
for entry in self.entries:
keywords = entry['Keyword']
content = [keyword for keyword in keywords if keyword.startswith('content')]
if len(content) > 1:
# remove from keywords
keywords = [keyword for keyword in keywords if keyword not in content]
# remove prefix
content = [str(keyword)[n:].strip() for keyword in content]
# join with +
content = 'content {}'.format(' + '.join(content))
keywords.append(osg_parse.ValueWithComment(content))
entry['Keyword'] = keywords
print('fixed "{}"'.format(entry['File']))
print('special ops finished')

View File

@ -383,7 +383,7 @@ def extract_inactive_year(entry):
inactive_year = [x.value[len(phrase):] for x in state if x.startswith(phrase)]
assert len(inactive_year) <= 1
if inactive_year:
return inactive_year[0]
return int(inactive_year[0])
else:
return None

View File

@ -6,7 +6,7 @@
- State: beta
- Download: https://play0ad.com/download/
- Platform: Windows, Linux, macOS
- Keyword: strategy, multiplayer online + LAN, open content, real-time
- Keyword: strategy, content open, multiplayer online + LAN, real-time
- Code repository: https://github.com/0ad/0ad.git (mirror), https://svn.wildfiregames.com/public/ps/ (svn)
- Code language: C, C++, JavaScript
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: https://packages.debian.org/sid/3dchess, http://www.ibiblio.org/pub/Linux/games/strategy/3Dc-0.8.1.tar.gz
- State: mature, inactive since 2000
- Keyword: board, puzzle, 3D, chess, open content
- Keyword: board, puzzle, 3D, chess, content open
- Code repository: @see-home
- Code language: C
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: mature, inactive since 2016
- Play: http://lo-th.github.io/3d.city/index.html
- Platform: Web
- Keyword: simulation, clone, open content
- Keyword: simulation, clone, content open
- Code repository: https://github.com/lo-th/3d.city.git
- Code language: JavaScript
- Code license: GPL-3.0 (with additional terms)

View File

@ -4,7 +4,7 @@
- Inspiration: Tetris
- State: mature, inactive since 2012
- Platform: Windows, Linux, macOS
- Keyword: puzzle, clone, open content
- Keyword: puzzle, clone, content open
- Code repository: https://gitlab.com/osgames/dtris.git (conversion of bzr), https://code.launchpad.net/4dtris (bzr)
- Code language: C
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: http://www.urticator.net/maze/
- State: mature, inactive since 2008
- Keyword: puzzle, 4D, maze (educational?), open content
- Keyword: puzzle, 4D, content open, maze (educational?)
- Code repository: @see-home
- Code language: Java
- Code license: Public domain

View File

@ -2,7 +2,7 @@
- Home: http://old.nklein.com/products/54321/
- State: mature, inactive since 2001
- Keyword: puzzle, open content
- Keyword: puzzle, content open
- Code repository: @see-home
- Code language: C++
- Code license: Custom (a very simple copyleft see http://old.nklein.com/etc/copyright.php)

View File

@ -3,7 +3,7 @@
- Home: http://a7xpg.sourceforge.net/, http://www.asahi-net.or.jp/~cs8k-cyu/windows/a7xpg_e.html
- State: beta, inactive since 2005
- Download: https://sourceforge.net/projects/a7xpg/files/a7xpg/
- Keyword: arcade, space, flight
- Keyword: arcade, flight, space
- Code repository: @see-home
- Code language: D
- Code license: 2-clause BSD

View File

@ -4,7 +4,7 @@
- Inspiration: Space Federation: Galactic Conquest
- State: beta, inactive since 2008
- Download: https://sourceforge.net/projects/aplanetsrevenge/files/aplanetsrevenge/apr-1.0-alpha/
- Keyword: strategy, text-based, space
- Keyword: strategy, space, text-based
- Code repository: https://gitlab.com/osgames/aplanetsrevenge.git (copy of last source release)
- Code language: Python
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: mature, inactive since 2011
- Download: http://abuse.zoy.org/wiki/download
- Platform: Linux
- Keyword: action, platform, remake, content swappable, side-scrolling, 2D
- Keyword: action, platform, remake, 2D, content swappable, side-scrolling
- Code repository: svn://svn.zoy.org/abuse/abuse/trunk (svn)
- Code language: C++, Lisp
- Code license: Public domain (parts), GPL-2.0 (parts), WTFPL (parts)

View File

@ -5,7 +5,7 @@
- State: mature
- Play: https://kurve.se/
- Platform: Web
- Keyword: action, clone, multiplayer local, open content
- Keyword: action, clone, content open, multiplayer local
- Code repository: https://github.com/SimonAlling/kurve.git
- Code language: JavaScript
- Code license: AGPL-3.0

View File

@ -2,7 +2,7 @@
- Home: https://packages.debian.org/sid/acm, https://web.archive.org/web/20130114223737/http://www.websimulations.com/
- State: mature, inactive since 2000
- Keyword: action, simulation, flight, open content
- Keyword: action, simulation, content open, flight
- Code repository: @see-home
- Code language: C
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: https://web.archive.org/web/20180818173613/http://www.mushware.com/, https://packages.qa.debian.org/a/adanaxisgpl.html
- State: mature, inactive since 2007
- Keyword: action, 4D, first-person, open content, shooter, single-player, space
- Keyword: action, 4D, content open, first-person, shooter, single-player, space
- Code repository: @see-home
- Code language: C++
- Code license: GPL-2.0 (non-free file in the commercial version)

View File

@ -3,7 +3,7 @@
- Home: http://icculus.org/airstrike/, https://packages.debian.org/stable/games/airstrike, https://web.archive.org/web/20061012090550/http://fluff.dyndns.org/cgi-bin/trac.cgi
- State: beta, inactive since 2014
- Platform: Windows, Linux
- Keyword: arcade, 2D, open content
- Keyword: arcade, 2D, content open
- Code repository: @see-home
- Code language: C
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: mature
- Download: https://github.com/GNOME/aisleriot/releases
- Platform: Linux
- Keyword: arcade, cards, open content
- Keyword: arcade, cards, content open
- Code repository: https://github.com/GNOME/aisleriot.git
- Code language: C, Scheme
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: mature
- Download: https://sourceforge.net/projects/marathon/files/
- Platform: Windows, Linux, macOS
- Keyword: action, remake, shooter, first-person
- Keyword: action, remake, first-person, shooter
- Code repository: https://github.com/Aleph-One-Marathon/alephone.git, https://svn.code.sf.net/p/marathon/code (svn)
- Code language: C++, Lua
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- State: mature, inactive since 2003
- Download: https://sourceforge.net/projects/allegator/files/
- Platform: Windows, Linux, macOS
- Keyword: platform, open content
- Keyword: platform, content open
- Code repository: https://git.code.sf.net/p/allegator/alex4
- Code language: C
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: beta, inactive since 2009
- Download: https://sourceforge.net/projects/aatrade/files/
- Platform: Web
- Keyword: strategy, online, turn-based, space
- Keyword: strategy, online, space, turn-based
- Code repository: https://github.com/tarnus/aatraders.git, https://gitlab.com/osgames/aatraders.git @add
- Code language: PHP
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: beta
- Play: http://www.allureofthestars.com/play/
- Platform: Web
- Keyword: role playing, strategy, open content, roguelike, turn-based
- Keyword: role playing, strategy, content open, roguelike, turn-based
- Code repository: https://github.com/AllureOfTheStars/Allure.git
- Code language: Haskell
- Code license: AGPL-3.0

View File

@ -2,7 +2,7 @@
- Home: https://packages.debian.org/stable/games/amphetamine, https://web.archive.org/web/20101023090423/http://homepage.hispeed.ch/loehrer/amph/amph.html
- State: beta, inactive since 2008
- Keyword: platform, open content, 2D
- Keyword: platform, 2D, content open
- Code repository: @see-home
- Code language: C
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: https://web.archive.org/web/20150412072808/http://www.coralquest.com/anagramarama/
- State: beta, inactive since 2002
- Keyword: puzzle, open content
- Keyword: puzzle, content open
- Code repository: @see-home
- Code language: C
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: beta
- Download: https://f-droid.org/packages/com.gpl.rpg.AndorsTrail/
- Platform: Android
- Keyword: role playing, roguelike, dungeon
- Keyword: role playing, dungeon, roguelike
- Code repository: https://github.com/Zukero/andors-trail.git
- Code language: Java
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: mature, inactive since 2014
- Download: http://annexconquer.com/downloads/
- Platform: Windows, Linux
- Keyword: strategy, open content, real-time
- Keyword: strategy, content open, real-time
- Code repository: https://bitbucket.org/annexctw/annex.git
- Code language: Lua (MegaGlest Script ?)
- Code license: GPL-3.0

View File

@ -2,7 +2,7 @@
- Home: https://web.archive.org/web/20110819212117/http://www.fishies.org.uk/apricots.html
- State: beta, inactive since 2003
- Keyword: arcade, 2D, open content, side-scrolling, flight
- Keyword: arcade, 2D, content open, flight, side-scrolling
- Code repository: @see-home
- Code language: C++
- Code license: GPL-2.0

View File

@ -13,4 +13,4 @@ Real-time, physically based renderer.
## Building
- Build system: VisualStudio
- Build system: Visual Studio

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20190304014608/http://www.jordantrudgett.com/ardentryst/, https://sourceforge.net/projects/ardentryst/, https://web.archive.org/web/20180624012340/https://www.pygame.org/project-Ardentryst-596-.html
- State: mature, inactive since 2009
- Download: https://web.archive.org/web/20180531203109/http://www.jordantrudgett.com/ardentryst/ardentryst-downloads/, https://sourceforge.net/projects/ardentryst/files/
- Keyword: role playing, side-scrolling, action
- Keyword: action, role playing, side-scrolling
- Code repository: https://github.com/ardentryst/ardentryst.git
- Code language: Python
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: https://www.comunidadargentum.com/ (Spanish), http://www.argentumonline.com.ar/ (Spanish), https://sourceforge.net/projects/morgoao/, https://github.com/argentumonline, https://github.com/ao-libre
- State: beta, inactive since 2014
- Download: https://www.comunidadargentum.com/descargas/, https://sourceforge.net/projects/morgoao/files/
- Keyword: role playing, multiplayer online + massive, 2D
- Keyword: role playing, 2D, multiplayer online + massive
- Code repository: https://github.com/ao-libre/ao-server.git, https://github.com/ao-libre/ao-cliente.git @add, https://github.com/ao-libre/ao-worldeditor.git @add, http://morgoao.cvs.sourceforge.net/ (cvs)
- Code language: Visual Basic
- Code license: GPL-2.0, AGPL-3.0

View File

@ -5,7 +5,7 @@
- Inspiration: Arx Fatalis
- State: mature
- Download: https://wiki.arx-libertatis.org/Download
- Keyword: remake, role playing, content commercial, content original required (Arx Fatalis), dungeon
- Keyword: remake, role playing, "content commercial + original required (Arx Fatalis)", dungeon
- Code repository: https://github.com/arx/ArxLibertatis.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- Inspiration: AstroMenace
- State: mature
- Download: https://viewizard.com/download.html
- Keyword: action, remake, shooter, 3D, space
- Keyword: action, remake, 3D, shooter, space
- Code repository: https://github.com/viewizard/astromenace.git
- Code language: C++, C
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: mature, inactive since 2016
- Download: https://sourceforge.net/projects/atanks/files/
- Platform: Windows, Linux
- Keyword: action, clone, artillery, open content
- Keyword: action, artillery, clone, content open
- Code repository: https://git.code.sf.net/p/atanks/atanks, https://gitlab.com/osgames/atanks.git @add
- Code language: C++
- Code license: GPL-2.0

View File

@ -1,7 +1,7 @@
# Atrinik
- Home: https://www.atrinik.org/, https://github.com/atrinik
- Inspiration: Daimonin, Crossfire
- Inspiration: Crossfire, Daimonin
- State: mature, inactive since 2016
- Keyword: role playing, 2D
- Code repository: https://github.com/atrinik/atrinik.git

View File

@ -16,4 +16,4 @@
## Building
- Build system: CMake
- Build instruction: https://github.com/Keriew/augustus/blob/master/doc/BUILDING.md
- Build instruction: https://github.com/Keriew/augustus/blob/master/doc/BUILDING.md

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2015
- Download: http://aussenposten.gamejs.org/download.html
- Platform: Windows, Linux
- Keyword: strategy, open content, real-time
- Keyword: strategy, content open, real-time
- Code repository: @see-download
- Code language: JavaScript
- Code license: MIT

View File

@ -5,7 +5,7 @@
- State: mature
- Download: https://mdsteele.games/azimuth/download.html
- Platform: Windows, Linux, macOS
- Keyword: adventure, open content, shooter, top-down
- Keyword: adventure, content open, shooter, top-down
- Code repository: https://github.com/mdsteele/azimuth.git
- Code language: C
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2009
- Download: https://sourceforge.net/projects/balder/files/
- Platform: Linux
- Keyword: strategy, open content
- Keyword: strategy, content open
- Code repository: https://svn.code.sf.net/p/balder/code (svn)
- Code language: C++
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://www.gnu.org/software/ballandpaddle/
- State: beta, inactive since 2009
- Platform: Linux
- Keyword: action, open content
- Keyword: action, content open
- Code repository: https://gitlab.com/osgames/ballandpaddle.git (conversion of bzr), http://bzr.savannah.gnu.org/r/ballandpaddle/ (bzr)
- Code language: C++, Scheme
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: http://www.baronygame.com/
- Inspiration: Barony
- State: mature
- Keyword: remake, role playing, content commercial, multiplayer co-op + online + LAN, roguelike, 3D, first-person
- Keyword: remake, role playing, 3D, content commercial, first-person, multiplayer co-op + online + LAN, roguelike
- Code repository: https://github.com/TurningWheel/Barony.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: http://fph.altervista.org/prog/bastet.html
- Inspiration: Tetris
- State: beta, inactive since 2018
- Keyword: puzzle, open content, skill
- Keyword: puzzle, content open, skill
- Code repository: https://github.com/fph/bastet.git
- Code language: C++
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20120213105444/http://btrgame.com/, https://sourceforge.net/projects/battery/
- State: mature, inactive since 2009
- Download: https://sourceforge.net/projects/battery/files/battery/
- Keyword: arcade, side-scrolling, flight
- Keyword: arcade, flight, side-scrolling
- Code repository: https://github.com/GaidamakUA/BatteryReborn.git (new approach)
- Code language: Java
- Code license: EPL-2.0 (new approach), Custom (old see _README.txt)

View File

@ -4,7 +4,7 @@
- State: mature, inactive since 2009
- Download: https://sourceforge.net/projects/btanks/files/
- Platform: Windows, Linux, macOS
- Keyword: action, arcade, content commercial, 2D, tank
- Keyword: action, arcade, 2D, content commercial, tank
- Code repository: https://github.com/whoozle/btanks.git, https://svn.code.sf.net/p/btanks/code (svn)
- Code language: C++
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: https://web.archive.org/web/20190813223336/http://www.hectigo.net/games/beatharvester/
- State: beta, inactive since 2009
- Keyword: action, 2D, open content, shooter
- Keyword: action, 2D, content open, shooter
- Code repository: @see-home
- Code language: Python
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: mature
- Download: @see-home (and https://web.archive.org/web/*/https://sourceforge.net/projects/berusky/files/*)
- Platform: Windows, Linux
- Keyword: action, logic, open content
- Keyword: action, content open, logic
- Code repository: https://github.com/stransky/berusky.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -2,7 +2,7 @@
- Home: https://www.anakreon.cz/berusky2.html, https://web.archive.org/web/20150103190301/https://sourceforge.net/projects/berusky2/
- State: beta
- Keyword: action, logic, open content
- Keyword: action, content open, logic
- Code repository: https://github.com/stransky/berusky2.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: https://aos.party/jenkins/job/BetterSpades/
- Inspiration: Ace of Spades
- State: beta
- Keyword: cards, remake, multiplayer online, open content
- Keyword: cards, remake, content open, multiplayer online
- Code repository: https://github.com/xtreme8000/BetterSpades.git
- Code language: C
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2010
- Download: https://sourceforge.net/projects/hcsoftware/files/Between/
- Platform: Linux
- Keyword: puzzle, multiplayer, open content
- Keyword: puzzle, content open, multiplayer
- Code repository: @see-download
- Code language: PHP, C++
- Code license: ? (really PD)

View File

@ -3,7 +3,7 @@
- Home: http://bote2.square7.ch/en/wiki/Main_Page
- Inspiration: Master of Orion 2, Star Trek: Birth of the Federation
- State: mature, inactive since 2016
- Keyword: strategy, turn-based, 4X, space
- Keyword: strategy, 4X, space, turn-based
- Code repository: https://github.com/bote-team/bote.git
- Code language: C++
- Code license: Custom (private use allowed)

View File

@ -4,7 +4,7 @@
- State: mature
- Download: http://bitfighter.org/downloads/
- Platform: Windows, Linux, macOS
- Keyword: action, open content, space
- Keyword: action, content open, space
- Code repository: https://github.com/bitfighter/bitfighter.git
- Code language: C, C++
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://github.com/VenKamikaze/
- Inspiration: Bug Bomber
- State: beta, inactive since 2017
- Keyword: strategy, clone, multiplayer co-op, open content
- Keyword: strategy, clone, content open, multiplayer co-op
- Code repository: https://github.com/VenKamikaze/BitRiot.git
- Code language: C++
- Code license: Apache-2.0

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20150412072649/http://home.gna.org/blackshadeselite/, https://web.archive.org/web/20150412083319/https://gna.org/projects/blackshadeselite
- Inspiration: Black Shades
- State: beta, inactive since 2007
- Keyword: simulation, first-person, open content, shooter
- Keyword: simulation, content open, first-person, shooter
- Code repository: @not-available
- Code language: ?
- Code license: ? (GPL-2.0)

View File

@ -5,7 +5,7 @@
- State: beta, inactive since 2012
- Download: https://sourceforge.net/projects/blacknova/files
- Platform: Web
- Keyword: strategy, space, multiplayer online
- Keyword: strategy, multiplayer online, space
- Code repository: https://gitlab.com/osgames/blacknova.git (backup of svn), https://svn.code.sf.net/p/blacknova/code (svn)
- Code language: PHP, JavaScript
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: mature
- Download: https://www.blackvoxel.com/view.php?node=1541
- Platform: Windows, Linux
- Keyword: simulation, open content, sandbox, voxel, 3D
- Keyword: simulation, 3D, content open, sandbox, voxel
- Code repository: https://github.com/Blackvoxel/Blackvoxel.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -3,11 +3,11 @@
- Home: https://www.doomworld.com/vb/freedoom/70732-blasphemer-discussion/, https://code.google.com/archive/p/blasphemer/
- Media: https://www.indiedb.com/games/blasphemer
- State: mature, inactive since 2017
- Keyword: action, first-person, open content, shooter
- Keyword: action, content open, first-person, shooter
- Code repository: https://github.com/Blasphemer/blasphemer.git
- Code language: None (only assets)
- Code license: None (only assets)
- Code dependency: Heretic-based
- Code dependency: Heretic
- Assets license: 3-clause BSD
- Developer: G. Wessner, Jute Gyte

View File

@ -3,7 +3,7 @@
- Home: https://edu.kde.org/blinken/, https://github.com/KDE/blinken
- Inspiration: Simon Says
- State: mature
- Keyword: educational, memory, open content
- Keyword: educational, content open, memory
- Code repository: https://github.com/KDE/blinken.git
- Code language: C++
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://github.com/stephenjsweeney/blobwarsAttrition
- Inspiration: Blob Wars Attrition
- State: mature
- Keyword: platform, content commercial, content original required, 2D
- Keyword: platform, 2D, content commercial + original required
- Code repository: https://github.com/stephenjsweeney/blobwarsAttrition.git
- Code language: C, C++
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- Inspiration: X-Moto
- State: mature, inactive since 2006
- Download: https://web.archive.org/web/20091226074342/http://bloboats.blobtrox.net/download.php
- Keyword: action, open content, racing, side-scrolling
- Keyword: action, content open, racing, side-scrolling
- Code repository: https://salsa.debian.org/games-team/bloboats.git (see alsodownload)
- Code language: C++
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: mature
- Download: https://sourceforge.net/projects/blobwars/files/
- Platform: Windows
- Keyword: content commercial, arcade, platform, 2D
- Keyword: arcade, platform, 2D, content commercial
- Code repository: https://git.code.sf.net/p/blobwars/code, https://gitlab.com/osgames/blobwars.git @add, https://src.fedoraproject.org/rpms/blobwars.git @add, https://github.com/OSSGames/GAME-SDL-ACTION-Blobwars_Metal_Blob_Solid.git
- Code language: C++
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: beta, inactive since 2010
- Download: https://www.bomberclone.de/core.html
- Platform: Windows, Linux
- Keyword: arcade, open content, clone
- Keyword: arcade, clone, content open
- Code repository: @see-download
- Code language: C
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://gitlab.com/drummyfish/
- Inspiration: Atomic Bomberman
- State: mature
- Keyword: action, remake, open content
- Keyword: action, remake, content open
- Code repository: https://gitlab.com/drummyfish/Bombman.git
- Code language: Python
- Code license: CC0

View File

@ -4,7 +4,7 @@
- State: beta
- Download: https://download.tuxfamily.org/boohu/downloads/
- Platform: Web
- Keyword: role playing, open content, roguelike, turn-based
- Keyword: role playing, content open, roguelike, turn-based
- Code repository: https://git.tuxfamily.org/boohu/boohu.git, https://github.com/anaseto/boohu.git @add
- Code language: Go
- Code license: ISC

View File

@ -2,7 +2,7 @@
- Home: https://pyweek.org/e/bouncy/, https://packages.debian.org/sid/bouncy
- State: mature, inactive since 2007
- Keyword: arcade, for kids, open content
- Keyword: arcade, content open, for kids
- Code repository: @see-home
- Code language: Python
- Code license: GPL-2.0

View File

@ -2,7 +2,7 @@
- Home: https://box2d.org/
- State: mature
- Keyword: library, physics, 2D
- Keyword: library, 2D, physics
- Code repository: https://github.com/erincatto/Box2D.git
- Code language: C, C++, Objective-C
- Code license: zlib

View File

@ -3,7 +3,7 @@
- Home: https://github.com/marksteelz3/Atari-VR---Breakout
- Inspiration: Breakout
- State: beta, inactive since 2017
- Keyword: action, clone, 3D
- Keyword: action, 3D, clone
- Code repository: https://github.com/marksteelz3/Atari-VR---Breakout.git
- Code language: C#
- Code license: MIT

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2009
- Download: https://sourceforge.net/projects/brikx/files/
- Platform: Linux
- Keyword: puzzle, open content
- Keyword: puzzle, content open
- Code repository: @see-download
- Code language: C++
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- Play: http://bbingo.eu5.net/
- Download: https://sourceforge.net/projects/britbingo/files/
- Platform: Web
- Keyword: action, board, open content
- Keyword: action, board, content open
- Code repository: @see-download
- Code language: JavaScript
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: mature
- Play: @see-home
- Platform: Web
- Keyword: role playing, adventure, multiplayer online + massive
- Keyword: adventure, role playing, multiplayer online + massive
- Code repository: https://github.com/mozilla/BrowserQuest.git
- Code language: JavaScript
- Code license: MPL-2.0

View File

@ -1,7 +1,7 @@
# BStone
- Home: https://bibendovsky.github.io/bstone/
- Inspiration: Blake Stone: Planet Strike, Blake Stone: Aliens of Gold
- Inspiration: Blake Stone: Aliens of Gold, Blake Stone: Planet Strike
- State: mature
- Download: https://github.com/bibendovsky/bstone/releases
- Platform: Windows

View File

@ -2,7 +2,7 @@
- Home: https://fydo.net/projects/buggygame
- State: beta, inactive since 2007
- Keyword: action, open content, side-scrolling, space
- Keyword: action, content open, side-scrolling, space
- Code repository: @see-home
- Code language: Python
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: http://bygfoot.sourceforge.net/new/, https://sourceforge.net/projects/bygfoot
- State: beta
- Download: https://sourceforge.net/projects/bygfoot/files/
- Keyword: sports, strategy, soccer, simulation
- Keyword: simulation, sports, strategy, soccer
- Code repository: https://git.code.sf.net/p/bygfoot/git, https://svn.code.sf.net/p/bygfoot/code (svn)
- Code language: Java
- Code license: GPL-2.0

View File

@ -6,7 +6,7 @@
- State: mature
- Download: https://www.bzflag.org/downloads/
- Platform: Windows, Linux, macOS
- Keyword: action, clone, shooter, multiplayer, tank
- Keyword: action, clone, multiplayer, shooter, tank
- Code repository: https://github.com/BZFlag-Dev/bzflag.git, https://svn.code.sf.net/p/bzflag/code (svn)
- Code language: C++
- Code license: LGPL-2.1, MPL-2.0

View File

@ -10,4 +10,4 @@
## Building
- Build system: VisualStudio
- Build system: Visual Studio

View File

@ -4,7 +4,7 @@
- Inspiration: Cadaver
- State: beta, inactive since 2009
- Download: https://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip
- Keyword: action, remake, content commercial, content original required
- Keyword: action, remake, content commercial + original required
- Code repository: @see-download
- Code language: C++
- Code license: GPL-2.0

View File

@ -5,7 +5,7 @@
- State: beta
- Download: https://bitbucket.org/dalerank/caesaria/wiki/Releases
- Platform: Windows, Linux, macOS
- Keyword: remake, strategy, city, simulation
- Keyword: remake, simulation, strategy, city
- Code repository: https://bitbucket.org/dalerank/caesaria.git, https://github.com/dalerank/caesaria-game.git
- Code language: C++, JavaScript
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: https://github.com/spiderbit/canta, https://web.archive.org/web/20111016122324/http://www.canta-game.org/
- State: beta, inactive since 2011
- Platform: Windows, Linux
- Keyword: music, karaoke, open content
- Keyword: music, content open, karaoke
- Code repository: https://github.com/spiderbit/canta.git
- Code language: Python
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- State: mature, inactive since 2010
- Download: https://sourceforge.net/projects/caphgame/files/
- Platform: Windows, Linux
- Keyword: puzzle, simulation, open content, sandbox
- Keyword: puzzle, simulation, content open, sandbox
- Code repository: https://git.code.sf.net/p/caphgame/code
- Code language: C
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20190126033549/https://cardstories.org/
- State: beta, inactive since 2012
- Platform: Web
- Keyword: cards, puzzle, open content, multiplayer online
- Keyword: cards, puzzle, content open, multiplayer online
- Code repository: https://github.com/farsides/cardstories.git, https://gitorious.org/cardstories/cardstories.git (read-only)
- Code language: JavaScript, Python
- Code license: AGPL-3.0

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2003
- Download: https://sourceforge.net/projects/catmother/files/
- Platform: Windows
- Keyword: action, adventure, open content (?)
- Keyword: action, adventure, content open (?)
- Code repository: https://gitlab.com/osgames/catmother.git (import of svn), https://svn.code.sf.net/p/catmother/code (svn)
- Code language: C++
- Code license: 3-clause BSD, GPL-2.0 (not sure which of them actually)

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20120110101219/http://www.x86.no/cavezofphear/
- Inspiration: Boulder Dash, Digger
- State: beta, inactive since 2011
- Keyword: action, arcade, open content, text-based
- Keyword: action, arcade, content open, text-based
- Code repository: @see-home
- Code language: C
- Code license: GPL-3.0

View File

@ -2,7 +2,7 @@
- Home: http://benkibbey.wordpress.com/cboard/, https://gitlab.com/bjk/cboard/-/wikis/home
- State: beta, inactive since 2018
- Keyword: tool, chess, open content, text-based
- Keyword: tool, chess, content open, text-based
- Code repository: https://gitlab.com/bjk/cboard.git, https://repo.or.cz/w/cboard.git
- Code language: C
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- Inspiration: Sid Meier's Colonization
- State: beta
- Platform: Web
- Keyword: action, remake, strategy, content commercial, content original required
- Keyword: action, remake, strategy, content commercial + original required
- Code repository: https://github.com/institution/cc94.git
- Code language: C++, Python
- Code license: AGPL-3.0

View File

@ -4,7 +4,7 @@
- Inspiration: Chromium B.S.U.
- State: beta, inactive since 2012
- Download: https://sourceforge.net/projects/celestron/files/
- Keyword: action, shooter, top-down, space
- Keyword: action, shooter, space, top-down
- Code repository: https://git.code.sf.net/p/celestron/code, https://gitlab.com/osgames/celestron.git @add
- Code language: Python
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- Inspiration: Xonotic
- State: mature
- Download: https://sourceforge.net/projects/chaosesqueanthology/files/
- Keyword: strategy, first-person, open content, shooter
- Keyword: strategy, content open, first-person, shooter
- Code repository: @see-download
- Code language: ?
- Code license: ? (GPL did not download the iso)

View File

@ -3,7 +3,7 @@
- Home: http://yanngranjon.com/static/games/chess3D/
- State: mature, inactive since 2016
- Platform: Web
- Keyword: board, strategy, chess, open content, 3D
- Keyword: board, strategy, 3D, chess, content open
- Code repository: https://github.com/FrenchYann/Chess3D.git
- Code language: JavaScript, Python
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: https://www2.childrenofur.com/
- State: beta
- Platform: Web
- Keyword: role playing, multiplayer massive + online, open content, requires server
- Keyword: role playing, content open, multiplayer massive + online, requires server
- Code repository: https://github.com/ChildrenOfUr/coUclient.git, https://github.com/ChildrenOfUr/coUserver.git (archived)
- Code language: Dart, JavaScript
- Code license: MIT

View File

@ -3,7 +3,7 @@
- Home: https://github.com/fabiensanglard/chocolate_duke3D
- Inspiration: Duke Nukem 3D
- State: beta, inactive since 2016
- Keyword: action, remake, content commercial, original content required
- Keyword: action, remake, content commercial + original required
- Code repository: https://github.com/fabiensanglard/chocolate_duke3D.git
- Code language: C
- Code license: GPL-2.0, Custom

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2018
- Download: https://sourceforge.net/projects/chrzaszcz/files/
- Platform: Linux
- Keyword: puzzle, open content
- Keyword: puzzle, content open
- Code repository: @see-download
- Code language: C++
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: beta
- Download: https://aeplay.org/citybound-livebuilds, https://github.com/citybound/citybound/releases
- Platform: Windows, Linux, macOS
- Keyword: simulation, clone, open content
- Keyword: simulation, clone, content open
- Code repository: https://github.com/citybound/citybound.git
- Code language: Rust, JavaScript
- Code license: AGPL-3.0

View File

@ -3,7 +3,7 @@
- Home: http://civil.sourceforge.net/, https://sourceforge.net/projects/civil/
- State: beta, inactive since 2003
- Download: http://civil.sourceforge.net/download.html
- Keyword: strategy, turn-based, multiplayer online
- Keyword: strategy, multiplayer online, turn-based
- Code repository: https://gitlab.com/osgames/civil.git (backup of cvs), http://civil.cvs.sourceforge.net/ (cvs)
- Code language: Python
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: http://sourceforge.net/projects/civitas/, https://www.conexum.com.br/cosmopolita/ (Portoguese)
- State: beta, inactive since 2017
- Download: https://sourceforge.net/projects/civitas/files/
- Keyword: simulation, city building, for kids, online
- Keyword: simulation, city, for kids, online
- Code repository: https://git.code.sf.net/p/civitas/code, https://svn.code.sf.net/p/civitas/svn (svn)
- Code language: Java, Blender Script
- Code license: GPL-2.0

View File

@ -3,7 +3,7 @@
- Home: https://web.archive.org/web/20181127195119/https://www.civone.org/
- Inspiration: Civilization
- State: beta
- Keyword: remake, strategy, content commercial, content original required
- Keyword: remake, strategy, content commercial + original required
- Code repository: https://github.com/SWY1985/CivOne.git
- Code language: C#
- Code license: CC0

View File

@ -6,7 +6,7 @@
- State: mature
- Download: https://github.com/MadDeCoDeR/Classic-RBDOOM-3-BFG/releases
- Platform: Windows, Linux
- Keyword: action, game engine, remake, content commercial, first-person, content original required, shooter
- Keyword: action, game engine, remake, content commercial + original required, first-person, shooter
- Code repository: https://github.com/MadDeCoDeR/Classic-RBDOOM-3-BFG.git
- Code language: C, C++
- Code license: GPL-3.0

View File

@ -5,7 +5,7 @@
- State: beta
- Download: https://rohit.itch.io/clonepoint
- Platform: Windows, Linux
- Keyword: action, clone, open content
- Keyword: action, clone, content open
- Code repository: https://github.com/rohit-n/Clonepoint.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -4,7 +4,7 @@
- Inspiration: Colobot
- State: mature
- Download: https://colobot.info/download-colobot-gold/
- Keyword: remake, strategy, open content, programming, real-time
- Keyword: remake, strategy, content open, programming, real-time
- Code repository: https://github.com/colobot/colobot.git
- Code language: C++
- Code license: GPL-3.0

View File

@ -3,7 +3,7 @@
- Home: http://rickadams.org/adventure/, https://github.com/brandon-rhodes/python-adventure
- Media: https://en.wikipedia.org/wiki/Colossal_Cave_Adventure
- State: mature
- Keyword: adventure, text
- Keyword: adventure, text-based
- Code repository: https://github.com/brandon-rhodes/python-adventure.git
- Code language: Python
- Code license: Apache-2.0

View File

@ -4,7 +4,7 @@
- State: beta, inactive since 2010
- Download: https://sourceforge.net/projects/csp/files/
- Platform: Windows
- Keyword: simulation, flight, action
- Keyword: action, simulation, flight
- Code repository: https://git.code.sf.net/p/csp/git, https://svn.code.sf.net/p/csp/svn (svn)
- Code language: C++
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- Inspiration: Theme Hospital
- State: mature
- Download: https://github.com/CorsixTH/CorsixTH/releases
- Keyword: remake, strategy, content commercial, content original required, simulation
- Keyword: remake, simulation, strategy, content commercial + original required
- Code repository: https://github.com/CorsixTH/CorsixTH.git
- Code language: Lua, C++
- Code license: MIT

View File

@ -3,7 +3,7 @@
- Home: https://github.com/yuv422/cosmo-engine
- Inspiration: Cosmo's Cosmic Adventure
- State: beta
- Keyword: platform, remake, content commercial, content original required
- Keyword: platform, remake, content commercial + original required
- Code repository: https://github.com/yuv422/cosmo-engine.git
- Code language: C
- Code license: GPL-2.0

View File

@ -4,7 +4,7 @@
- State: mature
- Download: https://github.com/fastrgv/CoTerminalApps/releases
- Platform: Windows, Linux, macOS
- Keyword: puzzle, open content, text-based
- Keyword: puzzle, content open, text-based
- Code repository: @see-download
- Code language: Ada
- Code license: GPL-3.0

Some files were not shown because too many files have changed in this diff Show More