diff --git a/README.md b/README.md index eaf68e70..1cf5fe9e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/code/backlog.txt b/code/backlog.txt index 54e3328b..c68675d9 100644 --- a/code/backlog.txt +++ b/code/backlog.txt @@ -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 diff --git a/code/maintenance_entries.py b/code/maintenance_entries.py index 945a63e1..42f2af68 100644 --- a/code/maintenance_entries.py +++ b/code/maintenance_entries.py @@ -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') diff --git a/code/utils/osg.py b/code/utils/osg.py index 9b5776e5..50f734a8 100644 --- a/code/utils/osg.py +++ b/code/utils/osg.py @@ -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 diff --git a/entries/0_ad.md b/entries/0_ad.md index 6535dcb4..99325ca0 100644 --- a/entries/0_ad.md +++ b/entries/0_ad.md @@ -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 diff --git a/entries/3dc.md b/entries/3dc.md index 42d5d504..79713a42 100644 --- a/entries/3dc.md +++ b/entries/3dc.md @@ -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 diff --git a/entries/3dcity.md b/entries/3dcity.md index 61b205a6..ec2c035f 100644 --- a/entries/3dcity.md +++ b/entries/3dcity.md @@ -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) diff --git a/entries/4d-tris.md b/entries/4d-tris.md index baacfea6..59b2a20c 100644 --- a/entries/4d-tris.md +++ b/entries/4d-tris.md @@ -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 diff --git a/entries/4d_maze_game.md b/entries/4d_maze_game.md index 971c065a..02417bca 100644 --- a/entries/4d_maze_game.md +++ b/entries/4d_maze_game.md @@ -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 diff --git a/entries/54321.md b/entries/54321.md index bae7ac5a..6d39ce2c 100644 --- a/entries/54321.md +++ b/entries/54321.md @@ -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) diff --git a/entries/a7xpg.md b/entries/a7xpg.md index 0f2140d6..a22d77e9 100644 --- a/entries/a7xpg.md +++ b/entries/a7xpg.md @@ -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 diff --git a/entries/a_planets_revenge.md b/entries/a_planets_revenge.md index 3065a5ec..73f4dd40 100644 --- a/entries/a_planets_revenge.md +++ b/entries/a_planets_revenge.md @@ -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 diff --git a/entries/abuse.md b/entries/abuse.md index eb546d6f..fa54fb49 100644 --- a/entries/abuse.md +++ b/entries/abuse.md @@ -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) diff --git a/entries/achtung_die_kurve.md b/entries/achtung_die_kurve.md index ccc9d990..b5b902fe 100644 --- a/entries/achtung_die_kurve.md +++ b/entries/achtung_die_kurve.md @@ -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 diff --git a/entries/acm.md b/entries/acm.md index 5b1047bb..76d6b8d5 100644 --- a/entries/acm.md +++ b/entries/acm.md @@ -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 diff --git a/entries/adanaxis.md b/entries/adanaxis.md index 6f1865a7..46c0bd6a 100644 --- a/entries/adanaxis.md +++ b/entries/adanaxis.md @@ -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) diff --git a/entries/airstrike.md b/entries/airstrike.md index 6eb97937..72b209d7 100644 --- a/entries/airstrike.md +++ b/entries/airstrike.md @@ -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 diff --git a/entries/aisleriot.md b/entries/aisleriot.md index e04c3754..94cfe37c 100644 --- a/entries/aisleriot.md +++ b/entries/aisleriot.md @@ -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 diff --git a/entries/aleph_one.md b/entries/aleph_one.md index fd20e75e..350b9389 100644 --- a/entries/aleph_one.md +++ b/entries/aleph_one.md @@ -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 diff --git a/entries/alex_the_allegator_4.md b/entries/alex_the_allegator_4.md index 4365565a..0d54c559 100644 --- a/entries/alex_the_allegator_4.md +++ b/entries/alex_the_allegator_4.md @@ -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 diff --git a/entries/alien_assault_traders.md b/entries/alien_assault_traders.md index a36091b1..5734acab 100644 --- a/entries/alien_assault_traders.md +++ b/entries/alien_assault_traders.md @@ -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 diff --git a/entries/allure_of_the_stars.md b/entries/allure_of_the_stars.md index 9d912321..779d61c6 100644 --- a/entries/allure_of_the_stars.md +++ b/entries/allure_of_the_stars.md @@ -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 diff --git a/entries/amphetamine.md b/entries/amphetamine.md index 4692cf96..c6a6399f 100644 --- a/entries/amphetamine.md +++ b/entries/amphetamine.md @@ -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 diff --git a/entries/anagramarama.md b/entries/anagramarama.md index 9183724c..b3e677ea 100644 --- a/entries/anagramarama.md +++ b/entries/anagramarama.md @@ -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 diff --git a/entries/andors_trail.md b/entries/andors_trail.md index aa2ad240..59988189 100644 --- a/entries/andors_trail.md +++ b/entries/andors_trail.md @@ -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 diff --git a/entries/annex_conquer_the_world.md b/entries/annex_conquer_the_world.md index b1999f28..f3ac4a89 100644 --- a/entries/annex_conquer_the_world.md +++ b/entries/annex_conquer_the_world.md @@ -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 diff --git a/entries/apricots.md b/entries/apricots.md index 0c4acca7..20392609 100644 --- a/entries/apricots.md +++ b/entries/apricots.md @@ -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 diff --git a/entries/arcane-engine.md b/entries/arcane-engine.md index 620d56f4..333bc91e 100644 --- a/entries/arcane-engine.md +++ b/entries/arcane-engine.md @@ -13,4 +13,4 @@ Real-time, physically based renderer. ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/ardentryst.md b/entries/ardentryst.md index fbb10f79..70b6a75c 100644 --- a/entries/ardentryst.md +++ b/entries/ardentryst.md @@ -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 diff --git a/entries/argentum_online.md b/entries/argentum_online.md index 0501ebfe..cb0d0cac 100644 --- a/entries/argentum_online.md +++ b/entries/argentum_online.md @@ -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 diff --git a/entries/arx_libertatis.md b/entries/arx_libertatis.md index 78766a27..8df94224 100644 --- a/entries/arx_libertatis.md +++ b/entries/arx_libertatis.md @@ -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 diff --git a/entries/astromenace.md b/entries/astromenace.md index 04a249a8..dfdcb9f7 100644 --- a/entries/astromenace.md +++ b/entries/astromenace.md @@ -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 diff --git a/entries/atomic_tanks.md b/entries/atomic_tanks.md index 6e490e31..14c321d6 100644 --- a/entries/atomic_tanks.md +++ b/entries/atomic_tanks.md @@ -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 diff --git a/entries/atrinik.md b/entries/atrinik.md index 3ab82d48..f3e45e22 100644 --- a/entries/atrinik.md +++ b/entries/atrinik.md @@ -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 diff --git a/entries/augustus.md b/entries/augustus.md index 3c07ec4d..befee2c4 100644 --- a/entries/augustus.md +++ b/entries/augustus.md @@ -16,4 +16,4 @@ ## Building - Build system: CMake -- Build instruction: https://github.com/Keriew/augustus/blob/master/doc/BUILDING.md \ No newline at end of file +- Build instruction: https://github.com/Keriew/augustus/blob/master/doc/BUILDING.md diff --git a/entries/aussenposten.md b/entries/aussenposten.md index 2b736349..50e45635 100644 --- a/entries/aussenposten.md +++ b/entries/aussenposten.md @@ -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 diff --git a/entries/azimuth.md b/entries/azimuth.md index c5ba7212..f32db9c4 100644 --- a/entries/azimuth.md +++ b/entries/azimuth.md @@ -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 diff --git a/entries/balder2d.md b/entries/balder2d.md index 9cb92313..e7ce7b47 100644 --- a/entries/balder2d.md +++ b/entries/balder2d.md @@ -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 diff --git a/entries/ball_and_paddle.md b/entries/ball_and_paddle.md index 5796cd67..b97ad809 100644 --- a/entries/ball_and_paddle.md +++ b/entries/ball_and_paddle.md @@ -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 diff --git a/entries/barony.md b/entries/barony.md index 8291dcae..178aa53c 100644 --- a/entries/barony.md +++ b/entries/barony.md @@ -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 diff --git a/entries/bastet.md b/entries/bastet.md index 3c952f79..24979b83 100644 --- a/entries/bastet.md +++ b/entries/bastet.md @@ -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 diff --git a/entries/battery.md b/entries/battery.md index 5ef67d8f..89b928e8 100644 --- a/entries/battery.md +++ b/entries/battery.md @@ -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) diff --git a/entries/battle_tanks.md b/entries/battle_tanks.md index 0420d48c..af04f3f8 100644 --- a/entries/battle_tanks.md +++ b/entries/battle_tanks.md @@ -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 diff --git a/entries/beat_harvester.md b/entries/beat_harvester.md index 196cc905..176bb463 100644 --- a/entries/beat_harvester.md +++ b/entries/beat_harvester.md @@ -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 diff --git a/entries/berusky.md b/entries/berusky.md index bbdc602f..01e4aadc 100644 --- a/entries/berusky.md +++ b/entries/berusky.md @@ -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 diff --git a/entries/berusky_ii.md b/entries/berusky_ii.md index a33f05fd..8311c396 100644 --- a/entries/berusky_ii.md +++ b/entries/berusky_ii.md @@ -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 diff --git a/entries/betterspades.md b/entries/betterspades.md index ee66f4a3..7bc528cc 100644 --- a/entries/betterspades.md +++ b/entries/betterspades.md @@ -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 diff --git a/entries/between.md b/entries/between.md index e61f8b5e..939342ed 100644 --- a/entries/between.md +++ b/entries/between.md @@ -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) diff --git a/entries/birth_of_the_empires.md b/entries/birth_of_the_empires.md index d15046b7..325a0f6f 100644 --- a/entries/birth_of_the_empires.md +++ b/entries/birth_of_the_empires.md @@ -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) diff --git a/entries/bitfighter.md b/entries/bitfighter.md index 008ec101..e9a4a605 100644 --- a/entries/bitfighter.md +++ b/entries/bitfighter.md @@ -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 diff --git a/entries/bitriot.md b/entries/bitriot.md index 646569cf..48639f5c 100644 --- a/entries/bitriot.md +++ b/entries/bitriot.md @@ -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 diff --git a/entries/black_shades_elite.md b/entries/black_shades_elite.md index a6347dc7..036d7556 100644 --- a/entries/black_shades_elite.md +++ b/entries/black_shades_elite.md @@ -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) diff --git a/entries/blacknova_traders.md b/entries/blacknova_traders.md index 9d9ea370..6fa7fc75 100644 --- a/entries/blacknova_traders.md +++ b/entries/blacknova_traders.md @@ -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 diff --git a/entries/blackvoxel.md b/entries/blackvoxel.md index 67a42286..6e6987b9 100644 --- a/entries/blackvoxel.md +++ b/entries/blackvoxel.md @@ -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 diff --git a/entries/blasphemer.md b/entries/blasphemer.md index 4b9e195c..9b5bd1e4 100644 --- a/entries/blasphemer.md +++ b/entries/blasphemer.md @@ -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 diff --git a/entries/blinken.md b/entries/blinken.md index 95873a9c..4401428c 100644 --- a/entries/blinken.md +++ b/entries/blinken.md @@ -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 diff --git a/entries/blob_wars_attrition.md b/entries/blob_wars_attrition.md index d2049012..e09595df 100644 --- a/entries/blob_wars_attrition.md +++ b/entries/blob_wars_attrition.md @@ -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 diff --git a/entries/bloboats.md b/entries/bloboats.md index 5f465c04..3753b474 100644 --- a/entries/bloboats.md +++ b/entries/bloboats.md @@ -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 diff --git a/entries/blobwars_metal_blob_solid.md b/entries/blobwars_metal_blob_solid.md index 8a4f4b1b..1d473ec2 100644 --- a/entries/blobwars_metal_blob_solid.md +++ b/entries/blobwars_metal_blob_solid.md @@ -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 diff --git a/entries/bomberclone.md b/entries/bomberclone.md index 629e68ed..12c159b9 100644 --- a/entries/bomberclone.md +++ b/entries/bomberclone.md @@ -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 diff --git a/entries/bombman.md b/entries/bombman.md index 5ccc1144..a1303ff4 100644 --- a/entries/bombman.md +++ b/entries/bombman.md @@ -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 diff --git a/entries/boohu.md b/entries/boohu.md index 4b4fa042..26307126 100644 --- a/entries/boohu.md +++ b/entries/boohu.md @@ -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 diff --git a/entries/bouncy_the_hungry_rabbit.md b/entries/bouncy_the_hungry_rabbit.md index 8a039584..f07e2454 100644 --- a/entries/bouncy_the_hungry_rabbit.md +++ b/entries/bouncy_the_hungry_rabbit.md @@ -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 diff --git a/entries/box2d.md b/entries/box2d.md index c04ad0d0..dd2de50f 100644 --- a/entries/box2d.md +++ b/entries/box2d.md @@ -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 diff --git a/entries/breakout-vr.md b/entries/breakout-vr.md index 1e710f2a..d064438a 100644 --- a/entries/breakout-vr.md +++ b/entries/breakout-vr.md @@ -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 diff --git a/entries/brikx.md b/entries/brikx.md index ccc1dec2..a1eb11d5 100644 --- a/entries/brikx.md +++ b/entries/brikx.md @@ -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 diff --git a/entries/british_bingo.md b/entries/british_bingo.md index 56c23e37..6739258b 100644 --- a/entries/british_bingo.md +++ b/entries/british_bingo.md @@ -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 diff --git a/entries/browserquest.md b/entries/browserquest.md index dbf98f18..689fe48d 100644 --- a/entries/browserquest.md +++ b/entries/browserquest.md @@ -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 diff --git a/entries/bstone.md b/entries/bstone.md index 538b2efe..edb784b1 100644 --- a/entries/bstone.md +++ b/entries/bstone.md @@ -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 diff --git a/entries/buggygame.md b/entries/buggygame.md index 05c8fa96..4163f9e8 100644 --- a/entries/buggygame.md +++ b/entries/buggygame.md @@ -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 diff --git a/entries/bygfoot.md b/entries/bygfoot.md index 1bcff00d..f173fc52 100644 --- a/entries/bygfoot.md +++ b/entries/bygfoot.md @@ -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 diff --git a/entries/bzflag.md b/entries/bzflag.md index 0d67006a..422e32ae 100644 --- a/entries/bzflag.md +++ b/entries/bzflag.md @@ -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 diff --git a/entries/c3de.md b/entries/c3de.md index 4c69b3f1..70a70eb6 100644 --- a/entries/c3de.md +++ b/entries/c3de.md @@ -10,4 +10,4 @@ ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/cadaver.md b/entries/cadaver.md index 3a64277a..53b317aa 100644 --- a/entries/cadaver.md +++ b/entries/cadaver.md @@ -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 diff --git a/entries/caesaria.md b/entries/caesaria.md index dcb5fd0a..6f21cfe3 100644 --- a/entries/caesaria.md +++ b/entries/caesaria.md @@ -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 diff --git a/entries/canta.md b/entries/canta.md index 9a5f2b90..ff032d8a 100644 --- a/entries/canta.md +++ b/entries/canta.md @@ -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 diff --git a/entries/caph.md b/entries/caph.md index 055e9f17..a47ef671 100644 --- a/entries/caph.md +++ b/entries/caph.md @@ -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 diff --git a/entries/card_stories.md b/entries/card_stories.md index b20f1e4b..c0beaa96 100644 --- a/entries/card_stories.md +++ b/entries/card_stories.md @@ -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 diff --git a/entries/cat_mother_dead_justice.md b/entries/cat_mother_dead_justice.md index 12f164f4..643c1292 100644 --- a/entries/cat_mother_dead_justice.md +++ b/entries/cat_mother_dead_justice.md @@ -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) diff --git a/entries/cavez_of_phear.md b/entries/cavez_of_phear.md index 5d16ef95..4d842ba5 100644 --- a/entries/cavez_of_phear.md +++ b/entries/cavez_of_phear.md @@ -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 diff --git a/entries/cboard.md b/entries/cboard.md index a9d83a2b..2762a6fa 100644 --- a/entries/cboard.md +++ b/entries/cboard.md @@ -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 diff --git a/entries/cc94.md b/entries/cc94.md index 35428e2a..e61873c8 100644 --- a/entries/cc94.md +++ b/entries/cc94.md @@ -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 diff --git a/entries/celestron.md b/entries/celestron.md index e7f8d817..088a7d38 100644 --- a/entries/celestron.md +++ b/entries/celestron.md @@ -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 diff --git a/entries/chaos_esque_anthology.md b/entries/chaos_esque_anthology.md index 6732788e..6c6c0422 100644 --- a/entries/chaos_esque_anthology.md +++ b/entries/chaos_esque_anthology.md @@ -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) diff --git a/entries/chess3d.md b/entries/chess3d.md index 685fc25f..0e6d23a8 100644 --- a/entries/chess3d.md +++ b/entries/chess3d.md @@ -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 diff --git a/entries/children_of_ur.md b/entries/children_of_ur.md index 69568063..2829d80b 100644 --- a/entries/children_of_ur.md +++ b/entries/children_of_ur.md @@ -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 diff --git a/entries/chocolate_duke3d.md b/entries/chocolate_duke3d.md index b457bd48..c49d241c 100644 --- a/entries/chocolate_duke3d.md +++ b/entries/chocolate_duke3d.md @@ -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 diff --git a/entries/chrzaszcz.md b/entries/chrzaszcz.md index 2e9ad633..50198c99 100644 --- a/entries/chrzaszcz.md +++ b/entries/chrzaszcz.md @@ -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 diff --git a/entries/citybound.md b/entries/citybound.md index dd1126d1..80495429 100644 --- a/entries/citybound.md +++ b/entries/citybound.md @@ -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 diff --git a/entries/civil.md b/entries/civil.md index 6c2a4201..ab308881 100644 --- a/entries/civil.md +++ b/entries/civil.md @@ -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 diff --git a/entries/civitas.md b/entries/civitas.md index a9829e94..a6e2c3fa 100644 --- a/entries/civitas.md +++ b/entries/civitas.md @@ -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 diff --git a/entries/civone.md b/entries/civone.md index d9216d7e..36e81a41 100644 --- a/entries/civone.md +++ b/entries/civone.md @@ -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 diff --git a/entries/classic_rbdoom_3_bfg.md b/entries/classic_rbdoom_3_bfg.md index cbbe672b..75724e85 100644 --- a/entries/classic_rbdoom_3_bfg.md +++ b/entries/classic_rbdoom_3_bfg.md @@ -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 diff --git a/entries/clonepoint.md b/entries/clonepoint.md index 75c425e6..610acea8 100644 --- a/entries/clonepoint.md +++ b/entries/clonepoint.md @@ -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 diff --git a/entries/colobot_gold_edition.md b/entries/colobot_gold_edition.md index c918a900..8a52020d 100644 --- a/entries/colobot_gold_edition.md +++ b/entries/colobot_gold_edition.md @@ -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 diff --git a/entries/colossal_cave_adventure.md b/entries/colossal_cave_adventure.md index df1f16b1..0bcea86c 100644 --- a/entries/colossal_cave_adventure.md +++ b/entries/colossal_cave_adventure.md @@ -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 diff --git a/entries/combat_simulator_project.md b/entries/combat_simulator_project.md index 6115f25f..feaf21c0 100644 --- a/entries/combat_simulator_project.md +++ b/entries/combat_simulator_project.md @@ -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 diff --git a/entries/corsixth.md b/entries/corsixth.md index fbae2066..eaa28e29 100644 --- a/entries/corsixth.md +++ b/entries/corsixth.md @@ -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 diff --git a/entries/cosmo-engine.md b/entries/cosmo-engine.md index 62ed9758..4ded7453 100644 --- a/entries/cosmo-engine.md +++ b/entries/cosmo-engine.md @@ -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 diff --git a/entries/coterminalapps.md b/entries/coterminalapps.md index 30d182c1..2d1c15fd 100644 --- a/entries/coterminalapps.md +++ b/entries/coterminalapps.md @@ -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 diff --git a/entries/craft.md b/entries/craft.md index 009485ad..04caac57 100644 --- a/entries/craft.md +++ b/entries/craft.md @@ -4,7 +4,7 @@ - Inspiration: Minecraft - State: mature, inactive since 2017 - Platform: Windows, Linux, macOS -- Keyword: puzzle, clone, multiplayer online, open content, sandbox, voxel +- Keyword: puzzle, clone, content open, multiplayer online, sandbox, voxel - Code repository: https://github.com/fogleman/Craft.git - Code language: C, Python - Code license: MIT diff --git a/entries/creep_smash.md b/entries/creep_smash.md index 96d40c0a..ec37edbb 100644 --- a/entries/creep_smash.md +++ b/entries/creep_smash.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20120414174119/http://towerdefence.hft-stuttgart.de/, https://sourceforge.net/projects/creepsmash/ - State: beta, inactive since 2011 -- Keyword: action, multiplayer online, open content, tower defense +- Keyword: action, content open, multiplayer online, tower defense - Code repository: https://github.com/khakulov/CreepTD.git, https://svn.code.sf.net/p/creepsmash/code (svn) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/critterding.md b/entries/critterding.md index 76ff7ba1..5ca1d3b1 100644 --- a/entries/critterding.md +++ b/entries/critterding.md @@ -3,7 +3,7 @@ - Home: http://critterding.sourceforge.net/, https://sourceforge.net/projects/critterding/ - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/critterding/files/critterding/ -- Keyword: simulation, strategy, evolution, open content +- Keyword: simulation, strategy, content open, evolution - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/crossuo.md b/entries/crossuo.md index 48cbf996..d1cc4c89 100644 --- a/entries/crossuo.md +++ b/entries/crossuo.md @@ -4,7 +4,7 @@ - Inspiration: Ultima Online - State: mature - Platform: Windows, Linux, macOS -- Keyword: role playing, clone, content open, multiplayer online, client, fork OrionUO +- Keyword: role playing, client, clone, content open, fork OrionUO, multiplayer online - Code repository: https://github.com/crossuo/crossuo.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/crosswords.md b/entries/crosswords.md index f86ed5fa..b8f0ed82 100644 --- a/entries/crosswords.md +++ b/entries/crosswords.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/xwords/files/ - Platform: Android -- Keyword: board, role playing, open content +- Keyword: board, role playing, content open - Code repository: https://git.code.sf.net/p/xwords/git, https://svn.code.sf.net/p/xwords/svn (svn) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/cultivation.md b/entries/cultivation.md index 71d92702..bd3e306f 100644 --- a/entries/cultivation.md +++ b/entries/cultivation.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2010 - Download: https://sourceforge.net/projects/cultivation/files/cultivation/ - Platform: Windows, Linux, macOS -- Keyword: simulation, evolution, open content, 2D +- Keyword: simulation, 2D, content open, evolution - Code repository: @see-download - Code language: C++ - Code license: Public domain (http://cultivation.sourceforge.net/) diff --git a/entries/cuyo.md b/entries/cuyo.md index eb8455b5..86c22aa2 100644 --- a/entries/cuyo.md +++ b/entries/cuyo.md @@ -1,7 +1,7 @@ # Cuyo - Home: https://www.karimmi.de/cuyo/, https://web.archive.org/web/20120817234225/http://www.mathematik.uni-tuebingen.de/~peter/cuyo/, https://packages.debian.org/sid/cuyo -- Inspiration: Tetris, Puyo Puyo +- Inspiration: Puyo Puyo, Tetris - State: mature, inactive since 2014 - Download: http://download.savannah.gnu.org/releases/cuyo/ - Platform: Linux diff --git a/entries/cytopia.md b/entries/cytopia.md index 35d74c31..979bc2e2 100644 --- a/entries/cytopia.md +++ b/entries/cytopia.md @@ -4,7 +4,7 @@ - Inspiration: SimCity - State: beta - Download: https://cytopia.net/download/ -- Keyword: simulation, clone, open content +- Keyword: simulation, clone, content open - Code repository: https://github.com/CytopiaTeam/Cytopia.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/dark_destiny.md b/entries/dark_destiny.md index 9bb4fa33..8818f2a5 100644 --- a/entries/dark_destiny.md +++ b/entries/dark_destiny.md @@ -3,7 +3,7 @@ - Home: http://www.darkdestiny.at/, http://www.thedarkdestiny.at/portalApp/#/, https://sourceforge.net/projects/darkdestiny/ - State: mature, inactive since 2016 - Platform: Web -- Keyword: strategy, multiplayer online + massive, turn-based, space +- Keyword: strategy, multiplayer online + massive, space, turn-based - Code repository: https://gitlab.com/osgames/darkdestiny.git (import of svn), https://svn.code.sf.net/p/darkdestiny/code (svn) - Code language: Java, JavaScript - Code license: ? (GPL version?) diff --git a/entries/darkcity.md b/entries/darkcity.md index cfd90646..a050df27 100644 --- a/entries/darkcity.md +++ b/entries/darkcity.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2012 - Download: https://sourceforge.net/projects/darkcity/files/ - Platform: Web -- Keyword: role playing, text-based, multiplayer online + massive +- Keyword: role playing, multiplayer online + massive, text-based - Code repository: https://gitlab.com/osgames/darkcity.git (backup of svn), https://svn.code.sf.net/p/darkcity/code (svn) - Code language: PHP - Code license: GPL-3.0 diff --git a/entries/dave_gnukem.md b/entries/dave_gnukem.md index 277a1144..39703d52 100644 --- a/entries/dave_gnukem.md +++ b/entries/dave_gnukem.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/gnukem/files/gnukem/ - Platform: Windows, Linux, macOS -- Keyword: platform, 2D, clone, open content, shooter, scrolling +- Keyword: platform, 2D, clone, content open, scrolling, shooter - Code repository: https://github.com/davidjoffe/dave_gnukem.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/deer_portal.md b/entries/deer_portal.md index a30e041d..365e668f 100644 --- a/entries/deer_portal.md +++ b/entries/deer_portal.md @@ -3,7 +3,7 @@ - Home: https://devcarpet.net/deerportal/ - State: beta - Platform: Windows, Linux -- Keyword: adventure, board, cards, open content +- Keyword: adventure, board, cards, content open - Code repository: https://github.com/deerportal/deerportal.git - Code language: C++ - Code license: zlib diff --git a/entries/destination_sol.md b/entries/destination_sol.md index 9e5c6fc0..06935056 100644 --- a/entries/destination_sol.md +++ b/entries/destination_sol.md @@ -4,7 +4,7 @@ - State: mature - Download: http://destinationsol.org/download - Platform: Windows, Linux, macOS, Android -- Keyword: arcade, 2D, open content (?), shooter, space +- Keyword: arcade, 2D, content open (?), shooter, space - Code repository: https://github.com/MovingBlocks/DestinationSol.git, https://svn.code.sf.net/p/destinationsol/code (svn) - Code language: Java - Code license: Apache-2.0 diff --git a/entries/devilution.md b/entries/devilution.md index 580a8e15..fbdccbe6 100644 --- a/entries/devilution.md +++ b/entries/devilution.md @@ -3,7 +3,7 @@ - Home: https://github.com/diasurgical/devilution - Inspiration: Diablo - State: mature -- Keyword: action, remake, content commercial, engine recreation, content original required (Diablo 1) +- Keyword: action, remake, "content commercial + original required (Diablo 1)", engine recreation - Code repository: https://github.com/diasurgical/devilution.git - Code language: C, C++ - Code license: Unlicense diff --git a/entries/devilutionx.md b/entries/devilutionx.md index cda64b3d..2d9aac7f 100644 --- a/entries/devilutionx.md +++ b/entries/devilutionx.md @@ -3,7 +3,7 @@ - Home: https://github.com/diasurgical/devilutionX, https://web.archive.org/web/20130602191141/http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/ - Inspiration: Diablo - State: mature -- Keyword: action, remake, content commercial, engine recreation, content original required (Diablo 1) +- Keyword: action, remake, "content commercial + original required (Diablo 1)", engine recreation - Code repository: https://github.com/diasurgical/devilutionX.git - Code language: C, C++ - Code license: Unlicense diff --git a/entries/dgengine.md b/entries/dgengine.md index 14b56a12..06fc8eea 100644 --- a/entries/dgengine.md +++ b/entries/dgengine.md @@ -3,7 +3,7 @@ - Home: https://github.com/dgengin/DGEngine/wiki - Inspiration: Diablo - State: beta -- Keyword: action, remake, content commercial, content original required +- Keyword: action, remake, content commercial + original required - Code repository: https://github.com/dgengin/DGEngine.git - Code language: C++ - Code license: zlib, GPL-3.0 (depending on the use mode) diff --git a/entries/dhewm3.md b/entries/dhewm3.md index 1c198eca..76784a66 100644 --- a/entries/dhewm3.md +++ b/entries/dhewm3.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/dhewm/dhewm3/releases - Platform: Windows, Linux, macOS -- Keyword: action, remake, content commercial, content original required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: https://github.com/dhewm/dhewm3.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/directx12gameengine.md b/entries/directx12gameengine.md index 8377f9f1..198ebe37 100644 --- a/entries/directx12gameengine.md +++ b/entries/directx12gameengine.md @@ -12,4 +12,4 @@ Game engine utilizing the Direct3D 12 API. ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/divercity.md b/entries/divercity.md index 0f14f43a..df97ab23 100644 --- a/entries/divercity.md +++ b/entries/divercity.md @@ -3,7 +3,7 @@ - Home: https://team--rocket.github.io/divercity/ - Inspiration: Micropolis, SimCity - State: beta, inactive since 2015 -- Keyword: simulation, clone, open content +- Keyword: simulation, clone, content open - Code repository: https://github.com/Team--Rocket/divercity.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/do_it_yourself_doom_with_sdl.md b/entries/do_it_yourself_doom_with_sdl.md index 9ef35f93..f8fb4bee 100644 --- a/entries/do_it_yourself_doom_with_sdl.md +++ b/entries/do_it_yourself_doom_with_sdl.md @@ -4,7 +4,7 @@ - Inspiration: Doom - State: beta - Platform: Windows -- Keyword: game engine, clone, remake +- Keyword: game engine, remake, clone - Code repository: https://github.com/amroibrahim/DIYDoom.git - Code language: C++ - Code license: MIT @@ -12,4 +12,4 @@ ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/domino_on_acid.md b/entries/domino_on_acid.md index e0fd1b28..f75d111a 100644 --- a/entries/domino_on_acid.md +++ b/entries/domino_on_acid.md @@ -2,7 +2,7 @@ - Home: http://winterdrache.de/freeware/domino/index.html, https://sourceforge.net/projects/nddomino - State: mature, inactive since 2009 -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://git.code.sf.net/p/nddomino/code - Code language: Java - Code license: GPL-2.0 diff --git a/entries/doom-ios.md b/entries/doom-ios.md index 0b934efa..472de0b3 100644 --- a/entries/doom-ios.md +++ b/entries/doom-ios.md @@ -4,7 +4,7 @@ - Inspiration: Doom, Doom II, Heretic, Hexen - State: mature, inactive since 2012 - Platform: iOS -- Keyword: action, remake, content commercial, content original required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: https://github.com/id-Software/DOOM-iOS.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/doom64ex.md b/entries/doom64ex.md index a650c614..3f4a024f 100644 --- a/entries/doom64ex.md +++ b/entries/doom64ex.md @@ -5,7 +5,7 @@ - State: mature - Download: https://doom64ex.wordpress.com/downloads/ - Platform: Windows, macOS -- Keyword: action, remake, content commercial, original content required +- Keyword: action, remake, content commercial + original required - Code repository: https://github.com/svkaiser/Doom64EX.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/doom_legacy.md b/entries/doom_legacy.md index 64e7dbb9..99f3d9f1 100644 --- a/entries/doom_legacy.md +++ b/entries/doom_legacy.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/doomlegacy/files/ - Platform: Windows, Linux, macOS -- Keyword: action, remake, content commercial, original content required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: https://git.code.sf.net/p/doomlegacy/legacy2, https://git.code.sf.net/p/doomlegacy/masterserver @add, https://svn.code.sf.net/p/doomlegacy/svn (svn), http://doomlegacy.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/doom_retro.md b/entries/doom_retro.md index df763941..6da73e5d 100644 --- a/entries/doom_retro.md +++ b/entries/doom_retro.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/bradharding/doomretro/releases - Platform: Windows -- Keyword: action, remake, content commercial, content original required +- Keyword: action, remake, content commercial + original required - Code repository: https://github.com/bradharding/doomretro.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/doomsday_engine.md b/entries/doomsday_engine.md index 9329011e..e11a7ad8 100644 --- a/entries/doomsday_engine.md +++ b/entries/doomsday_engine.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/deng/files/ - Platform: Windows, Linux, macOS -- Keyword: action, remake, content commercial, content original required +- Keyword: action, remake, content commercial + original required - Code repository: https://github.com/skyjake/Doomsday-Engine.git, https://git.code.sf.net/p/deng/code @add - Code language: C, C++ - Code license: GPL-2.0 (see source files), GPL-3.0, LGPL-3.0 (core) diff --git a/entries/dreamchess.md b/entries/dreamchess.md index a7e80a68..583b221c 100644 --- a/entries/dreamchess.md +++ b/entries/dreamchess.md @@ -4,7 +4,7 @@ - State: beta - Download: https://www.dreamchess.org/downloads, https://sourceforge.net/projects/dreamchess/files/ - Platform: Windows, Linux, macOS -- Keyword: board, strategy, chess, 3D +- Keyword: board, strategy, 3D, chess - Code repository: https://github.com/dreamchess/dreamchess.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/dreerally.md b/entries/dreerally.md index 2cb8717d..4404c331 100644 --- a/entries/dreerally.md +++ b/entries/dreerally.md @@ -3,7 +3,7 @@ - Home: https://dreerally.com/ - Inspiration: Death Rally - State: beta -- Keyword: game engine, remake, content commercial, content original required +- Keyword: game engine, remake, content commercial + original required - Code repository: https://github.com/enriquesomolinos/DreeRally.git - Code language: C, C++ - Code license: Custom (may only be used with a copy of Death Rally) diff --git a/entries/duck_marines.md b/entries/duck_marines.md index 5d406eda..444f06c3 100644 --- a/entries/duck_marines.md +++ b/entries/duck_marines.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: https://github.com/SimonLarsen/duckmarines/releases - Platform: Windows, Linux (using LÖVE), macOS -- Keyword: puzzle, remake, open content (but NC and ND) +- Keyword: puzzle, remake, content open (but NC and ND) - Code repository: https://github.com/SimonLarsen/duckmarines.git - Code language: Lua - Code license: zlib diff --git a/entries/duke3d.md b/entries/duke3d.md index ec063ea8..8b56e8b9 100644 --- a/entries/duke3d.md +++ b/entries/duke3d.md @@ -3,7 +3,7 @@ - Home: http://icculus.org/duke3d/ - Inspiration: Duke Nukem 3D - State: beta, inactive since 2009 -- Keyword: action, remake, content commercial, multiplayer LAN, content original required, shooter +- Keyword: action, remake, content commercial + original required, multiplayer LAN, shooter - Code repository: http://svn.icculus.org/duke3d/ (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/duke3dw32.md b/entries/duke3dw32.md index 89c1efaa..bc781454 100644 --- a/entries/duke3dw32.md +++ b/entries/duke3dw32.md @@ -4,7 +4,7 @@ - Inspiration: Duke Nukem 3D - State: beta, inactive since 2008 - Download: http://www.rancidmeat.com/projects/duke3d_w32/duke3d_w32_b20_src.zip -- Keyword: action, remake, content commercial, multiplayer LAN, content original required, shooter +- Keyword: action, remake, content commercial + original required, multiplayer LAN, shooter - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/dukegdx.md b/entries/dukegdx.md index 607c88b3..e749ed46 100644 --- a/entries/dukegdx.md +++ b/entries/dukegdx.md @@ -3,7 +3,7 @@ - Home: http://m210.duke4.net/ - Inspiration: Duke Nukem 3D - State: beta -- Keyword: remake, action shooter, content commercial, multiplayer online + LAN + Co-op +- Keyword: action, remake, content commercial, multiplayer online + LAN + Co-op, shooter - Code repository: https://gitlab.com/m210/DukeGDX.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/dungeon_hero.md b/entries/dungeon_hero.md index dd82a1c9..aeb78d0e 100644 --- a/entries/dungeon_hero.md +++ b/entries/dungeon_hero.md @@ -4,7 +4,7 @@ - State: mature - Download: https://play.google.com/store/apps/details?id=com.glevel.dungeonhero - Platform: Android -- Keyword: role playing, fantasy setting +- Keyword: role playing, setting fantasy - Code repository: https://github.com/guillaume-gouchon/dungeonhero.git - Code language: Java - Code license: MIT diff --git a/entries/dungeon_quest.md b/entries/dungeon_quest.md index 321be522..20eb08be 100644 --- a/entries/dungeon_quest.md +++ b/entries/dungeon_quest.md @@ -3,7 +3,7 @@ - Home: https://github.com/guillaume-gouchon/dungeonquest - State: mature - Platform: Android -- Keyword: role playing, turn-based, dungeon crawling +- Keyword: role playing, dungeon, turn-based - Code repository: https://github.com/guillaume-gouchon/dungeonquest.git - Code language: Java - Code license: MIT diff --git a/entries/dust_racing_2d.md b/entries/dust_racing_2d.md index 45e89351..35e5b14b 100644 --- a/entries/dust_racing_2d.md +++ b/entries/dust_racing_2d.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/juzzlin/DustRacing2D/releases - Platform: Windows, Linux -- Keyword: remake, sports, 2D, multiplayer split-screen, open content, racing +- Keyword: remake, sports, 2D, content open, multiplayer split-screen, racing - Code repository: https://github.com/juzzlin/DustRacing2D.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/dwarfcorp.md b/entries/dwarfcorp.md index 386bfe8d..98ea8d0c 100644 --- a/entries/dwarfcorp.md +++ b/entries/dwarfcorp.md @@ -15,4 +15,4 @@ Manage a corporate colony of dwarves. ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/dynadungeons.md b/entries/dynadungeons.md index 36cbe94f..ee470182 100644 --- a/entries/dynadungeons.md +++ b/entries/dynadungeons.md @@ -3,7 +3,7 @@ - Home: https://github.com/akien-mga/dynadungeons - Inspiration: Bomberman - State: beta, inactive since 2018 -- Keyword: action, clone, multiplayer competitive, open content +- Keyword: action, clone, content open, multiplayer competitive - Code repository: https://github.com/akien-mga/dynadungeons.git - Code language: GDScript - Code license: GPL-3.0 diff --git a/entries/eduke32.md b/entries/eduke32.md index 57d04447..89ad1650 100644 --- a/entries/eduke32.md +++ b/entries/eduke32.md @@ -4,7 +4,7 @@ - Inspiration: Duke Nukem 3D - State: mature - Download: https://dukeworld.com/eduke32/synthesis/latest/?s=d&o=d&dir=eduke32/synthesis/latest -- Keyword: action, remake, content commercial, original content required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: @see-download - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/egoboo.md b/entries/egoboo.md index 5f5b745e..cab92897 100644 --- a/entries/egoboo.md +++ b/entries/egoboo.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Egoboo_(video_game) - State: mature, inactive since 2015 - Download: http://egoboo.sourceforge.net/download.html -- Keyword: role playing, 3D, dungeon crawling, roguelike +- Keyword: role playing, 3D, dungeon, roguelike - Code repository: https://github.com/egoboo/egoboo.git, https://svn.code.sf.net/p/egoboo/svn (svn) - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/emilia_pinball.md b/entries/emilia_pinball.md index 8ba4da6a..d0390670 100644 --- a/entries/emilia_pinball.md +++ b/entries/emilia_pinball.md @@ -4,7 +4,7 @@ - State: beta - Download: https://sourceforge.net/projects/pinball/files/ - Platform: Windows, Linux, macOS -- Keyword: sports, simulation +- Keyword: simulation, sports - Code repository: https://git.code.sf.net/p/pinball/code, https://git.code.sf.net/p/pinball/pinedit @add, https://github.com/sergiomb2/pinball.git @add, http://pinball.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/endless_sky.md b/entries/endless_sky.md index ad889c41..212c956a 100644 --- a/entries/endless_sky.md +++ b/entries/endless_sky.md @@ -5,7 +5,7 @@ - Inspiration: Escape Velocity - State: mature - Download: https://github.com/endless-sky/endless-sky/releases -- Keyword: role playing, clone, popular, 2D, space, trading +- Keyword: role playing, 2D, clone, popular, space, trading - Code repository: https://github.com/endless-sky/endless-sky.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/enduro_tribute.md b/entries/enduro_tribute.md index 31e80fd7..d45899b7 100644 --- a/entries/enduro_tribute.md +++ b/entries/enduro_tribute.md @@ -5,7 +5,7 @@ - State: mature - Play: https://rafaelcastrocouto.github.io/enduro/ - Platform: Web -- Keyword: remake, open content +- Keyword: remake, content open - Code repository: https://github.com/rafaelcastrocouto/enduro.git - Code language: JavaScript - Code license: MIT diff --git a/entries/entt_pacman.md b/entries/entt_pacman.md index 2c20b8c3..2c8adc73 100644 --- a/entries/entt_pacman.md +++ b/entries/entt_pacman.md @@ -3,7 +3,7 @@ - Home: https://github.com/Kerndog73/EnTT-Pacman - Inspiration: Pac-Man - State: mature -- Keyword: puzzle, remake, clone, open content +- Keyword: puzzle, remake, clone, content open - Code repository: https://github.com/Kerndog73/EnTT-Pacman.git - Code language: C, C++ - Code license: MIT diff --git a/entries/epoh.md b/entries/epoh.md index c0b4db49..721075ee 100644 --- a/entries/epoh.md +++ b/entries/epoh.md @@ -3,7 +3,7 @@ - Home: https://github.com/tautvilas/epoh - State: beta - Platform: Web -- Keyword: strategy, turn-based, multiplayer online +- Keyword: strategy, multiplayer online, turn-based - Code repository: https://github.com/tautvilas/epoh.git - Code language: JavaScript - Code license: MIT diff --git a/entries/eternalwinterwars.md b/entries/eternalwinterwars.md index cfa9908f..1cb3e701 100644 --- a/entries/eternalwinterwars.md +++ b/entries/eternalwinterwars.md @@ -3,7 +3,7 @@ - Home: https://github.com/hinogi/eternalwinterwars - State: beta, inactive since 2014 - Platform: Android -- Keyword: strategy, turn-based, medieval +- Keyword: strategy, setting medieval, turn-based - Code repository: https://github.com/hinogi/eternalwinterwars.git - Code language: Java - Code license: MIT diff --git a/entries/excellent_bifurcation.md b/entries/excellent_bifurcation.md index 794399b7..84f499c0 100644 --- a/entries/excellent_bifurcation.md +++ b/entries/excellent_bifurcation.md @@ -2,7 +2,7 @@ - Home: https://archive.org/details/ExcellentFix, https://packages.debian.org/source/excellent-bifurcation - State: mature, inactive since 2007 -- Keyword: action, open content, shooter, shooter, top-down +- Keyword: action, content open, shooter, top-down - Code repository: @see-debian - Code language: C - Code license: GPL-2.0 diff --git a/entries/extreme_tux_racer.md b/entries/extreme_tux_racer.md index b882057b..bdc4c30e 100644 --- a/entries/extreme_tux_racer.md +++ b/entries/extreme_tux_racer.md @@ -4,7 +4,7 @@ - Inspiration: TuxRacer - State: beta, inactive since 2018 - Download: https://sourceforge.net/projects/extremetuxracer/files/ -- Keyword: platform, 3D, open content, racing +- Keyword: platform, 3D, content open, racing - Code repository: https://svn.code.sf.net/p/extremetuxracer/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/falcons_eye.md b/entries/falcons_eye.md index b2ba992f..c663b4fe 100644 --- a/entries/falcons_eye.md +++ b/entries/falcons_eye.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2004 - Download: https://sourceforge.net/projects/falconseye/files/ - Platform: Windows, Linux -- Keyword: simulation, roguelike, remake, isometric +- Keyword: remake, simulation, isometric, roguelike - Code repository: @see-download - Code language: C - Code license: NetHack General Public License diff --git a/entries/falltergeist.md b/entries/falltergeist.md index f64aa119..71494db3 100644 --- a/entries/falltergeist.md +++ b/entries/falltergeist.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/falltergeist/falltergeist/releases - Platform: Windows, Linux -- Keyword: game engine, remake, role playing, content commercial, content original required +- Keyword: game engine, remake, role playing, content commercial + original required - Code repository: https://github.com/falltergeist/falltergeist.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/faur.md b/entries/faur.md index 2f7643e8..80c7ae60 100644 --- a/entries/faur.md +++ b/entries/faur.md @@ -3,7 +3,7 @@ - Home: https://github.com/alxm/faur - State: beta - Platform: Windows, Linux, Web -- Keyword: puzzle, game framework, 2D +- Keyword: puzzle, 2D, game framework - Code repository: https://github.com/alxm/faur.git - Code language: C, Python, C++ - Code license: GPL-3.0 diff --git a/entries/flf.md b/entries/flf.md index 43cd3ff1..89621244 100644 --- a/entries/flf.md +++ b/entries/flf.md @@ -4,7 +4,7 @@ - Inspiration: Little Fighter 2 - State: mature - Platform: Web -- Keyword: framework, clone, content commercial, content original required +- Keyword: framework, clone, content commercial + original required - Code repository: https://github.com/Project-F/F.LF.git - Code language: JavaScript - Code license: CC-BY-NC-SA-3.0 (http://project-f.github.io/license.html) diff --git a/entries/floppy_birb.md b/entries/floppy_birb.md index d7662e84..88800133 100644 --- a/entries/floppy_birb.md +++ b/entries/floppy_birb.md @@ -4,7 +4,7 @@ - Inspiration: Flappy Bird - State: mature - Platform: Web -- Keyword: framework, clone, open content +- Keyword: framework, clone, content open - Code repository: https://github.com/oojmed/floppy-birb.git - Code language: JavaScript - Code license: MIT diff --git a/entries/fltk_recycling_game.md b/entries/fltk_recycling_game.md index bd89e26b..5e00b181 100644 --- a/entries/fltk_recycling_game.md +++ b/entries/fltk_recycling_game.md @@ -3,7 +3,7 @@ - Home: http://www.thregr.org/~wavexx/software/regame/ - State: mature, inactive since 2014 - Platform: Windows, Linux, macOS -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://gitlab.com/wavexx/regame.git - Code language: C++ - Code license: LGPL-2.1 diff --git a/entries/fltrator.md b/entries/fltrator.md index f3fc1f71..04c84acb 100644 --- a/entries/fltrator.md +++ b/entries/fltrator.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/fltrator/files/ - Platform: Windows -- Keyword: arcade, open content, side-scrolling, space +- Keyword: arcade, content open, side-scrolling, space - Code repository: http://hg.code.sf.net/p/fltrator/code (hg) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/fluid_table_tennis.md b/entries/fluid_table_tennis.md index f2a4bc8d..807e45fd 100644 --- a/entries/fluid_table_tennis.md +++ b/entries/fluid_table_tennis.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2013 - Play: http://anirudhjoshi.github.io/fluid_table_tennis/ - Platform: Web -- Keyword: arcade, remake, multiplayer competitive + local, open content +- Keyword: arcade, remake, content open, multiplayer competitive + local - Code repository: https://github.com/anirudhjoshi/fluid_table_tennis.git - Code language: JavaScript - Code license: MIT diff --git a/entries/flukz.md b/entries/flukz.md index 46106af9..56682035 100644 --- a/entries/flukz.md +++ b/entries/flukz.md @@ -3,7 +3,7 @@ - Home: http://flukz.org/wiki/doku.php?id=flukz - State: beta, inactive since 2014 - Platform: Windows, Linux -- Keyword: action, open content, shooter, top-down +- Keyword: action, content open, shooter, top-down - Code repository: @see-home - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/foobillard++.md b/entries/foobillard++.md index 5bb64499..d42403a0 100644 --- a/entries/foobillard++.md +++ b/entries/foobillard++.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2012 - Download: http://foobillardplus.sourceforge.net/download.html, https://sourceforge.net/projects/foobillardplus/files/ - Platform: Windows, Linux -- Keyword: simulation, 3D, sports +- Keyword: simulation, sports, 3D - Code repository: https://svn.code.sf.net/p/foobillardplus/code (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/foobillard.md b/entries/foobillard.md index 4c315831..e933d5d2 100644 --- a/entries/foobillard.md +++ b/entries/foobillard.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2010 - Download: https://sourceforge.net/projects/foobillard/files/ - Platform: Windows, Linux -- Keyword: simulation, 3D, sports +- Keyword: simulation, sports, 3D - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/forsaken.md b/entries/forsaken.md index c5060bd8..76573e3d 100644 --- a/entries/forsaken.md +++ b/entries/forsaken.md @@ -5,7 +5,7 @@ - Inspiration: Forsaken - State: beta, inactive since 2013 - Download: https://github.com/ForsakenX/forsaken/wiki/Download-and-installation -- Keyword: remake, first-person, content original required (ongoing work to replace it), shooter +- Keyword: remake, content original required (ongoing work to replace it), first-person, shooter - Code repository: https://github.com/ForsakenX/forsaken.git - Code language: C, C++ - Code license: GPL-2.0, Proprietary (those parts of the original code base that still remain, see https://github.com/ForsakenX/forsaken/blob/master/LICENSE) diff --git a/entries/fquake3.md b/entries/fquake3.md index b1688c9d..4253071c 100644 --- a/entries/fquake3.md +++ b/entries/fquake3.md @@ -3,7 +3,7 @@ - Home: https://github.com/TIHan/FQuake3 - Inspiration: Quake 3 - State: beta, inactive since 2014 -- Keyword: action, remake, content commercial, content original required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: https://github.com/TIHan/FQuake3.git - Code language: F# - Code license: GPL-2.0 diff --git a/entries/frabs.md b/entries/frabs.md index d1c8a002..75bd7132 100644 --- a/entries/frabs.md +++ b/entries/frabs.md @@ -3,7 +3,7 @@ - Home: http://web.archive.org/web/20061207140937/http://www.cs.uidaho.edu:80/~cass0664/fRaBs/index.html, http://abuse.zoy.org/ - Inspiration: Abuse - State: mature, inactive since 2016 -- Keyword: action, action-adventure, open content, side-scrolling +- Keyword: action, adventure, content open, side-scrolling - Code repository: https://github.com/antrad/Abuse_1996.git (SDL2), https://github.com/Xenoveritas/abuse.git @add, https://github.com/videogamepreservation/abuse.git @add - Code language: Lisp - Code license: Public domain diff --git a/entries/free_tennis.md b/entries/free_tennis.md index cfd1ead7..10938535 100644 --- a/entries/free_tennis.md +++ b/entries/free_tennis.md @@ -3,7 +3,7 @@ - Home: http://freetennis.sourceforge.net/, https://sourceforge.net/projects/freetennis/, https://packages.debian.org/search?keywords=freetennis - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/freetennis/files/ -- Keyword: sports, strategy, open content +- Keyword: sports, strategy, content open - Code repository: https://gitlab.com/osgames/freetennis.git (import of cvs), http://freetennis.cvs.sourceforge.net (cvs) - Code language: OCaml - Code license: GPL-2.0 diff --git a/entries/freeablo.md b/entries/freeablo.md index 61727f39..e7674900 100644 --- a/entries/freeablo.md +++ b/entries/freeablo.md @@ -4,7 +4,7 @@ - Inspiration: Diablo - State: beta - Platform: Windows, Linux, macOS -- Keyword: action, remake, role playing, content commercial, content original required +- Keyword: action, remake, role playing, content commercial + original required - Code repository: https://github.com/wheybags/freeablo.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/freeaoe.md b/entries/freeaoe.md index db917f65..bc75b148 100644 --- a/entries/freeaoe.md +++ b/entries/freeaoe.md @@ -3,7 +3,7 @@ - Home: https://github.com/sandsmark/freeaoe - Inspiration: Age of Empires II - State: beta -- Keyword: remake, strategy, content commercial, real-time, content original required +- Keyword: remake, strategy, content commercial + original required, real-time - Code repository: https://github.com/sandsmark/freeaoe.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/freecol.md b/entries/freecol.md index 98e3f4a4..523e49db 100644 --- a/entries/freecol.md +++ b/entries/freecol.md @@ -2,7 +2,7 @@ - Home: http://www.freecol.org/, https://sourceforge.net/projects/freecol/ - Media: https://en.wikipedia.org/wiki/FreeCol -- Inspiration: Sid Meier's Colonization, Civilization +- Inspiration: Civilization, Sid Meier's Colonization - State: mature - Download: http://www.freecol.org/download.html - Keyword: remake, strategy, multiplayer, turn-based diff --git a/entries/freecs.md b/entries/freecs.md index b3736ff4..2e100fbe 100644 --- a/entries/freecs.md +++ b/entries/freecs.md @@ -4,7 +4,7 @@ - Inspiration: Counter-Strike - State: mature - Download: https://sourceforge.net/projects/freecs-1-5/files/ -- Keyword: action, remake, first-person, multiplayer online + LAN, content original required, shooter +- Keyword: action, remake, content original required, first-person, multiplayer online + LAN, shooter - Code repository: https://git.code.sf.net/p/freecs-1-5/code - Code language: QuakeC - Code license: GPL-2.0 diff --git a/entries/freedoom.md b/entries/freedoom.md index 110e9216..3b5c5141 100644 --- a/entries/freedoom.md +++ b/entries/freedoom.md @@ -6,7 +6,7 @@ - State: beta - Download: https://freedoom.github.io/download.html - Platform: Windows, Linux, macOS (all that are supported by the Doom) -- Keyword: action, remake, engine required, open content +- Keyword: action, remake, content open, engine required - Code repository: https://github.com/freedoom/freedoom.git - Code language: None (only content) - Code license: None (only content) diff --git a/entries/freegish.md b/entries/freegish.md index 57836ec5..68e8c3b1 100644 --- a/entries/freegish.md +++ b/entries/freegish.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Gish_(video_game) - Inspiration: Gish - State: beta, inactive since 2017 -- Keyword: arcade, platform, remake, open content, side-scrolling +- Keyword: arcade, platform, remake, content open, side-scrolling - Code repository: https://github.com/freegish/freegish.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/freenukum.md b/entries/freenukum.md index 04446c44..81af3428 100644 --- a/entries/freenukum.md +++ b/entries/freenukum.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2009 - Download: https://launchpad.net/freenukum/+download - Platform: Linux -- Keyword: remake, content commercial (?), content original required, shooter +- Keyword: remake, "content commercial (?) + original required", shooter - Code repository: https://gitlab.com/osgames/freenukum.git (conversion of bzr), https://code.launchpad.net/~silwol/freenukum (bzr) - Code language: C - Code license: GPL-3.0 diff --git a/entries/freeorion.md b/entries/freeorion.md index 77a2ee04..8ad49548 100644 --- a/entries/freeorion.md +++ b/entries/freeorion.md @@ -5,7 +5,7 @@ - Inspiration: Master of Orion, Master of Orion 2 - State: beta - Download: https://www.freeorion.org/index.php/Download -- Keyword: remake, strategy, open content, turn-based, space +- Keyword: remake, strategy, content open, space, turn-based - Code repository: https://github.com/freeorion/freeorion.git, https://svn.code.sf.net/p/freeorion/code (svn) - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/freesims.md b/entries/freesims.md index 7f5afe66..1c60b1e0 100644 --- a/entries/freesims.md +++ b/entries/freesims.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/francot514/FreeSims/releases - Platform: Windows -- Keyword: remake, simulation, content commercial, content original required +- Keyword: remake, simulation, content commercial + original required - Code repository: https://github.com/francot514/FreeSims.git - Code language: C# - Code license: MPL-2.0 diff --git a/entries/freya_game_engine.md b/entries/freya_game_engine.md index 2123fbd1..c563f8c8 100644 --- a/entries/freya_game_engine.md +++ b/entries/freya_game_engine.md @@ -3,7 +3,7 @@ - Home: http://freya-engine.sourceforge.net/, https://sourceforge.net/projects/freya-engine/ - State: beta, inactive since 2002 - Download: https://sourceforge.net/projects/freya-engine/files/ -- Keyword: game engine, strategy, turn-based, multiplayer online +- Keyword: game engine, strategy, multiplayer online, turn-based - Code repository: https://gitlab.com/osgames/freya-engine.git (conversion of cvs), http://freya-engine.cvs.sourceforge.net (cvs) - Code language: Java - Code license: LGPL-2.1 diff --git a/entries/galaxyng.md b/entries/galaxyng.md index cced8cc8..84232ba1 100644 --- a/entries/galaxyng.md +++ b/entries/galaxyng.md @@ -3,7 +3,7 @@ - Home: http://galaxyng.sourceforge.net/, https://sourceforge.net/projects/galaxyng/ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/galaxyng/files -- Keyword: strategy, turn-based, multiplayer email +- Keyword: strategy, multiplayer email, turn-based - Code repository: https://gitlab.com/osgames/galaxyng.git (backup of cvs), http://galaxyng.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/gang_garrison_2.md b/entries/gang_garrison_2.md index 0fd7dd2e..56deff8b 100644 --- a/entries/gang_garrison_2.md +++ b/entries/gang_garrison_2.md @@ -6,7 +6,7 @@ - State: mature - Download: https://www.ganggarrison.com/downloads.html - Platform: Windows -- Keyword: action, clone, demake, multiplayer online, open content +- Keyword: action, clone, content open, demake, multiplayer online - Code repository: https://github.com/Gang-Garrison-2/Gang-Garrison-2.git - Code language: Game Maker Script - Code license: MPL-2.0 diff --git a/entries/garith.md b/entries/garith.md index 774fe12d..bff17bc6 100644 --- a/entries/garith.md +++ b/entries/garith.md @@ -1,9 +1,9 @@ # Garith - Home: https://www.thregr.org/~wavexx/software/garith/ -- Inspiration: TuxMath, arithmetic +- Inspiration: arithmetic, TuxMath - State: mature, inactive since 2013 -- Keyword: educational, open content, for kids +- Keyword: educational, content open, for kids - Code repository: https://gitlab.com/wavexx/garith.git, https://github.com/wavexx/garith.git (archived) - Code language: C++ - Code license: LGPL-2.1 diff --git a/entries/gcompris.md b/entries/gcompris.md index 69087885..8c75bfd1 100644 --- a/entries/gcompris.md +++ b/entries/gcompris.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://gcompris.net/downloads-en.html - Platform: Windows, Linux, macOS, Android -- Keyword: educational, open content (?), for kids +- Keyword: educational, content open (?), for kids - Code repository: https://gitlab.gnome.org/GNOME/gcompris.git - Code language: C, Python - Code license: GPL-3.0 diff --git a/entries/gearhead_2.md b/entries/gearhead_2.md index e9f6b1b8..ecbc760e 100644 --- a/entries/gearhead_2.md +++ b/entries/gearhead_2.md @@ -4,7 +4,7 @@ - Inspiration: GearHead - State: beta - Download: https://www.gearheadrpg.com/downloads/, https://sourceforge.net/projects/gearhead2/files/gearhead2/ -- Keyword: role playing, open content, roguelike +- Keyword: role playing, content open, roguelike - Code repository: https://github.com/jwvhewitt/gearhead-2.git, https://svn.code.sf.net/p/gearhead2/code (svn) - Code language: Pascal - Code license: LGPL-2.0 diff --git a/entries/gemrb.md b/entries/gemrb.md index 2dcebf1a..24f413c4 100644 --- a/entries/gemrb.md +++ b/entries/gemrb.md @@ -4,7 +4,7 @@ - Inspiration: Baldur's Gate, Icewind Dale, Planescape: Torment - State: mature - Download: https://gemrb.org/Install.html -- Keyword: framework, remake, 2D, isometric, content original required +- Keyword: framework, remake, 2D, content original required, isometric - Code repository: https://github.com/gemrb/gemrb.git - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/gigalomania.md b/entries/gigalomania.md index dde538e7..112a559f 100644 --- a/entries/gigalomania.md +++ b/entries/gigalomania.md @@ -3,7 +3,7 @@ - Home: http://gigalomania.sourceforge.net/, https://sourceforge.net/projects/gigalomania/ - Inspiration: Mega-Lo-Mania - State: mature -- Keyword: remake, strategy, real-time, 2D +- Keyword: remake, strategy, 2D, real-time - Code repository: https://git.code.sf.net/p/gigalomania/code - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/gilbert_and_the_doors.md b/entries/gilbert_and_the_doors.md index 117a1fa6..4d99ec30 100644 --- a/entries/gilbert_and_the_doors.md +++ b/entries/gilbert_and_the_doors.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2018 - Download: https://drive.google.com/uc?export=download&id=1Qgt-LmuLVRQ5yQ7Lg0QB61eZDoMnLTOl - Platform: Windows, Linux -- Keyword: strategy, open content, side-scrolling, platform, 2D +- Keyword: platform, strategy, 2D, content open, side-scrolling - Code repository: https://gitlab.com/osgames/gilbert-and-the-doors.git (import of sources) - Code language: C - Code license: GPL-3.0 diff --git a/entries/gjid.md b/entries/gjid.md index 47b24682..36475490 100644 --- a/entries/gjid.md +++ b/entries/gjid.md @@ -3,7 +3,7 @@ - Home: https://github.com/msharov/gjid - Inspiration: Sokoban - State: mature, inactive since 2017 -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://github.com/msharov/gjid.git - Code language: C++ - Code license: MIT diff --git a/entries/gl-117.md b/entries/gl-117.md index 781393f2..982773ce 100644 --- a/entries/gl-117.md +++ b/entries/gl-117.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/gl-117/files/gl-117/ - Platform: Windows, Linux, macOS -- Keyword: action, simulation, flight, open content +- Keyword: action, simulation, content open, flight - Code repository: https://gitlab.com/osgames/gl-117.git (import of cvs), http://gl-117.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/glest.md b/entries/glest.md index e5b16832..95a9caae 100644 --- a/entries/glest.md +++ b/entries/glest.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Glest - State: mature, inactive since 2009 - Download: http://glest.org/en/downloads.php -- Keyword: strategy, real-time, 3D +- Keyword: strategy, 3D, real-time - Code repository: https://gitlab.com/osgames/glest.git (backup of svn), https://svn.code.sf.net/p/glest/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/glparchis.md b/entries/glparchis.md index d2647290..50cac0d3 100644 --- a/entries/glparchis.md +++ b/entries/glparchis.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/Turulomio/glparchis/releases, https://sourceforge.net/projects/glparchis/files/glparchis/ - Platform: Windows, Linux -- Keyword: board, strategy, open content +- Keyword: board, strategy, content open - Code repository: https://github.com/turulomio/glparchis.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/gnome_chess.md b/entries/gnome_chess.md index eb441c4c..802431bd 100644 --- a/entries/gnome_chess.md +++ b/entries/gnome_chess.md @@ -4,7 +4,7 @@ - State: mature - Download: https://flathub.org/apps/details/org.gnome.Chess - Platform: Linux -- Keyword: strategy, chess, open content, 2D +- Keyword: strategy, 2D, chess, content open - Code repository: https://gitlab.gnome.org/GNOME/gnome-chess.git - Code language: Vala - Code license: GPL-3.0 diff --git a/entries/gnu_chess.md b/entries/gnu_chess.md index 1359844f..5e3a68d1 100644 --- a/entries/gnu_chess.md +++ b/entries/gnu_chess.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: http://ftp.thunix.net/gnu-ftp/chess/ - Platform: Windows, Linux, macOS -- Keyword: game engine, strategy, chess, open content +- Keyword: game engine, strategy, chess, content open - Code repository: http://svn.savannah.gnu.org/svn/chess/ (svn), http://cvs.savannah.gnu.org:/sources/chess (cvs) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/gnu_freedink.md b/entries/gnu_freedink.md index ab96db19..64602b22 100644 --- a/entries/gnu_freedink.md +++ b/entries/gnu_freedink.md @@ -7,7 +7,7 @@ - Play: https://play.freedink.org/ - Download: https://www.gnu.org/software/freedink/get, http://ftp.gnu.org/gnu/freedink/ - Platform: Windows, Linux, macOS, Web -- Keyword: adventure, remake, role playing, 2D, open content (?), content original required (?), top-down +- Keyword: adventure, remake, role playing, 2D, "content open (?) + original required (?)", top-down - Code repository: https://git.savannah.gnu.org/git/freedink.git, https://git.savannah.gnu.org/git/freedink/dfarc.git @add, https://git.savannah.gnu.org/git/freedink/dink-data.git @add, https://git.savannah.gnu.org/git/freedink/freedink-data.git @add, http://cvs.savannah.gnu.org:/sources/freedink (cvs) - Code language: C - Code license: GPL-3.0 diff --git a/entries/go_ollie.md b/entries/go_ollie.md index 872fb2d1..63fed3bc 100644 --- a/entries/go_ollie.md +++ b/entries/go_ollie.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2011 - Download: https://web.archive.org/web/20111209123851/http://www.tweeler.com/GoOllie_13.sh - Platform: Windows, Linux -- Keyword: platform, open content +- Keyword: platform, content open - Code repository: @see-download - Code language: ? - Code license: GPL-3.0 diff --git a/entries/goblin_camp.md b/entries/goblin_camp.md index 9d3ed4a5..d2ec9d5d 100644 --- a/entries/goblin_camp.md +++ b/entries/goblin_camp.md @@ -3,7 +3,7 @@ - Home: http://www.goblincamp.com/, https://web.archive.org/web/20151106001905/https://bitbucket.org/genericcontainer/goblin-camp - Inspiration: Anno 1404, Dungeon Keeper, Dwarf Fortress - State: beta, inactive since 2012 -- Keyword: strategy, roguelike, city building +- Keyword: strategy, city, roguelike - Code repository: https://gitlab.com/osgames/goblin-camp.git, https://github.com/y2s82/goblin_camp.git @add - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/goldeneye_source.md b/entries/goldeneye_source.md index 340bef67..47d60000 100644 --- a/entries/goldeneye_source.md +++ b/entries/goldeneye_source.md @@ -3,7 +3,7 @@ - Home: http://geshl2.com/, https://www.moddb.com/mods/goldeneye-source - Inspiration: GoldenEye 007 - State: mature, inactive since 2018 -- Keyword: remake, first-person, content open, multiplayer competitive + online, shooter +- Keyword: remake, content open, first-person, multiplayer competitive + online, shooter - Code repository: https://github.com/goldeneye-source/ges-code.git - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/gorc.md b/entries/gorc.md index 47bdad86..39f0548d 100644 --- a/entries/gorc.md +++ b/entries/gorc.md @@ -3,7 +3,7 @@ - Home: https://github.com/jdmclark/ - Inspiration: Star Wars Jedi Knight: Dark Forces II - State: beta -- Keyword: remake, content commercial, first-person, content original required, shooter +- Keyword: remake, content commercial + original required, first-person, shooter - Code repository: https://github.com/jdmclark/gorc.git - Code language: C++ - Code license: Apache-2.0 diff --git a/entries/gorillas-rs.md b/entries/gorillas-rs.md index 595be3b0..ab74929a 100644 --- a/entries/gorillas-rs.md +++ b/entries/gorillas-rs.md @@ -3,7 +3,7 @@ - Home: https://nodef0.github.io/gorillas-rs/ - Inspiration: Gorillas - State: beta -- Keyword: remake, artillery, clone, multiplayer hotseat, open content +- Keyword: remake, artillery, clone, content open, multiplayer hotseat - Code repository: https://github.com/nodef0/gorillas-rs.git - Code language: Rust - Code license: MIT diff --git a/entries/gorogue.md b/entries/gorogue.md index 3adf884e..f2e85a92 100644 --- a/entries/gorogue.md +++ b/entries/gorogue.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/Chris3606/GoRogue/releases - Platform: Windows -- Keyword: library, tool, roguelike, 2D +- Keyword: library, tool, 2D, roguelike - Code repository: https://github.com/Chris3606/GoRogue.git - Code language: C# - Code license: MIT diff --git a/entries/gottet.md b/entries/gottet.md index b3edbe61..1c44c579 100644 --- a/entries/gottet.md +++ b/entries/gottet.md @@ -4,7 +4,7 @@ - Inspiration: Tetris - State: mature - Platform: Windows, Linux, macOS -- Keyword: skill, remake +- Keyword: remake, skill - Code repository: @see-home - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/granatier.md b/entries/granatier.md index 2b4a0dbb..452439b4 100644 --- a/entries/granatier.md +++ b/entries/granatier.md @@ -3,7 +3,7 @@ - Home: https://invent.kde.org/games/granatier - Inspiration: Bomberman - State: mature -- Keyword: action, clone, multiplayer competitive, open content +- Keyword: action, clone, content open, multiplayer competitive - Code repository: https://invent.kde.org/games/granatier.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/gravitation.md b/entries/gravitation.md index 8fa452b0..dc6dfb5d 100644 --- a/entries/gravitation.md +++ b/entries/gravitation.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2008 - Download: https://sourceforge.net/projects/hcsoftware/files/Gravitation/ - Platform: Windows, Linux, macOS -- Keyword: adventure, open content +- Keyword: adventure, content open - Code repository: @see-download (maybe some repositories at SF) - Code language: C++ - Code license: Public domain diff --git a/entries/grimsonland.md b/entries/grimsonland.md index c5657a0b..b9d1f807 100644 --- a/entries/grimsonland.md +++ b/entries/grimsonland.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Play: http://brooklynking.github.io/Grimsonland/ - Platform: Web -- Keyword: action, clone, open content +- Keyword: action, clone, content open - Code repository: https://github.com/BrooklynKing/Grimsonland.git - Code language: JavaScript - Code license: MIT (https://github.com/BrooklynKing/Grimsonland/blob/master/package.json) diff --git a/entries/gweled.md b/entries/gweled.md index 0855946a..7a6844ef 100644 --- a/entries/gweled.md +++ b/entries/gweled.md @@ -5,7 +5,7 @@ - State: mature - Download: http://gweled.org/download.html - Platform: Linux -- Keyword: puzzle, clone, open content +- Keyword: puzzle, clone, content open - Code repository: https://gitlab.com/osgames/gweled.git (conversion of bzr), https://code.launchpad.net/gweled (bzr) - Code language: C - Code license: GPL-2.0 diff --git a/entries/gzdoom.md b/entries/gzdoom.md index 1c96ac08..b97ca070 100644 --- a/entries/gzdoom.md +++ b/entries/gzdoom.md @@ -5,7 +5,7 @@ - State: mature - Download: https://zdoom.org/downloads - Platform: Windows, Linux, macOS -- Keyword: action, remake, first-person, content commercial, content original required, shooter +- Keyword: action, remake, content commercial + original required, first-person, shooter - Code repository: https://github.com/coelckers/gzdoom.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/h-world.md b/entries/h-world.md index 1666bf59..da317307 100644 --- a/entries/h-world.md +++ b/entries/h-world.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/h-world/ - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/h-world/files/ -- Keyword: framework, tiles, turn-based, isometric +- Keyword: framework, isometric, tiles, turn-based - Code repository: https://gitlab.com/osgames/h-world.git (backup of cvs), http://h-world.cvs.sourceforge.net (cvs) - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/hack.md b/entries/hack.md index 6ffc77f9..0ee88764 100644 --- a/entries/hack.md +++ b/entries/hack.md @@ -3,7 +3,7 @@ - Home: http://roguebasin.roguelikedevelopment.org/index.php?title=Hack, https://nethackwiki.com/wiki/Hack_1.0.3, https://homepages.cwi.nl/~aeb/games/hack/hack.html, https://packages.debian.org/search?keywords=bsdgames - Media: https://en.wikipedia.org/wiki/Hack_(video_game) - State: mature, inactive since 1985 -- Keyword: role playing, roguelike, text +- Keyword: role playing, roguelike, text-based - Code repository: @see-debian (bsdgames) - Code language: C - Code license: 3-clause BSD diff --git a/entries/harmonist_dayoriah_clan_infiltration.md b/entries/harmonist_dayoriah_clan_infiltration.md index c4e231a8..49e23a34 100644 --- a/entries/harmonist_dayoriah_clan_infiltration.md +++ b/entries/harmonist_dayoriah_clan_infiltration.md @@ -4,7 +4,7 @@ - State: beta - Download: https://download.tuxfamily.org/harmonist/releases/ - Platform: Windows, Linux, macOS, Web -- Keyword: library, open content, roguelike, text +- Keyword: library, content open, roguelike, text-based - Code repository: https://git.tuxfamily.org/harmonist/harmonist.git, https://github.com/anaseto/harmonist.git @add - Code language: Go - Code license: ISC diff --git a/entries/heart_of_the_alien.md b/entries/heart_of_the_alien.md index b342973b..f839047a 100644 --- a/entries/heart_of_the_alien.md +++ b/entries/heart_of_the_alien.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/hota/files/ - Platform: Windows -- Keyword: adventure, remake, content commercial, content original required +- Keyword: adventure, remake, content commercial + original required - Code repository: https://gitlab.com/osgames/hota.git (conversion of cvs), http://hota.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/help_hannahs_horse.md b/entries/help_hannahs_horse.md index d66dc000..6fe20b09 100644 --- a/entries/help_hannahs_horse.md +++ b/entries/help_hannahs_horse.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/hannah/files/ - Platform: Windows, Linux -- Keyword: action, arcade, for kids, open content +- Keyword: action, arcade, content open, for kids - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/hex-a-hop.md b/entries/hex-a-hop.md index fc3ec9ff..5f1d3681 100644 --- a/entries/hex-a-hop.md +++ b/entries/hex-a-hop.md @@ -3,7 +3,7 @@ - Home: http://hexahop.sourceforge.net/, https://sourceforge.net/projects/hexahop/, https://packages.debian.org/search?keywords=hex-a-hop - State: mature, inactive since 2013 - Download: http://hexahop.sourceforge.net/downloads.html, https://sourceforge.net/projects/hexahop/files/ -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://git.code.sf.net/p/hexahop/code, https://git.code.sf.net/p/hexahop/website - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/hexwar.md b/entries/hexwar.md index 2566877c..8d13c135 100644 --- a/entries/hexwar.md +++ b/entries/hexwar.md @@ -1,10 +1,10 @@ # Hexwar - Home: https://github.com/mgfreshour/hexwar -- Inspiration: Panzer General, Uniwar, The Battle for Wesnoth +- Inspiration: Panzer General, The Battle for Wesnoth, Uniwar - State: beta, inactive since 2012 - Platform: Web -- Keyword: strategy, online, turn-based, tiles +- Keyword: strategy, online, tiles, turn-based - Code repository: https://github.com/mgfreshour/hexwar.git - Code language: Ruby, JavaScript - Code license: MIT diff --git a/entries/hhexen.md b/entries/hhexen.md index d48c7079..4b80a4e4 100644 --- a/entries/hhexen.md +++ b/entries/hhexen.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2013 (svn activity until 2019) - Download: http://hhexen.sourceforge.net/hhexen.html#s2, https://sourceforge.net/projects/hhexen/files/ - Platform: Linux -- Keyword: strategy, content commercial, first-person, content original required, shooter +- Keyword: strategy, content commercial + original required, first-person, shooter - Code repository: https://svn.code.sf.net/p/hhexen/code (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/hnefatafl.md b/entries/hnefatafl.md index da47335b..a74c3afc 100644 --- a/entries/hnefatafl.md +++ b/entries/hnefatafl.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20180901233504/http://hnefatafl.se/ (Swedish), https://sourceforge.net/projects/hnefatafl/ - State: beta, inactive since 2014 -- Keyword: board, strategy, open content +- Keyword: board, strategy, content open - Code repository: https://gitlab.com/soderlund/hnefatafl.git - Code language: C - Code license: ISC diff --git a/entries/holtz.md b/entries/holtz.md index eb99cd04..eff73d6a 100644 --- a/entries/holtz.md +++ b/entries/holtz.md @@ -4,7 +4,7 @@ - State: mature - Download: https://sourceforge.net/projects/holtz/files/ - Platform: Windows, Linux -- Keyword: board, puzzle, online, open content +- Keyword: board, puzzle, content open, online - Code repository: https://git.code.sf.net/p/holtz/code, https://git.code.sf.net/p/holtz/website @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/hopson-arcade.md b/entries/hopson-arcade.md index 48621f2c..885a00ba 100644 --- a/entries/hopson-arcade.md +++ b/entries/hopson-arcade.md @@ -4,7 +4,7 @@ - Inspiration: Space Invaders - State: mature - Platform: Linux -- Keyword: arcade, remake, open content +- Keyword: arcade, remake, content open - Code repository: https://github.com/Hopson97/Hopson-Arcade.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/hypercube.md b/entries/hypercube.md index d53b1097..b33ba1db 100644 --- a/entries/hypercube.md +++ b/entries/hypercube.md @@ -2,7 +2,7 @@ - Home: http://harmen.vanderwal.eu/hypercube/ - State: mature, inactive since 2016 -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://gitlab.com/osgames/hypercube.git (import of sources) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/iceball.md b/entries/iceball.md index 3d129b1b..566dcda7 100644 --- a/entries/iceball.md +++ b/entries/iceball.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20161106081943/http://iceball.build/ - Inspiration: Ace of Spades - State: inactive since 2017 -- Keyword: remake, open content +- Keyword: remake, content open - Code repository: https://github.com/iamgreaser/iceball.git - Code language: C, Lua - Code license: GPL-3.0 diff --git a/entries/infiniminer.md b/entries/infiniminer.md index ad750ec3..238ca0b0 100644 --- a/entries/infiniminer.md +++ b/entries/infiniminer.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Zachtronics#Infiniminer - State: mature, inactive since 2016 - Download: https://code.google.com/archive/p/infiniminer/source/default/source -- Keyword: simulation, blocks, sandbox, multiplayer online +- Keyword: simulation, blocks, multiplayer online, sandbox - Code repository: https://github.com/craftworkgames/infiniminer.git - Code language: C# - Code license: MIT diff --git a/entries/infinite_tux.md b/entries/infinite_tux.md index a22b0270..e0e8433f 100644 --- a/entries/infinite_tux.md +++ b/entries/infinite_tux.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/qbancoffee/infinite-tux/releases - Platform: Windows, Linux, macOS -- Keyword: platform, open content, 2D +- Keyword: platform, 2D, content open - Code repository: https://github.com/qbancoffee/infinite-tux.git - Code language: Java - Code license: GPL-3.0, Public domain (some parts) diff --git a/entries/infon_battle_arena.md b/entries/infon_battle_arena.md index 653df15d..c400cb5b 100644 --- a/entries/infon_battle_arena.md +++ b/entries/infon_battle_arena.md @@ -3,7 +3,7 @@ - Home: http://infon.dividuum.de/, https://code.google.com/archive/p/infon/ - State: beta, inactive since 2012 - Platform: Windows, Linux -- Keyword: simulation, strategy, evolution, open content, programming, real-time, multiplayer online +- Keyword: simulation, strategy, content open, evolution, multiplayer online, programming, real-time - Code repository: https://github.com/dividuum/infon.git, https://bitbucket.org/dividuum/infon.git @add - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/intricacy.md b/entries/intricacy.md index 83285a5c..641cf949 100644 --- a/entries/intricacy.md +++ b/entries/intricacy.md @@ -3,7 +3,7 @@ - Home: http://mbays.freeshell.org/intricacy/ - State: beta - Platform: Windows, Linux, macOS -- Keyword: puzzle, open content, text-based +- Keyword: puzzle, content open, text-based - Code repository: https://repo.or.cz/intricacy.git - Code language: Haskell - Code license: GPL-3.0 diff --git a/entries/io_reboot.md b/entries/io_reboot.md index 9532abbc..2ac7cc3b 100644 --- a/entries/io_reboot.md +++ b/entries/io_reboot.md @@ -3,7 +3,7 @@ - Home: https://github.com/omarchehab98/io-reboot - Inspiration: Infinity Loop - State: mature, inactive since 2017 -- Keyword: puzzle, clone, open content +- Keyword: puzzle, clone, content open - Code repository: https://github.com/omarchehab98/io-reboot.git (archived) - Code language: C# - Code license: MIT diff --git a/entries/iris2.md b/entries/iris2.md index bc8794f8..121631dc 100644 --- a/entries/iris2.md +++ b/entries/iris2.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20160809064454/https://iris2.de/index.php/Main_Page - Inspiration: Ultima Online - State: beta, inactive since 2017 -- Keyword: remake, role playing, open content (?), requires server, 2D, 3D +- Keyword: remake, role playing, 2D, 3D, content open (?), requires server - Code repository: https://github.com/kblaschke/Iris2.git - Code language: C, C++, Lua - Code license: GPL-3.0 diff --git a/entries/isometric-minesweeper.md b/entries/isometric-minesweeper.md index 5091fca5..598f2ab3 100644 --- a/entries/isometric-minesweeper.md +++ b/entries/isometric-minesweeper.md @@ -3,7 +3,7 @@ - Home: https://github.com/Bit-Sahil04/Isometric-Minesweeper - Inspiration: Minesweeper - State: beta -- Keyword: strategy, clone, open content, isometric +- Keyword: strategy, clone, content open, isometric - Code repository: https://github.com/Bit-Sahil04/Isometric-Minesweeper.git - Code language: Python - Code license: MIT diff --git a/entries/jamp.md b/entries/jamp.md index 45b94b9f..b17f2484 100644 --- a/entries/jamp.md +++ b/entries/jamp.md @@ -3,7 +3,7 @@ - Home: https://perre.noud.ch/jamp/ - State: beta, inactive since 2009 - Platform: Windows, Linux, macOS -- Keyword: puzzle, open content, physics +- Keyword: puzzle, content open, physics - Code repository: @see-home - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/javelin.md b/entries/javelin.md index 9d675096..7093fd08 100644 --- a/entries/javelin.md +++ b/entries/javelin.md @@ -1,11 +1,11 @@ # Javelin - Home: https://javelinrl.wordpress.com/, https://www.reddit.com/r/javelinrl/ -- Inspiration: Jagged Alliance, Dungeon Crawl Stone Soup, Pokémon, Final Fantasy series +- Inspiration: Dungeon Crawl Stone Soup, Final Fantasy series, Jagged Alliance, Pokémon - State: mature, inactive since 2016 - Download: https://github.com/tukkek/javelin/releases - Platform: Windows, Linux, macOS -- Keyword: role playing, open content, roguelike +- Keyword: role playing, content open, roguelike - Code repository: https://github.com/tukkek/javelin.git - Code language: Java - Code license: GPL-2.0 diff --git a/entries/jedioutcastlinux.md b/entries/jedioutcastlinux.md index 2003625b..3f18b1d7 100644 --- a/entries/jedioutcastlinux.md +++ b/entries/jedioutcastlinux.md @@ -3,7 +3,7 @@ - Home: https://github.com/xLAva/JediOutcastLinux - Inspiration: Star Wars Jedi Knight II: Jedi Outcast - State: mature -- Keyword: game engine, remake, content commercial, first-person, content original required, shooter +- Keyword: game engine, remake, content commercial + original required, first-person, shooter - Code repository: https://github.com/xLAva/JediOutcastLinux.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/jigs_interactive_game_system.md b/entries/jigs_interactive_game_system.md index fe538296..77e46dcf 100644 --- a/entries/jigs_interactive_game_system.md +++ b/entries/jigs_interactive_game_system.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20180318104050/http://www.eclecticmeme.com/ - State: beta - Platform: Web -- Keyword: framework, online, role playing +- Keyword: framework, role playing, online - Code repository: https://github.com/Techbot/JiGS-PHP-RPG-engine.git - Code language: JavaScript, PHP - Code license: GPL-3.0 diff --git a/entries/jsettlers.md b/entries/jsettlers.md index 9e7d5d3a..d7cee695 100644 --- a/entries/jsettlers.md +++ b/entries/jsettlers.md @@ -1,10 +1,10 @@ # JSettlers - Home: https://sourceforge.net/projects/jsettlers/, https://sourceforge.net/projects/jsettlers2/ -- Inspiration: The Settlers III, Settlers of Catan +- Inspiration: Settlers of Catan, The Settlers III - State: mature - Download: https://sourceforge.net/projects/jsettlers/files/, https://sourceforge.net/projects/jsettlers2/files/ -- Keyword: board, remake, strategy, content commercial, content original required (?) +- Keyword: board, remake, strategy, "content commercial + original required (?)" - Code repository: https://github.com/jdmonin/JSettlers2.git, http://jsettlers.cvs.sourceforge.net (cvs), http://jsettlers2.cvs.sourceforge.net (cvs) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/jsfo.md b/entries/jsfo.md index 7bf4f17f..3d2c9ef1 100644 --- a/entries/jsfo.md +++ b/entries/jsfo.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2017 - Play: http://ajxs.github.io/jsFO/ (demo) - Platform: Web -- Keyword: remake, role playing, content commercial, content original required +- Keyword: remake, role playing, content commercial + original required - Code repository: https://github.com/ajxs/jsFO.git - Code language: JavaScript, Python - Code license: Apache-2.0 diff --git a/entries/jskat.md b/entries/jskat.md index 5e1c5cb8..9d697fe8 100644 --- a/entries/jskat.md +++ b/entries/jskat.md @@ -4,7 +4,7 @@ - State: beta - Download: https://github.com/b0n541/jskat-multimodule/releases, https://sourceforge.net/projects/jskat/files/ - Platform: Windows, Linux -- Keyword: cards, role playing, open content +- Keyword: cards, role playing, content open - Code repository: https://github.com/b0n541/jskat-multimodule.git - Code language: Java - Code license: GPL-3.0 (GUI), Apache-2.0 (base) diff --git a/entries/jsoko.md b/entries/jsoko.md index e73e0c40..61fbac5a 100644 --- a/entries/jsoko.md +++ b/entries/jsoko.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/jsokoapplet/files/ - Platform: Windows, Linux, macOS -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: @see-download - Code language: Java - Code license: GPL-3.0 (+credits +no-misrepresentation) diff --git a/entries/kam_remake.md b/entries/kam_remake.md index 3548b782..f9802809 100644 --- a/entries/kam_remake.md +++ b/entries/kam_remake.md @@ -4,7 +4,7 @@ - Inspiration: Knights and Merchants - State: mature - Download: https://www.kamremake.com/download/ -- Keyword: remake, strategy, real-time, content original required +- Keyword: remake, strategy, content original required, real-time - Code repository: https://github.com/Kromster80/kam_remake.git - Code language: Pascal - Code license: AGPL-3.0 diff --git a/entries/keen_dreams.md b/entries/keen_dreams.md index f8bc9725..2cfa4ca7 100644 --- a/entries/keen_dreams.md +++ b/entries/keen_dreams.md @@ -3,7 +3,7 @@ - Home: https://github.com/keendreams/keen - Inspiration: Commander Keen Series - State: mature, inactive since 2014 -- Keyword: platform, remake, content commercial, content original required +- Keyword: platform, remake, content commercial + original required - Code repository: https://github.com/keendreams/keen.git - Code language: C, Assembly, C++ - Code license: GPL-2.0 diff --git a/entries/key_runner.md b/entries/key_runner.md index 6cb8adce..583740ed 100644 --- a/entries/key_runner.md +++ b/entries/key_runner.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20150412095108/http://killergame.net/keyrunner/ - State: mature, inactive since 2013 - Platform: Windows, Linux -- Keyword: action, open content, 2D +- Keyword: action, 2D, content open - Code repository: https://gitlab.com/osgames/keyrunner.git (import of sources) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/kiki_the_nano_bot.md b/entries/kiki_the_nano_bot.md index 7d1e92a4..d11f270a 100644 --- a/entries/kiki_the_nano_bot.md +++ b/entries/kiki_the_nano_bot.md @@ -2,7 +2,7 @@ - Home: http://kiki.sourceforge.net/, https://sourceforge.net/projects/kiki/ - Media: https://en.wikipedia.org/wiki/Kiki_the_nano_bot -- Inspiration: Sokoban, Kula World +- Inspiration: Kula World, Sokoban - State: mature, inactive since 2007 - Download: http://kiki.sourceforge.net/download/index.html - Platform: Windows, macOS diff --git a/entries/kknd.md b/entries/kknd.md index 76aac492..444f9b06 100644 --- a/entries/kknd.md +++ b/entries/kknd.md @@ -5,7 +5,7 @@ - Inspiration: Krush Kill 'n' Destroy - State: beta - Platform: Windows, Linux, macOS -- Keyword: remake, content commercial, content original required (?) +- Keyword: remake, "content commercial + original required (?)" - Code repository: https://github.com/IceReaper/KKnD.git - Code language: C# - Code license: GPL-3.0 diff --git a/entries/kmines.md b/entries/kmines.md index 0878cfd7..74425626 100644 --- a/entries/kmines.md +++ b/entries/kmines.md @@ -4,7 +4,7 @@ - Inspiration: Minesweeper - State: mature - Platform: Windows (?), Linux -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://invent.kde.org/games/kmines.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/kobo_deluxe.md b/entries/kobo_deluxe.md index 2d078035..d7b6122a 100644 --- a/entries/kobo_deluxe.md +++ b/entries/kobo_deluxe.md @@ -4,7 +4,7 @@ - Inspiration: XKobo - State: beta, inactive since 2007 - Platform: Windows, Linux, macOS -- Keyword: action, open content, 2D, scrolling, space, shooter +- Keyword: action, 2D, content open, scrolling, shooter, space - Code repository: @see-home - Code language: C++ - Code license: GPL-2.0 (LGPL?) diff --git a/entries/krank.md b/entries/krank.md index 116ed6bf..e6a89a71 100644 --- a/entries/krank.md +++ b/entries/krank.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/krank/files/ - Platform: Windows, Linux, macOS -- Keyword: role playing, skill, open content, skill +- Keyword: role playing, content open, skill - Code repository: https://svn.code.sf.net/p/krank/code (svn), http://krank.cvs.sourceforge.net (cvs) - Code language: Python - Code license: Public domain diff --git a/entries/ksnakeduel.md b/entries/ksnakeduel.md index ac20cea1..aef54ed3 100644 --- a/entries/ksnakeduel.md +++ b/entries/ksnakeduel.md @@ -3,7 +3,7 @@ - Home: https://kde.org/applications/games/org.kde.ksnakeduel, https://packages.debian.org/search?keywords=ksnake - Inspiration: Snake - State: mature -- Keyword: puzzle, open content, skill +- Keyword: puzzle, content open, skill - Code repository: https://invent.kde.org/games/ksnakeduel.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/ksudoku.md b/entries/ksudoku.md index 2fa5c194..45bf3adf 100644 --- a/entries/ksudoku.md +++ b/entries/ksudoku.md @@ -2,7 +2,7 @@ - Home: https://kde.org/applications/games/org.kde.ksudoku, http://ksudoku.sourceforge.net/, https://sourceforge.net/projects/ksudoku/ - State: mature -- Keyword: puzzle, open content, sudoku +- Keyword: puzzle, content open, sudoku - Code repository: https://anongit.kde.org/ksudoku.git, https://svn.code.sf.net/p/ksudoku/code (svn old) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/kuklomenos.md b/entries/kuklomenos.md index 9247012a..345c5351 100644 --- a/entries/kuklomenos.md +++ b/entries/kuklomenos.md @@ -2,7 +2,7 @@ - Home: http://mbays.freeshell.org/kuklomenos/ - State: beta, inactive since 2012 -- Keyword: arcade, open content, shooter +- Keyword: arcade, content open, shooter - Code repository: @see-home - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/labbaye_des_morts.md b/entries/labbaye_des_morts.md index d2f495b1..672601e5 100644 --- a/entries/labbaye_des_morts.md +++ b/entries/labbaye_des_morts.md @@ -3,7 +3,7 @@ - Home: https://www.locomalito.com/abbaye_des_morts.php - State: mature, inactive since 2018 - Platform: Windows, Linux -- Keyword: adventure, platform, open content, side-scrolling, 2D +- Keyword: adventure, platform, 2D, content open, side-scrolling - Code repository: https://github.com/nevat/abbayedesmorts-gpl.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/lambdahack.md b/entries/lambdahack.md index 64fca1ee..d8b103f4 100644 --- a/entries/lambdahack.md +++ b/entries/lambdahack.md @@ -5,7 +5,7 @@ - Play: https://lambdahack.github.io/ - Download: https://github.com/LambdaHack/LambdaHack/releases - Platform: Windows, Linux, Web -- Keyword: game engine, text-based, roguelike, text-based +- Keyword: game engine, roguelike, text-based - Code repository: https://github.com/LambdaHack/LambdaHack.git - Code language: Haskell - Code license: 3-clause BSD diff --git a/entries/lbreakout2.md b/entries/lbreakout2.md index a2c7da26..5d3f8064 100644 --- a/entries/lbreakout2.md +++ b/entries/lbreakout2.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2010 - Download: https://sourceforge.net/projects/lgames/files/lbreakout2/ - Platform: Linux -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://svn.code.sf.net/p/lgames/code (svn part of it) - Code language: C - Code license: GPL-2.0 diff --git a/entries/lbreakouthd.md b/entries/lbreakouthd.md index e1ca22b3..3389fcb4 100644 --- a/entries/lbreakouthd.md +++ b/entries/lbreakouthd.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/lgames/files/lbreakouthd/ - Platform: Linux -- Keyword: arcade, clone, open content +- Keyword: arcade, clone, content open - Code repository: https://svn.code.sf.net/p/lgames/code (svn part of it) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/lemmingsts.md b/entries/lemmingsts.md index d667e0b7..761fbb81 100644 --- a/entries/lemmingsts.md +++ b/entries/lemmingsts.md @@ -4,7 +4,7 @@ - Inspiration: Lemmings - State: mature - Platform: Web -- Keyword: puzzle, clone, content commercial, content original required +- Keyword: puzzle, clone, content commercial + original required - Code repository: https://github.com/tomsoftware/Lemmings.ts.git - Code language: TypeScript - Code license: MIT diff --git a/entries/levelhead.md b/entries/levelhead.md index b50f127e..9dc81f00 100644 --- a/entries/levelhead.md +++ b/entries/levelhead.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2009 - Download: https://julianoliver.com/levelhead/install.html - Platform: Linux -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: @see-download - Code language: C++, Python - Code license: GPL-3.0 diff --git a/entries/lexica.md b/entries/lexica.md index 1db515eb..a2a17262 100644 --- a/entries/lexica.md +++ b/entries/lexica.md @@ -4,7 +4,7 @@ - State: mature - Download: https://play.google.com/store/apps/details?id=com.serwylo.lexica, https://f-droid.org/packages/com.serwylo.lexica/ - Platform: Android -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://github.com/lexica/lexica.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/liberal_crime_squad.md b/entries/liberal_crime_squad.md index 3edfa543..1f5778c7 100644 --- a/entries/liberal_crime_squad.md +++ b/entries/liberal_crime_squad.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2012 - Download: https://sourceforge.net/projects/lcsgame/files/ - Platform: Windows, Linux -- Keyword: strategy, console, open content, role playing +- Keyword: role playing, strategy, console, content open - Code repository: https://svn.code.sf.net/p/lcsgame/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/liberation_circuit.md b/entries/liberation_circuit.md index a5e7b393..8d9ed5ca 100644 --- a/entries/liberation_circuit.md +++ b/entries/liberation_circuit.md @@ -2,7 +2,7 @@ - Home: https://github.com/linleyh/liberation-circuit/, https://forums.tigsource.com/index.php?topic=48505.0 - State: mature -- Keyword: strategy, open content, programming, real-time +- Keyword: strategy, content open, programming, real-time - Code repository: https://github.com/linleyh/liberation-circuit.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/libre_pinball.md b/entries/libre_pinball.md index b21870d1..fdfb6b1f 100644 --- a/entries/libre_pinball.md +++ b/entries/libre_pinball.md @@ -2,7 +2,7 @@ - Home: https://github.com/Calinou/libre-pinball - State: beta, inactive since 2015 -- Keyword: sports, open content +- Keyword: sports, content open - Code repository: https://github.com/Calinou/libre-pinball.git - Code language: GDScript - Code license: MIT diff --git a/entries/librerama.md b/entries/librerama.md index 4a7d525b..d1aa7457 100644 --- a/entries/librerama.md +++ b/entries/librerama.md @@ -3,7 +3,7 @@ - Home: https://yeldham.itch.io/librerama - Inspiration: WarioWare - State: mature -- Keyword: arcade, clone, open content +- Keyword: arcade, clone, content open - Code repository: https://codeberg.org/Yeldham/librerama.git - Code language: GDScript - Code license: GPL-3.0 diff --git a/entries/lierolibre.md b/entries/lierolibre.md index cb7beb0b..386a7774 100644 --- a/entries/lierolibre.md +++ b/entries/lierolibre.md @@ -3,7 +3,7 @@ - Home: http://www.liero.be/, https://gitlab.com/lierolibre/lierolibre, https://web.archive.org/web/20150331042028/https://gitorious.org/lierolibre - Inspiration: Liero - State: mature, inactive since 2017 -- Keyword: library, open content, shooter, 2D +- Keyword: library, 2D, content open, shooter - Code repository: https://gitlab.com/lierolibre/lierolibre.git - Code language: C++ - Code license: 2-clause BSD diff --git a/entries/lightweight_java_game_library.md b/entries/lightweight_java_game_library.md index 8e63c622..58c4475b 100644 --- a/entries/lightweight_java_game_library.md +++ b/entries/lightweight_java_game_library.md @@ -12,4 +12,3 @@ ## Building - Build system: Gradle - diff --git a/entries/lincity-ng.md b/entries/lincity-ng.md index 13999b6d..6bbd3e6e 100644 --- a/entries/lincity-ng.md +++ b/entries/lincity-ng.md @@ -1,10 +1,10 @@ # LinCity-NG - Home: https://github.com/lincity-ng, https://code.google.com/archive/p/lincity-ng/, https://sourceforge.net/projects/lincity-ng.berlios/ -- Inspiration: SimCity, LinCity +- Inspiration: LinCity, SimCity - State: mature - Download: https://bintray.com/lincityng/LinCity-NG/LinCity-NG, https://sourceforge.net/projects/lincity-ng.berlios/files/ -- Keyword: simulation, clone, city +- Keyword: simulation, city, clone - Code repository: https://github.com/lincity-ng/lincity-ng.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/lincity.md b/entries/lincity.md index 6f00a7d3..dde6a226 100644 --- a/entries/lincity.md +++ b/entries/lincity.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Lincity - Inspiration: SimCity - State: mature, inactive since 2005 -- Keyword: simulation, clone, city +- Keyword: simulation, city, clone - Code repository: https://gitlab.com/osgames/lincity.git (backup of cvs), http://lincity.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/lix.md b/entries/lix.md index dfc7f5cd..2b58364d 100644 --- a/entries/lix.md +++ b/entries/lix.md @@ -3,7 +3,7 @@ - Home: http://www.lixgame.com - Inspiration: Lemmings - State: beta -- Keyword: puzzle, 2D, clone, multiplayer online, open content +- Keyword: puzzle, 2D, clone, content open, multiplayer online - Code repository: https://github.com/SimonN/LixD.git, https://github.com/SimonN/Lix.git @add - Code language: D, C++ - Code license: CC0 diff --git a/entries/lmarbles.md b/entries/lmarbles.md index 25096e1b..7735aca8 100644 --- a/entries/lmarbles.md +++ b/entries/lmarbles.md @@ -3,7 +3,7 @@ - Home: http://lgames.sourceforge.net/LMarbles/, https://sourceforge.net/projects/lgames/ - Inspiration: Atomix - State: beta -- Keyword: strategy, clone, open content +- Keyword: strategy, clone, content open - Code repository: https://svn.code.sf.net/p/lgames/code (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/lords_of_the_fey.md b/entries/lords_of_the_fey.md index fc8d8642..bfb122ed 100644 --- a/entries/lords_of_the_fey.md +++ b/entries/lords_of_the_fey.md @@ -4,7 +4,7 @@ - Inspiration: The Battle for Wesnoth - State: beta, inactive since 2018 - Platform: Web -- Keyword: remake, strategy, multiplayer, open content, turn-based +- Keyword: remake, strategy, content open, multiplayer, turn-based - Code repository: https://github.com/apsillers/lords-of-the-fey.git - Code language: JavaScript - Code license: AGPL-3.0 diff --git a/entries/ltris.md b/entries/ltris.md index 1b6473d1..2c6f18bf 100644 --- a/entries/ltris.md +++ b/entries/ltris.md @@ -4,7 +4,7 @@ - Inspiration: Tetris - State: mature, inactive since 2013 - Download: https://sourceforge.net/projects/lgames/files/ltris/ -- Keyword: puzzle, open content, clone +- Keyword: puzzle, clone, content open - Code repository: https://svn.code.sf.net/p/lgames/code (svn part of it) - Code language: C - Code license: GPL-2.0 diff --git a/entries/lttp-phaser.md b/entries/lttp-phaser.md index fce2788b..7c09e6e4 100644 --- a/entries/lttp-phaser.md +++ b/entries/lttp-phaser.md @@ -4,7 +4,7 @@ - Inspiration: Legend of Zelda - A Link to the Past - State: beta, inactive since 2016 - Platform: Web -- Keyword: remake, role playing, content commercial, content original required +- Keyword: remake, role playing, content commercial + original required - Code repository: https://github.com/englercj/lttp.git - Code language: TypeScript, JavaScript - Code license: MIT diff --git a/entries/luola.md b/entries/luola.md index d7d635a8..a1de8634 100644 --- a/entries/luola.md +++ b/entries/luola.md @@ -4,7 +4,7 @@ - Inspiration: V-Wing - State: mature, inactive since 2005 - Platform: Windows, Linux, macOS -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://github.com/callaa/luola.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/machinations.md b/entries/machinations.md index 46cbce07..692fe16e 100644 --- a/entries/machinations.md +++ b/entries/machinations.md @@ -4,7 +4,7 @@ - Inspiration: StarCraft, Total Annihilation - State: beta, inactive since 2003 - Download: https://sourceforge.net/projects/machinations/ -- Keyword: strategy, real-time, 3D +- Keyword: strategy, 3D, real-time - Code repository: https://gitlab.com/osgames/machinations.git (backup of cvs), http://machinations.cvs.sourceforge.net/ (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/maelstrom.md b/entries/maelstrom.md index e666002f..7933ed80 100644 --- a/entries/maelstrom.md +++ b/entries/maelstrom.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2002 - Download: https://www.libsdl.org/projects/Maelstrom/binary.html - Platform: Windows, Linux, macOS -- Keyword: action, arcade, remake, shooter, clone +- Keyword: action, arcade, remake, clone, shooter - Code repository: https://github.com/richardjs/Maelstrom.git (see also https://www.libsdl.org/projects/Maelstrom/source.html) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/magarena.md b/entries/magarena.md index d5c11841..9e0bd197 100644 --- a/entries/magarena.md +++ b/entries/magarena.md @@ -4,7 +4,7 @@ - Inspiration: Magic: The Gathering Online - State: mature - Download: https://github.com/magarena/magarena/releases/ -- Keyword: cards, role playing, clone, fantasy +- Keyword: cards, role playing, clone, setting fantasy - Code repository: https://github.com/magarena/magarena.git - Code language: Java, Groovy - Code license: GPL-3.0 diff --git a/entries/mage-matthias_advanced_game_engine.md b/entries/mage-matthias_advanced_game_engine.md index 31018d31..03a3093c 100644 --- a/entries/mage-matthias_advanced_game_engine.md +++ b/entries/mage-matthias_advanced_game_engine.md @@ -10,4 +10,4 @@ ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/magic_gardeners_tournament.md b/entries/magic_gardeners_tournament.md index 12c957c6..70c738f0 100644 --- a/entries/magic_gardeners_tournament.md +++ b/entries/magic_gardeners_tournament.md @@ -2,7 +2,7 @@ - Home: https://pyweek.org/e/TLP-2/ - State: beta, inactive since 2007 -- Keyword: board, strategy, open content, real-time +- Keyword: board, strategy, content open, real-time - Code repository: https://gitlab.com/osgames/magic-gardeners-tournament.git (import of sources) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/magical_life.md b/entries/magical_life.md index ae7bc7e2..f24a282c 100644 --- a/entries/magical_life.md +++ b/entries/magical_life.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/TBye101/MagicalLife/releases - Platform: Windows -- Keyword: role playing, open content, 2D +- Keyword: role playing, 2D, content open - Code repository: https://github.com/TBye101/MagicalLife.git - Code language: C# - Code license: MIT diff --git a/entries/mana.md b/entries/mana.md index e3dfcfbe..a494bbca 100644 --- a/entries/mana.md +++ b/entries/mana.md @@ -3,7 +3,7 @@ - Home: http://www.manasource.org/ - State: beta - Download: http://www.manasource.org/downloads.html -- Keyword: framework, multiplayer online + massive, 2D, role playing +- Keyword: framework, role playing, 2D, multiplayer online + massive - Code repository: https://github.com/mana/manaserv.git (https://github.com/mana), https://github.com/tales/tales-client.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/maniadrive.md b/entries/maniadrive.md index 6aa98ef0..b37b41a3 100644 --- a/entries/maniadrive.md +++ b/entries/maniadrive.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2008 - Download: http://maniadrive.raydium.org/index.php?downloads=yes, https://sourceforge.net/projects/maniadrive/files/ - Platform: Windows, Linux -- Keyword: framework, remake, open content, racing, clone +- Keyword: framework, remake, clone, content open, racing - Code repository: svn://raydium.org/raydium/trunk (svn) - Code language: PHP - Code license: ? (GPL version?) diff --git a/entries/marble_marcher.md b/entries/marble_marcher.md index f38f55c3..d8dc94db 100644 --- a/entries/marble_marcher.md +++ b/entries/marble_marcher.md @@ -3,7 +3,7 @@ - Home: https://codeparade.itch.io/marblemarcher - State: mature - Platform: Windows, Linux -- Keyword: puzzle, open content, 3D +- Keyword: puzzle, 3D, content open - Code repository: https://github.com/HackerPoet/MarbleMarcher.git, https://github.com/WAUthethird/Marble-Marcher-Community-Edition.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/mars.md b/entries/mars.md index 5838f23c..7f4e1a4c 100644 --- a/entries/mars.md +++ b/entries/mars.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/mars-game/, https://packages.debian.org/search?keywords=marsshooter - State: beta, inactive since 2016 - Download: https://github.com/jwrdegoede/M.A.R.S./releases, https://sourceforge.net/projects/mars-game/files/ -- Keyword: platform, 2D, open content, shooter, top-down +- Keyword: platform, 2D, content open, shooter, top-down - Code repository: https://github.com/jwrdegoede/M.A.R.S..git, https://github.com/thelaui/M.A.R.S..git @add, https://svn.code.sf.net/p/mars-game/code (svn) - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/megaglest.md b/entries/megaglest.md index a85efac9..c46a93e6 100644 --- a/entries/megaglest.md +++ b/entries/megaglest.md @@ -5,7 +5,7 @@ - Inspiration: Glest - State: mature - Download: https://megaglest.org/download -- Keyword: remake, strategy, real-time, 3D +- Keyword: remake, strategy, 3D, real-time - Code repository: https://github.com/MegaGlest/megaglest-source.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/micropolisjs.md b/entries/micropolisjs.md index 0dccf0f8..ab4547aa 100644 --- a/entries/micropolisjs.md +++ b/entries/micropolisjs.md @@ -1,7 +1,7 @@ # micropolisJS - Home: http://www.graememcc.co.uk/micropolisJS/ -- Inspiration: SimCity, Micropolis +- Inspiration: Micropolis, SimCity - State: mature - Platform: Web - Keyword: simulation, clone diff --git a/entries/minecraft-one-week-challenge.md b/entries/minecraft-one-week-challenge.md index a502ab3c..1e4c601a 100644 --- a/entries/minecraft-one-week-challenge.md +++ b/entries/minecraft-one-week-challenge.md @@ -3,7 +3,7 @@ - Home: https://github.com/Hopson97/MineCraft-One-Week-Challenge - Inspiration: Minecraft - State: beta -- Keyword: simulation, clone, open content, sandbox, voxel +- Keyword: simulation, clone, content open, sandbox, voxel - Code repository: https://github.com/Hopson97/MineCraft-One-Week-Challenge.git - Code language: C++ - Code license: MIT diff --git a/entries/minesweeper_in_c.md b/entries/minesweeper_in_c.md index a8056da6..b38518e1 100644 --- a/entries/minesweeper_in_c.md +++ b/entries/minesweeper_in_c.md @@ -3,7 +3,7 @@ - Home: https://github.com/brenns10/minesweeper - Inspiration: Minesweeper - State: beta, inactive since 2015 -- Keyword: puzzle, remake, open content, text +- Keyword: puzzle, remake, content open, text-based - Code repository: https://github.com/brenns10/minesweeper.git - Code language: C - Code license: 3-clause BSD diff --git a/entries/minesweeperzone.md b/entries/minesweeperzone.md index b3c2cd91..c33f78e3 100644 --- a/entries/minesweeperzone.md +++ b/entries/minesweeperzone.md @@ -5,7 +5,7 @@ - State: mature - Play: https://minesweeper.zone/ - Platform: Web -- Keyword: puzzle, remake, open content +- Keyword: puzzle, remake, content open - Code repository: https://github.com/reed-jones/minesweeper_js.git - Code language: JavaScript, PHP - Code license: MIT diff --git a/entries/minetest.md b/entries/minetest.md index 5f740105..430376dc 100644 --- a/entries/minetest.md +++ b/entries/minetest.md @@ -5,7 +5,7 @@ - State: mature - Download: https://www.minetest.net/downloads/ - Platform: Windows, Linux, macOS, Android -- Keyword: framework, remake, open content, voxel +- Keyword: framework, remake, content open, voxel - Code repository: https://github.com/minetest/minetest.git - Code language: C, C++, Lua - Code license: LGPL-2.1 diff --git a/entries/minetest_game.md b/entries/minetest_game.md index 50313dbe..ef98ab27 100644 --- a/entries/minetest_game.md +++ b/entries/minetest_game.md @@ -3,7 +3,7 @@ - Home: https://github.com/minetest/minetest_game/ - Inspiration: Minetest - State: mature -- Keyword: simulation, open content, sandbox +- Keyword: simulation, content open, sandbox - Code repository: https://github.com/minetest/minetest_game.git - Code language: Lua - Code license: LGPL-2.1 diff --git a/entries/minilens.md b/entries/minilens.md index 3d9e0002..2e9c7956 100644 --- a/entries/minilens.md +++ b/entries/minilens.md @@ -5,7 +5,7 @@ - Play: https://kobuge-games.github.io/minilens/ml/ - Download: https://github.com/KOBUGE-Games/minilens/releases - Platform: Windows, Linux, macOS, Android, Web -- Keyword: platform, puzzle, open content +- Keyword: platform, puzzle, content open - Code repository: https://github.com/KOBUGE-Games/minilens.git - Code language: GDScript - Code license: GPL-3.0 diff --git a/entries/mininim.md b/entries/mininim.md index 4f0dd925..aabc159e 100644 --- a/entries/mininim.md +++ b/entries/mininim.md @@ -4,7 +4,7 @@ - Inspiration: Prince of Persia - State: beta, inactive since 2017 - Platform: Windows, Linux -- Keyword: action, remake, open content +- Keyword: action, remake, content open - Code repository: https://github.com/oitofelix/mininim.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/minipacman.md b/entries/minipacman.md index d66bacc3..4dd67bd0 100644 --- a/entries/minipacman.md +++ b/entries/minipacman.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/fastrgv/MiniPacman/releases - Platform: Windows, Linux, macOS -- Keyword: arcade, open content, text-based +- Keyword: arcade, content open, text-based - Code repository: @see-download - Code language: Ada - Code license: GPL-3.0 diff --git a/entries/moagg2.md b/entries/moagg2.md index acb8eb5f..5fbd53bd 100644 --- a/entries/moagg2.md +++ b/entries/moagg2.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2008 - Download: http://moagg.sourceforge.net/download.html, https://sourceforge.net/projects/moagg/files/ - Platform: Windows, Linux -- Keyword: arcade, 2D, open content +- Keyword: arcade, 2D, content open - Code repository: https://svn.code.sf.net/p/moagg/code (svn), http://moagg.cvs.sourceforge.net (cvs) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/morpheus_web_remake.md b/entries/morpheus_web_remake.md index 0ccd767b..f2a4e0c7 100644 --- a/entries/morpheus_web_remake.md +++ b/entries/morpheus_web_remake.md @@ -5,7 +5,7 @@ - State: beta - Play: https://soapbubble.online/morpheus/ - Platform: Web -- Keyword: adventure, remake, content commercial, first-person, content original required +- Keyword: adventure, remake, content commercial + original required, first-person - Code repository: https://github.com/soap-bubble/web.git - Code language: JavaScript - Code license: MIT diff --git a/entries/mr_rescue.md b/entries/mr_rescue.md index 4755070b..514e01e9 100644 --- a/entries/mr_rescue.md +++ b/entries/mr_rescue.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://github.com/SimonLarsen/mrrescue/releases (also home) - Platform: Windows, Linux, macOS -- Keyword: arcade, platform, open content +- Keyword: arcade, platform, content open - Code repository: https://github.com/SimonLarsen/mrrescue.git - Code language: Lua - Code license: zlib diff --git a/entries/mtp_target.md b/entries/mtp_target.md index 3c168861..793c388e 100644 --- a/entries/mtp_target.md +++ b/entries/mtp_target.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20130630212354/https://www.mtp-target.org/, https://web.archive.org/web/20170206034650/http://gna.org/projects/mtptarget/, https://code.google.com/archive/p/tux-target/ - State: mature, inactive since 2008 -- Keyword: action, multiplayer, online, open content +- Keyword: action, content open, multiplayer, online - Code repository: @see-home - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/nblood.md b/entries/nblood.md index e6550d32..5e87da01 100644 --- a/entries/nblood.md +++ b/entries/nblood.md @@ -3,7 +3,7 @@ - Home: https://nukeykt.retrohost.net/ - Inspiration: Blood - State: mature -- Keyword: remake, content commercial, first-person, content original required, shooter +- Keyword: remake, content commercial + original required, first-person, shooter - Code repository: https://github.com/nukeykt/NBlood.git - Code language: C, C++, Lua - Code license: GPL-2.0 diff --git a/entries/netmaumau.md b/entries/netmaumau.md index b61dbf7a..66c34b3d 100644 --- a/entries/netmaumau.md +++ b/entries/netmaumau.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2015 - Download: https://github.com/velnias75/NetMauMau/releases, https://sourceforge.net/projects/netmaumau/files/ - Platform: Windows, Linux -- Keyword: cards, role playing, online, open content +- Keyword: cards, role playing, content open, online - Code repository: https://github.com/velnias75/NetMauMau.git - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/nexuiz.md b/entries/nexuiz.md index 84157733..c5228f44 100644 --- a/entries/nexuiz.md +++ b/entries/nexuiz.md @@ -5,7 +5,7 @@ - State: mature - Download: https://sourceforge.net/projects/nexuiz/files/ - Platform: Windows -- Keyword: action, shooter, first-person +- Keyword: action, first-person, shooter - Code repository: http://svn.icculus.org/nexuiz/trunk/ (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/nfsiise.md b/entries/nfsiise.md index dc215161..08ba0f49 100644 --- a/entries/nfsiise.md +++ b/entries/nfsiise.md @@ -4,7 +4,7 @@ - Inspiration: Need For Speed II SE - State: mature - Platform: Windows, Linux -- Keyword: remake, content commercial, racing, content original required +- Keyword: remake, content commercial + original required, racing - Code repository: https://github.com/zaps166/NFSIISE.git - Code language: C - Code license: MIT diff --git a/entries/nikki_and_the_robots.md b/entries/nikki_and_the_robots.md index b2a62628..236664a4 100644 --- a/entries/nikki_and_the_robots.md +++ b/entries/nikki_and_the_robots.md @@ -2,7 +2,7 @@ - Home: https://github.com/nikki-and-the-robots/nikki - State: mature, inactive since 2012 -- Keyword: platform, open content +- Keyword: platform, content open - Code repository: https://github.com/nikki-and-the-robots/nikki.git - Code language: Haskell - Code license: LGPL-3.0 diff --git a/entries/nikwi.md b/entries/nikwi.md index 48930d2f..3e84eda1 100644 --- a/entries/nikwi.md +++ b/entries/nikwi.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20100109033002/http://www.badsectoracula.com/games/nikwi/, https://packages.debian.org/search?keywords=nikwi - State: beta, inactive since 2012 - Platform: Windows, Linux -- Keyword: platform, open content, 2D +- Keyword: platform, 2D, content open - Code repository: @see-debian - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/no_gravity.md b/entries/no_gravity.md index 3db6b59b..5a08258d 100644 --- a/entries/no_gravity.md +++ b/entries/no_gravity.md @@ -5,11 +5,11 @@ - State: mature, inactive since 2006 - Download: https://sourceforge.net/projects/nogravity/files/ - Platform: Windows, Linux -- Keyword: arcade, shooter, 3D, space +- Keyword: arcade, 3D, shooter, space - Code repository: http://nogravity.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/not_pacman.md b/entries/not_pacman.md index d1d9fbea..1905a6c2 100644 --- a/entries/not_pacman.md +++ b/entries/not_pacman.md @@ -4,7 +4,7 @@ - Inspiration: Pac-Man - State: mature, inactive since 2013 - Platform: Windows, Linux, macOS -- Keyword: action, open content +- Keyword: action, content open - Code repository: @see-home - Code language: Lua - Code license: WTFPL diff --git a/entries/nox_imperii.md b/entries/nox_imperii.md index 923ea0c1..a8c5464a 100644 --- a/entries/nox_imperii.md +++ b/entries/nox_imperii.md @@ -3,7 +3,7 @@ - Home: http://noximperii.com/ - Inspiration: Escape Velocity, Naev - State: mature, inactive since 2016 -- Keyword: sports, open content, similar +- Keyword: sports, content open, similar - Code repository: https://github.com/Kinniken/NoxImperii.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/numpty_physics.md b/entries/numpty_physics.md index df2f7390..1599de66 100644 --- a/entries/numpty_physics.md +++ b/entries/numpty_physics.md @@ -3,7 +3,7 @@ - Home: http://numptyphysics.garage.maemo.org/ - State: beta, inactive since 2016 - Platform: Windows, Linux, macOS -- Keyword: puzzle, simulation, open content, physics +- Keyword: puzzle, simulation, content open, physics - Code repository: https://github.com/thp/numptyphysics.git, https://github.com/svn2github/numptyphysics.git @add - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/nuncabola.md b/entries/nuncabola.md index 605f096a..6444c3cd 100644 --- a/entries/nuncabola.md +++ b/entries/nuncabola.md @@ -3,7 +3,7 @@ - Home: http://uppgarn.com/nuncabola/ - Inspiration: Neverball, Super Monkey Ball - State: beta -- Keyword: action, clone, open content +- Keyword: action, clone, content open - Code repository: @see-home - Code language: Java - Code license: GPL-2.0 diff --git a/entries/oldskool_gravity_game.md b/entries/oldskool_gravity_game.md index c2f753cc..10ecbfe1 100644 --- a/entries/oldskool_gravity_game.md +++ b/entries/oldskool_gravity_game.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/osgg/files/ - Platform: Windows, Linux -- Keyword: arcade, open content, side-scrolling +- Keyword: arcade, content open, side-scrolling - Code repository: https://github.com/DusteDdk/osgg.git, https://gitlab.com/osgames/osgg.git @add (conversion of svn), https://svn.code.sf.net/p/osgg/code (svn) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/omega.md b/entries/omega.md index 60ab8e93..2dc1e713 100644 --- a/entries/omega.md +++ b/entries/omega.md @@ -3,7 +3,7 @@ - Home: https://github.com/movitto/omega - State: beta - Platform: Web -- Keyword: strategy, open content, real-time, space +- Keyword: strategy, content open, real-time, space - Code repository: https://github.com/movitto/omega.git - Code language: JavaScript, Ruby - Code license: AGPL-3.0 diff --git a/entries/omnispeak.md b/entries/omnispeak.md index f965158d..8e677167 100644 --- a/entries/omnispeak.md +++ b/entries/omnispeak.md @@ -3,7 +3,7 @@ - Home: https://davidgow.net/keen/omnispeak.html - Inspiration: Commander Keen Series - State: mature -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/sulix/omnispeak.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/one_hour_one_life.md b/entries/one_hour_one_life.md index 7602a1cb..05270f5c 100644 --- a/entries/one_hour_one_life.md +++ b/entries/one_hour_one_life.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/One_Hour_One_Life - State: mature - Platform: Web -- Keyword: remake, multiplayer, online, open content +- Keyword: remake, content open, multiplayer, online - Code repository: https://github.com/jasonrohrer/OneLife.git - Code language: C, C++, PHP - Code license: Public domain (https://github.com/jasonrohrer/OneLife/blob/master/no_copyright.txt) diff --git a/entries/one_is_enough.md b/entries/one_is_enough.md index d45356a3..1d0bdcc4 100644 --- a/entries/one_is_enough.md +++ b/entries/one_is_enough.md @@ -2,7 +2,7 @@ - Home: http://www.hectigo.net/games/oneisenough/, https://packages.debian.org/search?keywords=oneisenough - State: beta, inactive since 2008 -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: @see-home - Code language: Python - Code license: GPL-2.0 diff --git a/entries/oolite.md b/entries/oolite.md index 8c544b09..9a3f8cec 100644 --- a/entries/oolite.md +++ b/entries/oolite.md @@ -6,7 +6,7 @@ - State: mature - Download: http://oolite.org/download/ - Platform: Windows, Linux, macOS -- Keyword: simulation, clone, space, 3D, trading +- Keyword: simulation, 3D, clone, space, trading - Code repository: https://github.com/OoliteProject/oolite.git - Code language: Objective-C, C, JavaScript - Code license: GPL-2.0 diff --git a/entries/open_apocalypse.md b/entries/open_apocalypse.md index 770d0d1e..e08d99b8 100644 --- a/entries/open_apocalypse.md +++ b/entries/open_apocalypse.md @@ -4,7 +4,7 @@ - Inspiration: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: beta - Download: https://ci.appveyor.com/project/openapoc/openapoc -- Keyword: remake, strategy, content commercial, content original required (X-Com Apocalypse) +- Keyword: remake, strategy, "content commercial + original required (X-Com Apocalypse)" - Code repository: https://github.com/OpenApoc/OpenApoc.git - Code language: C++ - Code license: MIT diff --git a/entries/open_fodder.md b/entries/open_fodder.md index 6cf1377d..0435bfc6 100644 --- a/entries/open_fodder.md +++ b/entries/open_fodder.md @@ -4,7 +4,7 @@ - Inspiration: Cannon Fodder - State: mature - Platform: Windows, Linux -- Keyword: remake, content commercial, open content (some demo content), content original required +- Keyword: remake, "content commercial + open (some demo content) + original required" - Code repository: https://github.com/OpenFodder/openfodder.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/open_horizon.md b/entries/open_horizon.md index aff9658c..52b66690 100644 --- a/entries/open_horizon.md +++ b/entries/open_horizon.md @@ -5,7 +5,7 @@ - State: beta - Download: http://zxstudio.org/blog/open-horizon-downloads/ - Platform: Windows, Linux, macOS -- Keyword: remake, simulation, content commercial, flight, content original required +- Keyword: remake, simulation, content commercial + original required, flight - Code repository: https://github.com/undefined-darkness/open-horizon.git - Code language: C++ - Code license: MIT diff --git a/entries/open_panzer.md b/entries/open_panzer.md index 988b7a77..32babde1 100644 --- a/entries/open_panzer.md +++ b/entries/open_panzer.md @@ -4,7 +4,7 @@ - Inspiration: Panzer General 2 - State: mature - Platform: Web -- Keyword: remake, strategy, online, turn-based, tiles +- Keyword: remake, strategy, online, tiles, turn-based - Code repository: https://github.com/nicupavel/openpanzer.git - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/open_quartz.md b/entries/open_quartz.md index 5efae86e..eeb3a8f9 100644 --- a/entries/open_quartz.md +++ b/entries/open_quartz.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2004 - Download: https://sourceforge.net/projects/openquartz/files/ - Platform: Windows, Linux -- Keyword: strategy, open content +- Keyword: strategy, content open - Code repository: https://gitlab.com/osgames/openquartz.git (conversion of cvs), http://openquartz.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/open_rpg_maker.md b/entries/open_rpg_maker.md index 92b48262..4129fab6 100644 --- a/entries/open_rpg_maker.md +++ b/entries/open_rpg_maker.md @@ -3,7 +3,7 @@ - Home: http://openrpgmaker.sourceforge.net/, https://sourceforge.net/projects/openrpgmaker/ - State: beta, inactive since 2014 - Download: http://openrpgmaker.sourceforge.net/wiki/index.php/Download, https://sourceforge.net/projects/openrpgmaker/files/ -- Keyword: framework, 2D, role playing +- Keyword: framework, role playing, 2D - Code repository: https://gitlab.com/osgames/openrpgmaker.git (snapshot of source releases) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/open_simulator.md b/entries/open_simulator.md index 6af626e9..29e9b299 100644 --- a/entries/open_simulator.md +++ b/entries/open_simulator.md @@ -4,7 +4,7 @@ - Inspiration: Second Life - State: beta - Download: http://opensimulator.org/wiki/Download -- Keyword: adventure, open content +- Keyword: adventure, content open - Code repository: git://opensimulator.org/git/opensim - Code language: C# - Code license: ? (BSD) diff --git a/entries/openage.md b/entries/openage.md index 4b381630..23aeb5a9 100644 --- a/entries/openage.md +++ b/entries/openage.md @@ -3,7 +3,7 @@ - Home: https://openage.sft.mx/ - Inspiration: Age of Empires, Age of Empires II, Star Wars: Galactic Battlegrounds - State: beta -- Keyword: game engine, remake, strategy, content commercial, real-time, content original required +- Keyword: game engine, remake, strategy, content commercial + original required, real-time - Code repository: https://github.com/SFTtech/openage.git - Code language: C++, Python - Code license: GPL-3.0 diff --git a/entries/openalchemist.md b/entries/openalchemist.md index 6fc68f10..f2494729 100644 --- a/entries/openalchemist.md +++ b/entries/openalchemist.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2010 - Download: http://www.openalchemist.com/downloads.php, https://sourceforge.net/projects/openalchemist/files/ - Platform: Windows, Linux -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://svn.code.sf.net/p/openalchemist/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openarena.md b/entries/openarena.md index 08235379..f37d5b31 100644 --- a/entries/openarena.md +++ b/entries/openarena.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2012 - Download: http://openarena.ws/download.php - Platform: Windows, Linux, macOS -- Keyword: action, remake, shooter, first-person +- Keyword: action, remake, first-person, shooter - Code repository: https://github.com/OpenArena/engine.git, https://github.com/suijingfeng/vkOpenArena.git @add - Code language: C - Code license: GPL-2.0 diff --git a/entries/openblack.md b/entries/openblack.md index 67afb768..8f6f580a 100644 --- a/entries/openblack.md +++ b/entries/openblack.md @@ -4,7 +4,7 @@ - Inspiration: Black & White - State: beta - Platform: Windows, Linux -- Keyword: remake, simulation, content commercial, content original required (?) +- Keyword: remake, simulation, "content commercial + original required (?)" - Code repository: https://github.com/openblack/openblack.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/openbor.md b/entries/openbor.md index b339fc75..5b14d8f0 100644 --- a/entries/openbor.md +++ b/entries/openbor.md @@ -3,7 +3,7 @@ - Home: http://www.chronocrash.com/forum/ - Inspiration: Double Dragon, Final Fight, Streets of Rage - State: mature -- Keyword: game engine, clone, content open, 2D +- Keyword: game engine, 2D, clone, content open - Code repository: https://github.com/DCurrent/openbor.git - Code language: C, C++ - Code license: 3-clause BSD (https://github.com/DCurrent/openbor/blob/master/LICENSE) diff --git a/entries/openbve.md b/entries/openbve.md index 82315967..9ff3f5e0 100644 --- a/entries/openbve.md +++ b/entries/openbve.md @@ -5,7 +5,7 @@ - State: mature - Download: https://openbve-project.net/download/ - Platform: Windows, Linux, macOS -- Keyword: simulation, clone, open content +- Keyword: simulation, clone, content open - Code repository: https://github.com/leezer3/OpenBVE.git - Code language: C# - Code license: Public domain diff --git a/entries/opencity.md b/entries/opencity.md index 0b1c1bfa..59b1e603 100644 --- a/entries/opencity.md +++ b/entries/opencity.md @@ -5,7 +5,7 @@ - Inspiration: SimCity - State: beta, inactive since 2015 - Download: http://www.opencity.info/en/Download.html -- Keyword: simulation, clone, 3D +- Keyword: simulation, 3D, clone - Code repository: https://gitlab.com/osgames/opencity.git (combination of cvs and svn), https://svn.code.sf.net/p/opencity/code (svn), http://opencity.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openclaw.md b/entries/openclaw.md index ea5c5c70..1eb676ce 100644 --- a/entries/openclaw.md +++ b/entries/openclaw.md @@ -3,7 +3,7 @@ - Home: https://github.com/pjasicek/OpenClaw - Inspiration: Claw - State: mature -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/pjasicek/OpenClaw.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/opencrystalcaves.md b/entries/opencrystalcaves.md index eb9d5176..7cd6b448 100644 --- a/entries/opencrystalcaves.md +++ b/entries/opencrystalcaves.md @@ -3,7 +3,7 @@ - Home: https://github.com/gurka/OpenCrystalCaves - Inspiration: Crystal Caves - State: beta, inactive since 2017 -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/gurka/OpenCrystalCaves.git - Code language: C++ - Code license: MIT diff --git a/entries/opendominion.md b/entries/opendominion.md index 19884af0..63cb6146 100644 --- a/entries/opendominion.md +++ b/entries/opendominion.md @@ -4,7 +4,7 @@ - Inspiration: Dominion - State: beta - Platform: Web -- Keyword: strategy, clone, multiplayer online, open content, text-based +- Keyword: strategy, clone, content open, multiplayer online, text-based - Code repository: https://github.com/OpenDominion/OpenDominion.git - Code language: PHP - Code license: AGPL-3.0 diff --git a/entries/openfrag.md b/entries/openfrag.md index 8dd95b82..7cd06392 100644 --- a/entries/openfrag.md +++ b/entries/openfrag.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/openfrag/, https://web.archive.org/web/20060714104441/http://wiki.openfrag.org/, https://web.archive.org/web/20120708034350/http://openfrag.org/, https://web.archive.org/web/20061230100321/http://openfrag.org/ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/openfrag/files/ -- Keyword: framework, first-person, shooter, medieval +- Keyword: framework, first-person, setting medieval, shooter - Code repository: https://svn.code.sf.net/p/openfrag/code (svn) - Code language: C++, Lua - Code license: GPL-2.0 diff --git a/entries/opengothic.md b/entries/opengothic.md index 3dde9f53..25709848 100644 --- a/entries/opengothic.md +++ b/entries/opengothic.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/Try/OpenGothic/releases - Platform: Windows -- Keyword: game engine, remake, role playing, content commercial, content original required +- Keyword: game engine, remake, role playing, content commercial + original required - Code repository: https://github.com/Try/OpenGothic.git - Code language: C++ - Code license: MIT diff --git a/entries/openhow.md b/entries/openhow.md index 857a6a95..7f42142d 100644 --- a/entries/openhow.md +++ b/entries/openhow.md @@ -4,13 +4,13 @@ - Inspiration: Hogs of War - State: beta - Platform: Windows, Linux -- Keyword: remake, strategy, content commercial, content original required, turn-based +- Keyword: remake, strategy, content commercial + original required, turn-based - Code repository: https://github.com/TalonBraveInfo/OpenHoW.git - Code language: C, C++ - Code license: GPL-3.0 - Code dependency: OpenAL, SDL2 -Aims at creating open content. +Aims at creating content open. ## Building diff --git a/entries/openjazz.md b/entries/openjazz.md index 7c24585e..25082a9e 100644 --- a/entries/openjazz.md +++ b/entries/openjazz.md @@ -5,7 +5,7 @@ - State: beta - Download: http://www.alister.eu/jazz/oj/download.php - Platform: Windows, macOS -- Keyword: arcade, remake, content commercial, content original required +- Keyword: arcade, remake, content commercial + original required - Code repository: https://github.com/AlisterT/openjazz.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openjk.md b/entries/openjk.md index 30774fe1..443a6863 100644 --- a/entries/openjk.md +++ b/entries/openjk.md @@ -5,7 +5,7 @@ - State: beta - Download: https://builds.openjk.org/ - Platform: Windows -- Keyword: action, game engine, remake, content commercial, content original required +- Keyword: action, game engine, remake, content commercial + original required - Code repository: https://github.com/JACoders/OpenJK.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/openkeeper.md b/entries/openkeeper.md index 6cebfed8..dad6aeca 100644 --- a/entries/openkeeper.md +++ b/entries/openkeeper.md @@ -3,7 +3,7 @@ - Home: https://github.com/tonihele/OpenKeeper - Inspiration: Dungeon Keeper 2 - State: beta -- Keyword: game engine, remake, simulation, content commercial, content original required +- Keyword: game engine, remake, simulation, content commercial + original required - Code repository: https://github.com/tonihele/OpenKeeper.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/openloco.md b/entries/openloco.md index 1fc82dbf..11679ea8 100644 --- a/entries/openloco.md +++ b/entries/openloco.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/OpenLoco/OpenLoco/releases - Platform: Windows, macOS -- Keyword: remake, simulation, content commercial, content original required, transport +- Keyword: remake, simulation, content commercial + original required, transport - Code repository: https://github.com/OpenLoco/OpenLoco.git - Code language: C++ - Code license: MIT diff --git a/entries/openmc2.md b/entries/openmc2.md index 0b504aab..69b6bc1f 100644 --- a/entries/openmc2.md +++ b/entries/openmc2.md @@ -3,7 +3,7 @@ - Home: https://github.com/LRFLEW/OpenMC2 - Inspiration: Midnight Club II - State: beta, inactive since 2018 -- Keyword: arcade, remake, content commercial, multiplayer LAN, racing, content original required +- Keyword: arcade, remake, content commercial + original required, multiplayer LAN, racing - Code repository: https://github.com/LRFLEW/OpenMC2.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/openmom.md b/entries/openmom.md index 58a3c11d..61c85f48 100644 --- a/entries/openmom.md +++ b/entries/openmom.md @@ -3,7 +3,7 @@ - Home: https://github.com/Jakz/openmom - Inspiration: Master of Magic - State: beta -- Keyword: strategy, clone, content commercial, content original required +- Keyword: strategy, clone, content commercial + original required - Code repository: https://github.com/Jakz/openmom.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/opennfs.md b/entries/opennfs.md index 9677b1ac..159179e0 100644 --- a/entries/opennfs.md +++ b/entries/opennfs.md @@ -3,7 +3,7 @@ - Home: https://opennfs.com/ - Inspiration: Need For Speed III: Hot Pursuit - State: beta -- Keyword: game engine, remake, cars, content commercial, racing, content original required +- Keyword: game engine, remake, cars, content commercial + original required, racing - Code repository: https://github.com/OpenNFS/OpenNFS.git - Code language: C, C++ - Code license: MIT diff --git a/entries/openomf.md b/entries/openomf.md index d60630d2..a26d5688 100644 --- a/entries/openomf.md +++ b/entries/openomf.md @@ -6,7 +6,7 @@ - State: beta - Download: http://www.openomf.org/downloads/, https://github.com/omf2097/openomf/releases - Platform: Windows, Linux -- Keyword: action, remake, content commercial (?), content open (?), content original required +- Keyword: action, remake, "content commercial (?) + open (?) + original required" - Code repository: https://github.com/omf2097/openomf.git - Code language: C, C++ - Code license: MIT diff --git a/entries/openrts.md b/entries/openrts.md index 220053f3..59d01821 100644 --- a/entries/openrts.md +++ b/entries/openrts.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20150412083852/https://www.pygame.org/projects/22/189/, https://web.archive.org/web/20070305102426/http://arrakis.sourceforge.net/wiki/index.php?OpenRTS, https://sourceforge.net/projects/arrakis/ - State: beta, inactive since 2006 - Download: https://sourceforge.net/projects/arrakis/files/ -- Keyword: strategy, real-time, isometric +- Keyword: strategy, isometric, real-time - Code repository: https://gitlab.com/osgames/openrts.git (import of sources) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/openrw.md b/entries/openrw.md index e7b4ac9e..a0609a37 100644 --- a/entries/openrw.md +++ b/entries/openrw.md @@ -4,7 +4,7 @@ - Inspiration: Grand Theft Auto III - State: beta - Platform: Windows, Linux, macOS -- Keyword: action, game engine, remake, content commercial, content original required +- Keyword: action, game engine, remake, content commercial + original required - Code repository: https://github.com/rwengine/openrw.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/opensage.md b/entries/opensage.md index 6d9f25e6..fdc0ed5d 100644 --- a/entries/opensage.md +++ b/entries/opensage.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/OpenSAGE/OpenSAGE/releases - Platform: Windows, Linux, macOS -- Keyword: game engine, strategy, clone, content commercial, real-time, content original required +- Keyword: game engine, strategy, clone, content commercial + original required, real-time - Code repository: https://github.com/OpenSAGE/OpenSAGE.git - Code language: C# - Code license: LGPL-3.0 diff --git a/entries/opensolomonskey.md b/entries/opensolomonskey.md index 4920044c..8c72cc54 100644 --- a/entries/opensolomonskey.md +++ b/entries/opensolomonskey.md @@ -4,11 +4,11 @@ - Inspiration: Solomon's Key - State: beta - Platform: Windows, Linux -- Keyword: puzzle, clone, open content +- Keyword: puzzle, clone, content open - Code repository: https://github.com/mdodis/OpenSolomonsKey.git - Code language: C++ - Code license: Unlicense ## Building -- Build system: custom script +- Build system: Custom diff --git a/entries/opensr.md b/entries/opensr.md index f4988f76..436165f3 100644 --- a/entries/opensr.md +++ b/entries/opensr.md @@ -3,7 +3,7 @@ - Home: https://github.com/ObKo/OpenSR - Inspiration: Space Rangers 2: Dominators - State: beta, inactive since 2017 -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/ObKo/OpenSR.git (archived) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/openswe1r.md b/entries/openswe1r.md index c00aef81..f68d28fc 100644 --- a/entries/openswe1r.md +++ b/entries/openswe1r.md @@ -3,7 +3,7 @@ - Home: https://openswe1r.github.io/ - Inspiration: Star Wars Episode I: Racer - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/OpenSWE1R/openswe1r.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/opentesarena.md b/entries/opentesarena.md index 59e546c1..e4cb0bd6 100644 --- a/entries/opentesarena.md +++ b/entries/opentesarena.md @@ -4,7 +4,7 @@ - Inspiration: The Elder Scrolls: Arena - State: beta - Platform: Windows, Linux, macOS -- Keyword: game engine, remake, content commercial, content original required +- Keyword: game engine, remake, content commercial + original required - Code repository: https://github.com/afritz1/OpenTESArena.git - Code language: C++ - Code license: MIT diff --git a/entries/opentomb.md b/entries/opentomb.md index 428bfaa6..69ae29af 100644 --- a/entries/opentomb.md +++ b/entries/opentomb.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/opentomb/OpenTomb/releases - Platform: Windows -- Keyword: action, game engine, remake, content commercial, content original required +- Keyword: action, game engine, remake, content commercial + original required - Code repository: https://github.com/opentomb/OpenTomb.git - Code language: C, C++, Lua - Code license: LGPL-3.0 diff --git a/entries/openttd.md b/entries/openttd.md index c35417a6..cd7a1550 100644 --- a/entries/openttd.md +++ b/entries/openttd.md @@ -5,7 +5,7 @@ - Inspiration: Transport Tycoon - State: mature - Download: https://www.openttd.org/downloads/openttd-releases/latest.html -- Keyword: remake, simulation, can use original content, open content (swappable) +- Keyword: remake, simulation, "content original possible + open (swappable)" - Code repository: https://github.com/OpenTTD/OpenTTD.git, https://svn.openttd.org/ (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/openviii.md b/entries/openviii.md index 32cf855a..ac9737c2 100644 --- a/entries/openviii.md +++ b/entries/openviii.md @@ -4,7 +4,7 @@ - Inspiration: Final Fantasy VIII - State: beta - Platform: Windows, Linux -- Keyword: game engine, remake, role playing, content commercial, content original required +- Keyword: game engine, remake, role playing, content commercial + original required - Code repository: https://github.com/MaKiPL/OpenVIII-monogame.git - Code language: C# - Code license: MIT diff --git a/entries/opmon.md b/entries/opmon.md index 4c2ea4c7..8fe0aaee 100644 --- a/entries/opmon.md +++ b/entries/opmon.md @@ -4,7 +4,7 @@ - Inspiration: Pokémon - State: beta - Platform: Windows, Linux, macOS -- Keyword: remake, open content +- Keyword: remake, content open - Code repository: https://github.com/OpMonTeam/OpMon.git, https://github.com/OpMonTeam/OpMon-Data.git @add - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/outpost_hd.md b/entries/outpost_hd.md index 7a1dcd62..23e27e80 100644 --- a/entries/outpost_hd.md +++ b/entries/outpost_hd.md @@ -3,7 +3,7 @@ - Home: "https://forum.outpost2.net/index.php/topic,5718.0.html" - Inspiration: Outpost - State: beta -- Keyword: remake, simulation, content commercial, content original required +- Keyword: remake, simulation, content commercial + original required - Code repository: https://github.com/OutpostUniverse/OPHD.git - Code language: C++ - Code license: 3-clause BSD diff --git a/entries/overgod.md b/entries/overgod.md index 279e791b..1e4650cd 100644 --- a/entries/overgod.md +++ b/entries/overgod.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/overgod/files/ - Platform: Windows, Linux, macOS -- Keyword: arcade, open content, space +- Keyword: arcade, content open, space - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/pac_go.md b/entries/pac_go.md index bb414921..bf8c188e 100644 --- a/entries/pac_go.md +++ b/entries/pac_go.md @@ -3,7 +3,7 @@ - Home: https://github.com/danicat/pacgo - Inspiration: Pac-Man - State: mature -- Keyword: arcade, clone, open content +- Keyword: arcade, clone, content open - Code repository: https://github.com/danicat/pacgo.git - Code language: Go - Code license: MIT diff --git a/entries/pacewar.md b/entries/pacewar.md index 2585bb2b..249fd681 100644 --- a/entries/pacewar.md +++ b/entries/pacewar.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2017 - Download: https://pacewar.github.io/download.html - Platform: Windows, Linux -- Keyword: action, open content +- Keyword: action, content open - Code repository: https://github.com/pacewar/pacewar.git, https://git.savannah.nongnu.org/git/pacewar.git @add, http://cvs.savannah.nongnu.org:/web/pacewar (cvs) - Code language: Python - Code license: GPL-3.0 diff --git a/entries/paper_isaac.md b/entries/paper_isaac.md index 8c1c6fbb..c2cfdf81 100644 --- a/entries/paper_isaac.md +++ b/entries/paper_isaac.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20190629124913/https://amos.me/games/paper-isaac/ - Inspiration: The Binding of Isaac - State: beta, inactive since 2015 -- Keyword: role playing, clone, open content, roguelike +- Keyword: role playing, clone, content open, roguelike - Code repository: https://github.com/fasterthanlime/isaac-paper.git - Code language: ooc - Code license: MIT diff --git a/entries/passage.md b/entries/passage.md index 41005606..cbe8f376 100644 --- a/entries/passage.md +++ b/entries/passage.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2011 - Download: https://sourceforge.net/projects/hcsoftware/files/Passage/ - Platform: Windows, Linux, macOS -- Keyword: role playing, open content +- Keyword: role playing, content open - Code repository: http://hcsoftware.cvs.sourceforge.net (cvs part of it) - Code language: C++ - Code license: Public domain diff --git a/entries/pendumito.md b/entries/pendumito.md index e9512d4a..7594ef25 100644 --- a/entries/pendumito.md +++ b/entries/pendumito.md @@ -4,7 +4,7 @@ - Inspiration: Webhangman - State: mature, inactive since 2003 - Platform: Web -- Keyword: tool, hangman, open content +- Keyword: tool, content open, hangman - Code repository: https://gitlab.com/osgames/pendumito.git (import of sources) - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/pentagram.md b/entries/pentagram.md index 03509149..cfca7e4a 100644 --- a/entries/pentagram.md +++ b/entries/pentagram.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2018 - Download: http://pentagram.sourceforge.net/download.php - Platform: Windows, Linux, macOS -- Keyword: game engine, remake, role playing, content commercial, content original required +- Keyword: game engine, remake, role playing, content commercial + original required - Code repository: https://github.com/pentagram-u8/pentagram.git, https://svn.code.sf.net/p/pentagram/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/pentobi.md b/entries/pentobi.md index 3a8a0921..e727e938 100644 --- a/entries/pentobi.md +++ b/entries/pentobi.md @@ -4,7 +4,7 @@ - Inspiration: Blokus - State: mature - Download: https://sourceforge.net/projects/pentobi/files/ -- Keyword: board, role playing, open content +- Keyword: board, role playing, content open - Code repository: https://github.com/enz/pentobi.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/peragro_tempus.md b/entries/peragro_tempus.md index aa55569b..ef516a0d 100644 --- a/entries/peragro_tempus.md +++ b/entries/peragro_tempus.md @@ -2,11 +2,11 @@ - Home: https://web.archive.org/web/20120606045222/http://peragro.org/, https://web.archive.org/web/20120722095351/http://wiki.peragro.org/index.php/Main_Page - State: beta, inactive since 2012 -- Keyword: role playing, multiplayer, online, open content +- Keyword: role playing, content open, multiplayer, online - Code repository: https://github.com/AnotherFoxGuy/Peragro-Tempus.git - Code language: C, C++ - Code license: GPL-2.0 -- Code dependency: Crystal_Space +- Code dependency: Crystal Space - Assets license: ? (CC-SA) Free multiplayer online role-playing game with a persistent world, which evolves according to nature and its inhabitants (players and NPCs). diff --git a/entries/pillows.md b/entries/pillows.md index 5370a70a..122c7838 100644 --- a/entries/pillows.md +++ b/entries/pillows.md @@ -3,7 +3,7 @@ - Home: https://fydo.net/projects/pillows - State: beta, inactive since 2007 - Platform: Windows, Linux, macOS -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://gitlab.com/osgames/pillows.git (import of sources) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/pingus.md b/entries/pingus.md index 5e5479d6..ed17eeac 100644 --- a/entries/pingus.md +++ b/entries/pingus.md @@ -6,7 +6,7 @@ - State: mature - Download: https://pingus.seul.org/download.html - Platform: Windows, Linux, macOS -- Keyword: puzzle, clone, open content +- Keyword: puzzle, clone, content open - Code repository: https://gitlab.com/pingus/pingus.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/pink_pony.md b/entries/pink_pony.md index a3c3fcbf..23dd0db5 100644 --- a/entries/pink_pony.md +++ b/entries/pink_pony.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: https://github.com/ginkgo/pink-pony/releases - Platform: Windows, Linux -- Keyword: puzzle, clone, multiplayer split-screen, open content, racing +- Keyword: puzzle, clone, content open, multiplayer split-screen, racing - Code repository: https://github.com/ginkgo/pink-pony.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/pixel_wheels.md b/entries/pixel_wheels.md index eb469934..ac85e5d8 100644 --- a/entries/pixel_wheels.md +++ b/entries/pixel_wheels.md @@ -3,7 +3,7 @@ - Home: https://agateau.com/projects/pixelwheels/ - State: beta - Platform: Windows, Linux, macOS, Android -- Keyword: game engine, open content, racing, 2D, top-down +- Keyword: game engine, 2D, content open, racing, top-down - Code repository: https://github.com/agateau/pixelwheels.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/planeshift.md b/entries/planeshift.md index 77b42fe1..912dbe6a 100644 --- a/entries/planeshift.md +++ b/entries/planeshift.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/PlaneShift_(video_game) - State: mature - Download: http://www.planeshift.it/Download -- Keyword: role playing, multiplayer online + massive, 3D, fantasy +- Keyword: role playing, 3D, multiplayer online + massive, setting fantasy - Code repository: https://svn.code.sf.net/p/planeshift/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/planetary_hoppers.md b/entries/planetary_hoppers.md index 365e412b..ec1a2c06 100644 --- a/entries/planetary_hoppers.md +++ b/entries/planetary_hoppers.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/planets/, http://planets.sourceforge.net/ - State: beta, inactive since 2003 - Download: https://sourceforge.net/projects/planets/files -- Keyword: strategy, space, multiplayer online +- Keyword: strategy, multiplayer online, space - Code repository: https://gitlab.com/osgames/planets.git (backup of cvs), http://planets.cvs.sourceforge.net/ (cvs) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/plee_the_bear.md b/entries/plee_the_bear.md index 19de044d..f82f72ee 100644 --- a/entries/plee_the_bear.md +++ b/entries/plee_the_bear.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20180201004909/http://www.stuff-o-matic.com:80/plee-the-bear/, https://sourceforge.net/projects/plee-the-bear/ - State: beta, inactive since 2017 - Download: https://sourceforge.net/projects/plee-the-bear/files/ (outdated) -- Keyword: platform, open content, 2D +- Keyword: platform, 2D, content open - Code repository: https://github.com/j-jorge/plee-the-bear.git, https://github.com/j-jorge/bear.git @add - Code language: Lisp, C++, Scheme, C - Code license: GPL-3.0 diff --git a/entries/postal_1_open_source.md b/entries/postal_1_open_source.md index 95f3c100..ad325646 100644 --- a/entries/postal_1_open_source.md +++ b/entries/postal_1_open_source.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/Postal_(video_game)#Open_source - Inspiration: Postal - State: beta, inactive since 2018 -- Keyword: remake, content commercial, content original required, shooter +- Keyword: remake, content commercial + original required, shooter - Code repository: https://bitbucket.org/gopostal/postal-1-open-source (hg) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/powermanga.md b/entries/powermanga.md index f3f56ed0..25ff80fb 100644 --- a/entries/powermanga.md +++ b/entries/powermanga.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2015 - Download: http://linux.tlk.fr/games/Powermanga/download/, https://sourceforge.net/projects/powermanga/files/ - Platform: Linux -- Keyword: arcade, open content, 2D, shooter +- Keyword: arcade, 2D, content open, shooter - Code repository: https://svn.code.sf.net/p/powermanga/code (svn), http://powermanga.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-3.0 diff --git a/entries/prboom+.md b/entries/prboom+.md index 22d35ce1..e0dfab45 100644 --- a/entries/prboom+.md +++ b/entries/prboom+.md @@ -4,7 +4,7 @@ - Inspiration: Doom, Doom II, Heretic, Hexen - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/prboom-plus/files/ -- Keyword: remake, content commercial, content original required, shooter +- Keyword: remake, content commercial + original required, shooter - Code repository: https://svn.prboom.org/repos/branches/prboom-plus-24/prboom2/ (svn) - Code language: C - Code license: GPL-2.0 diff --git a/entries/primeshooter.md b/entries/primeshooter.md index 47646cc0..a9fd5698 100644 --- a/entries/primeshooter.md +++ b/entries/primeshooter.md @@ -3,7 +3,7 @@ - Home: http://thinkinghard.com/math/integers/PrimeShooter.html - State: mature, inactive since 2010 - Platform: Web -- Keyword: arcade, educational, open content, shooter +- Keyword: arcade, educational, content open, shooter - Code repository: @see-home - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/primrose.md b/entries/primrose.md index 1aa67469..e4e08a2d 100644 --- a/entries/primrose.md +++ b/entries/primrose.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2009 - Download: http://primrose.sourceforge.net/download.php, https://sourceforge.net/projects/primrose/files/ - Platform: Windows, Linux, macOS -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://gitlab.com/osgames/primrose.git (conversion of cvs), http://primrose.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: Public domain diff --git a/entries/procedural_map_generator.md b/entries/procedural_map_generator.md index 465f9cf3..0c4df43d 100644 --- a/entries/procedural_map_generator.md +++ b/entries/procedural_map_generator.md @@ -3,7 +3,7 @@ - Home: https://underww.itch.io/procedural-map-generator - State: mature, inactive since 2018 - Platform: Windows -- Keyword: tool, open content +- Keyword: tool, content open - Code repository: https://github.com/marukrap/ProceduralMapGenerator.git - Code language: C++ - Code license: MIT diff --git a/entries/project_alexandria.md b/entries/project_alexandria.md index ee96c338..24f4fbda 100644 --- a/entries/project_alexandria.md +++ b/entries/project_alexandria.md @@ -3,7 +3,7 @@ - Home: http://www.sixthfloorlabs.com/projects/alexandria/ - State: beta, inactive since 2007 - Download: http://www.sixthfloorlabs.com/files/ -- Keyword: arcade, open content, space +- Keyword: arcade, content open, space - Code repository: @see-download - Code language: Python - Code license: ? (GPL version?) diff --git a/entries/project_carrot.md b/entries/project_carrot.md index 1782ecdf..2292f562 100644 --- a/entries/project_carrot.md +++ b/entries/project_carrot.md @@ -4,7 +4,7 @@ - Inspiration: Jazz Jackrabbit 2 - State: beta, inactive since 2017 - Download: https://carrot.soulweaver.fi/#downloads -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/soulweaver91/project-carrot.git - Code language: C++ - Code license: MIT diff --git a/entries/project_helena.md b/entries/project_helena.md index 0c9d5fa5..4d7282bd 100644 --- a/entries/project_helena.md +++ b/entries/project_helena.md @@ -3,7 +3,7 @@ - Home: https://gitlab.com/EugeneLoza/Project-Helena, https://sourceforge.net/projects/projecthelena/ - State: beta - Download: https://decoherence.itch.io/project-helena, https://sourceforge.net/projects/projecthelena/files -- Keyword: strategy, turn-based, role playing +- Keyword: role playing, strategy, turn-based - Code repository: https://gitlab.com/EugeneLoza/Project-Helena.git - Code language: Pascal - Code license: GPL-3.0 diff --git a/entries/project_starfighter.md b/entries/project_starfighter.md index 0233df0b..c140ec81 100644 --- a/entries/project_starfighter.md +++ b/entries/project_starfighter.md @@ -4,7 +4,7 @@ - State: mature - Download: https://pr-starfighter.github.io/download.html, https://github.com/pr-starfighter/starfighter/releases - Platform: Windows, Linux -- Keyword: arcade, open content, shooter, 2D +- Keyword: arcade, 2D, content open, shooter - Code repository: https://github.com/pr-starfighter/starfighter.git, https://git.savannah.nongnu.org/git/starfighter.git @add, http://cvs.savannah.nongnu.org:/web/starfighter (cvs) - Code language: C - Code license: GPL-3.0 diff --git a/entries/pychess.md b/entries/pychess.md index af4aae34..d9b82b00 100644 --- a/entries/pychess.md +++ b/entries/pychess.md @@ -4,7 +4,7 @@ - State: mature - Download: http://pychess.org/download/, https://github.com/pychess/pychess/releases - Platform: Windows, Linux -- Keyword: puzzle, chess, open content +- Keyword: puzzle, chess, content open - Code repository: https://github.com/pychess/pychess.git, https://github.com/gbtami/pychess-variants.git @add - Code language: Python - Code license: GPL-3.0 diff --git a/entries/pygame-alien-invasion.md b/entries/pygame-alien-invasion.md index d5b78478..5968bbc4 100644 --- a/entries/pygame-alien-invasion.md +++ b/entries/pygame-alien-invasion.md @@ -3,7 +3,7 @@ - Home: https://github.com/Anthonymcqueen21/Pygame---Alien-Invasion - State: beta, inactive since 2018 - Platform: Windows, Linux, macOS -- Keyword: arcade, space, shooter +- Keyword: arcade, shooter, space - Code repository: https://github.com/Anthonymcqueen21/Pygame---Alien-Invasion.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/python_kye.md b/entries/python_kye.md index 33fcf925..154bb939 100644 --- a/entries/python_kye.md +++ b/entries/python_kye.md @@ -4,7 +4,7 @@ - Inspiration: Kye - State: mature, inactive since 2010 - Download: http://games.moria.org.uk/kye/download-install -- Keyword: puzzle, remake, arcade +- Keyword: arcade, puzzle, remake - Code repository: @see-download - Code language: Python - Code license: GPL-2.0 diff --git a/entries/q-gears.md b/entries/q-gears.md index 81c9f15f..444eb007 100644 --- a/entries/q-gears.md +++ b/entries/q-gears.md @@ -4,7 +4,7 @@ - Inspiration: Final Fantasy VII - State: beta, inactive since 2015 - Download: https://sourceforge.net/projects/q-gears/files/ -- Keyword: game engine, remake, role playing, content commercial, content original required +- Keyword: game engine, remake, role playing, content commercial + original required - Code repository: https://github.com/q-gears/q-gears.git, http://hg.code.sf.net/p/q-gears/code (hg old) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/quadrapassel.md b/entries/quadrapassel.md index 7b8bdeef..0f9a3def 100644 --- a/entries/quadrapassel.md +++ b/entries/quadrapassel.md @@ -3,7 +3,7 @@ - Home: https://wiki.gnome.org/Apps/Quadrapassel - Inspiration: Tetris - State: mature -- Keyword: puzzle, clone, open content +- Keyword: puzzle, clone, content open - Code repository: https://gitlab.gnome.org/GNOME/quadrapassel.git - Code language: Vala - Code license: GPL-2.0 diff --git a/entries/quakejs.md b/entries/quakejs.md index bbdd20fd..ca8b259b 100644 --- a/entries/quakejs.md +++ b/entries/quakejs.md @@ -5,7 +5,7 @@ - State: mature - Play: http://www.quakejs.com/ - Platform: Web -- Keyword: remake, first-person, content original required (?), shooter +- Keyword: remake, content original required (?), first-person, shooter - Code repository: https://github.com/inolen/quakejs.git - Code language: JavaScript - Code license: MIT diff --git a/entries/quakespasm.md b/entries/quakespasm.md index a68e34f9..4a006c49 100644 --- a/entries/quakespasm.md +++ b/entries/quakespasm.md @@ -5,7 +5,7 @@ - State: mature - Download: http://quakespasm.sourceforge.net/download.htm, https://sourceforge.net/projects/quakespasm/files/ - Platform: Windows, Linux, macOS -- Keyword: action, remake, content commercial, content original required (?), shooter +- Keyword: action, remake, "content commercial + original required (?)", shooter - Code repository: https://git.code.sf.net/p/quakespasm/quakespasm.git, https://svn.code.sf.net/p/quakespasm/code (svn active) - Code language: C - Code license: GPL-2.0 diff --git a/entries/quatter.md b/entries/quatter.md index 9bbaea4f..2ad4b32e 100644 --- a/entries/quatter.md +++ b/entries/quatter.md @@ -3,7 +3,7 @@ - Home: https://luckeyproductions.itch.io/quatter - Media: https://en.wikipedia.org/wiki/Quarto_(board_game) - State: mature, inactive since 2018 -- Keyword: board, strategy, open content +- Keyword: board, strategy, content open - Code repository: https://gitlab.com/luckeyproductions/Quatter.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/race_into_space.md b/entries/race_into_space.md index e82076d6..f0eb11cc 100644 --- a/entries/race_into_space.md +++ b/entries/race_into_space.md @@ -6,7 +6,7 @@ - State: mature - Download: https://sourceforge.net/projects/raceintospace/files/ - Platform: Windows, Linux, macOS -- Keyword: remake, simulation, strategy, turn-based, space +- Keyword: remake, simulation, strategy, space, turn-based - Code repository: https://github.com/raceintospace/raceintospace.git, http://raceintospace.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/radakan.md b/entries/radakan.md index c7bcb33f..4c937e26 100644 --- a/entries/radakan.md +++ b/entries/radakan.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20170915004555/http://radakan.org/, https://sourceforge.net/projects/radakan/ - State: beta, inactive since 2014 - Download: https://sourceforge.net/projects/radakan/files/ -- Keyword: role playing, fantasy +- Keyword: role playing, setting fantasy - Code repository: https://gitlab.com/osgames/radakan.git (backup of svn), https://svn.code.sf.net/p/radakan/code (svn) - Code language: Python - Code license: Custom diff --git a/entries/raincat.md b/entries/raincat.md index 02778250..5ee23746 100644 --- a/entries/raincat.md +++ b/entries/raincat.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20170317141245/https://bysusanlin.com/raincat/, https://packages.debian.org/search?keywords=raincat - State: mature, inactive since 2018 -- Keyword: puzzle, 2D, open content +- Keyword: puzzle, 2D, content open - Code repository: https://github.com/styx/Raincat.git - Code language: Haskell - Code license: 3-clause BSD diff --git a/entries/redriver2.md b/entries/redriver2.md index c2da820a..a58b1a56 100644 --- a/entries/redriver2.md +++ b/entries/redriver2.md @@ -3,7 +3,7 @@ - Home: https://github.com/SoapyMan/REDRIVER2 - Inspiration: Driver 2 - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/SoapyMan/REDRIVER2.git - Code language: C++ - Code license: MIT diff --git a/entries/reflection_keen.md b/entries/reflection_keen.md index 24c1127b..5060ff9c 100644 --- a/entries/reflection_keen.md +++ b/entries/reflection_keen.md @@ -3,7 +3,7 @@ - Home: https://github.com/NY00123/refkeen - Inspiration: Catacomb 3-D, Catacomb Adventure Series, Commander Keen Series, Keen Dreams - State: mature -- Keyword: platform, remake, 2D, content commercial, content original required +- Keyword: platform, remake, 2D, content commercial + original required - Code repository: https://github.com/NY00123/refkeen.git - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/regoth.md b/entries/regoth.md index bb337c4f..c9a8526f 100644 --- a/entries/regoth.md +++ b/entries/regoth.md @@ -4,7 +4,7 @@ - Inspiration: Gothic, Gothic II - State: mature - Download: https://github.com/REGoth-project/REGoth/releases -- Keyword: remake, role playing, content commercial, content original required +- Keyword: remake, role playing, content commercial + original required - Code repository: https://github.com/REGoth-project/REGoth-bs.git, https://github.com/REGoth-project/REGoth.git @add - Code language: C++ - Code license: GPL-3.0, MIT (https://github.com/REGoth-project/REGoth-bs/blob/master/LICENSE) diff --git a/entries/reshade.md b/entries/reshade.md index 5b56787e..4951e742 100644 --- a/entries/reshade.md +++ b/entries/reshade.md @@ -13,4 +13,4 @@ Post-processing graphics injector. ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/residualvm.md b/entries/residualvm.md index 4e2ccfd8..b0dfff17 100644 --- a/entries/residualvm.md +++ b/entries/residualvm.md @@ -5,7 +5,7 @@ - State: beta - Download: https://www.residualvm.org/downloads/ - Platform: Windows, macOS -- Keyword: adventure, game engine, remake, content commercial, content original required +- Keyword: adventure, game engine, remake, content commercial + original required - Code repository: https://github.com/residualvm/residualvm.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/retux.md b/entries/retux.md index 350b08f7..3d2afee9 100644 --- a/entries/retux.md +++ b/entries/retux.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: http://retux.nongnu.org/download.html - Platform: Windows, Linux -- Keyword: platform, 2D, open content +- Keyword: platform, 2D, content open - Code repository: https://git.savannah.nongnu.org/git/retux.git, http://cvs.savannah.nongnu.org:/web/retux (cvs) - Code language: Python - Code license: GPL-3.0 diff --git a/entries/ri-li.md b/entries/ri-li.md index 2df713d3..ef019e2b 100644 --- a/entries/ri-li.md +++ b/entries/ri-li.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2007 - Download: http://ri-li.sourceforge.net/download.html, https://sourceforge.net/projects/ri-li/files/ - Platform: Windows, Linux, macOS -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: @see-download - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/rigel_engine.md b/entries/rigel_engine.md index 43a2985a..718cc123 100644 --- a/entries/rigel_engine.md +++ b/entries/rigel_engine.md @@ -4,7 +4,7 @@ - Inspiration: Duke Nukem II - State: beta - Download: https://github.com/lethal-guitar/RigelEngine/releases -- Keyword: action, game engine, remake, content commercial, content original required, shooter +- Keyword: action, game engine, remake, content commercial + original required, shooter - Code repository: https://github.com/lethal-guitar/RigelEngine.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/rigs_of_rods.md b/entries/rigs_of_rods.md index 8d03e83e..21b19606 100644 --- a/entries/rigs_of_rods.md +++ b/entries/rigs_of_rods.md @@ -5,7 +5,7 @@ - Inspiration: BeamNG.drive - State: mature - Platform: Windows -- Keyword: simulation, cars, multiplayer online, open content, 3D +- Keyword: simulation, 3D, cars, content open, multiplayer online - Code repository: https://github.com/RigsOfRods/rigs-of-rods.git - Code language: C, C++, AngelScript - Code license: GPL-3.0 diff --git a/entries/rock-raiders-remake.md b/entries/rock-raiders-remake.md index f983e6e3..8c5f4ab4 100644 --- a/entries/rock-raiders-remake.md +++ b/entries/rock-raiders-remake.md @@ -4,7 +4,7 @@ - Inspiration: Lego Rock Raiders - State: beta - Platform: Web -- Keyword: action, remake, content commercial, content original required +- Keyword: action, remake, content commercial + original required - Code repository: https://github.com/rystills/rock-raiders-remake.git - Code language: JavaScript - Code license: MIT diff --git a/entries/rocksndiamonds.md b/entries/rocksndiamonds.md index 01636e17..bf8394a5 100644 --- a/entries/rocksndiamonds.md +++ b/entries/rocksndiamonds.md @@ -2,7 +2,7 @@ - Home: https://www.artsoft.org/rocksndiamonds/ - Media: https://en.wikipedia.org/wiki/Rocks%27n%27Diamonds -- Inspiration: Boulder Dash, Supaplex, Sokoban, Emerald Mine +- Inspiration: Boulder Dash, Emerald Mine, Sokoban, Supaplex - State: mature - Download: https://www.artsoft.org/rocksndiamonds/download/ - Keyword: action, puzzle, remake diff --git a/entries/roguebox_adventures.md b/entries/roguebox_adventures.md index 1e97522f..1911d567 100644 --- a/entries/roguebox_adventures.md +++ b/entries/roguebox_adventures.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2017 - Download: https://rogueboxadventures.tuxfamily.org/download.html - Platform: Windows, Linux -- Keyword: role playing, open content, roguelike, 2D +- Keyword: role playing, 2D, content open, roguelike - Code repository: https://git.tuxfamily.org/rba/rogueboxadventures.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/roguish.md b/entries/roguish.md index 9b2a87f0..e4c6f2e1 100644 --- a/entries/roguish.md +++ b/entries/roguish.md @@ -3,7 +3,7 @@ - Home: https://github.com/CamHenlin/Roguish - State: beta, inactive since 2015 - Platform: Web -- Keyword: role playing, roguelike, multiplayer +- Keyword: role playing, multiplayer, roguelike - Code repository: https://github.com/CamHenlin/Roguish.git - Code language: JavaScript - Code license: 3-clause BSD diff --git a/entries/rot_magus.md b/entries/rot_magus.md index 5cbce71e..38174598 100644 --- a/entries/rot_magus.md +++ b/entries/rot_magus.md @@ -6,7 +6,7 @@ - State: beta - Play: https://gamejolt.com/games/rm/41491 - Platform: Web -- Keyword: remake, role playing, open content, roguelike, turn-based +- Keyword: remake, role playing, content open, roguelike, turn-based - Code repository: https://github.com/kosinaz/Rot-Magus.git, https://github.com/cxong/MagusPreservation.git @add - Code language: JavaScript - Code license: Apache-2.0, CC0 diff --git a/entries/rpge.md b/entries/rpge.md index a1f0d892..50e8f10e 100644 --- a/entries/rpge.md +++ b/entries/rpge.md @@ -2,7 +2,7 @@ - Home: http://savannah.gnu.org/projects/rpge/ - State: beta, inactive since 2014 -- Keyword: framework, 2D, role playing +- Keyword: framework, role playing, 2D - Code repository: https://git.savannah.gnu.org/git/rpge.git, https://gitlab.com/osgames/rpge.git @add - Code language: C - Code license: GPL-3.0 diff --git a/entries/ruby-warrior.md b/entries/ruby-warrior.md index fd62bd3c..0667b96d 100644 --- a/entries/ruby-warrior.md +++ b/entries/ruby-warrior.md @@ -3,7 +3,7 @@ - Home: https://github.com/ryanb/ruby-warrior - State: beta, inactive since 2012 - Platform: Windows, Linux, macOS -- Keyword: game engine, open content, programming, roguelike +- Keyword: game engine, content open, programming, roguelike - Code repository: https://github.com/ryanb/ruby-warrior.git - Code language: Ruby - Code license: MIT diff --git a/entries/rufasslider.md b/entries/rufasslider.md index ab35d567..f39fa07e 100644 --- a/entries/rufasslider.md +++ b/entries/rufasslider.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/fastrgv/RufasSlider/releases - Platform: Windows, Linux, macOS -- Keyword: puzzle, slider, 2D +- Keyword: puzzle, 2D, slider - Code repository: @see-download - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/runfield.md b/entries/runfield.md index 408f95f5..84386cb4 100644 --- a/entries/runfield.md +++ b/entries/runfield.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2011 - Play: http://fhtr.org/runfield/ - Platform: Web -- Keyword: arcade, open content, 2D +- Keyword: arcade, 2D, content open - Code repository: https://github.com/kig/runfield.git - Code language: JavaScript - Code license: GPL-3.0 diff --git a/entries/sandspiel.md b/entries/sandspiel.md index 7a1299bd..9d3e5219 100644 --- a/entries/sandspiel.md +++ b/entries/sandspiel.md @@ -5,7 +5,7 @@ - State: beta - Play: https://sandspiel.club/ - Platform: Web -- Keyword: simulation, clone, open content +- Keyword: simulation, clone, content open - Code repository: https://github.com/maxbittker/sandspiel.git - Code language: Rust, JavaScript, TypeScript - Code license: MIT diff --git a/entries/scourge.md b/entries/scourge.md index 35706e77..d0b2ac76 100644 --- a/entries/scourge.md +++ b/entries/scourge.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/scourge/, https://web.archive.org/web/20090105165051/http://scourgeweb.org/ - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/scourge/files -- Keyword: role playing, roguelike, 3D +- Keyword: role playing, 3D, roguelike - Code repository: https://github.com/q4a/scourge.git (may not be up to date), https://svn.code.sf.net/p/scourge/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/scrap.md b/entries/scrap.md index 6d68d590..8b2e306c 100644 --- a/entries/scrap.md +++ b/entries/scrap.md @@ -2,7 +2,7 @@ - Home: https://inconsolation.wordpress.com/2015/03/10/scrap-go-forth-and-scavenge-aggressively/ - State: mature, inactive since 2017 -- Keyword: strategy, open content, roguelike +- Keyword: strategy, content open, roguelike - Code repository: https://github.com/thijsvanommen/scrap.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/scrolling_game_development_kit_2.md b/entries/scrolling_game_development_kit_2.md index fe96081b..2804aae3 100644 --- a/entries/scrolling_game_development_kit_2.md +++ b/entries/scrolling_game_development_kit_2.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2017 - Download: http://sgdk2.sourceforge.net/download.php, https://sourceforge.net/projects/sgdk2/files/ - Platform: Windows -- Keyword: framework, side-scrolling, 2D +- Keyword: framework, 2D, side-scrolling - Code repository: https://git.code.sf.net/p/sgdk2/git, https://gitlab.com/osgames/sgdk2.git @add, https://svn.code.sf.net/p/sgdk2/code (svn - contained in git) - Code language: C# - Code license: GPL-2.0 diff --git a/entries/sdl-ball.md b/entries/sdl-ball.md index 14da7937..d078d03a 100644 --- a/entries/sdl-ball.md +++ b/entries/sdl-ball.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: http://sdl-ball.sourceforge.net/?page=download, https://sourceforge.net/projects/sdl-ball/files/ - Platform: Linux -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://github.com/DusteDdk/SDL-Ball.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/search_for_the_red_herring.md b/entries/search_for_the_red_herring.md index 1ea23048..37d737ab 100644 --- a/entries/search_for_the_red_herring.md +++ b/entries/search_for_the_red_herring.md @@ -3,7 +3,7 @@ - Home: https://pyweek.org/e/RoeBros/, https://fydo.net/projects/redherring - State: mature, inactive since 2006 - Download: https://sourceforge.net/projects/sftrh/files/sftrh/ -- Keyword: strategy, open content, real-time +- Keyword: strategy, content open, real-time - Code repository: @see-download - Code language: Python - Code license: GPL-2.0 diff --git a/entries/sfall.md b/entries/sfall.md index 0f29d662..3a30cdf0 100644 --- a/entries/sfall.md +++ b/entries/sfall.md @@ -4,7 +4,7 @@ - Inspiration: Fallout 2 - State: mature - Download: https://github.com/phobos2077/sfall/releases -- Keyword: game engine, remake, content commercial, content original required (full original game) +- Keyword: game engine, remake, "content commercial + original required (full original game)" - Code repository: https://github.com/phobos2077/sfall.git - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/shockolate.md b/entries/shockolate.md index 38af7ff2..4a374dbc 100644 --- a/entries/shockolate.md +++ b/entries/shockolate.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/Interrupt/systemshock/releases/ - Platform: Windows, Linux, macOS -- Keyword: remake, content commercial, content original required (game data from System Shock: Enhanced Edition) +- Keyword: remake, "content commercial + original required (game data from System Shock: Enhanced Edition)" - Code repository: https://github.com/Interrupt/systemshock.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/shotgun_debugger.md b/entries/shotgun_debugger.md index 63b196fc..57252e0a 100644 --- a/entries/shotgun_debugger.md +++ b/entries/shotgun_debugger.md @@ -3,7 +3,7 @@ - Home: https://www.gamecreation.org/games/shotgun_debugger - State: mature, inactive since 2005 - Platform: Windows, Linux, macOS -- Keyword: remake, shooter, top-down, 3D, 2D +- Keyword: remake, 2D, 3D, shooter, top-down - Code repository: https://gitlab.com/osgames/sdb.git (import of sources) - Code language: C++ - Code license: GPL-2.0 @@ -12,4 +12,4 @@ ## Building -- Build system: VisualStudio +- Build system: Visual Studio diff --git a/entries/simitone.md b/entries/simitone.md index 1b01b323..2f3b6c87 100644 --- a/entries/simitone.md +++ b/entries/simitone.md @@ -3,7 +3,7 @@ - Home: https://github.com/riperiperi/Simitone - Inspiration: The Sims - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/riperiperi/Simitone.git - Code language: C# - Code license: MPL-2.0 diff --git a/entries/simon_tathams_portable_puzzle_collection.md b/entries/simon_tathams_portable_puzzle_collection.md index 27c1d9ea..5c687c5a 100644 --- a/entries/simon_tathams_portable_puzzle_collection.md +++ b/entries/simon_tathams_portable_puzzle_collection.md @@ -3,7 +3,7 @@ - Home: http://www.chiark.greenend.org.uk/~sgtatham/puzzles/, https://chris.boyle.name/projects/android-puzzles/, https://hewgill.com/puzzles/ - State: mature - Platform: Windows, Linux, macOS, Android, iOS -- Keyword: remake, open content, puzzle +- Keyword: puzzle, remake, content open - Code repository: https://git.tartarus.org/simon/puzzles.git, https://github.com/chrisboyle/sgtpuzzles.git @add, https://github.com/ghewgill/puzzles.git @add - Code language: C - Code license: MIT diff --git a/entries/simple_sokoban.md b/entries/simple_sokoban.md index 6736f624..47b0f3ee 100644 --- a/entries/simple_sokoban.md +++ b/entries/simple_sokoban.md @@ -4,7 +4,7 @@ - Inspiration: Sokoban - State: mature, inactive since 2014 - Download: https://sourceforge.net/projects/simplesok/files/ -- Keyword: library, open content +- Keyword: library, content open - Code repository: https://gitlab.com/osgames/simplesok.git (conversion of svn), https://svn.code.sf.net/p/simplesok/code (svn) - Code language: C - Code license: GPL-3.0 diff --git a/entries/sinatra.md b/entries/sinatra.md index 00e4eadb..820a4ac5 100644 --- a/entries/sinatra.md +++ b/entries/sinatra.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20120326005334/http://fredrik.jemla.eu/sinatra/ - State: mature, inactive since 2008 -- Keyword: music, karaoke, open content +- Keyword: music, content open, karaoke - Code repository: @see-home - Code language: C - Code license: GPL-3.0 diff --git a/entries/sleep_is_death.md b/entries/sleep_is_death.md index 285e4271..9be58314 100644 --- a/entries/sleep_is_death.md +++ b/entries/sleep_is_death.md @@ -2,7 +2,7 @@ - Home: http://sleepisdeath.net - State: mature, inactive since 2018 -- Keyword: role playing, multiplayer, open content +- Keyword: role playing, content open, multiplayer - Code repository: https://github.com/jasonrohrer/SleepIsDeath.git - Code language: C++ - Code license: ? (Public domain) diff --git a/entries/slingshot.md b/entries/slingshot.md index c5a357d4..ade41812 100644 --- a/entries/slingshot.md +++ b/entries/slingshot.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2007 - Download: https://web.archive.org/web/20150630152307/http://slingshot.wikispot.org/Downloads, https://sourceforge.net/projects/slingshot-game/files/ - Platform: Windows, Linux, macOS -- Keyword: strategy, open content, turn-based +- Keyword: strategy, content open, turn-based - Code repository: https://gitlab.com/osgames/slingshot.git (import of source releases and SVN which has only 1 revision), https://svn.code.sf.net/p/slingshot-game/code (svn) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/snowballz.md b/entries/snowballz.md index 08515256..42cb4305 100644 --- a/entries/snowballz.md +++ b/entries/snowballz.md @@ -2,7 +2,7 @@ - Home: http://joey101.arcticpaint.com/snowballz/, https://web.archive.org/web/20160308143610/https://www.pygame.org/projects/22/328/, https://packages.debian.org/search?keywords=snowballz, https://sourceforge.net/projects/snowballz/ - State: beta, inactive since 2007 -- Keyword: strategy, open content, real-time +- Keyword: strategy, content open, real-time - Code repository: https://gitlab.com/osgames/snowballz.git (conversion of cvs), http://snowballz.cvs.sourceforge.net (cvs) - Code language: Python - Code license: ? (GPL version?) diff --git a/entries/solarwolf.md b/entries/solarwolf.md index 7dbe2435..e1c51ae2 100644 --- a/entries/solarwolf.md +++ b/entries/solarwolf.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2004 - Download: https://www.pygame.org/shredwheat/solarwolf/index.shtml#download - Platform: Windows, Linux, macOS -- Keyword: action, arcade, remake, open content +- Keyword: action, arcade, remake, content open - Code repository: https://gitlab.com/osgames/solarwolf.git (import of source releases) - Code language: Python - Code license: LGPL-2.1 diff --git a/entries/song_of_albion.md b/entries/song_of_albion.md index 25365f02..0c9a1e0c 100644 --- a/entries/song_of_albion.md +++ b/entries/song_of_albion.md @@ -2,7 +2,7 @@ - Home: https://code.google.com/archive/p/songofalbion/ - State: mature, inactive since 2011 -- Keyword: strategy, medieval +- Keyword: strategy, setting medieval - Code repository: https://github.com/rayjohannessen/songofalbion.git, https://code.google.com/archive/p/songofalbion/source - Code language: C, C++ - Code license: Apache-2.0 diff --git a/entries/sourcehold.md b/entries/sourcehold.md index 4258e29b..10dacdd7 100644 --- a/entries/sourcehold.md +++ b/entries/sourcehold.md @@ -3,7 +3,7 @@ - Home: https://github.com/sourcehold/Sourcehold - Inspiration: Stronghold - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/sourcehold/Sourcehold.git - Code language: C++ - Code license: MIT diff --git a/entries/space_faring.md b/entries/space_faring.md index 274e970e..c063b5df 100644 --- a/entries/space_faring.md +++ b/entries/space_faring.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/space-faring/ - State: beta - Download: https://sourceforge.net/projects/space-faring/files -- Keyword: strategy, 2D, turn-based, space, 4X +- Keyword: strategy, 2D, 4X, space, turn-based - Code repository: https://git.code.sf.net/p/space-faring/gitcode, https://svn.code.sf.net/p/space-faring/code (svn active) - Code language: Java - Code license: GPL-3.0 diff --git a/entries/space_nerds_in_space.md b/entries/space_nerds_in_space.md index 062e02a5..899e6d19 100644 --- a/entries/space_nerds_in_space.md +++ b/entries/space_nerds_in_space.md @@ -4,7 +4,7 @@ - Inspiration: Artemis: Spaceship Bridge Simulator - State: beta - Platform: Linux -- Keyword: strategy, multiplayer, remake, space +- Keyword: remake, strategy, multiplayer, space - Code repository: https://github.com/smcameron/space-nerds-in-space.git - Code language: C, Lua - Code license: GPL-2.0 diff --git a/entries/space_opera.md b/entries/space_opera.md index 4c1734ce..ed7236e4 100644 --- a/entries/space_opera.md +++ b/entries/space_opera.md @@ -1,10 +1,10 @@ # Space Opera - Home: https://sourceforge.net/projects/spaceopera/, http://spaceopera.sourceforge.net/ -- Inspiration: Master of Orion, Galactic Civilizations +- Inspiration: Galactic Civilizations, Master of Orion - State: beta, inactive since 2008 - Download: https://sourceforge.net/projects/spaceopera/files -- Keyword: strategy, space, 4X +- Keyword: strategy, 4X, space - Code repository: https://gitlab.com/osgames/spaceopera.git (backup of svn), https://svn.code.sf.net/p/spaceopera/code (svn) - Code language: Java - Code license: GPL-2.0 diff --git a/entries/space_station_13.md b/entries/space_station_13.md index 76274d87..f1029a39 100644 --- a/entries/space_station_13.md +++ b/entries/space_station_13.md @@ -3,7 +3,7 @@ - Home: https://spacestation13.com/ - Media: https://en.wikipedia.org/wiki/Space_Station_13 - State: mature -- Keyword: role playing, online, turn-based, space +- Keyword: role playing, online, space, turn-based - Code repository: ? (many different versions, see below) - Code language: DM - Code license: AGPL-3.0 diff --git a/entries/space_war.md b/entries/space_war.md index 53941cdd..2063112b 100644 --- a/entries/space_war.md +++ b/entries/space_war.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/space-war-2/, https://space-war-2.sourceforge.io/ - State: mature - Download: https://sourceforge.net/projects/space-war-2/files/ -- Keyword: strategy, turn-based, space +- Keyword: strategy, space, turn-based - Code repository: https://git.code.sf.net/p/space-war-2/git - Code language: Java - Code license: Apache-2.0 diff --git a/entries/spacezero.md b/entries/spacezero.md index 2c300fee..8aae496a 100644 --- a/entries/spacezero.md +++ b/entries/spacezero.md @@ -4,7 +4,7 @@ - State: beta - Download: http://spacezero.sourceforge.net/index.html#download, https://sourceforge.net/projects/spacezero/files/ - Platform: Linux -- Keyword: strategy, real-time, space, 2D, multiplayer network +- Keyword: strategy, 2D, multiplayer network, real-time, space - Code repository: https://svn.code.sf.net/p/spacezero/code (svn) - Code language: C - Code license: GPL-3.0 diff --git a/entries/speed_dreams.md b/entries/speed_dreams.md index e70ebbbb..e9909968 100644 --- a/entries/speed_dreams.md +++ b/entries/speed_dreams.md @@ -3,7 +3,7 @@ - Home: http://www.speed-dreams.org/, https://sourceforge.net/projects/speed-dreams/ - State: mature - Download: http://www.speed-dreams.org/#download -- Keyword: action, racing, simulation, 3D +- Keyword: action, simulation, 3D, racing - Code repository: https://svn.code.sf.net/p/speed-dreams/code (svn active) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/spice_trade.md b/entries/spice_trade.md index d8818fc0..25699110 100644 --- a/entries/spice_trade.md +++ b/entries/spice_trade.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/spicetrade/, http://www.spicetrade.org/ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/spicetrade/files/ -- Keyword: role playing, adventure +- Keyword: adventure, role playing - Code repository: https://gitlab.com/osgames/spicetrade.git (copy of source downloads) - Code language: Java - Code license: LGPL-2.0 diff --git a/entries/spludlow_tetris.md b/entries/spludlow_tetris.md index 21914348..120d0478 100644 --- a/entries/spludlow_tetris.md +++ b/entries/spludlow_tetris.md @@ -4,7 +4,7 @@ - Inspiration: Tetris - State: mature, inactive since 2018 - Download: https://www.spludlow.co.uk/Install/Downloads.aspx -- Keyword: puzzle, clone, multiplayer online + LAN + split-screen, open content +- Keyword: puzzle, clone, content open, multiplayer online + LAN + split-screen - Code repository: @see-download (and https://www.spludlow.co.uk/Source/Spludlow.Tetris/) - Code language: C# - Code license: GPL-3.0 diff --git a/entries/star_ruler_2.md b/entries/star_ruler_2.md index 0a10ca0b..c0d38544 100644 --- a/entries/star_ruler_2.md +++ b/entries/star_ruler_2.md @@ -3,7 +3,7 @@ - Home: http://starruler2.com/ - Inspiration: Star Ruler 2 - State: mature -- Keyword: remake, strategy, real-time, 4X, space +- Keyword: remake, strategy, 4X, real-time, space - Code repository: https://github.com/BlindMindStudios/StarRuler2-Source.git - Code language: C, C++ - Code license: MIT diff --git a/entries/stareater.md b/entries/stareater.md index 98cdfe94..f720b78c 100644 --- a/entries/stareater.md +++ b/entries/stareater.md @@ -4,7 +4,7 @@ - State: beta - Download: https://github.com/subchannel13/Stareater/releases - Platform: Windows, Linux, macOS -- Keyword: strategy, turn-based, space, 4X +- Keyword: strategy, 4X, space, turn-based - Code repository: https://github.com/subchannel13/Stareater.git - Code language: C# - Code license: GPL-3.0 diff --git a/entries/stargus.md b/entries/stargus.md index 3bfab517..d764fee2 100644 --- a/entries/stargus.md +++ b/entries/stargus.md @@ -4,7 +4,7 @@ - Inspiration: StarCraft - State: beta, inactive since 2010 - Download: https://sourceforge.net/projects/stargus/files/ -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/Wargus/stargus.git, https://svn.code.sf.net/p/stargus/code (svn), https://code.launchpad.net/stargus (bzr) - Code language: C++, Lua - Code license: GPL-2.0 diff --git a/entries/steamer_duck.md b/entries/steamer_duck.md index 3dc75a97..21f5844b 100644 --- a/entries/steamer_duck.md +++ b/entries/steamer_duck.md @@ -2,7 +2,7 @@ - Home: https://gitlab.com/drummyfish/Steamer-Duck - State: beta -- Keyword: platform, open content +- Keyword: platform, content open - Code repository: https://gitlab.com/drummyfish/Steamer-Duck.git - Code language: Python - Code license: CC0 diff --git a/entries/stevetech1.md b/entries/stevetech1.md index f21e6e39..c019be25 100644 --- a/entries/stevetech1.md +++ b/entries/stevetech1.md @@ -3,7 +3,7 @@ - Home: http://multiplayerfpstutorial.blogspot.com/p/introduction.html - State: beta, inactive since 2019 - Platform: Windows, Linux -- Keyword: game engine, first-person, multiplayer, shooter, real-time, 3D +- Keyword: game engine, 3D, first-person, multiplayer, real-time, shooter - Code repository: https://github.com/SteveSmith16384/SteveTech1.git - Code language: Java - Code license: MIT diff --git a/entries/strife_veteran_edition.md b/entries/strife_veteran_edition.md index 09266c40..be26d0d5 100644 --- a/entries/strife_veteran_edition.md +++ b/entries/strife_veteran_edition.md @@ -3,7 +3,7 @@ - Home: https://doomwiki.org/wiki/Strife:_Veteran_Edition - Inspiration: Strife - State: beta, inactive since 2016 -- Keyword: remake, content commercial, first-person, multiplayer online, content original required, shooter +- Keyword: remake, content commercial + original required, first-person, multiplayer online, shooter - Code repository: https://github.com/svkaiser/strife-ve.git - Code language: C, C++, Objective-C - Code license: GPL-3.0 diff --git a/entries/stringrolled.md b/entries/stringrolled.md index 2217422b..39bed3f1 100644 --- a/entries/stringrolled.md +++ b/entries/stringrolled.md @@ -2,7 +2,7 @@ - Home: https://pyweek.org/e/Rambo/ - State: beta, inactive since 2008 -- Keyword: platform, puzzle, open content +- Keyword: platform, puzzle, content open - Code repository: https://gitlab.com/osgames/stringrolled.git (import of sources) - Code language: Python - Code license: Public domain diff --git a/entries/sudokuki.md b/entries/sudokuki.md index acf7348c..aed62fc5 100644 --- a/entries/sudokuki.md +++ b/entries/sudokuki.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: https://sourceforge.net/projects/sudokuki/files/ - Platform: Windows, Linux -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://git.code.sf.net/p/sudokuki/code, https://svn.code.sf.net/p/sudokuki/svn (svn) - Code language: C, Java - Code license: GPL-3.0 diff --git a/entries/sundog.md b/entries/sundog.md index 8ea56a68..6d79aff8 100644 --- a/entries/sundog.md +++ b/entries/sundog.md @@ -4,7 +4,7 @@ - Inspiration: SunDog: Frozen Legacy - State: beta - Platform: Linux -- Keyword: game engine, remake, role playing, simulation, content commercial, content original required, space +- Keyword: game engine, remake, role playing, simulation, content commercial + original required, space - Code repository: https://github.com/laanwj/sundog.git - Code language: C, C++, Python - Code license: MIT diff --git a/entries/super_transball_2.md b/entries/super_transball_2.md index 36182ee3..f62c0c99 100644 --- a/entries/super_transball_2.md +++ b/entries/super_transball_2.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20190426224042/http://www.braingames.getput.com/stransball2/default.asp - Inspiration: Transball - State: mature, inactive since 2005 -- Keyword: arcade, open content, side-scrolling +- Keyword: arcade, content open, side-scrolling - Code repository: @see-home - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/superstarfighter.md b/entries/superstarfighter.md index d6d00581..0c54ba99 100644 --- a/entries/superstarfighter.md +++ b/entries/superstarfighter.md @@ -3,7 +3,7 @@ - Home: https://notapixelstudio.github.io/superstarfighter/ - State: beta - Platform: Windows, Linux, macOS -- Keyword: framework, multiplayer local, 2D, top-down +- Keyword: framework, 2D, multiplayer local, top-down - Code repository: https://github.com/notapixelstudio/superstarfighter.git - Code language: GDScript - Code license: MIT diff --git a/entries/supertux.md b/entries/supertux.md index 4f118d37..68498895 100644 --- a/entries/supertux.md +++ b/entries/supertux.md @@ -6,7 +6,7 @@ - State: beta - Download: https://www.supertux.org/download.html, https://github.com/SuperTux/supertux/releases - Platform: Windows, Linux, macOS -- Keyword: platform, clone, open content +- Keyword: platform, clone, content open - Code repository: https://github.com/SuperTux/supertux.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/supertuxparty.md b/entries/supertuxparty.md index 82f2cd94..7331c17d 100644 --- a/entries/supertuxparty.md +++ b/entries/supertuxparty.md @@ -5,7 +5,7 @@ - State: beta - Download: https://www.reddit.com/r/SuperTuxParty/ - Platform: Windows, Linux, macOS -- Keyword: action, clone, entertainment, multiplayer split-screen, open content +- Keyword: action, clone, content open, entertainment, multiplayer split-screen - Code repository: https://gitlab.com/SuperTuxParty/SuperTuxParty.git - Code language: GDScript - Code license: GPL-3.0 diff --git a/entries/supremacy.md b/entries/supremacy.md index 7be718ec..a5d1b1c1 100644 --- a/entries/supremacy.md +++ b/entries/supremacy.md @@ -3,7 +3,7 @@ - Home: https://archive.codeplex.com/?p=supremacy, http://supremacy.square7.ch/wiki/index.php?title=Main_Page, http://www.startreksupremacy.com/ - State: beta, inactive since 2014 - Download: http://www.startreksupremacy.com/download.html -- Keyword: strategy, turn-based, 4X +- Keyword: strategy, 4X, turn-based - Code repository: https://bitbucket.org/mstrobel/supremacy/src (hg) - Code language: C# - Code license: MS-RL diff --git a/entries/swp.md b/entries/swp.md index 43d5865a..b5ffd89f 100644 --- a/entries/swp.md +++ b/entries/swp.md @@ -3,7 +3,7 @@ - Home: http://www.proasm.com/sw/swp.html - Inspiration: Shadow Warrior - State: mature -- Keyword: remake, content commercial (?), content original required (?), shooter +- Keyword: remake, "content commercial (?) + original required (?)", shooter - Code repository: https://github.com/Hendricks266/SWP.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/syndicate_wars_port.md b/entries/syndicate_wars_port.md index cfbc59c4..b3703e27 100644 --- a/entries/syndicate_wars_port.md +++ b/entries/syndicate_wars_port.md @@ -4,7 +4,7 @@ - Inspiration: Syndicate Wars - State: beta, inactive since 2010 - Download: http://swars.vexillium.org/#download -- Keyword: action, remake, strategy, content commercial, real-time, content original required +- Keyword: action, remake, strategy, content commercial + original required, real-time - Code repository: @see-download - Code language: C - Code license: GPL-3.0 diff --git a/entries/system_syzygy.md b/entries/system_syzygy.md index 45dd69da..e78a02e4 100644 --- a/entries/system_syzygy.md +++ b/entries/system_syzygy.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: https://mdsteele.games/syzygy/download/ - Platform: Windows, Linux, macOS -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: https://github.com/mdsteele/syzygy.git - Code language: Rust - Code license: GPL-3.0 diff --git a/entries/t-bots.md b/entries/t-bots.md index d74ec031..1b12d0c3 100644 --- a/entries/t-bots.md +++ b/entries/t-bots.md @@ -3,7 +3,7 @@ - Home: https://sourceforge.net/projects/tbots/ - State: beta, inactive since 2004 - Download: https://sourceforge.net/projects/tbots/files -- Keyword: strategy, simulation +- Keyword: simulation, strategy - Code repository: https://gitlab.com/osgames/tbots.git (backup of cvs), https://tbots.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/t3.md b/entries/t3.md index 458ab281..2a6a89b5 100644 --- a/entries/t3.md +++ b/entries/t3.md @@ -1,7 +1,7 @@ # T^3 - Home: http://t-3.sourceforge.net/, https://sourceforge.net/projects/t-3/ -- Inspiration: Tetris, Blockout +- Inspiration: Blockout, Tetris - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/t-3/files/ - Platform: Windows, Linux diff --git a/entries/taisei_project.md b/entries/taisei_project.md index c9bed9e0..5888ab3a 100644 --- a/entries/taisei_project.md +++ b/entries/taisei_project.md @@ -6,7 +6,7 @@ - Play: https://play.taisei-project.org/ - Download: https://taisei-project.org/download, https://github.com/taisei-project/taisei/releases - Platform: Windows, Linux, macOS, Web -- Keyword: action, remake, open content, shooter +- Keyword: action, remake, content open, shooter - Code repository: https://github.com/taisei-project/taisei.git - Code language: C, Python - Code license: MIT diff --git a/entries/tanglet.md b/entries/tanglet.md index 70f63e59..a45f34b2 100644 --- a/entries/tanglet.md +++ b/entries/tanglet.md @@ -3,7 +3,7 @@ - Home: https://gottcode.org/tanglet/ - Inspiration: Boggle - State: mature -- Keyword: puzzle, open content +- Keyword: puzzle, content open - Code repository: @see-home - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/tangomon.md b/entries/tangomon.md index 953b078e..08a53ba2 100644 --- a/entries/tangomon.md +++ b/entries/tangomon.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2017 - Download: http://tangomon.nongnu.org/download.html - Platform: Windows, Linux -- Keyword: educational, for kids, open content +- Keyword: educational, content open, for kids - Code repository: https://git.savannah.nongnu.org/git/tangomon.git, http://cvs.savannah.nongnu.org:/web/tangomon (cvs) - Code language: Python - Code license: GPL-3.0 diff --git a/entries/tankistonline.md b/entries/tankistonline.md index 99f5dced..199c9880 100644 --- a/entries/tankistonline.md +++ b/entries/tankistonline.md @@ -3,7 +3,7 @@ - Home: https://github.com/servusDei2018/TankistOnline - State: beta - Platform: Windows, Linux, macOS -- Keyword: action, multiplayer, tank, 2D +- Keyword: action, 2D, multiplayer, tank - Code repository: https://github.com/servusDei2018/TankistOnline.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/tanks_of_freedom.md b/entries/tanks_of_freedom.md index 376fe53a..67dced25 100644 --- a/entries/tanks_of_freedom.md +++ b/entries/tanks_of_freedom.md @@ -3,7 +3,7 @@ - Home: https://tof.p1x.in/, https://w84death.itch.io/tanks-of-freedom - Inspiration: Advance Wars - State: mature -- Keyword: strategy, clone, multiplayer hotseat + online, open content, turn-based, isometric +- Keyword: strategy, clone, content open, isometric, multiplayer hotseat + online, turn-based - Code repository: https://github.com/w84death/Tanks-of-Freedom.git - Code language: GDScript - Code license: MIT diff --git a/entries/team_tactics.md b/entries/team_tactics.md index d564b07d..356ee3e9 100644 --- a/entries/team_tactics.md +++ b/entries/team_tactics.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2016 - Download: https://stephensmith.itch.io/team-tactics - Platform: Windows, Linux -- Keyword: action, multiplayer, team-based, top-down, 2D, real-time +- Keyword: action, 2D, multiplayer, real-time, team-based, top-down - Code repository: https://bitbucket.org/SteveSmith16384/teamtactics.git - Code language: Java - Code license: MIT diff --git a/entries/tecnoballz.md b/entries/tecnoballz.md index ce3aee39..bc64ebd2 100644 --- a/entries/tecnoballz.md +++ b/entries/tecnoballz.md @@ -2,7 +2,7 @@ - Home: http://linux.tlk.fr/games/TecnoballZ/, https://packages.debian.org/search?keywords=tecnoballz, https://code.google.com/archive/p/tecnoballz/ - State: beta, inactive since 2016 -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://github.com/brunonymous/tecnoballz.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/teeworlds.md b/entries/teeworlds.md index b24650a3..eb383c7a 100644 --- a/entries/teeworlds.md +++ b/entries/teeworlds.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2013 - Download: https://www.teeworlds.com/?page=downloads - Platform: Windows, Linux, macOS -- Keyword: platform, 2D, online, open content, shooter +- Keyword: platform, 2D, content open, online, shooter - Code repository: https://github.com/matricks/teeworlds.git - Code language: C, C++ - Code license: zlib diff --git a/entries/termfrogger.md b/entries/termfrogger.md index e3c282ae..b9e6a7a9 100644 --- a/entries/termfrogger.md +++ b/entries/termfrogger.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/fastrgv/TermFrogger/releases - Platform: Windows, Linux, macOS -- Keyword: arcade, open content, text-based +- Keyword: arcade, content open, text-based - Code repository: @see-download - Code language: Ada - Code license: GPL-3.0 diff --git a/entries/terminal_overload.md b/entries/terminal_overload.md index ee580eeb..f2f28946 100644 --- a/entries/terminal_overload.md +++ b/entries/terminal_overload.md @@ -3,7 +3,7 @@ - Home: http://www.terminal-overload.org/ - Inspiration: Revenge Of The Cats: Ethernet - State: beta, inactive since 2016 -- Keyword: framework, first-person, open content, shooter +- Keyword: framework, content open, first-person, shooter - Code repository: https://github.com/fr1tz/terminal-overload.git - Code language: C++, C, C# - Code license: GPL-3.0 diff --git a/entries/terminalapps.md b/entries/terminalapps.md index 65ea4e7a..4b43142c 100644 --- a/entries/terminalapps.md +++ b/entries/terminalapps.md @@ -4,7 +4,7 @@ - State: mature - Download: https://github.com/fastrgv/TerminalApps/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 diff --git a/entries/tes3mp.md b/entries/tes3mp.md index a63035e2..3bb250cc 100644 --- a/entries/tes3mp.md +++ b/entries/tes3mp.md @@ -1,7 +1,7 @@ # TES3MP - Home: http://tes3mp.com/ -- Inspiration: The Elder Scrolls III: Morrowind, OpenMW +- Inspiration: OpenMW, The Elder Scrolls III: Morrowind - State: beta - Download: https://github.com/TES3MP/openmw-tes3mp/releases - Platform: Windows, Linux, macOS diff --git a/entries/tetris_in_c_and_ncurses.md b/entries/tetris_in_c_and_ncurses.md index 92808088..8f9a6c69 100644 --- a/entries/tetris_in_c_and_ncurses.md +++ b/entries/tetris_in_c_and_ncurses.md @@ -3,7 +3,7 @@ - Home: https://brennan.io/2015/06/12/tetris-reimplementation/ - Inspiration: Tetris - State: mature -- Keyword: puzzle, remake, open content +- Keyword: puzzle, remake, content open - Code repository: https://github.com/brenns10/tetris.git - Code language: C - Code license: 3-clause BSD diff --git a/entries/the_battle_for_wesnoth.md b/entries/the_battle_for_wesnoth.md index f50acccd..dae242f7 100644 --- a/entries/the_battle_for_wesnoth.md +++ b/entries/the_battle_for_wesnoth.md @@ -5,7 +5,7 @@ - Inspiration: Master of Monsters, Warsong - State: mature - Download: http://www.wesnoth.org/#download -- Keyword: strategy, clone, multiplayer, turn-based, fantasy setting +- Keyword: strategy, clone, multiplayer, setting fantasy, turn-based - Code repository: https://github.com/wesnoth/wesnoth.git - Code language: C, C++, Java, Python, Lua - Code license: GPL-2.0 diff --git a/entries/the_eternity_engine.md b/entries/the_eternity_engine.md index 7c585ef4..2cc0b758 100644 --- a/entries/the_eternity_engine.md +++ b/entries/the_eternity_engine.md @@ -5,7 +5,7 @@ - State: mature - Download: https://github.com/team-eternity/eternity/releases - Platform: Windows, Linux, macOS -- Keyword: game engine, remake, content commercial (?), first-person, multiplayer LAN, content original required, shooter +- Keyword: game engine, remake, "content commercial (?) + original required", first-person, multiplayer LAN, shooter - Code repository: https://github.com/team-eternity/eternity.git - Code language: C, C++ - Code license: GPL-3.0 diff --git a/entries/the_force_engine.md b/entries/the_force_engine.md index 589eb299..80a406e5 100644 --- a/entries/the_force_engine.md +++ b/entries/the_force_engine.md @@ -3,7 +3,7 @@ - Home: https://theforceengine.github.io/ - Inspiration: Dark Forces, Outlaws - State: beta -- 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/luciusDXL/TheForceEngine.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/the_mana_world.md b/entries/the_mana_world.md index a92d924f..fe987761 100644 --- a/entries/the_mana_world.md +++ b/entries/the_mana_world.md @@ -4,7 +4,7 @@ - State: mature - Download: https://wiki.themanaworld.org/index.php/Downloads - Platform: Web -- Keyword: role playing, multiplayer online + massive, 2D +- Keyword: role playing, 2D, multiplayer online + massive - Code repository: https://github.com/themanaworld/tmwa.git (https://github.com/themanaworld), https://gitlab.com/manaplus/manaplus.git @add - Code language: PHP - Code license: GPL-2.0 diff --git a/entries/the_powder_toy.md b/entries/the_powder_toy.md index e8931bf9..bd8e4871 100644 --- a/entries/the_powder_toy.md +++ b/entries/the_powder_toy.md @@ -4,7 +4,7 @@ - Inspiration: Powder Game - State: mature - Platform: Windows, Linux, macOS, Android -- Keyword: simulation, clone, open content +- Keyword: simulation, clone, content open - Code repository: https://github.com/The-Powder-Toy/The-Powder-Toy.git - Code language: C++, C, Lua, Python - Code license: GPL-3.0 diff --git a/entries/thousand_parsec.md b/entries/thousand_parsec.md index 616208a8..a850b4a4 100644 --- a/entries/thousand_parsec.md +++ b/entries/thousand_parsec.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20180516211349/http://www.thousandparsec.net/tp/, https://sourceforge.net/projects/thousandparsec/ - State: beta, inactive since 2012 - Download: https://web.archive.org/web/20180523204730/http://www.thousandparsec.net/tp/download-instructions.php -- Keyword: strategy, framework, 4X, space +- Keyword: framework, strategy, 4X, space - Code repository: https://github.com/thousandparsec/tpserver-cpp.git, https://github.com/thousandparsec/tpclient-pywx.git @add, http://git.thousandparsec.net/ (not available right now) - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/thrive.md b/entries/thrive.md index 38841ba6..f30651dd 100644 --- a/entries/thrive.md +++ b/entries/thrive.md @@ -5,12 +5,12 @@ - State: beta - Download: https://revolutionarygamesstudio.com/releases/, https://github.com/Revolutionary-Games/Thrive/releases - Platform: Windows, Linux -- Keyword: strategy, open content, similar +- Keyword: strategy, content open, similar - Code repository: https://github.com/Revolutionary-Games/Thrive.git - Code language: C++, AngelScript, JavaScript - Code license: GPL-3.0 -Only the Microbe stage is playable now. Really open content? +Only the Microbe stage is playable now. Really content open? ## Building diff --git a/entries/thyme.md b/entries/thyme.md index 8d466d03..b5e4938e 100644 --- a/entries/thyme.md +++ b/entries/thyme.md @@ -3,7 +3,7 @@ - Home: https://github.com/TheAssemblyArmada/Thyme - Inspiration: Command & Conquer: Generals - State: beta -- Keyword: remake, strategy, content commercial, real-time, content original required +- Keyword: remake, strategy, content commercial + original required, real-time - Code repository: https://github.com/TheAssemblyArmada/Thyme.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/tile_world.md b/entries/tile_world.md index 11167123..109bb975 100644 --- a/entries/tile_world.md +++ b/entries/tile_world.md @@ -3,7 +3,7 @@ - Home: http://www.muppetlabs.com/~breadbox/software/tworld/ - Inspiration: Chip's Challenge - State: mature, inactive since 2015 -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/Qalthos/Tile-World.git (also see home) - Code language: C - Code license: GPL-2.0 diff --git a/entries/tocs/_action.md b/entries/tocs/_action.md index 2f641a14..cfda7141 100644 --- a/entries/tocs/_action.md +++ b/entries/tocs/_action.md @@ -84,6 +84,7 @@ - **[dRally](../drally.md)** (Assembly, C, MIT, beta) - **[Duke3D](../duke3d.md)** (C, GPL-2.0, beta, inactive since 2009) - **[Duke3d_w32](../duke3dw32.md)** (C, GPL-2.0, beta, inactive since 2008) +- **[DukeGDX](../dukegdx.md)** (Java, GPL-3.0, beta) - **[Dungeon Monkey Unlimited](../dungeon_monkey_unlimited.md)** (Pascal, LGPL-2.1, mature, inactive since 2010) - **[DynaDungeons](../dynadungeons.md)** (GDScript, GPL-3.0, beta, inactive since 2018) - **[EDuke32](../eduke32.md)** (C, C++, GPL-2.0, mature) diff --git a/entries/tocs/_adventure.md b/entries/tocs/_adventure.md index ebe8e372..f3a74e69 100644 --- a/entries/tocs/_adventure.md +++ b/entries/tocs/_adventure.md @@ -18,6 +18,7 @@ - **[eAdventure](../eadventure.md)** (Java, GPL-3.0, mature, inactive since 2014) - **[Escape Towards The Unknown](../escape_towards_the_unknown.md)** (C, GPL-2.0, beta, inactive since 2016) - **[Fanwor](../fanwor.md)** (C, GPL-2.0, mature) +- **[fRaBs](../frabs.md)** (Lisp, Public domain, mature, inactive since 2016) - **[Free in the Dark (engine)](../free_in_the_dark_engine.md)** (C, C++, GPL-2.0, beta) - **[GameLV](../gamelv.md)** (C++, GPL-2.0, beta) - **[gist-txt](../gist-txt.md)** (JavaScript, MIT, mature, inactive since 2018) diff --git a/entries/tomb5.md b/entries/tomb5.md index 338fe6d2..83e4b14d 100644 --- a/entries/tomb5.md +++ b/entries/tomb5.md @@ -3,7 +3,7 @@ - Home: https://github.com/TOMB5/TOMB5 - Inspiration: Tomb Raider Chronicles - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/TOMB5/TOMB5.git - Code language: C, C++ - Code license: MIT diff --git a/entries/torcs_the_open_racing_car_simulator.md b/entries/torcs_the_open_racing_car_simulator.md index d44b109c..f44efe78 100644 --- a/entries/torcs_the_open_racing_car_simulator.md +++ b/entries/torcs_the_open_racing_car_simulator.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2016 - Download: http://torcs.sourceforge.net/index.php?name=Sections&op=viewarticle&artid=3, https://sourceforge.net/projects/torcs/files/ - Platform: Windows, Linux -- Keyword: simulation, open content, racing +- Keyword: simulation, content open, racing - Code repository: https://git.code.sf.net/p/torcs/code, https://gitlab.com/osgames/torcs.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/tornado.md b/entries/tornado.md index 87db607c..a14940d7 100644 --- a/entries/tornado.md +++ b/entries/tornado.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20170806174943/https://kiza.eu/software/tornado/ - State: mature, inactive since 2009 - Download: https://web.archive.org/web/20151016132945/https://kiza.eu/media/software/tornado/ -- Keyword: simulation, multiplayer, open content, text-based +- Keyword: simulation, content open, multiplayer, text-based - Code repository: @see-home - Code language: C - Code license: GPL-2.0 diff --git a/entries/torrega_race.md b/entries/torrega_race.md index cca781cd..4958a69d 100644 --- a/entries/torrega_race.md +++ b/entries/torrega_race.md @@ -3,7 +3,7 @@ - Home: https://github.com/andwj/torrega - Inspiration: Omega Race - State: mature, inactive since 2015 -- Keyword: simulation, clone, open content, shooter +- Keyword: simulation, clone, content open, shooter - Code repository: https://github.com/andwj/torrega.git - Code language: Lua - Code license: GPL-3.0 diff --git a/entries/total_annihilation_3d.md b/entries/total_annihilation_3d.md index 52f0268e..7738373e 100644 --- a/entries/total_annihilation_3d.md +++ b/entries/total_annihilation_3d.md @@ -5,7 +5,7 @@ - Inspiration: Total Annihilation - State: beta, inactive since 2017 - Platform: Windows, Linux, macOS -- Keyword: remake, strategy, real-time, content original required (?) +- Keyword: remake, strategy, content original required (?), real-time - Code repository: https://github.com/zuzuf/TA3D.git - Code language: C++, C, Lua - Code license: GPL-2.0 diff --git a/entries/transcend.md b/entries/transcend.md index 6403d21c..4a217dd3 100644 --- a/entries/transcend.md +++ b/entries/transcend.md @@ -4,7 +4,7 @@ - State: beta, inactive since 2005 - Download: https://sourceforge.net/projects/transcend/files/ - Platform: Windows, Linux, macOS -- Keyword: arcade, music, open content, shooter +- Keyword: arcade, music, content open, shooter - Code repository: @see-download http://transcend.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: ? (GPL, Public domain) diff --git a/entries/tremulous.md b/entries/tremulous.md index 49f41f54..ff10f1e9 100644 --- a/entries/tremulous.md +++ b/entries/tremulous.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2016 - Download: https://web.archive.org/web/20200114115222/http://tremulous.net/files/ - Platform: Windows, Linux, macOS -- Keyword: action, clone, shooter, team-based, first-person, real-time +- Keyword: action, clone, first-person, real-time, shooter, team-based - Code repository: https://github.com/darklegion/tremulous.git, http://tremulous.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/trigger.md b/entries/trigger.md index e4d4fd7c..54571139 100644 --- a/entries/trigger.md +++ b/entries/trigger.md @@ -4,7 +4,7 @@ - State: beta - Download: https://sourceforge.net/projects/trigger-rally/files/ - Platform: Windows, Linux -- Keyword: action, cars, racing, 3D +- Keyword: action, 3D, cars, racing - Code repository: https://svn.code.sf.net/p/trigger-rally/code (svn active) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/trip_on_the_funny_boat.md b/entries/trip_on_the_funny_boat.md index 75fb320a..c5e908ec 100644 --- a/entries/trip_on_the_funny_boat.md +++ b/entries/trip_on_the_funny_boat.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2007 - Download: http://funnyboat.sourceforge.net/download.php, https://sourceforge.net/projects/funnyboat/files/ - Platform: Windows, Linux -- Keyword: arcade, open content, shooter, side-scrolling +- Keyword: arcade, content open, shooter, side-scrolling - Code repository: https://svn.code.sf.net/p/funnyboat/code (svn) - Code language: Python - Code license: GPL-2.0 diff --git a/entries/truecraft.md b/entries/truecraft.md index 069dd707..66d38aff 100644 --- a/entries/truecraft.md +++ b/entries/truecraft.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20180423174517/https://truecraft.io/ - Inspiration: Minecraft - State: beta, inactive since 2018 -- Keyword: remake, simulation, open content, sandbox, voxel +- Keyword: remake, simulation, content open, sandbox, voxel - Code repository: https://github.com/ddevault/TrueCraft.git (archived), https://github.com/danielcrenna/TrueCraft.git @add - Code language: C# - Code license: MIT diff --git a/entries/ttdpatch.md b/entries/ttdpatch.md index 06889f75..0694dc19 100644 --- a/entries/ttdpatch.md +++ b/entries/ttdpatch.md @@ -4,7 +4,7 @@ - Inspiration: Transport Tycoon - State: mature, inactive since 2013 - Platform: Windows -- Keyword: simulation, tool, content commercial, content original required +- Keyword: simulation, tool, content commercial + original required - Code repository: https://github.com/ttdpatch/ttdpatch.git - Code language: Assembly, C, C++ - Code license: GPL-2.0 diff --git a/entries/tumbly_towers.md b/entries/tumbly_towers.md index a8ed45b3..1b6c6164 100644 --- a/entries/tumbly_towers.md +++ b/entries/tumbly_towers.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2017 - Download: https://github.com/SteveSmith16384/TumblyTowers/releases - Platform: Windows, Linux -- Keyword: puzzle, remake, multiplayer, open content, skill +- Keyword: puzzle, remake, content open, multiplayer, skill - Code repository: https://github.com/SteveSmith16384/TumblyTowers.git - Code language: Java - Code license: MIT diff --git a/entries/tumiki_fighters.md b/entries/tumiki_fighters.md index a9bab2c7..8a9c1026 100644 --- a/entries/tumiki_fighters.md +++ b/entries/tumiki_fighters.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2005 - Download: https://sourceforge.net/projects/tumiki/files/tumiki/ - Platform: Windows, Linux -- Keyword: shooter, side-scrolling, arcade +- Keyword: arcade, shooter, side-scrolling - Code repository: https://gitlab.com/osgames/tumiki.git (import of source releases) - Code language: D, C++ - Code license: 2-clause BSD diff --git a/entries/tux_football.md b/entries/tux_football.md index 598f2338..6f5a77a1 100644 --- a/entries/tux_football.md +++ b/entries/tux_football.md @@ -1,7 +1,7 @@ # Tux Football - Home: http://tuxfootball.sourceforge.net/, https://sourceforge.net/projects/tuxfootball/ -- Inspiration: Sensible Soccer, Kick Off +- Inspiration: Kick Off, Sensible Soccer - State: beta, inactive since 2012 - Download: http://tuxfootball.sourceforge.net/index.php?plugin=EnticorePluginStaticContent&config=idx%3A3, https://sourceforge.net/projects/tuxfootball/files/ - Platform: Windows, Linux diff --git a/entries/tux_paint.md b/entries/tux_paint.md index dbbaacf5..2f666ac7 100644 --- a/entries/tux_paint.md +++ b/entries/tux_paint.md @@ -4,7 +4,7 @@ - State: beta - Download: http://tuxpaint.org/download/, https://sourceforge.net/projects/tuxpaint/files/ - Platform: Windows, Linux, macOS, Android, iOS -- Keyword: educational, for kids, open content +- Keyword: educational, content open, for kids - Code repository: ? (https://sourceforge.net/p/tuxpaint/_list/git unavailable currently) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/twin-e.md b/entries/twin-e.md index ab4471a4..7ab7880c 100644 --- a/entries/twin-e.md +++ b/entries/twin-e.md @@ -3,7 +3,7 @@ - Home: https://forum.magicball.net/forumdisplay.php?f=66 - Inspiration: Little Big Adventure - State: beta, inactive since 2015 -- Keyword: adventure, game engine, remake, content commercial, content original required +- Keyword: adventure, game engine, remake, content commercial + original required - Code repository: https://github.com/xesf/twin-e.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/twinengine.md b/entries/twinengine.md index c21e6b43..981ca1f6 100644 --- a/entries/twinengine.md +++ b/entries/twinengine.md @@ -3,7 +3,7 @@ - Home: https://forum.magicball.net/forumdisplay.php?f=66 - Inspiration: Little Big Adventure - State: mature, inactive since 2015 -- Keyword: adventure, game engine, remake, content commercial, content original required (Little Big Adventure 1) +- Keyword: adventure, game engine, remake, "content commercial + original required (Little Big Adventure 1)" - Code repository: https://github.com/xesf/twin-e.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/uasource.md b/entries/uasource.md index 86e93de9..0bf101b3 100644 --- a/entries/uasource.md +++ b/entries/uasource.md @@ -3,7 +3,7 @@ - Home: https://github.com/Marisa-Chan/UA_source - Inspiration: Urban Assault - State: beta -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://github.com/Marisa-Chan/UA_source.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/uebergame.md b/entries/uebergame.md index 8e2bbc7c..bd10a5a2 100644 --- a/entries/uebergame.md +++ b/entries/uebergame.md @@ -5,7 +5,7 @@ - State: mature - Download: https://duion.com/games/uebergame/downloads - Platform: Windows -- Keyword: action, clone, open content, shooter +- Keyword: action, clone, content open, shooter - Code repository: https://github.com/Duion/Uebergame.git - Code language: TorqueScript, C# - Code license: MIT diff --git a/entries/ufo2000.md b/entries/ufo2000.md index d63cd627..692a3ee6 100644 --- a/entries/ufo2000.md +++ b/entries/ufo2000.md @@ -3,7 +3,7 @@ - Home: http://ufo2000.sourceforge.net/ - Inspiration: UFO: Enemy Unknown, X-COM: Apocalypse, X-COM: Terror from the Deep, X-COM: UFO Defense - State: mature, inactive since 2012 -- Keyword: remake, strategy, turn-based, strategy, multiplayer +- Keyword: remake, strategy, multiplayer, turn-based - Code repository: https://github.com/ufo2000/ufo2000.git (mirror of svn), https://svn.code.sf.net/p/ufo2000/code (svn) - Code language: C, C++, Lua - Code license: GPL-2.0 diff --git a/entries/unciv.md b/entries/unciv.md index 316ed365..17e1c2b3 100644 --- a/entries/unciv.md +++ b/entries/unciv.md @@ -4,7 +4,7 @@ - Inspiration: Civilization V - State: beta - Platform: Android -- Keyword: remake, strategy, multiplayer online + hotseat, open content, turn-based +- Keyword: remake, strategy, content open, multiplayer online + hotseat, turn-based - Code repository: https://github.com/yairm210/UnCiv.git - Code language: Kotlin - Code license: MPL-2.0 diff --git a/entries/underworldexporter.md b/entries/underworldexporter.md index 336a2e0b..c97dc216 100644 --- a/entries/underworldexporter.md +++ b/entries/underworldexporter.md @@ -3,7 +3,7 @@ - Home: https://github.com/hankmorgan/UnderworldExporter - Inspiration: Ultima Underworld, Ultima Underworld II: Labyrinth of Worlds - State: mature -- Keyword: remake, role playing, content commercial, content original required +- Keyword: remake, role playing, content commercial + original required - Code repository: https://github.com/hankmorgan/UnderworldExporter.git - Code language: C#, C++ - Code license: MIT diff --git a/entries/unknown_horizons.md b/entries/unknown_horizons.md index d051a8f7..f39623d4 100644 --- a/entries/unknown_horizons.md +++ b/entries/unknown_horizons.md @@ -5,7 +5,7 @@ - Inspiration: "Anno (series)" - State: beta - Download: http://unknown-horizons.org/downloads/ -- Keyword: strategy, clone, turn-based, 2D, real-time +- Keyword: strategy, 2D, clone, real-time, turn-based - Code repository: https://github.com/unknown-horizons/unknown-horizons.git, https://github.com/unknown-horizons/godot-port.git @add - Code language: Python - Code license: GPL-2.0 diff --git a/entries/urde.md b/entries/urde.md index f5dcbc2f..266f2d9a 100644 --- a/entries/urde.md +++ b/entries/urde.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/AxioDL/urde/releases - Platform: Windows, macOS -- Keyword: game engine, remake, content commercial, content original required +- Keyword: game engine, remake, content commercial + original required - Code repository: https://gitlab.axiodl.com/AxioDL/urde.git, https://github.com/AxioDL/urde.git - Code language: C, C++ - Code license: MIT diff --git a/entries/vanilla-conquer.md b/entries/vanilla-conquer.md index 27649d27..ed08abff 100644 --- a/entries/vanilla-conquer.md +++ b/entries/vanilla-conquer.md @@ -4,7 +4,7 @@ - Inspiration: Command & Conquer, Command & Conquer: Red Alert - State: mature - Platform: Windows, Linux -- Keyword: remake, strategy, content commercial, real-time, content original required +- Keyword: remake, strategy, content commercial + original required, real-time - Code repository: https://github.com/Vanilla-Conquer/Vanilla-Conquer.git, https://github.com/electronicarts/CnC_Remastered_Collection.git @add - Code language: C, C++, Assembly - Code license: GPL-3.0 diff --git a/entries/vcmi.md b/entries/vcmi.md index cb1412d4..cca8334d 100644 --- a/entries/vcmi.md +++ b/entries/vcmi.md @@ -3,7 +3,7 @@ - Home: https://vcmi.eu/, https://sourceforge.net/projects/vcmi/ - Inspiration: Heroes of Might and Magic III - State: mature -- Keyword: remake, strategy, content commercial, content original required +- Keyword: remake, strategy, content commercial + original required - Code repository: https://github.com/vcmi/vcmi.git, https://svn.code.sf.net/p/vcmi/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/vega_strike.md b/entries/vega_strike.md index 410929df..d332b7c6 100644 --- a/entries/vega_strike.md +++ b/entries/vega_strike.md @@ -5,7 +5,7 @@ - Inspiration: Elite - State: mature - Download: http://vegastrike.sourceforge.net/getfiles/ -- Keyword: framework, first-person, open content (?), space +- Keyword: framework, content open (?), first-person, space - Code repository: https://github.com/vegastrike/Vega-Strike-Engine-Source.git (https://github.com/vegastrike mirror), https://svn.code.sf.net/p/vegastrike/code (svn) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/vegan_on_a_desert_island.md b/entries/vegan_on_a_desert_island.md index 2a8755a8..0b7bce99 100644 --- a/entries/vegan_on_a_desert_island.md +++ b/entries/vegan_on_a_desert_island.md @@ -2,7 +2,7 @@ - Home: https://voadi.com/ - State: beta -- Keyword: adventure, 2D, open content +- Keyword: adventure, 2D, content open - Code repository: https://gitlab.com/voadi/voadi.git - Code language: Lua - Code license: GPL-3.0 diff --git a/entries/veloren.md b/entries/veloren.md index 8d2c761a..bd105b38 100644 --- a/entries/veloren.md +++ b/entries/veloren.md @@ -3,7 +3,7 @@ - Home: https://veloren.net/ - Inspiration: Cube World, Dwarf Fortress, Minecraft - State: beta -- Keyword: role playing, multiplayer online + LAN, open content, voxel +- Keyword: role playing, content open, multiplayer online + LAN, voxel - Code repository: https://gitlab.com/veloren/veloren.git - Code language: Rust - Code license: GPL-3.0 diff --git a/entries/veraball.md b/entries/veraball.md index fbe67c8f..7d6a6950 100644 --- a/entries/veraball.md +++ b/entries/veraball.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2016 - Download: https://github.com/Veraball/veraball/releases - Platform: Windows, Linux -- Keyword: remake, open content +- Keyword: remake, content open - Code repository: https://github.com/Veraball/veraball.git - Code language: GDScript - Code license: MIT diff --git a/entries/violetland.md b/entries/violetland.md index 0980968f..41b496c7 100644 --- a/entries/violetland.md +++ b/entries/violetland.md @@ -5,7 +5,7 @@ - State: beta - Download: https://github.com/ooxi/violetland/releases - Platform: Windows, Linux -- Keyword: remake, clone, open content +- Keyword: remake, clone, content open - Code repository: https://github.com/ooxi/violetland.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/vitetris.md b/entries/vitetris.md index 34f6b716..5754d6a0 100644 --- a/entries/vitetris.md +++ b/entries/vitetris.md @@ -5,7 +5,7 @@ - State: beta - Download: http://victornils.net/tetris/#download - Platform: Windows, Linux -- Keyword: puzzle, remake, multiplayer competitive + online, open content +- Keyword: puzzle, remake, content open, multiplayer competitive + online - Code repository: https://github.com/vicgeralds/vitetris.git - Code language: C - Code license: 2-clause BSD diff --git a/entries/vms_empire.md b/entries/vms_empire.md index f4a11fb6..5be7d8b7 100644 --- a/entries/vms_empire.md +++ b/entries/vms_empire.md @@ -3,7 +3,7 @@ - Home: http://www.catb.org/~esr/vms-empire/ - Media: http://www.classicempire.com/history.html - State: mature, inactive since 2014 -- Keyword: strategy, open content, turn-based +- Keyword: strategy, content open, turn-based - Code repository: https://gitlab.com/esr/vms-empire.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/vvvvvv.md b/entries/vvvvvv.md index 75dae5ef..1d0a8214 100644 --- a/entries/vvvvvv.md +++ b/entries/vvvvvv.md @@ -3,7 +3,7 @@ - Home: http://distractionware.com/blog/2020/01/vvvvvv-is-now-open-source/ - Inspiration: VVVVVV - State: mature -- Keyword: platform, remake, content commercial, content original required +- Keyword: platform, remake, content commercial + original required - Code repository: https://github.com/TerryCavanagh/vvvvvv.git - Code language: ActionScript, C++ - Code license: Custom diff --git a/entries/wallball.md b/entries/wallball.md index eda1989e..70ee99fd 100644 --- a/entries/wallball.md +++ b/entries/wallball.md @@ -5,7 +5,7 @@ - State: mature - Play: https://montrose.is/#wallball - Platform: Web -- Keyword: simulation, clone, open content, skill +- Keyword: simulation, clone, content open, skill - Code repository: https://github.com/plainsightcollection/plainsightcollection.github.io.git - Code language: Haxe, JavaScript - Code license: GPL-3.0 diff --git a/entries/war1.md b/entries/war1.md index 067ede12..1cce0c43 100644 --- a/entries/war1.md +++ b/entries/war1.md @@ -3,7 +3,7 @@ - Home: https://github.com/acoto87/war1 - Inspiration: Warcraft: Orcs & Humans - State: beta -- Keyword: remake, strategy, content commercial, content original required +- Keyword: remake, strategy, content commercial + original required - Code repository: https://github.com/acoto87/war1.git - Code language: C - Code license: zlib diff --git a/entries/wargus.md b/entries/wargus.md index 0b8056f4..8b34a62d 100644 --- a/entries/wargus.md +++ b/entries/wargus.md @@ -4,7 +4,7 @@ - Inspiration: Warcraft II - State: mature (?) - Download: http://wargus.stratagus.com/download.shtml -- Keyword: remake, strategy, content commercial, content original required +- Keyword: remake, strategy, content commercial + original required - Code repository: https://github.com/Wargus/wargus.git, https://code.launchpad.net/wargus (bzr) - Code language: C++, Lua - Code license: GPL-2.0 diff --git a/entries/warp_rogue.md b/entries/warp_rogue.md index 25ac26cb..df5e699d 100644 --- a/entries/warp_rogue.md +++ b/entries/warp_rogue.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20100826104818/http://todoom.sourceforge.net:80/, https://web.archive.org/web/20100913055734/http://sourceforge.net:80/projects/todoom/ - Media: http://www.roguebasin.com/index.php?title=Warp_Rogue - State: beta, inactive since 2010 -- Keyword: platform, open content, roguelike, fantasy setting +- Keyword: platform, content open, roguelike, setting fantasy - Code repository: https://github.com/anthonycicc/warp_rogue.git - Code language: C - Code license: GPL-3.0 diff --git a/entries/webfun.md b/entries/webfun.md index fb17ff5b..cca03032 100644 --- a/entries/webfun.md +++ b/entries/webfun.md @@ -4,7 +4,7 @@ - Inspiration: Star Wars: Yoda Stories - State: beta - Platform: Web -- Keyword: adventure, game engine, remake, content commercial, content original required (?) +- Keyword: adventure, game engine, remake, "content commercial + original required (?)" - Code repository: https://github.com/cyco/WebFun.git - Code language: TypeScript - Code license: MIT diff --git a/entries/webhangman.md b/entries/webhangman.md index 8417682c..e498d0ae 100644 --- a/entries/webhangman.md +++ b/entries/webhangman.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2003 - Download: https://web.archive.org/web/20170401215027/http://janmulder.co.uk/download/webhangman.zip - Platform: Web -- Keyword: puzzle, hangman, open content +- Keyword: puzzle, content open, hangman - Code repository: https://gitlab.com/osgames/webhangman.git (import of sources) - Code language: JavaScript - Code license: GPL-2.0 diff --git a/entries/which_way_is_up.md b/entries/which_way_is_up.md index aa58366a..a97fa84d 100644 --- a/entries/which_way_is_up.md +++ b/entries/which_way_is_up.md @@ -3,7 +3,7 @@ - Home: http://www.oletus.fi/static/whichwayisup/, https://packages.debian.org/search?keywords=whichwayisup - State: beta, inactive since 2008 - Platform: Windows, Linux -- Keyword: platform, puzzle, 2D, open content +- Keyword: platform, puzzle, 2D, content open - Code repository: @see-home - Code language: Python - Code license: GPL-2.0 diff --git a/entries/windstille.md b/entries/windstille.md index fbe1415d..29f7dce3 100644 --- a/entries/windstille.md +++ b/entries/windstille.md @@ -2,7 +2,7 @@ - Home: https://web.archive.org/web/20131221000058/http://windstille.berlios.de/, https://web.archive.org/web/20130614132314/http://developer.berlios.de/projects/windstille/, https://sourceforge.net/projects/windstille.berlios/files/, http://grumbel.blogspot.com/search/label/Windstille - State: beta, inactive since 2017 -- Keyword: arcade, open content +- Keyword: arcade, content open - Code repository: https://github.com/WindstilleTeam/windstille.git (archived) - Code language: C++, Scheme - Code license: GPL-3.0 diff --git a/entries/witch_blast.md b/entries/witch_blast.md index 983b9f1b..c83f1f02 100644 --- a/entries/witch_blast.md +++ b/entries/witch_blast.md @@ -4,7 +4,7 @@ - Inspiration: The Binding of Isaac - State: beta, inactive since 2015 - Download: https://github.com/Cirrus-Minor/witchblast/releases -- Keyword: remake, role playing, open content, roguelike +- Keyword: remake, role playing, content open, roguelike - Code repository: https://github.com/Cirrus-Minor/witchblast.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/wkbre.md b/entries/wkbre.md index ad234483..6656211d 100644 --- a/entries/wkbre.md +++ b/entries/wkbre.md @@ -3,7 +3,7 @@ - Home: https://github.com/AdrienTD/wkbre - Inspiration: Warrior Kings - State: beta -- Keyword: remake, strategy, 3D, real-time, content original required +- Keyword: remake, strategy, 3D, content original required, real-time - Code repository: https://github.com/AdrienTD/wkbre.git - Code language: C++, C - Code license: GPL-3.0 diff --git a/entries/wograld.md b/entries/wograld.md index bf8045db..638956b6 100644 --- a/entries/wograld.md +++ b/entries/wograld.md @@ -3,7 +3,7 @@ - Home: http://wograld.sourceforge.net/, https://sourceforge.net/projects/wograld/ - State: beta (alpha?) - Download: https://sourceforge.net/projects/wograld/files/ -- Keyword: role playing, multiplayer online + massive, open content +- Keyword: role playing, content open, multiplayer online + massive - Code repository: https://git.code.sf.net/p/wograld/gitcode, http://wograld.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/wolf3dx.md b/entries/wolf3dx.md index e941b94c..15a0e33e 100644 --- a/entries/wolf3dx.md +++ b/entries/wolf3dx.md @@ -3,7 +3,7 @@ - Home: https://github.com/francot514/Wolf3dX - Inspiration: Wolfenstein 3D - State: beta -- Keyword: action, remake, content commercial, content original required, shooter +- Keyword: action, remake, content commercial + original required, shooter - Code repository: https://github.com/francot514/Wolf3dX.git - Code language: C# - Code license: GPL-2.0 diff --git a/entries/wolfpack_empire.md b/entries/wolfpack_empire.md index 5bef806d..5e6dd900 100644 --- a/entries/wolfpack_empire.md +++ b/entries/wolfpack_empire.md @@ -4,7 +4,7 @@ - Media: https://web.archive.org/web/20160511001400/https://lgdb.org/game/wolfpack-empire - State: mature - Download: https://sourceforge.net/projects/empserver/files/ -- Keyword: strategy, online, real-time, multiplayer +- Keyword: strategy, multiplayer, online, real-time - Code repository: http://git.pond.sub.org/empserver (http://git.pond.sub.org/?p=empserver;a=summary) - Code language: C - Code license: GPL-3.0 diff --git a/entries/word_war_vi.md b/entries/word_war_vi.md index cbc73106..07717e11 100644 --- a/entries/word_war_vi.md +++ b/entries/word_war_vi.md @@ -5,7 +5,7 @@ - State: mature - Download: http://smcameron.github.io/wordwarvi/#downloads - Platform: Linux, macOS -- Keyword: action, 2D, open content, shooter, side-scrolling, similar +- Keyword: action, 2D, content open, shooter, side-scrolling, similar - Code repository: https://github.com/smcameron/wordwarvi.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/world_of_might_and_magic.md b/entries/world_of_might_and_magic.md index f8411b48..6613b5f4 100644 --- a/entries/world_of_might_and_magic.md +++ b/entries/world_of_might_and_magic.md @@ -3,7 +3,7 @@ - Home: https://github.com/gp-alex/world-of-might-and-magic - Inspiration: Might and Magic VI: The Mandate of Heaven, Might and Magic VII: For Blood and Honor, Might and Magic VIII: Day of the Destroyer - State: beta -- Keyword: game engine, remake, role playing, content open (?), content original required +- Keyword: game engine, remake, role playing, "content open (?) + original required" - Code repository: https://github.com/gp-alex/world-of-might-and-magic.git - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/worldforge.md b/entries/worldforge.md index 0aee0709..f98f6332 100644 --- a/entries/worldforge.md +++ b/entries/worldforge.md @@ -4,7 +4,7 @@ - Media: https://en.wikipedia.org/wiki/WorldForge - State: mature - Download: https://www.worldforge.org/index.php/downloads/ -- Keyword: framework, multiplayer online + massive, role playing +- Keyword: framework, role playing, multiplayer online + massive - Code repository: https://github.com/worldforge/cyphesis.git (https://github.com/worldforge), https://github.com/worldforge/ember.git @add - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/x-moto.md b/entries/x-moto.md index bce5c09a..b011d6ee 100644 --- a/entries/x-moto.md +++ b/entries/x-moto.md @@ -6,7 +6,7 @@ - State: mature, inactive since 2014 - Download: https://xmoto.tuxfamily.org/ - Platform: Windows, Linux, macOS -- Keyword: action, remake, racing, 2D +- Keyword: action, remake, 2D, racing - Code repository: https://svn.tuxfamily.org/viewvc.cgi/xmoto_xmoto/ (svn lost) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/xbak.md b/entries/xbak.md index d4e8030e..39f24d59 100644 --- a/entries/xbak.md +++ b/entries/xbak.md @@ -5,7 +5,7 @@ - State: beta, inactive since 2013 - Download: https://sourceforge.net/projects/xbak/files/xbak/ - Platform: Linux -- Keyword: remake, content commercial, content original required +- Keyword: remake, content commercial + original required - Code repository: https://svn.code.sf.net/p/xbak/code (svn) - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/xduke.md b/entries/xduke.md index 957b1e50..7f43cb8e 100644 --- a/entries/xduke.md +++ b/entries/xduke.md @@ -4,7 +4,7 @@ - Inspiration: Duke Nukem 3D - State: beta, inactive since 2010 - Download: http://vision.gel.ulaval.ca/~klein/duke3d/xDuke_19.7.1_Source_Code.rar -- Keyword: remake, content commercial, multiplayer LAN + online, content original required +- Keyword: remake, content commercial + original required, multiplayer LAN + online - Code repository: @see-download - Code language: C - Code license: GPL-2.0 diff --git a/entries/xinvaders_3d.md b/entries/xinvaders_3d.md index 9b5fcb24..ed05a382 100644 --- a/entries/xinvaders_3d.md +++ b/entries/xinvaders_3d.md @@ -3,7 +3,7 @@ - Home: https://web.archive.org/web/20110803224159/http://xinvaders3d.sourceforge.net/ - Inspiration: ICBM3D, Space Invaders - State: mature, inactive since 2000 -- Keyword: arcade, open content, 3D +- Keyword: arcade, 3D, content open - Code repository: https://gitlab.com/osgames/xinvaders3d.git (import of sources) - Code language: C - Code license: GPL-2.0 diff --git a/entries/xjig.md b/entries/xjig.md index e4223321..26b1bb3b 100644 --- a/entries/xjig.md +++ b/entries/xjig.md @@ -2,7 +2,7 @@ - Home: https://packages.debian.org/search?keywords=xjig - State: mature -- Keyword: puzzle, jigsaw, open content, 2D +- Keyword: puzzle, 2D, content open, jigsaw - Code repository: @see-debian - Code language: C - Code license: Custom (attribution, no warranty) diff --git a/entries/xonotic.md b/entries/xonotic.md index 94a763b8..c4215526 100644 --- a/entries/xonotic.md +++ b/entries/xonotic.md @@ -5,7 +5,7 @@ - Inspiration: Nexuiz - State: mature - Download: https://www.xonotic.org/download/ -- Keyword: action, clone, shooter, first-person +- Keyword: action, clone, first-person, shooter - Code repository: https://git.xonotic.org/xonotic/xonotic.git, https://gitlab.com/xonotic/xonotic.git @add, https://gitlab.com/xonotic/xonotic-data.pk3dir.git - Code language: C - Code license: GPL-3.0 (Darkplace engine is GPL-2.0) diff --git a/entries/xoreos.md b/entries/xoreos.md index f81ec555..0e7de286 100644 --- a/entries/xoreos.md +++ b/entries/xoreos.md @@ -4,7 +4,7 @@ - Inspiration: BioWare's Aurora engine - State: beta - Download: https://xoreos.org/downloads/index.html -- Keyword: framework, remake, content commercial, engine recreation, content original required +- Keyword: framework, remake, content commercial + original required, engine recreation - Code repository: https://github.com/xoreos/xoreos.git - Code language: C++ - Code license: GPL-3.0 diff --git a/entries/xpilot.md b/entries/xpilot.md index 71043c97..ddfce411 100644 --- a/entries/xpilot.md +++ b/entries/xpilot.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2010 - Download: https://sourceforge.net/projects/xpilotgame/files/ - Platform: Windows, Linux -- Keyword: action, space, 2D, multiplayer +- Keyword: action, 2D, multiplayer, space - Code repository: https://gitlab.com/osgames/xpilot.git (conversion of cvs), http://hg.code.sf.net/p/xpilotgame/www.xpilot.org (hg, website), http://xpilotgame.cvs.sourceforge.net (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/xye.md b/entries/xye.md index ed2cd099..2f5130b9 100644 --- a/entries/xye.md +++ b/entries/xye.md @@ -4,7 +4,7 @@ - Inspiration: Kye, Sokoban - State: beta, inactive since 2013 - Download: http://xye.sourceforge.net/download.php, https://sourceforge.net/projects/xye/files/ -- Keyword: arcade, clone, open content +- Keyword: arcade, clone, content open - Code repository: https://gitlab.com/osgames/xye.git (conversion of svn), https://svn.code.sf.net/p/xye/code (svn) - Code language: C++ - Code license: zlib diff --git a/entries/yorg.md b/entries/yorg.md index f87501af..5a91b04b 100644 --- a/entries/yorg.md +++ b/entries/yorg.md @@ -3,7 +3,7 @@ - Home: https://github.com/cflavio/yorg, https://www.ya2.it/ - Inspiration: Micro Machines - State: beta -- Keyword: game engine, clone, multiplayer online + local, open content, racing, 3D +- Keyword: game engine, 3D, clone, content open, multiplayer online + local, racing - Code repository: https://github.com/cflavio/yorg.git - Code language: Python - Code license: GPL-3.0 diff --git a/entries/zauberer.md b/entries/zauberer.md index 1474347d..9cfd1d3c 100644 --- a/entries/zauberer.md +++ b/entries/zauberer.md @@ -2,7 +2,7 @@ - Home: https://github.com/CireG/Zauberer/, https://www.doomworld.com/vb/freedoom/72519-zauberer/ - State: beta, inactive since 2018 -- Keyword: action, first-person, open content, requires original engine (Hexen), shooter +- Keyword: action, content open, first-person, requires original engine (Hexen), shooter - Code repository: https://github.com/CireG/Zauberer.git - Code language: None - Code license: ISC diff --git a/entries/zdoom.md b/entries/zdoom.md index a939d86d..64529851 100644 --- a/entries/zdoom.md +++ b/entries/zdoom.md @@ -5,7 +5,7 @@ - State: mature - Download: https://zdoom.org/downloads, https://github.com/coelckers/gzdoom/releases, https://sourceforge.net/projects/zdoom/files/ - Platform: Windows, Linux, macOS -- Keyword: remake, content commercial (?), first-person, content original required, shooter +- Keyword: remake, "content commercial (?) + original required", first-person, shooter - Code repository: https://github.com/coelckers/gzdoom.git, https://git.code.sf.net/p/zdoom/gzdoom - Code language: C, C++, ZenScript - Code license: GPL-3.0 diff --git a/entries/zero_ballistics.md b/entries/zero_ballistics.md index 86503336..4502c04a 100644 --- a/entries/zero_ballistics.md +++ b/entries/zero_ballistics.md @@ -4,7 +4,7 @@ - State: mature, inactive since 2013 - Download: https://sourceforge.net/projects/zeroballistics/files/ - Platform: Windows -- Keyword: action, strategy, first-person, shooter, multiplayer only +- Keyword: action, strategy, first-person, multiplayer only, shooter - Code repository: https://gitlab.com/osgames/zeroballistics.git (mirror), https://svn.code.sf.net/p/zeroballistics/code (svn) - Code language: C++ - Code license: MIT diff --git a/entries/zetawar.md b/entries/zetawar.md index 1aed3c8c..54b1efa3 100644 --- a/entries/zetawar.md +++ b/entries/zetawar.md @@ -1,7 +1,7 @@ # Zetawar - Home: http://www.zetawar.com/ -- Inspiration: Weewar, Elite Command +- Inspiration: Elite Command, Weewar - State: mature - Platform: Web - Keyword: strategy diff --git a/entries/zod_engine.md b/entries/zod_engine.md index d1037d2c..e046cb7d 100644 --- a/entries/zod_engine.md +++ b/entries/zod_engine.md @@ -5,7 +5,7 @@ - State: mature, inactive since 2018 - Download: https://sourceforge.net/projects/zod/files/ - Platform: Windows, Linux -- Keyword: game engine, remake, strategy, content commercial, real-time, content original required +- Keyword: game engine, remake, strategy, content commercial + original required, real-time - Code repository: http://hg.code.sf.net/p/zod/zod_engine (hg) - Code language: C++ - Code license: ? (really GPL-3.0 as mentioned on homepage?) diff --git a/entries/zone_of_control.md b/entries/zone_of_control.md index e5eee4bd..af1765ad 100644 --- a/entries/zone_of_control.md +++ b/entries/zone_of_control.md @@ -3,7 +3,7 @@ - Home: https://github.com/ozkriff/zoc, https://ozkriff.games/2017-08-17--devlog/ - State: beta, inactive since 2017 - Download: https://github.com/ozkriff/zoc/releases -- Keyword: strategy, turn-based, tiles +- Keyword: strategy, tiles, turn-based - Code repository: https://github.com/ozkriff/zoc.git - Code language: Rust - Code license: Apache-2.0 diff --git a/statistics.md b/statistics.md index 151e25fd..4f7bc860 100644 --- a/statistics.md +++ b/statistics.md @@ -1,7 +1,7 @@ [comment]: # (autogenerated content, do not edit) # Statistics -analyzed 1447 entries on 2020-12-13 15:12:28 +analyzed 1447 entries on 2020-12-14 00:29:55 ## State @@ -125,40 +125,40 @@ Moonbase Assault (2019), Orbit-Hopper (2019), Physics Platformer (2019), Physics ##### Keywords frequency -- remake (12.9%) -- strategy (6.5%) -- open content (6.5%) -- action (5.8%) -- role playing (4.8%) -- clone (4.2%) -- content commercial (3.9%) -- content original required (3.6%) -- puzzle (3.4%) -- multiplayer (3.3%) -- shooter (3.1%) -- arcade (2.9%) -- game engine (2.9%) -- 2D (2.8%) -- simulation (2.8%) -- turn-based (2.1%) -- framework (2.0%) -- 3D (1.8%) +- remake (13.3%) +- content open (7.2%) +- strategy (6.7%) +- action (6.0%) +- role playing (5.0%) +- clone (4.3%) +- puzzle (3.5%) +- multiplayer (3.4%) +- shooter (3.2%) +- arcade (3.0%) +- game engine (3.0%) +- 2D (2.9%) +- simulation (2.9%) +- content commercial + original required (2.4%) +- turn-based (2.2%) +- framework (2.1%) +- 3D (1.9%) - real-time (1.6%) - space (1.5%) -- platform (1.4%) -- adventure (1.3%) +- platform (1.5%) +- adventure (1.4%) - roguelike (1.3%) - library (1.2%) +- content commercial (1.2%) - first-person (1.2%) - tool (1.0%) +- content original required (0.9%) - racing (0.8%) - skill (0.8%) -- text-based (0.7%) +- text-based (0.8%) - online (0.7%) -- content open (0.6%) - sports (0.6%) - board (0.6%) -- side-scrolling (0.5%) +- side-scrolling (0.6%) - cards (0.4%) - flight (0.4%) - sandbox (0.4%) @@ -170,59 +170,65 @@ Moonbase Assault (2019), Orbit-Hopper (2019), Physics Platformer (2019), Physics - educational (0.3%) - 4X (0.3%) - isometric (0.3%) -- scrolling (0.2%) +- scrolling (0.3%) - artillery (0.2%) - cars (0.2%) +- dungeon (0.2%) - point & click (0.2%) - programming (0.2%) -- karaoke (0.1%) -- physics (0.1%) -- visual novel (0.1%) -- dungeon (0.1%) +- karaoke (0.2%) +- physics (0.2%) +- setting fantasy (0.2%) +- visual novel (0.2%) +- city (0.1%) +- content commercial + original required (?) (0.1%) - engine recreation (0.1%) - similar (0.1%) - tiles (0.1%) -- original content required (0.1%) - soccer (0.1%) - tank (0.1%) -- text (0.1%) - trading (0.1%) -- city (0.1%) +- client (0.1%) - console (0.1%) +- content commercial (?) + original required (0.1%) - content swappable (0.1%) - entertainment (0.1%) - evolution (0.1%) -- fantasy (0.1%) -- fantasy setting (0.1%) - fight (0.1%) - game framework (0.1%) - interactive fiction (0.1%) - jigsaw (0.1%) - maze (0.1%) - mech (0.1%) -- medieval (0.1%) - popular (0.1%) - requires server (0.1%) +- setting medieval (0.1%) - sudoku (0.1%) -- 4D (0.0%) -- city building (0.0%) -- client (0.0%) -- dungeon crawling (0.0%) -- emulator (0.0%) -- hangman (0.0%) -- logic (0.0%) -- port (0.0%) -- requires original engine (0.0%) -- sliding blocks (0.0%) -- team-based (0.0%) -- tower defense (0.0%) -- action shooter (0.0%) -- action-adventure (0.0%) +- 4D (0.1%) +- content commercial + original required (Diablo 1) (0.1%) +- emulator (0.1%) +- hangman (0.1%) +- logic (0.1%) +- port (0.1%) +- requires original engine (0.1%) +- sliding blocks (0.1%) +- team-based (0.1%) +- tower defense (0.1%) - asciiart (0.0%) - blocks (0.0%) - brain exercise (0.0%) -- can use original content (0.0%) +- content commercial (?) + open (?) + original required (0.0%) +- content commercial (?) + original required (?) (0.0%) +- content commercial + open (some demo content) + original required (0.0%) +- content commercial + original required (Arx Fatalis) (0.0%) +- content commercial + original required (full original game) (0.0%) +- content commercial + original required (game data from System Shock: Enhanced Edition) (0.0%) +- content commercial + original required (Little Big Adventure 1) (0.0%) +- content commercial + original required (X-Com Apocalypse) (0.0%) +- content open (?) + original required (0.0%) +- content open (?) + original required (?) (0.0%) - content open + non-commercial (0.0%) +- content original possible + open (swappable) (0.0%) - dancing (0.0%) - demake (0.0%) - dice (0.0%) @@ -230,6 +236,8 @@ Moonbase Assault (2019), Orbit-Hopper (2019), Physics Platformer (2019), Physics - engine required (0.0%) - football (0.0%) - for adults (0.0%) +- fork Julius (0.0%) +- fork OrionUO (0.0%) - frontend (0.0%) - game editor (0.0%) - game maker (0.0%) @@ -249,7 +257,6 @@ Moonbase Assault (2019), Orbit-Hopper (2019), Physics Platformer (2019), Physics - quiz (0.0%) - renderer (0.0%) - rendering (0.0%) -- requires online access (0.0%) - ruleset (0.0%) - single-player (0.0%) - slider (0.0%) @@ -325,6 +332,7 @@ With code dependency field 591 (40.8%) - FLTK (0.3%) - GNU Guile (0.3%) - GStreamer (0.3%) +- Hexen (0.3%) - jQuery (0.3%) - Laravel (0.3%) - libogg (0.3%) @@ -356,7 +364,7 @@ With code dependency field 591 (40.8%) - CEGUI (0.1%) - CherryPy (0.1%) - Cocos2D (0.1%) -- Crystal_Space (0.1%) +- Crystal Space (0.1%) - Cube 2 (0.1%) - DarkPlaces (0.1%) - DirectPython (0.1%) @@ -370,10 +378,8 @@ With code dependency field 591 (40.8%) - GameJs (0.1%) - GLFW (0.1%) - Golden-T Game Engine (0.1%) -- Heretic-based (0.1%) +- Heretic (0.1%) - Hero of Allacrost engine (0.1%) -- Hexen (0.1%) -- Hexen-based (0.1%) - ImGUI (0.1%) - Inform (0.1%) - ioquake3 (0.1%) @@ -455,25 +461,20 @@ Build systems information available for 33.7% of all projects. - Make (23.8%) - Autoconf (11.5%) - Gradle (6.4%) +- Visual Studio (2.9%) - setup.py (2.5%) - Scons (2.1%) -- VisualStudio (1.8%) - Maven (1.6%) -- Meson (1.0%) -- Custom (0.8%) +- Meson (1.2%) +- Custom (1.0%) - premake (0.8%) - QMake (0.8%) -- Visual Studio project (0.8%) - Ant (0.6%) -- none (0.4%) -- custom script (0.2%) +- None (0.6%) - Lazarus project (0.2%) -- meson (0.2%) -- None (0.2%) - py2exe (0.2%) - Rake (0.2%) -- Visual Studio solution (0.2%) -- Xcode project (0.2%) +- Xcode (0.2%) ##### C and C++ projects without build system information (894)