diff --git a/code/backlog.txt b/code/backlog.txt index a4d1aba6..43fa74bb 100644 --- a/code/backlog.txt +++ b/code/backlog.txt @@ -23,6 +23,8 @@ https://github.com/septag/rizz https://github.com/EvilPudding/candle https://github.com/TorqueGameEngines/Torque3D https://github.com/polymonster/pmtech +https://en.wikipedia.org/wiki/Black_Shades (open source) +https://en.wikipedia.org/wiki/Category:Open-source_video_games (all of them) http://icculus.org/ http://icculus.org/asciiroth/ http://icculus.org/avp/ diff --git a/code/generate_static_website.py b/code/generate_static_website.py index 3b528773..2f4c44c9 100644 --- a/code/generate_static_website.py +++ b/code/generate_static_website.py @@ -53,6 +53,7 @@ Listing: # TODO tooltip of supported systems # TODO improve or send feedback? # TODO link dependencies +# TODO top 50 list from Github via their stars with download links (add to entries) import os import shutil diff --git a/code/maintenance_developers.py b/code/maintenance_developers.py index 913fd49d..7896c963 100644 --- a/code/maintenance_developers.py +++ b/code/maintenance_developers.py @@ -7,6 +7,7 @@ stored Git repositories. # TODO split devs with multiple gh or sf accounts (unlikely), start with most (like name Adam) - naming convention @01 etc. # TODO check for devs without contact after gitlab/bitbucket/.. # TODO gitlab/bitbucket import +# TODO wikipedia search for all with more than 3 games import time from utils import osg, osg_ui diff --git a/code/maintenance_entries.py b/code/maintenance_entries.py index b8dd0cdd..a575a2c0 100644 --- a/code/maintenance_entries.py +++ b/code/maintenance_entries.py @@ -7,7 +7,7 @@ Sorts the entries in the contents files of each sub folder alphabetically. """ # TODO check for within an entry for similar dev names -# TODO wikipedia (media search) +# TODO wikipedia (media search) for popular ones at least # TODO google search (for homepages or media entries) for popular ones at least import os diff --git a/code/maintenance_inspirations.py b/code/maintenance_inspirations.py index b17ba6e9..804743b5 100644 --- a/code/maintenance_inspirations.py +++ b/code/maintenance_inspirations.py @@ -2,12 +2,11 @@ Maintenance of inspirations.md and synchronization with the inspirations in the entries. """ -# TODO wikipedia search and match -# TODO mark those that are contained in the database # TODO search fandom +# TODO which inspirations have wikipedia entries with open source games category by aren't included import time -from utils import osg, osg_ui, osg_wikipedia +from utils import osg, osg_ui, osg_wikipedia, constants as c valid_duplicates = ('Age of Empires', 'ARMA', 'Catacomb', 'Civilization', 'Company of Heroes', 'Descent', 'Duke Nukem', 'Dungeon Keeper', 'Final Fantasy', 'Heroes of Might and Magic', 'Jazz Jackrabbit', 'Marathon', 'Master of Orion', 'Quake', @@ -80,30 +79,59 @@ class InspirationMaintainer: print('inspirations not yet loaded') return for inspiration in self.inspirations.values(): + if 'Included' in inspiration: + continue if 'Media' in inspiration and any(('https://en.wikipedia.org/wiki/' in x for x in inspiration['Media'])): continue name = inspiration['Name'] # search in wikipedia results = osg_wikipedia.search(inspiration['Name']) + # throw out all (disambiguation) pages results = [r for r in results if not any(x in r for x in ('disambiguation', 'film'))] - # the simple ones - results = [r for r in results if 'video game' in r] - if len(results) == 1 and 'series' not in name: - pages = osg_wikipedia.pages(results) - page = pages[0] - url = page.url - # add url to Media field + # throw out those too dissimilar + results = [r for r in results if osg.name_similarity(str.casefold(inspiration['Name']), str.casefold(r)) > 0.6] + + # get pages for the remaining + pages = osg_wikipedia.pages(results) + + # throw out those that are no video games + pages = [page for page in pages if any('video games' in category for category in page.categories)] + + # sort by similarity to title and only keep highest + pages.sort(key=lambda page: osg.name_similarity(str.casefold(name), str.casefold(page.title))) + pages = pages[:min(1, len(pages))] + + # if there is still one left, use it + if pages: + url = pages[0].url inspiration['Media'] = inspiration.get('Media', []) + [url] - print('{}: {}'.format(name, url)) + print('{} : {}'.format(name, url)) - - - # check for name similarity - # results = [r for r in results if any(x in r for x in ('video game', 'series')) or osg.name_similarity(str.casefold(inspiration['Name']), str.casefold(r)) > 0.8] - # results = [r for r in results if any(x in r for x in ('video game', 'series'))] - # print('{}: {}'.format(inspiration['Name'], results)) + def update_included_entries(self): + if not self.inspirations: + print('inspirations not yet loaded') + return + if not self.entries: + print('entries not yet loaded') + return + # get all entry names + entry_names = [entry['Title'] for entry in self.entries] + # loop over all inspirations + for inspiration in self.inspirations.values(): + name = inspiration['Name'] + included = name in entry_names and name not in inspiration['Inspired entries'] + if included: + if 'Included' not in inspiration: + print('{} is included but was not marked as such'.format(name)) + for field in c.optional_inspiration_fields: + if field in inspiration: + del inspiration[field] + inspiration['Included'] = 'Yes' + elif 'Included' in inspiration: + print('{} was marked as included but is not anymore'.format(name)) + del inspiration['Included'] def update_inspired_entries(self): if not self.inspirations: @@ -142,6 +170,7 @@ if __name__ == "__main__": 'Check for orphans': m.check_for_orphans, 'Check for inspirations not listed': m.check_for_missing_inspirations_in_entries, 'Check for wikipedia links': m.check_for_wikipedia_links, + 'Update included entries': m.update_included_entries, 'Update inspirations from entries': m.update_inspired_entries, 'Read entries': m.read_entries } diff --git a/code/utils/constants.py b/code/utils/constants.py index c6ccf590..565cf43e 100644 --- a/code/utils/constants.py +++ b/code/utils/constants.py @@ -205,6 +205,6 @@ url_developer_fields = ('Home',) # inspiration/original game information (in the file all fields will be capitalized) essential_inspiration_fields = ('Name', 'Inspired entries') -optional_inspiration_fields = ('Media',) +optional_inspiration_fields = ('Media','Included') valid_inspiration_fields = essential_inspiration_fields + optional_inspiration_fields url_inspiration_fields = ('Media',) \ No newline at end of file diff --git a/code/utils/osg_wikipedia.py b/code/utils/osg_wikipedia.py index 91036ff1..080bbba8 100644 --- a/code/utils/osg_wikipedia.py +++ b/code/utils/osg_wikipedia.py @@ -20,6 +20,9 @@ def search(search_term, results=3): def pages(titles): pages = [] for title in titles: - page = wikipedia.page(title, auto_suggest=False) + try: + page = wikipedia.page(title, auto_suggest=False) + except wikipedia.exceptions.DisambiguationError: + continue # here we silently eat the exception pages.append(page) return pages diff --git a/entries/bt_builder.md b/entries/bt_builder.md index ebaf720b..cea839cd 100644 --- a/entries/bt_builder.md +++ b/entries/bt_builder.md @@ -1,7 +1,7 @@ # Bt Builder - Home: http://identicalsoftware.com/btbuilder/ -- Inspiration: Bard's Tale Contruction Set +- Inspiration: The Bard's Tale Construction Set - State: beta - Keyword: remake, tool - Code repository: https://github.com/dulsi/btbuilder.git (@created 2012, @stars 26, @forks 4) diff --git a/entries/cannonball.md b/entries/cannonball.md index 8670810b..7a6fa325 100644 --- a/entries/cannonball.md +++ b/entries/cannonball.md @@ -1,7 +1,7 @@ # Cannonball - Home: https://github.com/djyt/cannonball/wiki, http://reassembler.blogspot.com/ -- Inspiration: Outrun +- Inspiration: Out Run - State: beta - Download: https://github.com/djyt/cannonball/wiki#downloads - Keyword: action, remake, content commercial diff --git a/entries/labyrinth_of_worlds.md b/entries/labyrinth_of_worlds.md index f0033563..cdc71450 100644 --- a/entries/labyrinth_of_worlds.md +++ b/entries/labyrinth_of_worlds.md @@ -1,7 +1,7 @@ # Labyrinth of Worlds - Home: http://low.sourceforge.net/index.php, https://sourceforge.net/projects/low/ -- Inspiration: Ultima Underworld 2: Labyrinth of Worlds +- Inspiration: Ultima Underworld II: Labyrinth of Worlds - State: beta, inactive since 2010 - Download: https://sourceforge.net/projects/low/files - Keyword: role playing diff --git a/entries/underworldexporter.md b/entries/underworldexporter.md index 59416cbc..e70222ae 100644 --- a/entries/underworldexporter.md +++ b/entries/underworldexporter.md @@ -1,7 +1,7 @@ # UnderworldExporter - Home: https://github.com/hankmorgan/UnderworldExporter -- Inspiration: Ultima Underworld, Ultima Underworld II: Labyrinth of Worlds +- Inspiration: Ultima Underworld 1, Ultima Underworld II: Labyrinth of Worlds - State: mature - Keyword: remake, role playing, content commercial + original required - Code repository: https://github.com/hankmorgan/UnderworldExporter.git (@created 2014, @stars 204, @forks 16) diff --git a/inspirations.md b/inspirations.md index 4e6867c7..5647bf7f 100644 --- a/inspirations.md +++ b/inspirations.md @@ -1,5 +1,5 @@ [comment]: # (partly autogenerated content, edit with care, read the manual before) -# Inspirations [619] +# Inspirations [615] ## 1010! [1] @@ -8,10 +8,12 @@ ## 2048 [1] - Inspired entries: n2048 +- Included: Yes ## A-Train [1] - Inspired entries: FreeTrain +- Media: https://en.wikipedia.org/wiki/A-Train ## Abuse [2] @@ -65,6 +67,7 @@ ## Alone in the Dark series [1] - Inspired entries: Free in the Dark (engine) +- Media: https://en.wikipedia.org/wiki/Alone_in_the_Dark ## American Civil War [1] @@ -73,6 +76,7 @@ ## Angband [1] - Inspired entries: ZAngband +- Included: Yes ## Anno (series) [1] @@ -82,6 +86,7 @@ ## Anno 1404 [1] - Inspired entries: Goblin Camp +- Media: https://en.wikipedia.org/wiki/Anno_1404 ## Another World 2: Heart of the Alien [1] @@ -134,14 +139,17 @@ ## Artemis: Spaceship Bridge Simulator [2] - Inspired entries: EmptyEpsilon, Space Nerds In Space +- Media: https://en.wikipedia.org/wiki/Artemis:_Spaceship_Bridge_Simulator ## Artillery Duel [1] - Inspired entries: Artillery Duel Reloaded +- Media: https://en.wikipedia.org/wiki/Artillery_Duel ## Arx Fatalis [1] - Inspired entries: Arx Libertatis +- Media: https://en.wikipedia.org/wiki/Arx_Fatalis ## Asteroids [3] @@ -150,10 +158,12 @@ ## AstroMenace [1] - Inspired entries: AstroMenace +- Media: https://en.wikipedia.org/wiki/AstroMenace ## Astrosmash [1] - Inspired entries: Cosmosmash +- Media: https://en.wikipedia.org/wiki/Astrosmash ## Asylum [1] @@ -162,6 +172,7 @@ ## Atomic Bomberman [2] - Inspired entries: BomberClone, Bombman +- Media: https://en.wikipedia.org/wiki/Atomic_Bomberman ## Atomix [5] @@ -170,20 +181,18 @@ ## Awesomenauts [1] - Inspired entries: BlakedAwesomenaughts +- Media: https://en.wikipedia.org/wiki/Awesomenauts ## Baldur's Gate [1] - Inspired entries: GemRB +- Media: https://en.wikipedia.org/wiki/Baldur%27s_Gate_(video_game) ## Ballerburg [1] - Inspired entries: Ballerburg SDL - Media: https://en.wikipedia.org/wiki/Ballerburg -## Bard's Tale Contruction Set [1] - -- Inspired entries: Bt Builder - ## Barony [1] - Inspired entries: Barony @@ -191,6 +200,7 @@ ## Battle Chess [1] - Inspired entries: Brutal Chess +- Media: https://en.wikipedia.org/wiki/Battle_Chess ## Battle City [3] @@ -200,6 +210,7 @@ ## Battle Isle series [2] - Inspired entries: Advanced Strategic Command, Crimson Fields +- Media: https://en.wikipedia.org/wiki/Battle_Isle ## Battle Zone [1] @@ -208,22 +219,27 @@ ## BattleTech [1] - Inspired entries: MegaMek +- Media: https://en.wikipedia.org/wiki/BattleTech_(video_game) ## BeamNG.drive [1] - Inspired entries: Rigs of Rods +- Media: https://en.wikipedia.org/wiki/BeamNG.drive ## Beatmania IIDX [1] - Inspired entries: osu! +- Media: https://en.wikipedia.org/wiki/Beatmania_IIDX ## Bejeweled [1] - Inspired entries: Gweled +- Media: https://en.wikipedia.org/wiki/Bejeweled ## Betrayal at Krondor [1] - Inspired entries: xBaK +- Media: https://en.wikipedia.org/wiki/Betrayal_at_Krondor ## BioWare's Aurora engine [1] @@ -232,23 +248,27 @@ ## Black & White [1] - Inspired entries: openblack +- Media: https://en.wikipedia.org/wiki/Black_%26_White_(video_game) ## Black Shades [1] - Inspired entries: Black Shades Elite -- Media: http://wolfire.com/blackshades.html +- Media: http://wolfire.com/blackshades.html, https://en.wikipedia.org/wiki/Black_Shades ## Blake Stone: Aliens of Gold [1] - Inspired entries: BStone +- Media: https://en.wikipedia.org/wiki/Blake_Stone:_Planet_Strike ## Blake Stone: Planet Strike [1] - Inspired entries: BStone +- Media: https://en.wikipedia.org/wiki/Blake_Stone:_Planet_Strike ## Blasteroids [1] - Inspired entries: Maelstrom +- Media: https://en.wikipedia.org/wiki/Blasteroids ## Blob Wars Attrition [1] @@ -257,6 +277,7 @@ ## Blobby Volley [1] - Inspired entries: Slime Volley +- Media: https://en.wikipedia.org/wiki/Blobby_Volley ## Blockout [2] @@ -286,6 +307,7 @@ ## Bomberman [9] - Inspired entries: Bombermaaan, Bombic, Bombic2, DynaDungeons, Granatier, I Have No Tomatoes, Mr.Boom, SDL Bomber, XBlast +- Media: https://en.wikipedia.org/wiki/Bomberman ## BOOM [1] @@ -307,6 +329,7 @@ ## Bubble Bobble [1] - Inspired entries: The Bub's Brothers +- Media: https://en.wikipedia.org/wiki/Bubble_Bobble ## Bug Bomber [1] @@ -315,18 +338,22 @@ ## BurgerTime [1] - Inspired entries: BurgerSpace +- Media: https://en.wikipedia.org/wiki/BurgerTime ## Buster Bros [1] - Inspired entries: Pang Zero +- Media: https://en.wikipedia.org/wiki/Buster_Bros._Collection ## Buzz Aldrin's Race Into Space [1] - Inspired entries: Race Into Space +- Media: https://en.wikipedia.org/wiki/Buzz_Aldrin%27s_Race_Into_Space ## BVE Trainsim [1] - Inspired entries: OpenBVE +- Media: https://en.wikipedia.org/wiki/BVE_Trainsim ## C-Dogs [1] @@ -341,30 +368,37 @@ ## Caesar 3 [3] - Inspired entries: Augustus, CaesarIA, Julius +- Media: https://en.wikipedia.org/wiki/Caesar_III ## Call to Power II [1] - Inspired entries: Civilization: Call To Power 2 Source Project +- Media: https://en.wikipedia.org/wiki/Civilization:_Call_to_Power ## Cannon Fodder [1] - Inspired entries: Open Fodder +- Media: https://en.wikipedia.org/wiki/Cannon_Fodder_(video_game) ## Carmageddon [1] - Inspired entries: OpenC1 +- Media: https://en.wikipedia.org/wiki/Carmageddon ## Carrier Command [1] - Inspired entries: Thunder&Lightning +- Media: https://en.wikipedia.org/wiki/Carrier_Command ## Castle of the Winds [2] - Inspired entries: Castle of the Winds, Castle of the Winds in Elm +- Media: https://en.wikipedia.org/wiki/Castle_of_the_Winds ## Cataclysm [1] - Inspired entries: Cataclysm: Dark Days Ahead +- Included: Yes ## Catacomb [1] @@ -373,6 +407,7 @@ ## Catacomb 3-D [2] - Inspired entries: CatacombGL, Reflection Keen +- Media: https://en.wikipedia.org/wiki/Catacomb_3-D ## Catacomb Adventure Series [1] @@ -381,26 +416,32 @@ ## Catacomb II [1] - Inspired entries: CatacombSDL +- Media: https://en.wikipedia.org/wiki/Catacomb_(video_game) ## Cave Story [2] - Inspired entries: NXEngine, NXEngine-evo +- Media: https://en.wikipedia.org/wiki/Cave_Story ## Chip's Challenge [1] - Inspired entries: Tile World +- Media: https://en.wikipedia.org/wiki/Chip%27s_Challenge ## Chris Sawyer's Locomotion [1] - Inspired entries: OpenLoco +- Media: https://en.wikipedia.org/wiki/Chris_Sawyer%27s_Locomotion ## Chromium B.S.U. [1] - Inspired entries: Celestron +- Included: Yes ## ChuChu Rocket! [1] - Inspired entries: Duck Marines +- Media: https://en.wikipedia.org/wiki/ChuChu_Rocket! ## Circus Atari [1] @@ -413,14 +454,17 @@ ## Civilization II [3] - Inspired entries: C-evo, Freeciv, Freeciv-web +- Media: https://en.wikipedia.org/wiki/Civilization_II ## Civilization series [1] - Inspired entries: Conquests +- Media: https://en.wikipedia.org/wiki/Civilization_(series) ## Civilization V [1] - Inspired entries: UnCiv +- Media: https://en.wikipedia.org/wiki/Civilization_V ## Claw [1] @@ -429,10 +473,12 @@ ## Clonk [1] - Inspired entries: OpenClonk +- Media: https://en.wikipedia.org/wiki/Clonk ## Colobot [1] - Inspired entries: Colobot: Gold Edition +- Media: https://en.wikipedia.org/wiki/Colobot ## Colonization [1] @@ -441,18 +487,22 @@ ## Command & Conquer [2] - Inspired entries: OpenRA, Vanilla-Conquer +- Media: https://en.wikipedia.org/wiki/Command_%26_Conquer ## Command & Conquer: Generals [2] - Inspired entries: OpenSAGE, Thyme +- Media: https://en.wikipedia.org/wiki/Command_%26_Conquer:_Generals ## Command & Conquer: Red Alert [3] - Inspired entries: Chronoshift, OpenRA, Vanilla-Conquer +- Media: https://en.wikipedia.org/wiki/Command_%26_Conquer:_Red_Alert_(series) ## Commander Keen Series [4] - Inspired entries: Commander Genius, Keen Dreams, Omnispeak, Reflection Keen +- Media: https://en.wikipedia.org/wiki/Commander_Keen ## Commando [1] @@ -461,26 +511,32 @@ ## Company of Heroes [1] - Inspired entries: Spring: 1944 +- Media: https://en.wikipedia.org/wiki/Company_of_Heroes ## Company of Heroes 2 [1] - Inspired entries: Spring: 1944 +- Media: https://en.wikipedia.org/wiki/Company_of_Heroes_2 ## Company of Heroes: Opposing Fronts [1] - Inspired entries: Spring: 1944 +- Media: https://en.wikipedia.org/wiki/Company_of_Heroes:_Opposing_Fronts ## Company of Heroes: Tales of Valor [1] - Inspired entries: Spring: 1944 +- Media: https://en.wikipedia.org/wiki/Company_of_Heroes:_Tales_of_Valor ## CorsixTH [1] - Inspired entries: Project Dollhouse +- Included: Yes ## Cortex Command [1] - Inspired entries: CCCP +- Media: https://en.wikipedia.org/wiki/Cortex_Command ## Cosmo's Cosmic Adventure [1] @@ -490,10 +546,12 @@ ## Counter-Strike [1] - Inspired entries: FreeCS +- Media: https://en.wikipedia.org/wiki/Counter-Strike ## Crazy Machines series [1] - Inspired entries: The Butterfly Effect +- Media: https://en.wikipedia.org/wiki/Crazy_Machines ## Creatures [1] @@ -503,18 +561,22 @@ ## Crimsonland [2] - Inspired entries: Grimsonland, Violetland +- Media: https://en.wikipedia.org/wiki/Crimsonland ## Crossfire [1] - Inspired entries: Atrinik +- Included: Yes ## Crystal Caves [1] - Inspired entries: OpenCrystalCaves +- Media: https://en.wikipedia.org/wiki/Crystal_Caves ## Crystal Quest [1] - Inspired entries: CrystalQuest +- Media: https://en.wikipedia.org/wiki/Crystal_Quest ## Cube 2: Sauerbraten [2] @@ -528,10 +590,12 @@ ## Cube World [1] - Inspired entries: Veloren +- Media: https://en.wikipedia.org/wiki/Cube_World ## Curse of the Azure Bonds [1] - Inspired entries: coab +- Media: https://en.wikipedia.org/wiki/Curse_of_the_Azure_Bonds ## Cytadela [1] @@ -540,10 +604,12 @@ ## Daimonin [1] - Inspired entries: Atrinik +- Included: Yes ## Dance Dance Revolution [2] - Inspired entries: Performous, StepMania +- Media: https://en.wikipedia.org/wiki/Dance_Dance_Revolution ## Dark Forces [1] @@ -553,6 +619,7 @@ ## Deadly Rooms of Death [1] - Inspired entries: HyperRogue +- Media: https://en.wikipedia.org/wiki/Deadly_Rooms_of_Death ## Death Rally [2] @@ -584,6 +651,7 @@ ## Descent II [2] - Inspired entries: D2X-XL, DXX-Rebirth +- Media: https://en.wikipedia.org/wiki/Descent_(1995_video_game) ## Destructo [1] @@ -592,10 +660,12 @@ ## Diablo [6] - Inspired entries: Devilution, DevilutionX, DGEngine, Flare, freeablo, Summoning Wars +- Media: https://en.wikipedia.org/wiki/Diablo_(series) ## Diablo II [1] - Inspired entries: Riiablo +- Media: https://en.wikipedia.org/wiki/Diablo_II ## Digger [3] @@ -604,6 +674,7 @@ ## Dink Smallwood [1] - Inspired entries: GNU FreeDink +- Media: https://en.wikipedia.org/wiki/Dink_Smallwood ## Dogs of War [1] @@ -621,26 +692,32 @@ ## Doom 3 [3] - Inspired entries: Classic RBDoom 3 BFG, dhewm3, RBDOOM-3-BFG +- Media: https://en.wikipedia.org/wiki/Doom_3 ## Doom 64 [1] - Inspired entries: Doom64EX +- Media: https://en.wikipedia.org/wiki/Doom_64 ## Doom II [10] - Inspired entries: Doom Legacy, DOOM Retro, DOOM-iOS, Doomsday Engine, Freedoom, GZDoom, Mocha Doom, Odamex, PrBoom+, ZDoom +- Media: https://en.wikipedia.org/wiki/Doom_II_RPG ## Double Dragon [1] - Inspired entries: OpenBOR +- Media: https://en.wikipedia.org/wiki/Double_Dragon_(video_game) ## Dragon Wars [1] - Inspired entries: Turn of War +- Media: https://en.wikipedia.org/wiki/Dragon_Wars ## Driver 2 [1] - Inspired entries: REDriver2 +- Media: https://en.wikipedia.org/wiki/Driver_2 ## Drugwars [2] @@ -650,26 +727,32 @@ ## Duke Nukem [2] - Inspired entries: Dave Gnukem, Freenukum +- Media: https://en.wikipedia.org/wiki/Duke_Nukem ## Duke Nukem 3D [8] - Inspired entries: Chocolate Duke3D, Duke3D, Duke3d_w32, DukeGDX, EDuke32, JFDuke3D, Rednukem, xDuke +- Media: https://en.wikipedia.org/wiki/Duke_Nukem_3D ## Duke Nukem II [1] - Inspired entries: Rigel Engine +- Media: https://en.wikipedia.org/wiki/Duke_Nukem_II ## Dune 2 [5] - Inspired entries: Dune 2 - The Maker, Dune Dynasty, Dune II - The Maker, Dune Legacy, OpenDUNE +- Media: https://en.wikipedia.org/wiki/Dune_II ## Dune 2000 [1] - Inspired entries: OpenRA +- Media: https://en.wikipedia.org/wiki/Dune_2000 ## Dungeon Crawl Stone Soup [1] - Inspired entries: Javelin +- Included: Yes ## Dungeon Keeper [2] @@ -684,6 +767,7 @@ ## Dwarf Fortress [3] - Inspired entries: DwarfCorp, Goblin Camp, Veloren +- Media: https://en.wikipedia.org/wiki/Dwarf_Fortress ## E.T. the Extra-Terrestrial [1] @@ -697,10 +781,12 @@ ## Echochrome [1] - Inspired entries: l-echo +- Media: https://en.wikipedia.org/wiki/Echochrome ## Elasto Mania [1] - Inspired entries: X-Moto +- Media: https://en.wikipedia.org/wiki/Elasto_Mania ## Elements [1] @@ -717,6 +803,7 @@ ## Elite II [1] - Inspired entries: Pioneer +- Media: https://en.wikipedia.org/wiki/Frontier:_Elite_II ## Elona [1] @@ -725,6 +812,7 @@ ## Emerald Mine [1] - Inspired entries: Rocks'n'Diamonds +- Media: https://en.wikipedia.org/wiki/Emerald_Mine ## Empire [1] @@ -737,10 +825,12 @@ ## Escape from Colditz [1] - Inspired entries: Colditz Escape +- Media: https://en.wikipedia.org/wiki/Escape_from_Colditz ## Escape from Monkey Island [1] - Inspired entries: ResidualVM +- Media: https://en.wikipedia.org/wiki/Escape_from_Monkey_Island ## Escape Velocity [3] @@ -750,6 +840,7 @@ ## Eternal Lands [1] - Inspired entries: Other-Life +- Included: Yes ## F-1 Spirit [1] @@ -759,6 +850,7 @@ ## Falcon's Eye [1] - Inspired entries: Vulture's Eye +- Included: Yes ## Fall Down [2] @@ -772,6 +864,7 @@ ## Fallout Online [1] - Inspired entries: fonline +- Media: https://en.wikipedia.org/wiki/Fallout_Online ## Final Fantasy series [1] @@ -780,6 +873,7 @@ ## Final Fantasy VII [1] - Inspired entries: Q-Gears +- Media: https://en.wikipedia.org/wiki/Final_Fantasy_VII ## Final Fantasy VIII [1] @@ -789,10 +883,12 @@ ## Final Fight [1] - Inspired entries: OpenBOR +- Media: https://en.wikipedia.org/wiki/Final_Fight ## Fire Emblem [1] - Inspired entries: Story of a Lost Sky +- Media: https://en.wikipedia.org/wiki/Fire_Emblem_(video_game) ## Fire Power [1] @@ -802,6 +898,7 @@ ## Fish Fillets [1] - Inspired entries: Fish Fillets - Next Generation +- Media: https://en.wikipedia.org/wiki/Fish_Fillets_NG ## Five Nights at Freddy's [1] @@ -815,22 +912,27 @@ ## Flappy Bird [5] - Inspired entries: Clumsy Bird, CrappyBird, Flappy Cow, Floppy Birb, Hocoslamfy +- Media: https://en.wikipedia.org/wiki/Flappy_Bird ## Flixel [1] - Inspired entries: flixel-gdx +- Included: Yes ## Flying Shark [1] - Inspired entries: Friking Shark +- Media: https://en.wikipedia.org/wiki/Flying_Shark ## FooBillard [1] - Inspired entries: FooBillard++ +- Included: Yes ## Forgotten Realms: Unlimited Adventures [1] - Inspired entries: Dungeon Craft +- Media: https://en.wikipedia.org/wiki/Forgotten_Realms:_Unlimited_Adventures ## Forsaken [1] @@ -839,6 +941,7 @@ ## Freeciv [1] - Inspired entries: Freeciv-web +- Included: Yes ## Freelancer [1] @@ -848,22 +951,27 @@ ## Freeserf [1] - Inspired entries: Freeserf.net +- Included: Yes ## Frets on Fire [1] - Inspired entries: Frets on Fire X +- Included: Yes ## Frogger [2] - Inspired entries: Froggix, TermFrogger +- Media: https://en.wikipedia.org/wiki/Frogger ## Frogs and Flies [1] - Inspired entries: Batrachians +- Media: https://en.wikipedia.org/wiki/Frogs_and_Flies ## Galactic Civilizations [1] - Inspired entries: Space Opera +- Media: https://en.wikipedia.org/wiki/Galactic_Civilizations ## GalaxyMage [1] @@ -876,6 +984,7 @@ ## GearHead [1] - Inspired entries: GearHead 2 +- Included: Yes ## Gish [1] @@ -884,6 +993,7 @@ ## GL-117 [1] - Inspired entries: RedShift +- Included: Yes ## Gladiator [1] @@ -892,6 +1002,7 @@ ## Glest [1] - Inspired entries: MegaGlest +- Included: Yes ## GoldenEye 007 [2] @@ -909,6 +1020,7 @@ ## Gothic II [2] - Inspired entries: OpenGothic, REGoth +- Media: https://en.wikipedia.org/wiki/Gothic_II ## Grand Theft Auto III [1] @@ -918,6 +1030,7 @@ ## Grand Theft Auto: San Andreas [2] - Inspired entries: Grit Game Engine, SanAndreasUnity +- Media: https://en.wikipedia.org/wiki/Grand_Theft_Auto:_San_Andreas ## Gravity Force [2] @@ -926,10 +1039,12 @@ ## Grim Fandango [1] - Inspired entries: ResidualVM +- Media: https://en.wikipedia.org/wiki/Grim_Fandango ## Guitar Hero [3] - Inspired entries: Frets on Fire, Frets on Fire X, Performous +- Media: https://en.wikipedia.org/wiki/Guitar_Hero ## Gunpoint [1] @@ -938,10 +1053,12 @@ ## Hack [1] - Inspired entries: NetHack +- Included: Yes ## Hammer of Thyrion [1] - Inspired entries: HHexen +- Included: Yes ## Hardwar [1] @@ -960,22 +1077,20 @@ - Inspired entries: Free Heroes 2 - Media: https://en.wikipedia.org/wiki/Heroes_of_Might_and_Magic_II -## Heroes of Might and Magic III [2] +## Heroes of Might and Magic III [3] -- Inspired entries: Ancient Beast, VCMI +- Inspired entries: Ancient Beast, OpenHoMM, VCMI - Media: https://en.wikipedia.org/wiki/Heroes_of_Might_and_Magic_III -## Heroes of Might And Magic III [1] - -- Inspired entries: OpenHoMM - ## Hexen [10] - Inspired entries: Chocolate Doom, Doom Legacy, DOOM-iOS, Doomsday Engine, GZDoom, Mocha Doom, Odamex, PrBoom+, The Eternity Engine, ZDoom +- Media: https://en.wikipedia.org/wiki/Hexen:_Beyond_Heretic ## Hexen II [1] - Inspired entries: Hammer of Thyrion +- Media: https://en.wikipedia.org/wiki/Hexen_II ## Highway Encounter [1] @@ -990,30 +1105,37 @@ ## HoverRace [1] - Inspired entries: HoverRace +- Media: https://en.wikipedia.org/wiki/HoverRace ## Hovertank 3D [1] - Inspired entries: Hovertank3D +- Media: https://en.wikipedia.org/wiki/Hovertank_3D ## ICBM3D [1] - Inspired entries: XInvaders 3D +- Included: Yes ## Icewind Dale [1] - Inspired entries: GemRB +- Media: https://en.wikipedia.org/wiki/Icewind_Dale ## Imperium Galactica [1] - Inspired entries: Open Imperium Galactica +- Media: https://en.wikipedia.org/wiki/Imperium_Galactica ## Indiana Jones and his Desktop Adventures [1] - Inspired entries: DesktopAdventures +- Media: https://en.wikipedia.org/wiki/Indiana_Jones_and_His_Desktop_Adventures ## Infinite Mario Bros [1] - Inspired entries: Infinite Tux +- Media: https://en.wikipedia.org/wiki/Super_Mario_Bros. ## Infinity Loop [1] @@ -1022,31 +1144,37 @@ ## ioquake3 [1] - Inspired entries: QuakeJS +- Included: Yes ## Iron Seed [1] - Inspired entries: Iron Seed +- Media: https://en.wikipedia.org/wiki/Iron_Seed ## Jagged Alliance [1] - Inspired entries: Javelin +- Media: https://en.wikipedia.org/wiki/Jagged_Alliance ## Jagged Alliance 2 [1] - Inspired entries: Jagged Alliance 2 Stracciatella +- Media: https://en.wikipedia.org/wiki/Jagged_Alliance_2 ## Jazz Jackrabbit [1] - Inspired entries: OpenJazz -- Media: https://en.wikipedia.org/wiki/Jazz_Jackrabbit +- Media: https://en.wikipedia.org/wiki/Jazz_Jackrabbit_(1994_video_game) ## Jazz Jackrabbit 2 [2] - Inspired entries: Jazz² Resurrection, Project Carrot +- Media: https://en.wikipedia.org/wiki/Jazz_Jackrabbit_2 ## Jet-Story [1] - Inspired entries: Jet-Story +- Media: https://en.wikipedia.org/wiki/Jet-Story ## Jewel Thief [1] @@ -1055,6 +1183,7 @@ ## JezzBall [2] - Inspired entries: Ice Breaker, WallBall +- Media: https://en.wikipedia.org/wiki/JezzBall ## Joust [1] @@ -1063,18 +1192,22 @@ ## Jump 'n Bump [1] - Inspired entries: Jump'n'Bump +- Media: https://en.wikipedia.org/wiki/Bump_%27n%27_Jump ## Jumpgate: The Reconstruction Initiative [1] - Inspired entries: Open Jumpgate +- Media: https://en.wikipedia.org/wiki/Jumpgate:_The_Reconstruction_Initiative ## Keen Dreams [1] - Inspired entries: Reflection Keen +- Included: Yes ## Kick Off [1] - Inspired entries: Tux Football +- Media: https://en.wikipedia.org/wiki/Kick_Off_(series) ## Knights [1] @@ -1083,6 +1216,7 @@ ## Knights and Merchants [1] - Inspired entries: KaM Remake +- Media: https://en.wikipedia.org/wiki/Knights_and_Merchants:_The_Shattered_Kingdom ## Kobold's Quest [1] @@ -1118,6 +1252,7 @@ ## Laser Squad [1] - Inspired entries: Moonbase Assault +- Media: https://en.wikipedia.org/wiki/Laser_Squad ## LBreakout [1] @@ -1126,18 +1261,22 @@ ## LBreakout2 [1] - Inspired entries: LBreakoutHD +- Included: Yes ## Legend of Zelda [3] - Inspired entries: Fanwor, Open Zelda, Zelda Classic +- Media: https://en.wikipedia.org/wiki/The_Legend_of_Zelda ## Legend of Zelda - A Link to the Past [2] - Inspired entries: lttp-phaser, Solarus +- Media: https://en.wikipedia.org/wiki/The_Legend_of_Zelda:_A_Link_to_the_Past ## Lego Rock Raiders [1] - Inspired entries: rock-raiders-remake +- Media: https://en.wikipedia.org/wiki/Lego_Rock_Raiders_(video_game) ## Lemmings [5] @@ -1147,14 +1286,17 @@ ## Liero [4] - Inspired entries: GUSANOS, LieroLibre, OpenLiero, OpenLieroX +- Media: https://en.wikipedia.org/wiki/Liero ## LinCity [1] - Inspired entries: LinCity-NG +- Media: https://en.wikipedia.org/wiki/Lincity ## Linley's Dungeon Crawl [1] - Inspired entries: Dungeon Crawl Stone Soup +- Included: Yes ## Lionheart [1] @@ -1163,15 +1305,17 @@ ## Little Big Adventure [2] - Inspired entries: twin-e, TwinEngine +- Media: https://en.wikipedia.org/wiki/Little_Big_Adventure ## Little Fighter 2 [1] - Inspired entries: F.LF -- Media: http://lf2.net/ +- Media: http://lf2.net/, https://en.wikipedia.org/wiki/Little_Fighter_2 ## Lode Runner [2] - Inspired entries: KGoldrunner, XScavenger +- Media: https://en.wikipedia.org/wiki/Lode_Runner ## Log!cal [2] @@ -1197,6 +1341,7 @@ ## M.U.L.E. [1] - Inspired entries: M.E.W.L. +- Media: https://en.wikipedia.org/wiki/M.U.L.E. ## Mad TV [1] @@ -1205,14 +1350,17 @@ ## Mafia II [1] - Inspired entries: Mafia II: Toolkit +- Media: https://en.wikipedia.org/wiki/Mafia_II ## Magic: The Gathering Online [2] - Inspired entries: Magarena, XMage +- Media: https://en.wikipedia.org/wiki/Magic:_The_Gathering_video_games ## Magical Drop [1] - Inspired entries: Krystal Drop +- Media: https://en.wikipedia.org/wiki/Magical_Drop ## Magus [1] @@ -1228,37 +1376,45 @@ - Inspired entries: Aleph One - Media: https://marathongame.fandom.com/wiki/Marathon_(Game) -## Marathon 2 [1] +## Marathon 2: Durandal [1] - Inspired entries: Aleph One +- Media: https://en.wikipedia.org/wiki/Marathon_2:_Durandal ## Marathon Infinity [1] - Inspired entries: Aleph One +- Media: https://en.wikipedia.org/wiki/Marathon_Infinity ## Marble Madness [1] - Inspired entries: Trackballs +- Media: https://en.wikipedia.org/wiki/Marble_Madness ## Mario Kart [2] - Inspired entries: Kartering, SuperTuxKart +- Media: https://en.wikipedia.org/wiki/Super_Mario_Kart ## Mario Party [1] - Inspired entries: SuperTuxParty +- Media: https://en.wikipedia.org/wiki/Super_Mario_Party ## Mario World [3] - Inspired entries: Mari0, Secret Maryo Chronicles, The Secret Chronicles of Dr. M. +- Media: https://en.wikipedia.org/wiki/Super_Mario_World ## Master of Magic [1] - Inspired entries: OpenMoM +- Media: https://en.wikipedia.org/wiki/Master_of_Magic ## Master of Monsters [1] - Inspired entries: The Battle for Wesnoth +- Media: https://en.wikipedia.org/wiki/Master_of_Monsters ## Master of Orion [3] @@ -1268,6 +1424,7 @@ ## Master of Orion 2 [3] - Inspired entries: Birth of the Empires, FreeOrion, OpenMOO2 +- Media: https://en.wikipedia.org/wiki/Master_of_Orion_II:_Battle_at_Antares ## Maxit [2] @@ -1276,10 +1433,12 @@ ## MechCommander 2 [1] - Inspired entries: MechCommander 2 Omnitech +- Media: https://en.wikipedia.org/wiki/MechCommander_2 ## MechWarrior [1] - Inspired entries: Linwarrior 3D +- Media: https://en.wikipedia.org/wiki/MechWarrior_(1989_video_game) ## Mega-Lo-Mania [1] @@ -1289,14 +1448,17 @@ ## MegaMan [2] - Inspired entries: Executive Man, Rockbot +- Media: https://en.wikipedia.org/wiki/Mega_Man ## Meridian 59 [1] - Inspired entries: Open Meridian +- Included: Yes ## Metroid Prime [1] - Inspired entries: urde +- Media: https://en.wikipedia.org/wiki/Metroid_Prime ## Metroidvania [1] @@ -1309,10 +1471,12 @@ ## Micro Machines [3] - Inspired entries: Dust Racing 2D, Microracers, Yorg +- Media: https://en.wikipedia.org/wiki/Micro_Machines_(video_game) ## Micropolis [3] - Inspired entries: 3d.city, Divercity, micropolisJS +- Included: Yes ## Microprose Falcon 4.0 Combat Simulator [1] @@ -1321,10 +1485,12 @@ ## Microsoft Flight Simulator [1] - Inspired entries: FlightGear +- Media: https://en.wikipedia.org/wiki/Microsoft_Flight_Simulator ## Microsoft Train Simulator [1] - Inspired entries: Open Rails +- Media: https://en.wikipedia.org/wiki/Microsoft_Train_Simulator ## Midnight Club II [1] @@ -1334,14 +1500,17 @@ ## Might and Magic VI: The Mandate of Heaven [1] - Inspired entries: World of Might and Magic +- Media: https://en.wikipedia.org/wiki/Might_and_Magic_VI:_The_Mandate_of_Heaven ## Might and Magic VII: For Blood and Honor [1] - Inspired entries: World of Might and Magic +- Media: https://en.wikipedia.org/wiki/Might_and_Magic_VII:_For_Blood_and_Honor ## Might and Magic VIII: Day of the Destroyer [1] - Inspired entries: World of Might and Magic +- Media: https://en.wikipedia.org/wiki/Might_and_Magic_VIII:_Day_of_the_Destroyer ## Millipede [1] @@ -1350,30 +1519,37 @@ ## Minecraft [16] - Inspired entries: Chunk Stories, Craft, Digbuild, DwarfCorp, Freeminer, Gnomescroll, Hematite, Manic Digger, MineCraft-One-Week-Challenge, minecraft-weekend, Minetest, pycraft, Terasology, TrueCraft, Veloren, Voxelands +- Media: https://en.wikipedia.org/wiki/Minecraft ## Minesweeper [6] - Inspired entries: Isometric-Minesweeper, KMines, Mines, Minesweeper (in C), Minesweeper.Zone, proxx +- Media: https://en.wikipedia.org/wiki/Minesweeper_(video_game) ## Minetest [1] - Inspired entries: Minetest Game +- Included: Yes ## Missile Command [2] - Inspired entries: ICBM3D, Penguin Command +- Media: https://en.wikipedia.org/wiki/Missile_Command ## Moai [1] - Inspired entries: adventure engine +- Media: https://en.wikipedia.org/wiki/Moai-kun ## moon-patrol [1] - Inspired entries: Moon-buggy +- Media: https://en.wikipedia.org/wiki/Moon_Patrol ## Moonbase Commander [1] - Inspired entries: Scorched Moon +- Media: https://en.wikipedia.org/wiki/MoonBase_Commander ## Morpheus [1] @@ -1383,6 +1559,7 @@ ## Mortal Kombat [2] - Inspired entries: mk.js, OpenMortal +- Media: https://en.wikipedia.org/wiki/Mortal_Kombat ## Movie Business [1] @@ -1391,10 +1568,12 @@ ## Myst III: Exile [1] - Inspired entries: ResidualVM +- Media: https://en.wikipedia.org/wiki/Myst_III:_Exile ## Naev [1] - Inspired entries: Nox Imperii +- Included: Yes ## Natural Selection [2] @@ -1408,25 +1587,30 @@ - Inspired entries: Toppler -## Need For Speed II SE [1] +## Need For Speed II [1] - Inspired entries: NFSIISE +- Media: https://en.wikipedia.org/wiki/Need_for_Speed_II ## Need For Speed III: Hot Pursuit [1] - Inspired entries: OpenNFS +- Media: https://en.wikipedia.org/wiki/Need_for_Speed:_Hot_Pursuit_(2010_video_game) ## NetHack [3] - Inspired entries: Falcon's Eye, SLASH'EM, UnNetHack +- Included: Yes ## Neverball [1] - Inspired entries: Nuncabola +- Included: Yes ## Nexuiz [1] - Inspired entries: Xonotic +- Included: Yes ## Night Stalker [1] @@ -1435,6 +1619,7 @@ ## Notrium [1] - Inspired entries: OpenNotrium +- Media: https://en.wikipedia.org/wiki/Notrium ## Nuclear Reaction [2] @@ -1443,14 +1628,17 @@ ## Oddworld: Abe's Exoddus [1] - Inspired entries: alive +- Media: https://en.wikipedia.org/wiki/Oddworld:_Abe%27s_Exoddus ## Oddworld: Abe's Oddysee [1] - Inspired entries: alive +- Media: https://en.wikipedia.org/wiki/Oddworld:_Abe%27s_Oddysee ## OGRE [1] - Inspired entries: Alimer +- Included: Yes ## Old School RuneScape [1] @@ -1460,6 +1648,7 @@ ## Omega Race [1] - Inspired entries: Torrega Race +- Media: https://en.wikipedia.org/wiki/Omega_Race ## One Must Fall: 2097 [1] @@ -1473,15 +1662,22 @@ ## OpenMW [1] - Inspired entries: TES3MP +- Included: Yes ## Osu! Tatakae! Ouendan [2] - Inspired entries: opsu!, osu! +- Media: https://en.wikipedia.org/wiki/Osu!_Tatakae!_Ouendan ## Oubliette [1] - Inspired entries: Liberal Crime Squad +## Out Run [1] + +- Inspired entries: Cannonball +- Media: https://en.wikipedia.org/wiki/Out_Run + ## Outlaws [1] - Inspired entries: The Force Engine @@ -1490,13 +1686,10 @@ - Inspired entries: Outpost HD -## Outrun [1] - -- Inspired entries: Cannonball - ## Oxyd [1] - Inspired entries: Enigma +- Media: https://en.wikipedia.org/wiki/Oxyd ## Pac-Man [9] @@ -1511,6 +1704,7 @@ ## Panzer General 2 [1] - Inspired entries: Open Panzer +- Media: https://en.wikipedia.org/wiki/Panzer_General_II ## Paradroid [2] @@ -1528,6 +1722,7 @@ ## Pingus [1] - Inspired entries: Rabbit Escape +- Included: Yes ## Pixel Dungeon [1] @@ -1536,26 +1731,32 @@ ## Pizza Tycoon [1] - Inspired entries: Pizza Business +- Media: https://en.wikipedia.org/wiki/Pizza_Tycoon ## Planescape: Torment [1] - Inspired entries: GemRB +- Media: https://en.wikipedia.org/wiki/Planescape:_Torment ## Plasma Pong [1] - Inspired entries: Fluid Table Tennis +- Media: https://en.wikipedia.org/wiki/Plasma_Pong ## Pokémon [4] - Inspired entries: Javelin, OPMon, Tangomon, Tuxemon +- Media: https://en.wikipedia.org/wiki/Pok%C3%A9mon_(video_game_series) ## Pong [2] - Inspired entries: Mmpong, PSY PONG 3D +- Media: https://en.wikipedia.org/wiki/Pong ## Portal [1] - Inspired entries: glPortal +- Media: https://en.wikipedia.org/wiki/Portal_(video_game) ## Postal [1] @@ -1568,26 +1769,32 @@ ## Powermonger [1] - Inspired entries: Battles of Antargis +- Media: https://en.wikipedia.org/wiki/Powermonger ## Powerslave [3] - Inspired entries: PCExhumed, Powerslave EX, PowerslaveGDX +- Media: https://en.wikipedia.org/wiki/PowerSlave ## Powerslide [1] - Inspired entries: Powerslide remake +- Media: https://en.wikipedia.org/wiki/Powerslide_(video_game) ## Prince of Persia [3] - Inspired entries: FreePrince, Mininim, SDLPoP +- Media: https://en.wikipedia.org/wiki/Prince_of_Persia_(1989_video_game) ## Prince of Persia 2 [1] - Inspired entries: Prince-Monogame +- Media: https://en.wikipedia.org/wiki/Prince_of_Persia_2:_The_Shadow_and_the_Flame ## Progress Quest [2] - Inspired entries: pq2, progress-quest +- Media: https://en.wikipedia.org/wiki/Progress_Quest ## Pushover [1] @@ -1596,10 +1803,12 @@ ## Puyo Puyo [1] - Inspired entries: Cuyo +- Media: https://en.wikipedia.org/wiki/Puyo_Puyo ## Puzzle Bobble [1] - Inspired entries: Frozen Bubble +- Media: https://en.wikipedia.org/wiki/Puzzle_Bobble ## Puzznic [1] @@ -1617,6 +1826,7 @@ ## Quake 2 [2] - Inspired entries: Jake2, Yamagi Quake II +- Media: https://en.wikipedia.org/wiki/Quake_II ## Quake 3 [5] @@ -1625,6 +1835,7 @@ ## Railroad Tycoon [1] - Inspired entries: FreeRails +- Media: https://en.wikipedia.org/wiki/Railroad_Tycoon ## Rampart [1] @@ -1637,6 +1848,7 @@ ## Redneck Rampage [3] - Inspired entries: erampage, RedneckGDX, Rednukem +- Media: https://en.wikipedia.org/wiki/Redneck_Rampage ## Rescue! [1] @@ -1645,6 +1857,7 @@ ## Return to Castle Wolfenstein [1] - Inspired entries: iortcw +- Media: https://en.wikipedia.org/wiki/Return_to_Castle_Wolfenstein ## Revenge Of The Cats: Ethernet [1] @@ -1653,6 +1866,7 @@ ## Rick Dangerous [1] - Inspired entries: RickyD +- Media: https://en.wikipedia.org/wiki/Rick_Dangerous ## RimWorld [1] @@ -1662,6 +1876,7 @@ ## Rise of the Triad [1] - Inspired entries: Rise of the Triad for Linux +- Media: https://en.wikipedia.org/wiki/Rise_of_the_Triad_(2013_video_game) ## Risk [2] @@ -1670,6 +1885,7 @@ ## Rodent's Revenge [1] - Inspired entries: Open Rodent's Revenge +- Media: https://en.wikipedia.org/wiki/Rodent%27s_Revenge ## Rogue [1] @@ -1678,6 +1894,7 @@ ## RollerCoaster Tycoon [2] - Inspired entries: FreeRCT, OpenRCT2 +- Media: https://en.wikipedia.org/wiki/RollerCoaster_Tycoon_(video_game) ## RollerCoaster Tycoon 2 [2] @@ -1687,6 +1904,7 @@ ## RPG Maker [3] - Inspired entries: EasyRPG Player, mkxp, Tapir +- Media: https://en.wikipedia.org/wiki/RPG_Maker ## Runescape Classic [2] @@ -1696,10 +1914,12 @@ ## Ryzom [1] - Inspired entries: Ryzom Core +- Media: https://en.wikipedia.org/wiki/Ryzom ## Scorched Earth [2] - Inspired entries: Atomic Tanks, Scorched3D +- Media: https://en.wikipedia.org/wiki/Scorched_Earth_(video_game) ## Scrabble [2] @@ -1712,10 +1932,12 @@ ## Second Life [1] - Inspired entries: Open Simulator +- Media: https://en.wikipedia.org/wiki/Second_Life ## Sensible Soccer [3] - Inspired entries: Freekick 3, Tux Football, YSoccer +- Media: https://en.wikipedia.org/wiki/Sensible_World_of_Soccer ## Sensitive [2] @@ -1728,6 +1950,7 @@ ## Settlers [1] - Inspired entries: Battles of Antargis +- Media: https://en.wikipedia.org/wiki/The_Settlers ## Settlers of Catan [2] @@ -1745,6 +1968,7 @@ ## Shadow of the Beast [1] - Inspired entries: shadow-of-the-beast-html5 +- Media: https://en.wikipedia.org/wiki/Shadow_of_the_Beast_(1989_video_game) ## Shadow Warrior [2] @@ -1754,6 +1978,7 @@ ## Shadowgrounds: Survivor [1] - Inspired entries: Shadowgrounds +- Media: https://en.wikipedia.org/wiki/Shadowgrounds:_Survivor ## Sherlock [1] @@ -1777,18 +2002,22 @@ ## Shobon Action [1] - Inspired entries: Open Syobon Action +- Media: https://en.wikipedia.org/wiki/Syobon_Action ## Sid Meier's Alpha Centauri [1] - Inspired entries: Freeciv Alpha Centauri project +- Media: https://en.wikipedia.org/wiki/Sid_Meier%27s_Alpha_Centauri ## Sid Meier's Colonization [2] - Inspired entries: cc94, FreeCol +- Media: https://en.wikipedia.org/wiki/Sid_Meier%27s_Colonization ## Sid Meier's Pirates! [1] - Inspired entries: Crown and Cutlass +- Media: https://en.wikipedia.org/wiki/Sid_Meier%27s_Pirates!_(2004_video_game) ## Siege [1] @@ -1797,10 +2026,12 @@ ## Siege of Avalon [1] - Inspired entries: Siege of Avalon : Open Source +- Media: https://en.wikipedia.org/wiki/Siege_of_Avalon ## Silent Hunter 4 [1] - Inspired entries: Danger from the Deep +- Media: https://en.wikipedia.org/wiki/Silent_Hunter_4:_Wolves_of_the_Pacific ## SimCity [9] @@ -1823,10 +2054,12 @@ ## SimTower [1] - Inspired entries: OpenSkyscraper +- Media: https://en.wikipedia.org/wiki/SimTower ## SingStar [4] - Inspired entries: Performous, UltraStar, UltraStar Deluxe, Vocaluxe +- Media: https://en.wikipedia.org/wiki/SingStar ## SkiFree [2] @@ -1836,6 +2069,7 @@ ## Skool Daze [1] - Inspired entries: pyskool +- Media: https://en.wikipedia.org/wiki/Skool_Daze ## SkyRoads [2] @@ -1848,6 +2082,7 @@ ## Slot Racers [1] - Inspired entries: Slot-Racers +- Media: https://en.wikipedia.org/wiki/Slot_Racers ## Snake [5] @@ -1856,10 +2091,12 @@ ## Sokoban [10] - Inspired entries: AdaGate, Berusky, CavePacker, GJID, JSoko, kiki the nano bot, Rocks'n'Diamonds, Simple Sokoban, SokoSolve, Xye +- Media: https://en.wikipedia.org/wiki/Sokoban ## Solar Fox [1] - Inspired entries: SolarWolf +- Media: https://en.wikipedia.org/wiki/Solar_Fox ## Solomon's Key [1] @@ -1883,26 +2120,32 @@ ## Space Harrier [1] - Inspired entries: Space Harrier Clone +- Media: https://en.wikipedia.org/wiki/Space_Harrier ## Space Invaders [3] - Inspired entries: Hopson-Arcade, MicroWar 2.0, XInvaders 3D +- Media: https://en.wikipedia.org/wiki/Space_Invaders ## Space Rangers 2: Dominators [1] - Inspired entries: OpenSR +- Media: https://en.wikipedia.org/wiki/Space_Rangers_2:_Dominators ## Space Station 13 [3] - Inspired entries: Griefly, SS13 Remake, unitystation +- Included: Yes ## Space Taxi [1] - Inspired entries: Moagg2 +- Media: https://en.wikipedia.org/wiki/Space_Taxi ## Space Trader [2] - Inspired entries: Space Trader for Windows, SpaceTrader for Java +- Media: https://en.wikipedia.org/wiki/Space_Trader ## Spear of Destiny [1] @@ -1915,14 +2158,17 @@ ## Star Control 2 [2] - Inspired entries: star-control2, The Ur-Quan Masters +- Media: https://en.wikipedia.org/wiki/Star_Control_II ## Star Ruler 2 [1] - Inspired entries: Star Ruler 2 +- Media: https://en.wikipedia.org/wiki/Star_Ruler#Sequel ## Star Trek: Birth of the Federation [1] - Inspired entries: Birth of the Empires +- Media: https://en.wikipedia.org/wiki/Star_Trek:_Birth_of_the_Federation ## Star Trek: Voyager – Elite Force [1] @@ -1932,14 +2178,17 @@ ## Star Wars (1983 arcade game) [1] - Inspired entries: Star-Wars-III +- Media: https://en.wikipedia.org/wiki/Star_Wars_Trilogy_Arcade ## Star Wars Episode I: Racer [1] - Inspired entries: OpenSWE1R +- Media: https://en.wikipedia.org/wiki/Star_Wars_Racer_Revenge ## Star Wars Jedi Knight II: Jedi Outcast [2] - Inspired entries: JediOutcastLinux, OpenJK +- Media: https://en.wikipedia.org/wiki/Star_Wars_Jedi_Knight_II:_Jedi_Outcast ## Star Wars Jedi Knight: Dark Forces II [1] @@ -1954,10 +2203,12 @@ ## Star Wars: Galactic Battlegrounds [1] - Inspired entries: openage +- Media: https://en.wikipedia.org/wiki/Star_Wars:_Galactic_Battlegrounds ## Star Wars: Yoda Stories [2] - Inspired entries: DesktopAdventures, WebFun +- Media: https://en.wikipedia.org/wiki/Star_Wars:_Yoda_Stories ## StarCraft [2] @@ -1972,30 +2223,37 @@ ## Starshatter [1] - Inspired entries: starshatter-open +- Media: https://en.wikipedia.org/wiki/Starshatter ## StepMania [1] - Inspired entries: OpenITG +- Included: Yes ## Story of Seasons series [1] - Inspired entries: Greentwip's Harvest Moon +- Media: https://en.wikipedia.org/wiki/Story_of_Seasons_(video_game) ## Streets of Rage [1] - Inspired entries: OpenBOR +- Media: https://en.wikipedia.org/wiki/Streets_of_Rage ## Strife [3] - Inspired entries: Chocolate Doom, Strife: Veteran Edition, The Eternity Engine +- Media: https://en.wikipedia.org/wiki/Strife_(1996_video_game) ## Stronghold [1] - Inspired entries: Sourcehold +- Media: https://en.wikipedia.org/wiki/Stronghold_(2001_video_game) ## Stunt Car Racer [1] - Inspired entries: Stunt Car Racer Remake +- Media: https://en.wikipedia.org/wiki/Stunt_Car_Racer ## Stunts [1] @@ -2018,26 +2276,32 @@ ## Super Cars [1] - Inspired entries: Supercars III +- Media: https://en.wikipedia.org/wiki/Super_Cars ## Super Foul Egg [1] - Inspired entries: SuperFoulEgg +- Media: https://en.wikipedia.org/wiki/Super_Foul_Egg ## Super Hexagon [1] - Inspired entries: Open Hexagon +- Media: https://en.wikipedia.org/wiki/Super_Hexagon ## Super Mario [5] - Inspired entries: Mario Objects, Mega Mario, ReTux, SuperTux, uMario +- Media: https://en.wikipedia.org/wiki/Super_Mario_Bros. ## Super Methane Brothers [2] - Inspired entries: Super Methane Brothers, Super Methane Brothers for Wii and GameCube +- Media: https://en.wikipedia.org/wiki/Super_Methane_Bros. ## Super Metroid [1] - Inspired entries: Hexoshi +- Media: https://en.wikipedia.org/wiki/Super_Metroid ## Super Monkey Ball [4] @@ -2077,22 +2341,27 @@ ## Syndicate Wars [1] - Inspired entries: Syndicate Wars Port +- Media: https://en.wikipedia.org/wiki/Syndicate_Wars ## System Shock [1] - Inspired entries: Shockolate +- Media: https://en.wikipedia.org/wiki/System_Shock ## System's Twilight [1] - Inspired entries: System Syzygy +- Media: https://en.wikipedia.org/wiki/System%27s_Twilight ## Taiko no Tatsujin [1] - Inspired entries: osu! +- Media: https://en.wikipedia.org/wiki/Taiko_no_Tatsujin ## Team Fortress 2 [2] - Inspired entries: Gang Garrison 2, Open Fortress +- Media: https://en.wikipedia.org/wiki/Team_Fortress_Classic ## TekWar [1] @@ -2111,6 +2380,7 @@ ## Test Drive [1] - Inspired entries: OpenGL Test Drive Remake +- Media: https://en.wikipedia.org/wiki/Test_Drive_(1987_video_game) ## TetraVex [1] @@ -2124,19 +2394,27 @@ ## Tetris Attack [4] - Inspired entries: Block Attack - Rise of the Blocks, Crack Attack!, FreeBlocks, Panel Attack +- Media: https://en.wikipedia.org/wiki/Tetris_Attack + +## The Bard's Tale Construction Set [1] + +- Inspired entries: Bt Builder +- Media: https://en.wikipedia.org/wiki/The_Bard%27s_Tale_Construction_Set ## The Battle for Wesnoth [2] - Inspired entries: Hexwar, Lords of the Fey -- Media: https://en.wikipedia.org/wiki/The_Battle_for_Wesnoth +- Included: Yes ## The Binding of Isaac [2] - Inspired entries: Paper Isaac, Witch Blast +- Media: https://en.wikipedia.org/wiki/The_Binding_of_Isaac_(video_game) ## The Castles of Dr. Creep [1] - Inspired entries: The Castles of Dr. Creep +- Media: https://en.wikipedia.org/wiki/The_Castles_of_Dr._Creep ## The Clans [1] @@ -2150,26 +2428,32 @@ ## The Elder Scrolls II: Daggerfall [1] - Inspired entries: Daggerfall Unity +- Media: https://en.wikipedia.org/wiki/The_Elder_Scrolls_II:_Daggerfall ## The Elder Scrolls III: Morrowind [3] - Inspired entries: OpenMW, OpenMW for Android, TES3MP +- Media: https://en.wikipedia.org/wiki/The_Elder_Scrolls_III:_Morrowind ## The Elder Scrolls: Arena [1] - Inspired entries: OpenTESArena +- Media: https://en.wikipedia.org/wiki/The_Elder_Scrolls:_Arena ## The Great Giana Sisters [1] - Inspired entries: OpenGGS +- Media: https://en.wikipedia.org/wiki/The_Great_Giana_Sisters ## The Incredible Machine series [1] - Inspired entries: The Butterfly Effect +- Media: https://en.wikipedia.org/wiki/The_Incredible_Machine_(series) ## The Legend of Zelda: The Wind Waker [1] - Inspired entries: Wind Waker Randomizer +- Media: https://en.wikipedia.org/wiki/The_Legend_of_Zelda:_The_Wind_Waker ## The Lost Vikings [1] @@ -2179,30 +2463,37 @@ ## The Oregon Trail [1] - Inspired entries: The-Trail +- Media: https://en.wikipedia.org/wiki/The_Oregon_Trail_(series) ## The Settlers [2] - Inspired entries: Freeserf, Freeserf.net +- Media: https://en.wikipedia.org/wiki/The_Settlers ## The Settlers II [2] - Inspired entries: Return to the Roots, Widelands +- Media: https://en.wikipedia.org/wiki/The_Settlers_II_(10th_Anniversary) ## The Settlers III [1] - Inspired entries: JSettlers +- Media: https://en.wikipedia.org/wiki/The_Settlers_III ## The Sims [2] - Inspired entries: FreeSims, Simitone +- Media: https://en.wikipedia.org/wiki/The_Sims_(video_game) ## The Sims Online [2] - Inspired entries: FreeSO, Project Dollhouse +- Media: https://en.wikipedia.org/wiki/The_Sims_Online ## Theme Hospital [1] - Inspired entries: CorsixTH +- Media: https://en.wikipedia.org/wiki/Theme_Hospital ## Theme Park [1] @@ -2228,14 +2519,17 @@ ## Titus the Fox [1] - Inspired entries: OpenTitus +- Media: https://en.wikipedia.org/wiki/Titus_the_Fox ## Tomb Raider [3] - Inspired entries: OpenLara, OpenRaider, OpenTomb +- Media: https://en.wikipedia.org/wiki/Tomb_Raider_(1996_video_game) ## Tomb Raider Chronicles [1] - Inspired entries: TOMB5 +- Media: https://en.wikipedia.org/wiki/Tomb_Raider_Chronicles ## Toobz [1] @@ -2253,10 +2547,12 @@ ## TrackMania [2] - Inspired entries: ManiaDrive, Stunt Rally +- Media: https://en.wikipedia.org/wiki/TrackMania_(2003_video_game) ## TradeWars [2] - Inspired entries: Alien Assault Traders, BlackNova Traders +- Media: https://en.wikipedia.org/wiki/Trade_Wars ## Transball [1] @@ -2270,6 +2566,7 @@ ## Tremulous [1] - Inspired entries: Tremfusion +- Included: Yes ## Tricky Towers [1] @@ -2283,6 +2580,7 @@ ## Tron [1] - Inspired entries: Pink Pony +- Media: https://en.wikipedia.org/wiki/Tron ## Turmoil [1] @@ -2292,10 +2590,12 @@ ## Turok [1] - Inspired entries: TurokEX +- Media: https://en.wikipedia.org/wiki/Turok ## TuxMath [1] - Inspired entries: Garith +- Media: "https://en.wikipedia.org/wiki/Tux,_of_Math_Command" ## TuxRacer [1] @@ -2307,21 +2607,20 @@ - Inspired entries: OpenTyrian, Tyrian Remake - Media: https://en.wikipedia.org/wiki/Tyrian_(video_game) -## UFO: Enemy Unknown [6] - -- Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar - ## Ugh! [1] - Inspired entries: CaveExpress +- Media: https://en.wikipedia.org/wiki/Ugh! ## Ultima III: Exodus [2] - Inspired entries: Anteform, Minima +- Media: https://en.wikipedia.org/wiki/Ultima_III:_Exodus ## Ultima IV: Quest of the Avatar [1] - Inspired entries: xu4 +- Media: https://en.wikipedia.org/wiki/Ultima_Forever:_Quest_for_the_Avatar ## Ultima Online [2] @@ -2331,50 +2630,52 @@ ## Ultima series [1] - Inspired entries: Haxima +- Media: https://en.wikipedia.org/wiki/Ultima_(series) -## Ultima Underworld [1] +## Ultima Underworld 1 [2] -- Inspired entries: UnderworldExporter +- Inspired entries: Underworld Adventures, UnderworldExporter +- Media: https://en.wikipedia.org/wiki/Ultima_Underworld:_The_Stygian_Abyss -## Ultima Underworld 1 [1] +## Ultima Underworld II: Labyrinth of Worlds [2] -- Inspired entries: Underworld Adventures - -## Ultima Underworld 2: Labyrinth of Worlds [1] - -- Inspired entries: Labyrinth of Worlds - -## Ultima Underworld II: Labyrinth of Worlds [1] - -- Inspired entries: UnderworldExporter +- Inspired entries: Labyrinth of Worlds, UnderworldExporter +- Media: https://en.wikipedia.org/wiki/Ultima_Underworld_II:_Labyrinth_of_Worlds ## Ultima V: Warriors of Destiny [1] - Inspired entries: Ultima 5 Redux +- Media: https://en.wikipedia.org/wiki/Ultima_V:_Warriors_of_Destiny ## Ultima VI: The False Prophet [1] - Inspired entries: Nuvie +- Media: https://en.wikipedia.org/wiki/Ultima_VI:_The_False_Prophet ## Ultima VII: The Black Gate [1] - Inspired entries: Exult +- Media: https://en.wikipedia.org/wiki/Ultima_VII:_The_Black_Gate ## Ultima VIII: Pagan [1] - Inspired entries: Pentagram +- Media: https://en.wikipedia.org/wiki/Ultima_VIII:_Pagan ## Ultima: Worlds of Adventure 2: Martian Dreams [1] - Inspired entries: Nuvie +- Media: https://en.wikipedia.org/wiki/Ultima:_Worlds_of_Adventure_2:_Martian_Dreams ## UltraStar Deluxe [1] - Inspired entries: Vocaluxe +- Included: Yes ## Undertale [1] - Inspired entries: UndertaleModTool +- Media: https://en.wikipedia.org/wiki/Undertale ## Uninvited [1] @@ -2383,14 +2684,17 @@ ## Uniwar [1] - Inspired entries: Hexwar +- Media: https://en.wikipedia.org/wiki/UniWar ## Urban Assault [1] - Inspired entries: UA_source +- Media: https://en.wikipedia.org/wiki/Urban_Assault ## Urho3D [1] - Inspired entries: Alimer +- Included: Yes ## V-Wing [1] @@ -2403,6 +2707,7 @@ ## Visual Pinball [1] - Inspired entries: Visual Pinball +- Media: https://en.wikipedia.org/wiki/Visual_Pinball ## Vlak [1] @@ -2420,14 +2725,17 @@ ## Warcraft [1] - Inspired entries: Battles of Antargis +- Media: https://en.wikipedia.org/wiki/Warcraft ## Warcraft II [2] - Inspired entries: Dark Oberon, Wargus +- Media: https://en.wikipedia.org/wiki/Warcraft_II:_Tides_of_Darkness ## Warcraft: Orcs & Humans [3] - Inspired entries: SR, War1, warcraft-remake +- Media: https://en.wikipedia.org/wiki/Warcraft:_Orcs_%26_Humans ## Wargamer:Napoleon 1813 [1] @@ -2441,6 +2749,7 @@ ## WarioWare [1] - Inspired entries: Librerama +- Media: https://en.wikipedia.org/wiki/Wario_(series)#WarioWare_series ## Warlords II [2] @@ -2450,6 +2759,7 @@ ## Warrior Kings [1] - Inspired entries: wkbre +- Media: https://en.wikipedia.org/wiki/Warrior_Kings ## Warsong [1] @@ -2458,6 +2768,7 @@ ## Warzone 2100 [1] - Inspired entries: Warzone 2100 +- Media: https://en.wikipedia.org/wiki/Warzone_2100 ## Webhangman [1] @@ -2479,10 +2790,12 @@ ## Wing Commander series [1] - Inspired entries: Heroes of Wing Commander +- Media: https://en.wikipedia.org/wiki/Wing_Commander_(franchise)#Games ## Wing Commander: Privateer [1] - Inspired entries: Privateer - Gemini Gold +- Media: https://en.wikipedia.org/wiki/Wing_Commander:_Privateer ## Wipeout [4] @@ -2506,14 +2819,17 @@ ## Wolfenstein 3D [2] - Inspired entries: ECWolf, Wolf3dX +- Media: https://en.wikipedia.org/wiki/Wolfenstein_3D ## Wolfenstein: Enemy Territory [1] - Inspired entries: ET: Legacy +- Media: https://en.wikipedia.org/wiki/Wolfenstein:_Enemy_Territory ## Worlds of Ultima: The Savage Empire [1] - Inspired entries: Nuvie +- Media: https://en.wikipedia.org/wiki/Worlds_of_Ultima:_The_Savage_Empire ## Worms [3] @@ -2522,14 +2838,17 @@ ## Worms Series [2] - Inspired entries: Hedgewars, WarMUX +- Media: https://en.wikipedia.org/wiki/Worms_(series) ## X-COM: Apocalypse [6] - Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar +- Media: https://en.wikipedia.org/wiki/X-COM:_Apocalypse ## X-COM: Terror from the Deep [7] - Inspired entries: Open Apocalypse, OpenXcom, SR, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar +- Media: https://en.wikipedia.org/wiki/X-COM:_Terror_from_the_Deep ## X-COM: UFO Defense [7] @@ -2538,6 +2857,7 @@ ## X-Moto [1] - Inspired entries: Bloboats +- Included: Yes ## XKobo [1] @@ -2546,6 +2866,7 @@ ## Xonotic [1] - Inspired entries: Chaos Esque Anthology +- Included: Yes ## XOR [1] @@ -2555,6 +2876,7 @@ ## XPilot [1] - Inspired entries: XPilot NG +- Included: Yes ## Xtank [1] @@ -2581,6 +2903,7 @@ ## Zarch [1] - Inspired entries: Ajax3d +- Media: https://en.wikipedia.org/wiki/Zarch ## Zork [1] @@ -2594,4 +2917,5 @@ ## ZZT [8] - Inspired entries: DreamZZT, KevEdit, Reconstruction of ZZT, Roton, RuZZT, Tyger, Zeta, zztgo +- Media: https://en.wikipedia.org/wiki/ZZT