From dd91170887d43c5c46d7408719a502301245bd7a Mon Sep 17 00:00:00 2001 From: Trilarion Date: Fri, 4 Sep 2020 16:08:30 +0200 Subject: [PATCH] removed unnecessary title in description --- code/backlog.txt | 1 + code/maintenance_collect_inspiration_infos.py | 2 +- code/utils/osg.py | 38 +++++++++++++++---- entries/achtung_die_kurve.md | 2 +- entries/adventure_engine.md | 4 +- entries/alien_assault_traders.md | 2 +- entries/antichess.md | 4 +- entries/armor_alley.md | 4 +- entries/battlefield_java.md | 2 +- entries/biogenesis.md | 2 +- entries/bitfighter.md | 2 +- entries/black_shades_elite.md | 4 +- entries/blackvoxel.md | 4 +- entries/blinken.md | 2 +- entries/bloboats.md | 6 ++- entries/bomberclone.md | 4 +- entries/boohu.md | 2 +- entries/boulder_dash.md | 2 +- entries/brikx.md | 2 +- entries/british_bingo.md | 2 +- entries/brogue.md | 2 +- entries/buggygame.md | 2 +- entries/cadaver.md | 4 +- entries/cannon_smash.md | 2 +- entries/caph.md | 2 +- entries/card_stories.md | 2 +- entries/castle_of_the_winds.md | 4 +- entries/cavez_of_phear.md | 2 +- entries/cboard.md | 2 +- entries/chaos_esque_anthology.md | 2 +- entries/chess3d.md | 2 +- entries/children_of_ur.md | 2 +- entries/civitas.md | 2 +- entries/combat_simulator_project.md | 2 +- entries/conquest.md | 2 +- entries/consomaton.md | 2 +- entries/cultivation.md | 2 +- entries/cuyo.md | 2 +- entries/darkcity.md | 2 +- entries/deer_portal.md | 2 +- entries/doom.md | 4 +- entries/dunnet.md | 2 +- entries/easyrpg_player.md | 2 +- entries/excellent_bifurcation.md | 2 +- entries/fairy-max.md | 2 +- entries/falcons_eye.md | 2 +- entries/far_colony.md | 2 +- entries/flare.md | 2 +- entries/freeciv-web.md | 4 +- entries/freecol.md | 2 +- entries/glest.md | 2 +- entries/go_ollie.md | 2 +- entries/hero_of_allacrost.md | 2 +- entries/holtz.md | 2 +- entries/hypercube.md | 2 +- entries/intricacy.md | 2 +- entries/irrlicht_engine.md | 2 +- entries/jsoko.md | 2 +- entries/key_runner.md | 2 +- entries/labyrinth_of_worlds.md | 2 +- entries/libpng.md | 2 +- entries/libxml2.md | 2 +- entries/lincity.md | 2 +- entries/luola.md | 2 +- entries/lzma_sdk.md | 2 +- entries/maratis.md | 2 +- entries/megaglest.md | 2 +- entries/open_rpg_maker.md | 2 +- entries/open_zelda.md | 2 +- entries/openrpg.md | 2 +- entries/openttd.md | 4 +- entries/openxcom.md | 2 +- entries/panda3d.md | 2 +- entries/pioneer.md | 2 +- entries/polycode.md | 2 +- entries/quadrapassel.md | 2 +- entries/retux.md | 4 +- entries/seven_kingdoms_ancient_adversaries.md | 2 +- entries/simple_directmedia_layer.md | 2 +- entries/simple_sokoban.md | 2 +- entries/tetravex.md | 2 +- entries/the_battle_for_wesnoth.md | 2 +- entries/the_clans.md | 2 +- entries/the_ur-quan_masters.md | 2 +- entries/turn_of_war.md | 4 +- entries/ufo_alien_invasion.md | 2 +- entries/ularn.md | 2 +- entries/urho3d.md | 2 +- entries/vega_strike.md | 4 +- entries/vvvvvv.md | 1 - entries/wargamer.md | 2 +- entries/zero_ballistics.md | 4 +- entries/zlib.md | 2 +- inspirations.md | 5 +++ 94 files changed, 147 insertions(+), 112 deletions(-) diff --git a/code/backlog.txt b/code/backlog.txt index 652ce133..adffaf8d 100644 --- a/code/backlog.txt +++ b/code/backlog.txt @@ -8,6 +8,7 @@ https://github.com/tlgkccampbell/ultraviolet https://github.com/amerkoleci/Vortice.Windows https://github.com/horde3d/Horde3D https://github.com/cxong/cdogs-sdl +https://moaiwebsite.github.io/ http://cyxdown.free.fr/bs/ http://cyxdown.free.fr/f2b/ https://github.com/nfprojects/nfengine diff --git a/code/maintenance_collect_inspiration_infos.py b/code/maintenance_collect_inspiration_infos.py index 6a82da6b..83292c95 100644 --- a/code/maintenance_collect_inspiration_infos.py +++ b/code/maintenance_collect_inspiration_infos.py @@ -39,7 +39,7 @@ if __name__ == "__main__": print('took {}s'.format(time.process_time()-t0)) t0 = time.process_time() # entries = osg.assemble_infos() - osg.write_entries(entries) + # osg.write_entries(entries) print('took {}s'.format(time.process_time()-t0)) diff --git a/code/utils/osg.py b/code/utils/osg.py index eef3fe03..ef37a078 100644 --- a/code/utils/osg.py +++ b/code/utils/osg.py @@ -582,22 +582,46 @@ def read_entries(): # parse and transform entry content try: tree = parser.parse(content) + entry = transformer.transform(tree) + # add file information + entry['file'] = file + + check_entry(entry) except Exception as e: - print(file) - print(e) + print('{} - {}'.format(file, e)) continue - # TODO check entry - - # add file information - entry['file'] = file - # add to list entries.append(entry) return entries + +def check_entry(entry): + """ + + :param entry: + :return: + """ + message = '' + + file = entry['file'] + + # check canonical file name + canonical_file_name = canonical_entry_name(entry['title']) + '.md' + # we also allow -X with X =2..9 as possible extension (because of duplicate canonical file names) + if canonical_file_name != file and canonical_file_name != file[:-5] + '.md': + message += 'file name should be {}\n'.format(canonical_file_name) + + # title should not be also in description + if entry['title'] in entry['description']: + message += 'title included in description, should be removed' + + if message: + raise RuntimeError(message) + + def write_entries(entries): """ diff --git a/entries/achtung_die_kurve.md b/entries/achtung_die_kurve.md index 47c1bbf4..e3a3572f 100644 --- a/entries/achtung_die_kurve.md +++ b/entries/achtung_die_kurve.md @@ -1,6 +1,6 @@ # Achtung, die Kurve! -_Clone of Achtung, die Kurve!, a simple skill game._ +_Simple skill game._ - Home: https://kurve.se/ - Inspirations: "Achtung, die Kurve!" diff --git a/entries/adventure_engine.md b/entries/adventure_engine.md index 2c432290..7d4d6aa6 100644 --- a/entries/adventure_engine.md +++ b/entries/adventure_engine.md @@ -1,10 +1,10 @@ # adventure engine -_MOAI based point-n-click graphical adventure engine._ +_Point-n-click graphical game engine._ - Home: https://github.com/isovector/adventure - State: mature, inactive since 2013 -- Keywords: adventure, game engine +- Keywords: adventure, game engine, inspired by Moai - Code repository: https://github.com/isovector/adventure.git - Code language: Lua - Code license: MIT diff --git a/entries/alien_assault_traders.md b/entries/alien_assault_traders.md index d86533dd..25641969 100644 --- a/entries/alien_assault_traders.md +++ b/entries/alien_assault_traders.md @@ -1,6 +1,6 @@ # Alien Assault Traders -_Alien Assault Traders is an online, web-based, turn-based strategy space trading game forked off the source of both Black Nova Traders and Nova Game Systems software and inspired by the popular BBS game of TradeWars._ +_Online, web-based, turn-based strategy space trading game forked off the source of both Black Nova Traders and Nova Game Systems software and inspired by the popular BBS game of TradeWars._ - Home: http://www.aatraders.com/, https://sourceforge.net/projects/aatrade/ - State: beta, inactive since 2009 diff --git a/entries/antichess.md b/entries/antichess.md index f6bb00bc..5e16841e 100644 --- a/entries/antichess.md +++ b/entries/antichess.md @@ -1,6 +1,6 @@ # AntiChess -_AntiChess is an anti chess game. You have to take your opponents piece if you can._ +_Anti chess game._ - Home: https://sourceforge.net/projects/antichess/ - State: mature, inactive since 2003 @@ -10,4 +10,6 @@ _AntiChess is an anti chess game. You have to take your opponents piece if you c - Code language: Java - Code license: MIT +You have to take your opponents piece if you can. + ## Building diff --git a/entries/armor_alley.md b/entries/armor_alley.md index 6a0302dc..d6e043cb 100644 --- a/entries/armor_alley.md +++ b/entries/armor_alley.md @@ -1,11 +1,11 @@ # Armor Alley -_Remake of Armor Alley_ +_Helicopter shooter._ - Home: http://www.schillmania.com/armor-alley/ - State: beta - Platform: Web -- Keywords: action, content open + non-commercial, inspired by Armor Alley, remake, strategy +- Keywords: action, shooter, content open + non-commercial, inspired by Armor Alley, remake, strategy - Code repository: https://github.com/scottschiller/ArmorAlley.git - Code language: JavaScript - Code license: CC-BY-NC-3.0 (https://github.com/scottschiller/ArmorAlley/blob/master/LICENSE.txt) diff --git a/entries/battlefield_java.md b/entries/battlefield_java.md index 418a6354..d527cadc 100644 --- a/entries/battlefield_java.md +++ b/entries/battlefield_java.md @@ -1,6 +1,6 @@ # Battlefield Java -_Battlefield Java is simple grid and turned based battle simulation game for Java developers._ +_Simple grid and turned based battle simulation game for Java developers._ - Home: https://sourceforge.net/projects/battlefieldjava/ - State: beta, inactive since 2011 diff --git a/entries/biogenesis.md b/entries/biogenesis.md index ceb1437b..e405f845 100644 --- a/entries/biogenesis.md +++ b/entries/biogenesis.md @@ -1,6 +1,6 @@ # Biogenesis -_Biogenesis is an artificial life simulator, simulating organisms, their workings and their environment._ +_Artificial life simulator, simulating organisms, their workings and their environment._ - Home: http://biogenesis.sourceforge.net/, https://sourceforge.net/projects/biogenesis/ - State: beta diff --git a/entries/bitfighter.md b/entries/bitfighter.md index f6de6a89..79703aff 100644 --- a/entries/bitfighter.md +++ b/entries/bitfighter.md @@ -1,6 +1,6 @@ # Bitfighter -_Bitfighter is an outer-space combat action game. There are difference ways of playing such as space exploration for warfare and construction._ +_Outer-space combat action game._ - Home: http://bitfighter.org/, https://web.archive.org/web/20141227065326/http://code.google.com/p/bitfighter/ - State: mature diff --git a/entries/black_shades_elite.md b/entries/black_shades_elite.md index 65d88712..daa54aab 100644 --- a/entries/black_shades_elite.md +++ b/entries/black_shades_elite.md @@ -1,10 +1,10 @@ # Black Shades Elite -_Black Shades Elite is a fork of the game Black Shades._ +_Fork of the game Black Shades._ - Home: https://web.archive.org/web/20150412072649/http://home.gna.org/blackshadeselite/, https://web.archive.org/web/20150412083319/https://gna.org/projects/blackshadeselite - State: beta, inactive since 2007 -- Keywords: simulation, first-person, inspired by Black Shades (http://wolfire.com/blackshades.html), open content, shooter +- Keywords: simulation, first-person, inspired by Black Shades, open content, shooter - Code repository: (none) - Code language: ? - Code license: ? (GPL-2.0) diff --git a/entries/blackvoxel.md b/entries/blackvoxel.md index 44186970..40dac809 100644 --- a/entries/blackvoxel.md +++ b/entries/blackvoxel.md @@ -1,6 +1,6 @@ # Blackvoxel -_Blackvoxel is a 3D voxel sandbox game. The backstory takes place in the future, with the player finding themselves on a mysterious planet, after the crash of their spaceship.[1]_ +_3D voxel sandbox game._ - Home: https://www.blackvoxel.com/, https://github.com/Blackvoxel/Blackvoxel - State: mature @@ -13,6 +13,8 @@ _Blackvoxel is a 3D voxel sandbox game. The backstory takes place in the future, - Code dependencies: OpenGL - Assets license: GPL-3.0 +The backstory takes place in the future, with the player finding themselves on a mysterious planet, after the crash of their spaceship. + ## Building - Build system: Make diff --git a/entries/blinken.md b/entries/blinken.md index ca0bef62..7426336e 100644 --- a/entries/blinken.md +++ b/entries/blinken.md @@ -1,6 +1,6 @@ # Blinken -_Blinken is the KDE implementation of the memory game Simon Says._ +_KDE implementation of the memory game Simon Says._ - Home: https://edu.kde.org/blinken/, https://github.com/KDE/blinken - State: mature diff --git a/entries/bloboats.md b/entries/bloboats.md index 2d0e8837..566b5546 100644 --- a/entries/bloboats.md +++ b/entries/bloboats.md @@ -1,16 +1,18 @@ # Bloboats -_Bloboats is a side-scrolling arcade racing game. The game is similar to X-Moto, but the player controls a jet boat instead of a motorcycle._ +_Side-scrolling arcade racing game._ - Home: https://web.archive.org/web/20111013002050/http://bloboats.blobtrox.net/, https://tracker.debian.org/pkg/bloboats - State: mature, inactive since 2006 - Download: https://web.archive.org/web/20091226074342/http://bloboats.blobtrox.net/download.php -- Keywords: action, open content, racing +- Keywords: action, open content, racing, inspired by X-Moto - Code repository: https://salsa.debian.org/games-team/bloboats.git (see alsodownload) - Code language: C++ - Code license: GPL-2.0 - Assets license: GPL (data), CC (sounds) +The game is similar to X-Moto, but the player controls a jet boat instead of a motorcycle. + ## Building - Build system: Make diff --git a/entries/bomberclone.md b/entries/bomberclone.md index a202b05a..02e9202e 100644 --- a/entries/bomberclone.md +++ b/entries/bomberclone.md @@ -1,12 +1,12 @@ # BomberClone -_BomberClone is an AtomicBomberMan clone started by Steffen Pohle. Both data and the source are licensed under the GPL.[2][3]_ +_AtomicBomberMan clone._ - Home: https://www.bomberclone.de/, https://packages.debian.org/sid/bomberclone, https://sourceforge.net/projects/bomberclone/ - State: beta, inactive since 2010 - Download: https://www.bomberclone.de/core.html - Platform: Windows, Linux -- Keywords: arcade, open content +- Keywords: arcade, open content, inspired by Atomic Bomberman - Code repository: (see download) - Code language: C - Code license: GPL-2.0 diff --git a/entries/boohu.md b/entries/boohu.md index 469b596d..7e689975 100644 --- a/entries/boohu.md +++ b/entries/boohu.md @@ -1,6 +1,6 @@ # Boohu -_Break Out Of Hareka's Underground (Boohu) is a turn-based roguelike focusing on tactical positioning mechanisms._ +_Break Out Of Hareka's Underground is a turn-based roguelike focusing on tactical positioning mechanisms._ - Home: https://download.tuxfamily.org/boohu/index.html - State: beta diff --git a/entries/boulder_dash.md b/entries/boulder_dash.md index de625f1d..9f726631 100644 --- a/entries/boulder_dash.md +++ b/entries/boulder_dash.md @@ -1,6 +1,6 @@ # Boulder Dash -_Boulder Dash game remake, done in Java._ +_Dig through caves collecting gems._ - Home: https://github.com/valeriansaliou/boulder-dash - State: mature, inactive since 2015 diff --git a/entries/brikx.md b/entries/brikx.md index 031d0687..cd78b39a 100644 --- a/entries/brikx.md +++ b/entries/brikx.md @@ -1,6 +1,6 @@ # Brikx -_Brikx is a puzzle game with the goal to clear levels navigating your way around walls._ +_Puzzle game with the goal to clear levels navigating your way around walls._ - Home: https://sourceforge.net/projects/brikx/ - State: beta, inactive since 2009 diff --git a/entries/british_bingo.md b/entries/british_bingo.md index 2a58ac0a..c42ddb1b 100644 --- a/entries/british_bingo.md +++ b/entries/british_bingo.md @@ -1,6 +1,6 @@ # British Bingo -_British Bingo is a 90-ball bingo game with 3 by 9 boards._ +_90-ball bingo game with 3 by 9 boards._ - Home: https://sourceforge.net/projects/britbingo/ - State: mature diff --git a/entries/brogue.md b/entries/brogue.md index 91fb07e6..634c80f6 100644 --- a/entries/brogue.md +++ b/entries/brogue.md @@ -1,6 +1,6 @@ # Brogue -_Brogue is a traditional roguelike game inspired from the original Rogue. Your quest is to find the Amulet of Yendor._ +_Traditional roguelike game inspired from the original Rogue. Your quest is to find the Amulet of Yendor._ - Home: http://sites.google.com/site/broguegame/, https://brogue.fandom.com/wiki/Brogue_Wiki - State: mature diff --git a/entries/buggygame.md b/entries/buggygame.md index fc198a0f..52560466 100644 --- a/entries/buggygame.md +++ b/entries/buggygame.md @@ -1,6 +1,6 @@ # buggyGame -_buggyGame is a single-player side-scrolling survival-exploration game where a moon buggy is driven across the surface of Earth and Moon._ +_Single-player side-scrolling survival-exploration game where a moon buggy is driven across the surface of Earth and Moon._ - Home: https://fydo.net/projects/buggygame - State: beta, inactive since 2007 diff --git a/entries/cadaver.md b/entries/cadaver.md index 51902349..f8d36f01 100644 --- a/entries/cadaver.md +++ b/entries/cadaver.md @@ -1,11 +1,11 @@ # Cadaver -_Remake of Cadaver._ +_Recreation of the original game._ - Home: https://jotd.pagesperso-orange.fr/cadaver/ - State: beta, inactive since 2009 - Download: https://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip -- Keywords: action, commercial content, inspired by Cadaver, remake +- Keywords: action, commercial content, inspired by Cadaver, remake, requires original content - Code repository: (see download) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/cannon_smash.md b/entries/cannon_smash.md index 818a0a0b..b590b3d8 100644 --- a/entries/cannon_smash.md +++ b/entries/cannon_smash.md @@ -1,6 +1,6 @@ # Cannon Smash -_Cannon Smash is a table tennis game._ +_Table tennis game._ - Home: http://cannonsmash.sourceforge.net/, https://sourceforge.net/projects/cannonsmash/ - State: beta, inactive since 2003 diff --git a/entries/caph.md b/entries/caph.md index 8a275f23..c225aafa 100644 --- a/entries/caph.md +++ b/entries/caph.md @@ -1,6 +1,6 @@ # Caph -_Caph is a physics simulation puzzle game in which the player has to get a red and a green circle together._ +_Physics simulation puzzle game in which the player has to get a red and a green circle together._ - Home: http://caphgame.sourceforge.net/, https://sourceforge.net/projects/caphgame - State: mature, inactive since 2010 diff --git a/entries/card_stories.md b/entries/card_stories.md index 4fd91c6b..acebf637 100644 --- a/entries/card_stories.md +++ b/entries/card_stories.md @@ -1,6 +1,6 @@ # Card Stories -_Card Stories is an online multiplayer HTML5 based game of cards that promotes creativity and imagination._ +_Online multiplayer game of cards that promotes creativity and imagination._ - Home: https://web.archive.org/web/20190126033549/https://cardstories.org/ - State: beta, inactive since 2012 diff --git a/entries/castle_of_the_winds.md b/entries/castle_of_the_winds.md index 75fb92a0..bce1a978 100644 --- a/entries/castle_of_the_winds.md +++ b/entries/castle_of_the_winds.md @@ -1,11 +1,11 @@ # Castle of the Winds -_Castle of the Winds remake._ +_Remake of the original._ - Home: http://game.castleofthewinds.com/, http://mordrax.github.io/cotwmtor/ - State: beta, inactive since 2016 - Play: http://game.castleofthewinds.com/ -- Keywords: role playing, remake +- Keywords: role playing, remake, inspired by Castle of the Winds - Code repository: https://github.com/mordrax/cotwmtor.git - Code language: JavaScript - Code license: MIT diff --git a/entries/cavez_of_phear.md b/entries/cavez_of_phear.md index 8829e2fd..1dbaafcc 100644 --- a/entries/cavez_of_phear.md +++ b/entries/cavez_of_phear.md @@ -1,6 +1,6 @@ # CAVEZ of PHEAR -_CAVEZ of PHEAR is an arcade action game based on ASCII graphics._ +_Arcade action game based on ASCII graphics._ - Home: https://web.archive.org/web/20120110101219/http://www.x86.no/cavezofphear/ - State: beta, inactive since 2011 diff --git a/entries/cboard.md b/entries/cboard.md index 9aa23d85..0fba4d07 100644 --- a/entries/cboard.md +++ b/entries/cboard.md @@ -1,6 +1,6 @@ # CBoard -_CBoard is a text-mode chess game front-end and editor for PGN (Portable Game Notation) files. It uses unicode characters to display chess pieces._ +_Text-mode chess game front-end and editor for PGN (Portable Game Notation) files. It uses unicode characters to display chess pieces._ - Home: http://benkibbey.wordpress.com/cboard/, https://gitlab.com/bjk/cboard/-/wikis/home - State: beta, inactive since 2018 diff --git a/entries/chaos_esque_anthology.md b/entries/chaos_esque_anthology.md index 5b7adf94..a8095ca2 100644 --- a/entries/chaos_esque_anthology.md +++ b/entries/chaos_esque_anthology.md @@ -1,6 +1,6 @@ # Chaos Esque Anthology -_Chaos Esque Anthology is a first-person shooter fork of Xonotic including new weapons, maps, vehicles and more._ +_First-person shooter fork of Xonotic including new weapons, maps, vehicles and more._ - Home: https://sourceforge.net/projects/chaosesqueanthology/ - State: mature diff --git a/entries/chess3d.md b/entries/chess3d.md index 8a23c563..ff7bcdf0 100644 --- a/entries/chess3d.md +++ b/entries/chess3d.md @@ -1,6 +1,6 @@ # Chess3D -_Chess3D is a HTML/WebGL 3D chess game with AI._ +_3D chess game with AI._ - Home: http://yanngranjon.com/static/games/chess3D/ - State: mature, inactive since 2016 diff --git a/entries/children_of_ur.md b/entries/children_of_ur.md index eb7c57bc..b7f9ac60 100644 --- a/entries/children_of_ur.md +++ b/entries/children_of_ur.md @@ -1,6 +1,6 @@ # Children of Ur -_Children of Ur is an MMORPG._ +_MMORPG._ - Home: https://www2.childrenofur.com/ - State: beta diff --git a/entries/civitas.md b/entries/civitas.md index 002f46f0..921fdc32 100644 --- a/entries/civitas.md +++ b/entries/civitas.md @@ -1,6 +1,6 @@ # Civitas -_Civitas is a city building game for kids._ +_City building game for kids._ - Home: http://sourceforge.net/projects/civitas/, https://www.conexum.com.br/cosmopolita/ (Portoguese) - State: beta, inactive since 2017 diff --git a/entries/combat_simulator_project.md b/entries/combat_simulator_project.md index c7d74d7b..6f43e456 100644 --- a/entries/combat_simulator_project.md +++ b/entries/combat_simulator_project.md @@ -1,6 +1,6 @@ # Combat Simulator Project -_Combat Simulator Project aka CSP is an aerial combat simulator._ +_Aerial combat simulator._ - Home: https://web.archive.org/web/20140215084623/https://sourceforge.net/apps/mediawiki/csp/index.php?title=Main_Page, https://sourceforge.net/projects/csp - State: beta, inactive since 2010 diff --git a/entries/conquest.md b/entries/conquest.md index fd8db98b..5e8850cf 100644 --- a/entries/conquest.md +++ b/entries/conquest.md @@ -1,6 +1,6 @@ # Conquest -_Conquest is a real-time strategy space war game._ +_Real-time strategy space war game._ - Home: https://github.com/jtrulson/conquest - State: mature diff --git a/entries/consomaton.md b/entries/consomaton.md index e04281f3..db0f4a38 100644 --- a/entries/consomaton.md +++ b/entries/consomaton.md @@ -1,6 +1,6 @@ # Consomaton -_Consomaton is a puzzle game revolving around cellular automata._ +_Puzzle game revolving around cellular automata._ - Home: http://www.asahi-net.or.jp/~cs8k-cyu/blog/2016/06/17/consomaton/ - State: mature, inactive since 2016 diff --git a/entries/cultivation.md b/entries/cultivation.md index b494f19b..511a8351 100644 --- a/entries/cultivation.md +++ b/entries/cultivation.md @@ -1,6 +1,6 @@ # Cultivation -_Cultivation is a 2D life simulation game created by Jason Rohrer._ +_2D life simulation._ - Home: http://cultivation.sourceforge.net/, https://sourceforge.net/projects/cultivation/ - State: mature, inactive since 2010 diff --git a/entries/cuyo.md b/entries/cuyo.md index 26855f1b..91e96094 100644 --- a/entries/cuyo.md +++ b/entries/cuyo.md @@ -1,6 +1,6 @@ # Cuyo -_Cuyo is a Puyo Puyo-style puzzle game._ +_Puyo Puyo-style puzzle game._ - 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 - State: mature, inactive since 2014 diff --git a/entries/darkcity.md b/entries/darkcity.md index 941fd756..de14334e 100644 --- a/entries/darkcity.md +++ b/entries/darkcity.md @@ -1,6 +1,6 @@ # DarkCity -_DarkCity is a MMORPG game, in text mode on the Internet._ +_MMORPG in text mode._ - Home: https://sourceforge.net/projects/darkcity/ - State: mature, inactive since 2012 diff --git a/entries/deer_portal.md b/entries/deer_portal.md index 46e8ccb6..550ddb92 100644 --- a/entries/deer_portal.md +++ b/entries/deer_portal.md @@ -1,6 +1,6 @@ # Deer Portal -_Deer Portal is a hybrid board/card game for four players driven by the four classical elements._ +_Hybrid board/card game for four players driven by the four classical elements._ - Home: https://devcarpet.net/deerportal/ - State: beta diff --git a/entries/doom.md b/entries/doom.md index 0d0afbce..133555aa 100644 --- a/entries/doom.md +++ b/entries/doom.md @@ -1,11 +1,11 @@ # DOOM -_Source of DOOM._ +_Source of Doom._ - Home: https://github.com/id-Software/DOOM - State: mature, inactive since 2012 - Platform: Linux -- Keywords: action, first-person, game engine, shooter +- Keywords: action, first-person, game engine, shooter, inspired by Doom - Code repository: https://github.com/id-Software/DOOM.git - Code language: C - Code license: Custom diff --git a/entries/dunnet.md b/entries/dunnet.md index b9ea531f..a2f9fc67 100644 --- a/entries/dunnet.md +++ b/entries/dunnet.md @@ -1,6 +1,6 @@ # Dunnet -_Dunnet is a text adventure game included in Emacs._ +_Text adventure game included in Emacs._ - Home: http://www.driver-aces.com/ronnie.html#dunnet - Media: diff --git a/entries/easyrpg_player.md b/entries/easyrpg_player.md index c9b415f6..a001a6a1 100644 --- a/entries/easyrpg_player.md +++ b/entries/easyrpg_player.md @@ -1,6 +1,6 @@ # EasyRPG Player -_EasyRPG Player is a program that allows to play games created with RPG Maker 2000 and 2003._ +_Allows to play games created with RPG Maker 2000 and 2003._ - Home: https://easyrpg.org/player/, https://easyrpg.org/ - State: mature diff --git a/entries/excellent_bifurcation.md b/entries/excellent_bifurcation.md index 6baae275..0492dcbd 100644 --- a/entries/excellent_bifurcation.md +++ b/entries/excellent_bifurcation.md @@ -1,6 +1,6 @@ # Excellent Bifurcation -_Excellent Bifurcation is an abstract vertical shooter with two sides to play on._ +_Abstract vertical shooter with two sides to play on._ - Home: https://archive.org/details/ExcellentFix, https://packages.debian.org/source/excellent-bifurcation - State: mature, inactive since 2007 diff --git a/entries/fairy-max.md b/entries/fairy-max.md index 00649c1f..a70ac90b 100644 --- a/entries/fairy-max.md +++ b/entries/fairy-max.md @@ -1,6 +1,6 @@ # Fairy-Max -_Fairy-Max is a xboard compatible chess engine for playing user defined chess variants with non-orthodox pieces._ +_Xboard compatible chess engine for playing user defined chess variants with non-orthodox pieces._ - Home: http://home.hccnet.nl/h.g.muller/CVfairy.html, https://web.archive.org/web/20150412073152/http://www.chessvariants.org/index/msdisplay.php?itemid=MSfairy-max - Media: https://en.wikipedia.org/wiki/Fairy-Max diff --git a/entries/falcons_eye.md b/entries/falcons_eye.md index d28e9b09..e946d1c8 100644 --- a/entries/falcons_eye.md +++ b/entries/falcons_eye.md @@ -1,6 +1,6 @@ # Falcon's Eye -_Falcon's Eye is a graphical isometric version of NetHack written by Jaakko Tapani Peltonen that keeps all of the original game-play, but adds a more graphically and musically interesting interface._ +_Graphical isometric version of NetHack written by Jaakko Tapani Peltonen that keeps all of the original game-play, but adds a more graphically and musically interesting interface._ - Home: http://falconseye.sourceforge.net/, https://sourceforge.net/projects/falconseye/ - State: mature, inactive since 2004 diff --git a/entries/far_colony.md b/entries/far_colony.md index fc84a1a2..832dfbd2 100644 --- a/entries/far_colony.md +++ b/entries/far_colony.md @@ -1,6 +1,6 @@ # FAR Colony -_FAR Colony (First Autonomous Remote Colony) is a game of exploration and space colonization being held in the 23th century._ +_Game of exploration and space colonization being held in the 23th century._ - Home: https://code.google.com/archive/p/farcolony/ - State: beta, inactive since 2014 diff --git a/entries/flare.md b/entries/flare.md index 57d61eab..5c74f8a4 100644 --- a/entries/flare.md +++ b/entries/flare.md @@ -1,6 +1,6 @@ # Flare -_Flare (Free Libre Action Roleplaying Engine) is a simple game engine built to handle a very specific kind of game: single-player 2D action RPGs._ +_(Free Libre Action Roleplaying Engine) is a simple game engine built to handle a very specific kind of game: single-player 2D action RPGs._ - Home: https://flarerpg.org/, https://github.com/clintbellanger/flare-engine - State: mature diff --git a/entries/freeciv-web.md b/entries/freeciv-web.md index 7218bb91..b0c89260 100644 --- a/entries/freeciv-web.md +++ b/entries/freeciv-web.md @@ -1,11 +1,11 @@ # Freeciv-web -_Freeciv-web is a version of Freeciv playable online in any modern web browser._ +_Version of Freeciv playable online in any modern web browser._ - Home: https://web.archive.org/web/20180102150750/https://play.freeciv.org/ - Media: https://en.wikipedia.org/wiki/Freeciv#Freeciv_WebGL_3D_and_Freeciv-web - State: mature -- Keywords: strategy, clone, inspired by Civilization II, online, turn-based +- Keywords: strategy, clone, inspired by Civilization II + Freeciv, online, turn-based - Code repository: https://github.com/freeciv/freeciv-web.git - Code language: JavaScript, Java, Python - Code license: AGPL-3.0 diff --git a/entries/freecol.md b/entries/freecol.md index e455c11b..60614039 100644 --- a/entries/freecol.md +++ b/entries/freecol.md @@ -1,6 +1,6 @@ # FreeCol -_FreeCol is a turn-based strategy game based on the old game Colonization, and similar to Civilization._ +_Turn-based strategy game based on the old game Colonization, and similar to Civilization._ - Home: http://www.freecol.org/, https://sourceforge.net/projects/freecol/ - Media: https://en.wikipedia.org/wiki/FreeCol diff --git a/entries/glest.md b/entries/glest.md index 486073d0..00be8786 100644 --- a/entries/glest.md +++ b/entries/glest.md @@ -1,6 +1,6 @@ # Glest -_Glest is a free 3D real-time strategy game._ +_3D real-time strategy game._ - Home: http://glest.org/en/index.php, https://sourceforge.net/projects/glest/ - Media: https://en.wikipedia.org/wiki/Glest diff --git a/entries/go_ollie.md b/entries/go_ollie.md index 548736d3..42dac045 100644 --- a/entries/go_ollie.md +++ b/entries/go_ollie.md @@ -1,6 +1,6 @@ # Go Ollie! -_Go Ollie! is a mouse controlled platformer about an earth worm._ +_Mouse controlled platformer about an earth worm._ - Home: http://www.charliedoggames.com/?page_id=62, https://web.archive.org/web/20111013005011/http://www.tweeler.com/index.php?PAGE=goollie_linux - State: mature, inactive since 2011 diff --git a/entries/hero_of_allacrost.md b/entries/hero_of_allacrost.md index 30a4ded3..c4e11f34 100644 --- a/entries/hero_of_allacrost.md +++ b/entries/hero_of_allacrost.md @@ -1,6 +1,6 @@ # Hero of Allacrost -_Hero of Allacrost is a 2D role-playing game inspired by classic console RPGs._ +_2D role-playing game inspired by classic console RPGs._ - Home: http://allacrost.org - State: mature diff --git a/entries/holtz.md b/entries/holtz.md index e3613bfe..821e954b 100644 --- a/entries/holtz.md +++ b/entries/holtz.md @@ -1,6 +1,6 @@ # Holtz -_Holtz is a collection of board games that can be played against the computer or online against other players. Holtz supports the games Zèrtz, Dvonn, Relax and Bloks._ +_Collection of board games that can be played against the computer or online against other players. Holtz supports the games Zèrtz, Dvonn, Relax and Bloks._ - Home: https://sourceforge.net/projects/holtz/ - State: mature diff --git a/entries/hypercube.md b/entries/hypercube.md index 0ff8c1fa..ab3b0635 100644 --- a/entries/hypercube.md +++ b/entries/hypercube.md @@ -1,6 +1,6 @@ # Hypercube -_Hypercube is a golf-like puzzle game around a tesseract (4D hypercube)._ +_Golf-like puzzle game around a tesseract (4D hypercube)._ - Home: http://harmen.vanderwal.eu/hypercube/ - State: mature, inactive since 2016 diff --git a/entries/intricacy.md b/entries/intricacy.md index 62f12b18..b6de2828 100644 --- a/entries/intricacy.md +++ b/entries/intricacy.md @@ -1,6 +1,6 @@ # Intricacy -_Intricacy is a multiplayer lock-picking puzzle game, in which players design locks and try to pick the locks devised by others._ +_Multiplayer lock-picking puzzle game, in which players design locks and try to pick the locks devised by others._ - Home: http://mbays.freeshell.org/intricacy/ - State: beta diff --git a/entries/irrlicht_engine.md b/entries/irrlicht_engine.md index 6e0c0ae0..b118d25f 100644 --- a/entries/irrlicht_engine.md +++ b/entries/irrlicht_engine.md @@ -1,6 +1,6 @@ # Irrlicht Engine -_The Irrlicht Engine is an open source high performance real time 3D engine._ +_High performance real time 3D engine._ - Home: http://irrlicht.sourceforge.net/ - Media: https://en.wikipedia.org/wiki/Irrlicht_Engine diff --git a/entries/jsoko.md b/entries/jsoko.md index e3de7cce..c340cd93 100644 --- a/entries/jsoko.md +++ b/entries/jsoko.md @@ -1,6 +1,6 @@ # JSoko -_JSoko is a sokobon style puzzle game. It includes an automatic solver and supports different skins._ +_Sokobon style puzzle game. It includes an automatic solver and supports different skins._ - Home: https://www.sokoban-online.de/, https://sourceforge.net/projects/jsokoapplet/ - State: mature diff --git a/entries/key_runner.md b/entries/key_runner.md index 233bcb08..1398fea6 100644 --- a/entries/key_runner.md +++ b/entries/key_runner.md @@ -1,6 +1,6 @@ # Key Runner -_Key Runner is a 2D overhead action game where Moschata, the Key Runner must race to retrieve the key and bring it to the lock._ +_2D overhead action game where Moschata, the Key Runner must race to retrieve the key and bring it to the lock._ - Home: https://web.archive.org/web/20150412095108/http://killergame.net/keyrunner/ - State: mature, inactive since 2013 diff --git a/entries/labyrinth_of_worlds.md b/entries/labyrinth_of_worlds.md index ebbd1078..9a8db07f 100644 --- a/entries/labyrinth_of_worlds.md +++ b/entries/labyrinth_of_worlds.md @@ -5,7 +5,7 @@ _Rewrite for modern architectures of the incredibly good game Ultima Underworld - Home: http://low.sourceforge.net/index.php, https://sourceforge.net/projects/low/ - State: beta, inactive since 2010 - Download: https://sourceforge.net/projects/low/files -- Keywords: role playing +- Keywords: role playing, inspired by Ultima Underworld 2: Labyrinth of Worlds - Code repository: https://gitlab.com/osgames/low.git (cvs and svn to git conversion), https://svn.code.sf.net/p/low/code (svn), http://low.cvs.sourceforge.net (cvs) - Code language: C++ - Code license: LGPL-3.0 diff --git a/entries/libpng.md b/entries/libpng.md index 24af267c..8710cc2f 100644 --- a/entries/libpng.md +++ b/entries/libpng.md @@ -1,6 +1,6 @@ # libpng -_libpng is the official PNG reference library._ +_Official PNG reference library._ - Home: http://libpng.org/pub/png/libpng.html, https://libpng.sourceforge.io/ - Media: https://en.wikipedia.org/wiki/Libpng diff --git a/entries/libxml2.md b/entries/libxml2.md index 7f5aa1fb..8a9fd90c 100644 --- a/entries/libxml2.md +++ b/entries/libxml2.md @@ -1,6 +1,6 @@ # Libxml2 -_Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform)._ +_XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform)._ - Home: http://www.xmlsoft.org/ - Media: https://en.wikipedia.org/wiki/Libxml2 diff --git a/entries/lincity.md b/entries/lincity.md index dce1dd0a..8069ec2b 100644 --- a/entries/lincity.md +++ b/entries/lincity.md @@ -1,6 +1,6 @@ # Lincity -_Lincity is a city simulation game,_ +_City simulation game._ - Home: http://lincity.sourceforge.net/, https://sourceforge.net/projects/lincity/ - Media: https://en.wikipedia.org/wiki/Lincity diff --git a/entries/luola.md b/entries/luola.md index b1380a6e..6de415a0 100644 --- a/entries/luola.md +++ b/entries/luola.md @@ -5,7 +5,7 @@ _Arcade game of genre "Luolalentely" (Cave-flying) inspired by V-Wing._ - Home: https://web.archive.org/web/20120322083830/http://www.luolamies.org/software/luola/ - State: mature, inactive since 2005 - Platform: Windows, Linux, macOS -- Keywords: arcade, open content +- Keywords: arcade, open content, inspired by V-Wing - Code repository: https://github.com/callaa/luola.git - Code language: C - Code license: GPL-2.0 diff --git a/entries/lzma_sdk.md b/entries/lzma_sdk.md index 0ef4ac9d..cb5840c0 100644 --- a/entries/lzma_sdk.md +++ b/entries/lzma_sdk.md @@ -1,6 +1,6 @@ # LZMA SDK -_The LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression._ +_Provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression._ - Home: https://7-zip.org/ - Media: https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm diff --git a/entries/maratis.md b/entries/maratis.md index d1d4c0af..b6cd3ede 100644 --- a/entries/maratis.md +++ b/entries/maratis.md @@ -1,6 +1,6 @@ # Maratis -_Maratis is a simple cross-platform 3d engine and visual game development tool._ +_Simple cross-platform 3D engine and visual game development tool._ - Home: http://www.maratis3d.org/ - State: beta diff --git a/entries/megaglest.md b/entries/megaglest.md index b1d53a2e..4b428d7d 100644 --- a/entries/megaglest.md +++ b/entries/megaglest.md @@ -1,6 +1,6 @@ # MegaGlest -_MegaGlest is an entertaining free (freeware and free software) and open source cross-platform 3D real-time strategy (RTS) game._ +_Cross-platform 3D real-time strategy (RTS) game._ - Home: https://megaglest.org/, https://sourceforge.net/projects/megaglest/ - Media: https://en.wikipedia.org/wiki/MegaGlest diff --git a/entries/open_rpg_maker.md b/entries/open_rpg_maker.md index 259c6c3a..fdefce8c 100644 --- a/entries/open_rpg_maker.md +++ b/entries/open_rpg_maker.md @@ -1,6 +1,6 @@ # Open RPG Maker -_Open RPG Maker is a free and open source 2D RPG creation utility, similar to the popular RPG Maker series._ +_2D RPG creation utility, similar to the popular RPG Maker series._ - Home: http://openrpgmaker.sourceforge.net/, https://sourceforge.net/projects/openrpgmaker/ - State: beta, inactive since 2014 diff --git a/entries/open_zelda.md b/entries/open_zelda.md index d853caac..3d041dd2 100644 --- a/entries/open_zelda.md +++ b/entries/open_zelda.md @@ -1,6 +1,6 @@ # Open Zelda -_Open Zelda Game Development Software._ +_Game Development Software._ - Home: https://github.com/openzelda/openzelda-source, https://web.archive.org/web/20171028213428/http://openzelda.nfshost.com/ - State: mature, inactive since 2015 diff --git a/entries/openrpg.md b/entries/openrpg.md index d4550494..f13c04ef 100644 --- a/entries/openrpg.md +++ b/entries/openrpg.md @@ -1,6 +1,6 @@ # OpenRPG -_OpenRPG is an Internet application that allows people to play Role Playing Games and some miniature based war games in real-time over the Internet._ +_Allows people to play Role Playing Games and some miniature based war games in real-time over the Internet._ - Home: http://www.rpgobjects.com/index.php?c=orpg, https://app.assembla.com/spaces/openrpg/, https://sourceforge.net/projects/openrpg/, https://app.assembla.com/wiki/show/traipse - State: mature, inactive since 2013 diff --git a/entries/openttd.md b/entries/openttd.md index 9ac8723b..35906fa7 100644 --- a/entries/openttd.md +++ b/entries/openttd.md @@ -1,12 +1,12 @@ # OpenTTD -_OpenTTD is an open source simulation game based upon the popular Microprose game "Transport Tycoon Deluxe"._ +_Simulation game based upon the popular Microprose game "Transport Tycoon Deluxe"._ - Home: https://www.openttd.org/ - Media: https://en.wikipedia.org/wiki/OpenTTD - State: mature - Download: https://www.openttd.org/downloads/openttd-releases/latest.html -- Keywords: simulation, can use original content, inspired by Transport Tycoon, open content (swappable), remake +- Keywords: simulation, can use original content, inspired by Transport Tycoon Deluxe, open content (swappable), remake - 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/openxcom.md b/entries/openxcom.md index 6ab92857..6455fb5d 100644 --- a/entries/openxcom.md +++ b/entries/openxcom.md @@ -1,6 +1,6 @@ # OpenXcom -_OpenXcom is an open-source clone of the original UFO: Enemy Unknown (X-Com: UFO Defense in USA)._ +_Clone of the original UFO: Enemy Unknown (X-Com: UFO Defense in USA)._ - Home: https://openxcom.org/ - Media: diff --git a/entries/panda3d.md b/entries/panda3d.md index f41d298c..dc0aaa7f 100644 --- a/entries/panda3d.md +++ b/entries/panda3d.md @@ -1,6 +1,6 @@ # Panda3D -_Panda3D is a game engine, a framework for 3D rendering and game development for Python and C++ programs._ +_Game engine, a framework for 3D rendering and game development for Python and C++ programs._ - Home: https://www.panda3d.org/ - Media: https://en.wikipedia.org/wiki/Panda3D diff --git a/entries/pioneer.md b/entries/pioneer.md index baed654e..3762a536 100644 --- a/entries/pioneer.md +++ b/entries/pioneer.md @@ -1,6 +1,6 @@ # Pioneer -_Pioneer is a space adventure game set in our galaxy at the turn of the 31st century._ +_Space adventure game set in our galaxy at the turn of the 31st century._ - Home: https://pioneerspacesim.net/ - Media: diff --git a/entries/polycode.md b/entries/polycode.md index c03e95e3..5849088d 100644 --- a/entries/polycode.md +++ b/entries/polycode.md @@ -1,6 +1,6 @@ # Polycode -_Polycode is a C++ and Lua framework for building interactive applications._ +_C++ and Lua framework for building interactive applications._ - Home: http://polycode.org/ - State: beta diff --git a/entries/quadrapassel.md b/entries/quadrapassel.md index d4598a48..38953650 100644 --- a/entries/quadrapassel.md +++ b/entries/quadrapassel.md @@ -1,6 +1,6 @@ # Quadrapassel -_Quadrapassel (formerly a part of GNOME Games) is a GNOME version of Tetris. It was previously named Gnometris._ +_(formerly a part of GNOME Games) is a GNOME version of Tetris. It was previously named Gnometris._ - Home: https://wiki.gnome.org/Apps/Quadrapassel - State: mature diff --git a/entries/retux.md b/entries/retux.md index 6e1f7735..847c14c6 100644 --- a/entries/retux.md +++ b/entries/retux.md @@ -1,12 +1,12 @@ # ReTux -_ReTux (stylized as "reTux" in-game) is a 2D platformer._ +_(stylized as "reTux" in-game) is a 2D platformer._ - Home: http://retux.nongnu.org, https://savannah.nongnu.org/projects/retux - State: mature, inactive since 2018 - Download: http://retux.nongnu.org/download.html - Platform: Windows, Linux -- Keywords: platform, inspired by Super Mario, open content +- Keywords: platform, inspired by Super Mario, open content, 2D - 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/seven_kingdoms_ancient_adversaries.md b/entries/seven_kingdoms_ancient_adversaries.md index b23a44bc..0909405a 100644 --- a/entries/seven_kingdoms_ancient_adversaries.md +++ b/entries/seven_kingdoms_ancient_adversaries.md @@ -7,7 +7,7 @@ _Fan continuation of Seven Kingdoms: Ancient Adversaries by Enlight Software._ - State: mature - Download: https://www.7kfans.com/wiki/index.php/Download, https://sourceforge.net/projects/skfans/files/, https://github.com/the3dfxdude/7kaa/releases - Platform: Windows, Linux -- Keywords: strategy, inspired by Seven Kingdoms, remake +- Keywords: strategy, inspired by Seven Kingdoms: Ancient Adversaries, remake - Code repository: https://github.com/the3dfxdude/7kaa.git - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/simple_directmedia_layer.md b/entries/simple_directmedia_layer.md index 0204c567..37489ec0 100644 --- a/entries/simple_directmedia_layer.md +++ b/entries/simple_directmedia_layer.md @@ -1,6 +1,6 @@ # Simple DirectMedia Layer -_Simple DirectMedia Layer is a cross-platform development library designed to provide low level access._ +_Cross-platform development library designed to provide low level access._ - Home: https://www.libsdl.org/index.php - Media: https://en.wikipedia.org/wiki/Simple_DirectMedia_Layer diff --git a/entries/simple_sokoban.md b/entries/simple_sokoban.md index 0532829e..c3e76f89 100644 --- a/entries/simple_sokoban.md +++ b/entries/simple_sokoban.md @@ -1,6 +1,6 @@ # Simple Sokoban -_Simple Sokoban game aimed at playability and portability across systems._ +_Sokoban game aimed at playability and portability across systems._ - Home: http://simplesok.sourceforge.net/, https://sourceforge.net/projects/simplesok/ - State: mature, inactive since 2014 diff --git a/entries/tetravex.md b/entries/tetravex.md index 8f7df5f6..5c4e33f9 100644 --- a/entries/tetravex.md +++ b/entries/tetravex.md @@ -6,7 +6,7 @@ _A port of TetraVex for macOS._ - State: beta - Download: https://github.com/Lisergishnu/TetraVex/releases - Platform: macOS -- Keywords: puzzle, port +- Keywords: puzzle, port, inspired by TetraVex - Code repository: https://github.com/Lisergishnu/TetraVex.git - Code language: Swift - Code license: GPL-3.0 diff --git a/entries/the_battle_for_wesnoth.md b/entries/the_battle_for_wesnoth.md index 7ea0b0b5..9ae8d211 100644 --- a/entries/the_battle_for_wesnoth.md +++ b/entries/the_battle_for_wesnoth.md @@ -1,6 +1,6 @@ # The Battle for Wesnoth -_The Battle for Wesnoth is an open source, turn-based strategy game with a high fantasy theme._ +_Turn-based strategy game with a high fantasy theme._ - Home: https://www.wesnoth.org/, https://sourceforge.net/projects/wesnoth/ - Media: https://en.wikipedia.org/wiki/The_Battle_for_Wesnoth diff --git a/entries/the_clans.md b/entries/the_clans.md index e7a92157..f76eb7e5 100644 --- a/entries/the_clans.md +++ b/entries/the_clans.md @@ -5,7 +5,7 @@ _The Clans was a popular game written for online BBSes back in the day of their - Home: http://theclans.sourceforge.net/, https://sourceforge.net/projects/theclans/ - State: beta, inactive since 2003 - Download: https://sourceforge.net/projects/theclans/files -- Keywords: role playing +- Keywords: role playing, inspired by The Clans - Code repository: https://gitlab.com/osgames/theclans.git (backup of cvs), http://theclans.cvs.sourceforge.net/ (cvs) - Code language: C - Code license: GPL-2.0 diff --git a/entries/the_ur-quan_masters.md b/entries/the_ur-quan_masters.md index 686bcb96..85baebf4 100644 --- a/entries/the_ur-quan_masters.md +++ b/entries/the_ur-quan_masters.md @@ -1,6 +1,6 @@ # The Ur-Quan Masters -_The Ur-Quan Masters (or UQM) project ports Star Control II to modern operating systems._ +_(or UQM) project ports Star Control II to modern operating systems._ - Home: http://sc2.sourceforge.net/, https://sourceforge.net/projects/sc2/ - Media: https://en.wikipedia.org/wiki/Star_Control_II#The_Ur-Quan_Masters diff --git a/entries/turn_of_war.md b/entries/turn_of_war.md index 4205cc7a..fa4124cf 100644 --- a/entries/turn_of_war.md +++ b/entries/turn_of_war.md @@ -1,11 +1,11 @@ # Turn of War -_Turn of War is a fork of Dragon Wars._ +_Fork of Dragon Wars._ - Home: https://github.com/trananh1992/Turn-of-War - State: beta, inactive since 2014 - Platform: Android -- Keywords: strategy +- Keywords: strategy, inspired by Dragon Wars - Code repository: https://github.com/trananh1992/Turn-of-War.git - Code language: Java - Code license: GPL-3.0 diff --git a/entries/ufo_alien_invasion.md b/entries/ufo_alien_invasion.md index b7123306..30324587 100644 --- a/entries/ufo_alien_invasion.md +++ b/entries/ufo_alien_invasion.md @@ -1,6 +1,6 @@ # UFO: Alien Invasion -_UFO: Alien Invasion is a squad-based tactical strategy game in the tradition of the old X-COM PC games_ +_Squad-based tactical strategy game in the tradition of the old X-COM PC games_ - Home: https://ufoai.org/wiki/News, https://sourceforge.net/projects/ufoai/ - Media: diff --git a/entries/ularn.md b/entries/ularn.md index adfa5019..0bef0386 100644 --- a/entries/ularn.md +++ b/entries/ularn.md @@ -1,6 +1,6 @@ # Ularn -_Ularn is a modern port of the roguelike Larn._ +_Modern port of the roguelike Larn._ - Home: http://www.ularn.org/, https://sourceforge.net/projects/ularn/ - State: mature, inactive since 2018 diff --git a/entries/urho3d.md b/entries/urho3d.md index ca6e23c2..9218a504 100644 --- a/entries/urho3d.md +++ b/entries/urho3d.md @@ -1,6 +1,6 @@ # Urho3D -_Urho3D is a free lightweight, cross-platform 2D and 3D game engine._ +_Lightweight, cross-platform 2D and 3D game engine._ - Home: https://urho3d.github.io/ - State: mature diff --git a/entries/vega_strike.md b/entries/vega_strike.md index c7a68ef1..2047bd11 100644 --- a/entries/vega_strike.md +++ b/entries/vega_strike.md @@ -1,12 +1,12 @@ # Vega Strike -_Vega Strike is a first-person space trading and combat simulator._ +_First-person space trading and combat simulator._ - Home: https://www.vega-strike.org/, http://vegastrike.sourceforge.net/, https://sourceforge.net/projects/vegastrike/ - Media: https://en.wikipedia.org/wiki/Vega_Strike - State: mature - Download: http://vegastrike.sourceforge.net/getfiles/ -- Keywords: framework, inspired by Elite, open content (?) +- Keywords: framework, inspired by Elite, open content (?), 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/vvvvvv.md b/entries/vvvvvv.md index 1aa5a17d..cb3d8700 100644 --- a/entries/vvvvvv.md +++ b/entries/vvvvvv.md @@ -3,7 +3,6 @@ _Source code to VVVVVV._ - Home: http://distractionware.com/blog/2020/01/vvvvvv-is-now-open-source/ -- Media: https://en.wikipedia.org/wiki/VVVVVV - State: mature - Keywords: platform, commercial content, inspired by VVVVVV, remake, requires original content - Code repository: https://github.com/TerryCavanagh/vvvvvv.git diff --git a/entries/wargamer.md b/entries/wargamer.md index ce1428ed..63277231 100644 --- a/entries/wargamer.md +++ b/entries/wargamer.md @@ -5,7 +5,7 @@ _Remake of Wargamer:Napoleon 1813._ - Home: https://sourceforge.net/projects/wargamer/, http://wargamer.sourceforge.net/ - State: mature, inactive since 2003 - Download: https://sourceforge.net/projects/wargamer/files/ -- Keywords: strategy +- Keywords: strategy, inspired by Wargamer:Napoleon 1813 - Code repository: https://gitlab.com/osgames/wargamer.git (backup of cvs), http://wargamer.cvs.sourceforge.net/ (cvs) - Code language: C++ - Code license: GPL-2.0 diff --git a/entries/zero_ballistics.md b/entries/zero_ballistics.md index 137a1941..7a34ea50 100644 --- a/entries/zero_ballistics.md +++ b/entries/zero_ballistics.md @@ -1,12 +1,12 @@ # Zero Ballistics -_Zero Ballistics is a unique blend of first person shooter and tank combat, focusing on multiplayer gaming exclusively._ +_Unique blend of first person shooter and tank combat, focusing on multiplayer gaming exclusively._ - Home: http://www.zeroballistics.com/, https://sourceforge.net/projects/zeroballistics/ - State: mature, inactive since 2013 - Download: https://sourceforge.net/projects/zeroballistics/files/ - Platform: Windows -- Keywords: strategy +- Keywords: strategy, action - 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/zlib.md b/entries/zlib.md index 2327db07..b0702ee2 100644 --- a/entries/zlib.md +++ b/entries/zlib.md @@ -1,6 +1,6 @@ # zlib -_zlib is a software library used for data compression._ +_Software library used for data compression._ - Home: http://zlib.net/ - Media: https://en.wikipedia.org/wiki/Zlib diff --git a/inspirations.md b/inspirations.md index bac2049d..d7f114db 100644 --- a/inspirations.md +++ b/inspirations.md @@ -89,6 +89,7 @@ ## Armor Alley [1] - Inspired entries: Armor Alley +- Media: https://en.wikipedia.org/wiki/Armor_Alley ## Artemis: Spaceship Bridge Simulator [2] @@ -190,6 +191,7 @@ ## Black Shades [1] - Inspired entries: Black Shades Elite +- Media: http://wolfire.com/blackshades.html ## Blake Stone: Planet Strike [1] @@ -234,6 +236,7 @@ ## Boulder Dash [4] - Inspired entries: Boulder Dash, CAVEZ of PHEAR, GDash, Rocks'n'Diamonds +- Media: https://en.wikipedia.org/wiki/Boulder_Dash ## Bratwurst [1] @@ -274,6 +277,7 @@ ## Cadaver [1] - Inspired entries: Cadaver +- Media: ## Caesar 3 [2] @@ -1945,6 +1949,7 @@ ## VVVVVV [1] - Inspired entries: WWW +- Media: https://en.wikipedia.org/wiki/VVVVVV ## Warcraft II [2]