diff --git a/code/grammar_listing.lark b/code/grammar_listing.lark index 2e2cb643..8a8cdf2e 100644 --- a/code/grammar_listing.lark +++ b/code/grammar_listing.lark @@ -1,5 +1,5 @@ start: entry* -entry: "##" name "(" _NUMBER ")\n" property+ +entry: "##" name "[" _NUMBER "]\n" property+ property: "-" _key ":" _values "\n" _key: /(?! ).+?(?=:)(? similarity_threshold: + print(' {} - {} is similar'.format(name, other_name)) + if __name__ == "__main__": + similarity_threshold = 0.8 + + # load inspirations inspirations = osg.read_inspirations_info() + print('{} inspirations in the inspirations database'.format(len(inspirations))) osg.write_inspirations_info(inspirations) # write again just to check integrity + osg_ui.run_simple_button_app('Maintenance inspirations', (('Duplicate check', duplicate_check),)) + + + # assemble info - # entries = osg.assemble_infos() + entries = osg.assemble_infos() + + # assemble inspirations info from entries + entries_inspirations = {} + for entry in entries: + entry_name = entry['name'] + keywords = entry['keywords'] + entry_inspirations = [x for x in keywords if x.startswith('inspired by')] + if entry_inspirations: + entry_inspirations = entry_inspirations[0][len('inspired by'):] + entry_inspirations = entry_inspirations.split('+') + entry_inspirations = [x.strip() for x in entry_inspirations] + for entry_inspiration in entry_inspirations: + if entry_inspiration in entries_inspirations: + entries_inspirations[entry_inspiration].append(entry_name) + else: + entries_inspirations[entry_inspiration] = [ entry_name ] + print('{} inspirations in the entries'.format(len(entries_inspirations))) + + # first check if all inspiration in entries are also in inspirations + inspiration_names = [x['name'] for x in inspirations] + for inspiration, entries in entries_inspirations.items(): + if inspiration not in inspiration_names: + print('new inspiration {} for games {}'.format(inspiration, ', '.join(entries))) + similar_names = [x for x in inspiration_names if osg.name_similarity(inspiration, x) > 0.8] + if similar_names: + print(' similar names {}'.format(', '.join(similar_names))) + + # now the other way around + for index, name in enumerate(inspiration_names): + if name not in entries_inspirations: + print('potential removed inspiration {} from games {}'.format(name, inspirations[index]['inspired entries'])) + similar_names = [x for x in entries_inspirations.keys() if osg.name_similarity(name, x) > 0.8] + if similar_names: + print(' similar names {}'.format(', '.join(similar_names))) \ No newline at end of file diff --git a/code/utils/constants.py b/code/utils/constants.py index 39f29555..ffd3c551 100644 --- a/code/utils/constants.py +++ b/code/utils/constants.py @@ -92,4 +92,4 @@ general_code_dependencies_without_entry = {'OpenGL': 'https://www.opengl.org/', valid_developer_fields = ('name', 'games', 'contact', 'organization', 'home') # inspiration/original game information (in the file all fields will be capitalized) -valid_inspiration_fields = ('name', 'inspired entries') \ No newline at end of file +valid_inspiration_fields = ('name', 'inspired entries', 'media') \ No newline at end of file diff --git a/code/utils/osg.py b/code/utils/osg.py index 5d08f546..0b4bb27a 100644 --- a/code/utils/osg.py +++ b/code/utils/osg.py @@ -399,14 +399,13 @@ def read_developer_info(): if field not in valid_developer_fields: raise RuntimeError('Unknown developer field "{}" for developer: {}.'.format(field, dev['name'])) # strip from name or organization (just in case) - for field in ('name', 'organization'): + for field in ('name', ): if field in dev: dev[field] = dev[field].strip() # split games, contact (are lists) for field in ('games', 'contact'): if field in dev: content = dev[field] - content = content.split(',') content = [x.strip() for x in content] dev[field] = content # check for duplicate names entries @@ -427,28 +426,31 @@ def write_developer_info(developers): content = '{}\n'.format(generic_comment_string) # number of developer - content += '# Developer ({})\n\n'.format(len(developers)) + content += '# Developer [{}]\n\n'.format(len(developers)) # sort by name developers.sort(key=lambda x: str.casefold(x['name'])) # iterate over them for dev in developers: + keys = list(dev.keys()) # developer name - content += '## {} ({})\n\n'.format(dev['name'], len(dev['games'])) + content += '## {} [{}]\n\n'.format(dev['name'], len(dev['games'])) + keys.remove('name') - # games - content += '- Games: {}\n'.format(', '.join(sorted(dev['games'], key=str.casefold))) - - # all the remaining in alphabetical order - for field in sorted(dev.keys()): - if field not in ('name', 'games'): - value = dev[field] - field = field.capitalize() - if isinstance(value, str): - content += '- {}: {}\n'.format(field, value) - else: - content += '- {}: {}\n'.format(field, ', '.join(sorted(value, key=str.casefold))) + # all the remaining in alphabetical order, but 'games' first + keys.remove('games') + keys.sort() + keys = ['games'] + keys + for field in keys: + value = dev[field] + field = field.capitalize() + # lists get special treatment + if isinstance(value, list): + value.sort(key=str.casefold) + value = [x if not ',' in x else '"{}"'.format(x) for x in value] # surround those with a comma with quotation marks + value = ', '.join(value) + content += '- {}: {}\n'.format(field, value) content += '\n' # write @@ -502,29 +504,31 @@ def write_inspirations_info(inspirations): content = '{}\n'.format(generic_comment_string) # number of developer - content += '# Inspirations ({})\n\n'.format(len(inspirations)) + content += '# Inspirations [{}]\n\n'.format(len(inspirations)) # sort by name inspirations.sort(key=lambda x: str.casefold(x['name'])) # iterate over them for inspiration in inspirations: + keys = list(inspiration.keys()) # inspiration name - content += '## {} ({})\n\n'.format(inspiration['name'], len(inspiration['inspired entries'])) + content += '## {} [{}]\n\n'.format(inspiration['name'], len(inspiration['inspired entries'])) + keys.remove('name') - # games - content += '- Inspired entries: {}\n'.format( - ', '.join(sorted(inspiration['inspired entries'], key=str.casefold))) - - # all the remaining in alphabetical order - for field in sorted(inspiration.keys()): - if field not in ('name', 'inspired entries'): - value = inspiration[field] - field = field.capitalize() - if isinstance(value, str): - content += '- {}: {}\n'.format(field, value) - else: - content += '- {}: {}\n'.format(field, ', '.join(sorted(value, key=str.casefold))) + # all the remaining in alphabetical order, but "inspired entries" first + keys.remove('inspired entries') + keys.sort() + keys = ['inspired entries'] + keys + for field in keys: + value = inspiration[field] + field = field.capitalize() + # lists get special treatment + if isinstance(value, list): + value.sort(key=str.casefold) + value = [x if not ',' in x else '"{}"'.format(x) for x in value] # surround those with a comma with quotation marks + value = ', '.join(value) + content += '- {}: {}\n'.format(field, value) content += '\n' # write diff --git a/code/utils/osg_ui.py b/code/utils/osg_ui.py new file mode 100644 index 00000000..65df344c --- /dev/null +++ b/code/utils/osg_ui.py @@ -0,0 +1,32 @@ +""" +Simple UI helpers with PyQt +""" + +from PyQt5 import QtCore, QtGui, QtWidgets + + +def run_simple_button_app(title, actions): + """ + + :param title: + :param actions: + :return: + """ + # create app + app = QtWidgets.QApplication([]) + + # create single widget + widget = QtWidgets.QWidget() + widget.setWindowTitle(title) + widget.setMinimumSize(200, 400) + + # add actions + layout = QtWidgets.QVBoxLayout(widget) + for name, action in actions: + button = QtWidgets.QPushButton(name) + button.clicked.connect(action) + layout.addWidget(button) + + # execute app + widget.show() + return app.exec_() \ No newline at end of file diff --git a/developer.md b/developer.md index 9d156d80..c4dac643 100644 --- a/developer.md +++ b/developer.md @@ -1,1580 +1,1580 @@ [comment]: # (partly autogenerated content, edit with care, read the manual before) -# Developer (369) +# Developer [369] -## Akira Higuchi (1) +## Akira Higuchi [1] - Games: Kobo Deluxe -## Alan Grier (1) +## Alan Grier [1] - Games: Anagramarama -## Alan Witkowski (1) +## Alan Witkowski [1] - Games: Empty Clip -## Albert Astals Cid (1) +## Albert Astals Cid [1] - Games: Blinken -## Alex Clark (1) +## Alex Clark [1] - Games: Abe's Amazing Adventure - Contact: jazkat@SF -## Alex Gleason (1) +## Alex Gleason [1] - Games: Vegan on a Desert Island -## Alex Henry (1) +## Alex Henry [1] - Games: Javelin -## Alex Margarit (1) +## Alex Margarit [1] - Games: a2x -## Alexander Lang (1) +## Alexander Lang [1] - Games: xdigger -## Alexander Söderlund (1) +## Alexander Söderlund [1] - Games: Hnefatafl -## Alexis Megas (1) +## Alexis Megas [1] - Games: Maxit -## Anders Svensson (1) +## Anders Svensson [1] - Games: Alex the Allegator 4 -## Andreas Kattner (1) +## Andreas Kattner [1] - Games: Canta -## Andreas Røsdal (1) +## Andreas Røsdal [1] - Games: OpenRTS - Contact: rtsfan@SF -## Andy Southgate (2) +## Andy Southgate [2] - Games: Adanaxis, SDL Asylum - Organization: Mushware Limited -## Anthony Mariette Louis Liekens (1) +## Anthony Mariette Louis Liekens [1] - Games: Qonk - Contact: aliekens@SF -## Antoine Morineau (1) +## Antoine Morineau [1] - Games: OpenAlchemist -## Anton Norup Sørensen (1) +## Anton Norup Sørensen [1] - Games: Vertigo -## Ari Mustonen (1) +## Ari Mustonen [1] - Games: Hex-a-hop - Contact: amuzen@SF -## Armin Bajramovic (1) +## Armin Bajramovic [1] - Games: Advanced Strategic Command - Contact: armin906@SF -## Arne Reiners (1) +## Arne Reiners [1] - Games: GL-117 -## Aurélien Gâteau (1) +## Aurélien Gâteau [1] - Games: Pixel Wheels -## Bart Mak (1) +## Bart Mak [1] - Games: Slingshot -## Ben Brian (1) +## Ben Brian [1] - Games: 0 A.D. - Contact: historic_bruno@SF, historicbruno@GH - Home: https://benbrian.net/ -## Ben Kibbey (1) +## Ben Kibbey [1] - Games: CBoard -## Benjamin Meyer (1) +## Benjamin Meyer [1] - Games: KSnakeDuel -## Bernard Kennedy (1) +## Bernard Kennedy [1] - Games: 3Dc -## Bernhard Kaindl (1) +## Bernhard Kaindl [1] - Games: GL-117 -## Bernhard Trummer (1) +## Bernhard Trummer [1] - Games: Moagg2 -## Bert Beckwith (1) +## Bert Beckwith [1] - Games: British Bingo -## Bill Kendrick (3) +## Bill Kendrick [3] - Games: Gem Drop X, ICBM3D, Tux Paint - Organization: New Breed Software -## Bjørn Hansen (1) +## Bjørn Hansen [1] - Games: Balder2D -## Bob Winckelmans (1) +## Bob Winckelmans [1] - Games: Critterding -## Bokorn (1) +## Bokorn [1] - Games: Brikx -## Brian Wellington (1) +## Brian Wellington [1] - Games: XBill -## Bruno Ethvignot (2) +## Bruno Ethvignot [2] - Games: Powermanga, TecnoballZ -## Calle Laakkonen (1) +## Calle Laakkonen [1] - Games: Luola -## Cedric Delfosse (1) +## Cedric Delfosse [1] - Games: GL-117 -## Chris DeLeon (1) +## Chris DeLeon [1] - Games: Shotgun Debugger -## Chris Hopp (2) +## Chris Hopp [2] - Games: buggyGame, Pillows - Home: https://fydo.net/ -## Chris Laurel (1) +## Chris Laurel [1] - Games: Amphetamine -## Christian Haag (1) +## Christian Haag [1] - Games: RedShift -## Christian Schramm (1) +## Christian Schramm [1] - Games: Advanced Strategic Command - Contact: Ed-von-Schleck@GH -## Chuck Simmons (1) +## Chuck Simmons [1] - Games: VMS Empire -## Clive Crous (1) +## Clive Crous [1] - Games: Vulture's Eye -## Coda (1) +## Coda [1] - Games: Stringrolled -## Colm Gallagher (1) +## Colm Gallagher [1] - Games: Anagramarama -## copx. Sherm Pendley (1) +## copx. Sherm Pendley [1] - Games: Warp Rogue -## Daniel Champagne (1) +## Daniel Champagne [1] - Games: Gilbert and the doors -## Daniel Ginovker (1) +## Daniel Ginovker [1] - Games: 2006-rebotted - Contact: dginovker@GH - Home: https://dginovker.github.io/ -## Daniel Loreck (1) +## Daniel Loreck [1] - Games: JSkat -## Daniel Roux (1) +## Daniel Roux [1] - Games: Colobot: Gold Edition - Organization: Epsitec -## Daniele Napolitano (1) +## Daniele Napolitano [1] - Games: Gweled -## Danny Allen (1) +## Danny Allen [1] - Games: Blinken -## darkrose (1) +## darkrose [1] - Games: Turious - Contact: darkrose@GL -## David Gibbs (1) +## David Gibbs [1] - Games: Omega-rpg - Contact: dagibbs@SF -## David Igreja (1) +## David Igreja [1] - Games: TecnoballZ -## David McNamara (1) +## David McNamara [1] - Games: Xultris -## David Olofson (1) +## David Olofson [1] - Games: Kobo Deluxe -## David Perrenoud (1) +## David Perrenoud [1] - Games: Jamp -## David Rosen (1) +## David Rosen [1] - Games: Black Shades Elite -## DelphaDesign (1) +## DelphaDesign [1] - Games: Annex: Conquer the World -## Derek Hausauer (1) +## Derek Hausauer [1] - Games: T^3 -## Dettus (1) +## Dettus [1] - Games: n2048 -## Dimitris Papavasiliou (1) +## Dimitris Papavasiliou [1] - Games: Billiards -## Dmitry Suzdalev (1) +## Dmitry Suzdalev [1] - Games: KMines -## Dominique Roux-Serret (1) +## Dominique Roux-Serret [1] - Games: Ri-li -## Don Llopis (1) +## Don Llopis [1] - Games: XInvaders 3D - Contact: del23@SF -## Don Woods (1) +## Don Woods [1] - Games: Colossal Cave Adventure -## Donny Springer (1) +## Donny Springer [1] - Games: iortcw -## Dorfdrull (1) +## Dorfdrull [1] - Games: Advanced Strategic Command - Contact: dorfdrull@SF -## Drummyfish (1) +## Drummyfish [1] - Games: Steamer Duck -## Eben Upton (1) +## Eben Upton [1] - Games: Ajax3d - Contact: ebenupton@SF -## Ed James (1) +## Ed James [1] - Games: VMS Empire -## Eero Tamminen (1) +## Eero Tamminen [1] - Games: SolarWolf -## Emmanuel Founaud (1) +## Emmanuel Founaud [1] - Games: Powermanga -## Eric Cheung (1) +## Eric Cheung [1] - Games: GL-117 -## Eric Gillespie (1) +## Eric Gillespie [1] - Games: Nighthawk - Contact: viking667@SF -## Eric House (1) +## Eric House [1] - Games: Crosswords -## Eric P. Hutchins (1) +## Eric P. Hutchins [1] - Games: Ball and Paddle -## Eric S. Raymond (1) +## Eric S. Raymond [1] - Games: VMS Empire -## Eric Söderberg (1) +## Eric Söderberg [1] - Games: Zauberer -## Erik Auerswald (1) +## Erik Auerswald [1] - Games: Kobo Deluxe -## Erik Johansson (1) +## Erik Johansson [1] - Games: 0 A.D. - Contact: feneur@SF -## Etienne Sobole (1) +## Etienne Sobole [1] - Games: Powermanga -## Eugene Andreeschev (1) +## Eugene Andreeschev [1] - Games: GL-117 -## Farsides (1) +## Farsides [1] - Games: Card Stories -## Federico Poloni (1) +## Federico Poloni [1] - Games: Bastet -## Felix Lauer (1) +## Felix Lauer [1] - Games: M.A.R.S. -## Felix Rodriguez Lopez (1) +## Felix Rodriguez Lopez [1] - Games: Canta -## Flavio Calva (1) +## Flavio Calva [1] - Games: Yorg -## Florian Berger (1) +## Florian Berger [1] - Games: FooBillard -## Florian Fischer (1) +## Florian Fischer [1] - Games: Holtz -## Florian Schulze (1) +## Florian Schulze [1] - Games: Kobo Deluxe -## Florian Wesch (1) +## Florian Wesch [1] - Games: Infon Battle Arena -## Francesco Rossi (1) +## Francesco Rossi [1] - Games: Ksudoku -## Frederik Kesting (1) +## Frederik Kesting [1] - Games: Advanced Strategic Command - Contact: ocl4nis@SF -## Fredrik Portstrom (1) +## Fredrik Portstrom [1] - Games: Sinatra -## FrenchYann (1) +## FrenchYann [1] - Games: Chess3D -## G. Wessner (1) +## G. Wessner [1] - Games: Blasphemer -## Gabor Torok (1) +## Gabor Torok [1] - Games: Abe's Amazing Adventure - Contact: gabortorok@SF -## Gabriele Cirulli (1) +## Gabriele Cirulli [1] - Games: 2048 - Contact: gabrielecirulli@GH - Home: https://www.gabrielecirulli.com/ -## Ghoulsblade (1) +## Ghoulsblade [1] - Games: Iris2 -## Gil Megidish (1) +## Gil Megidish [1] - Games: Heart of the Alien - Contact: gilm@SF -## Gnome (2) +## Gnome [2] - Games: Gnome Chess, Mines -## Graeme Gott (5) +## Graeme Gott [5] - Games: CuteMaze, Gottet, Simsu, Tanglet, Tetzle -## Gregory Peng (1) +## Gregory Peng [1] - Games: Shotgun Debugger -## Gryc Ueusp (1) +## Gryc Ueusp [1] - Games: Libre: The Open Source Card Game -## Guillaume Delhumeau (1) +## Guillaume Delhumeau [1] - Games: OpenAlchemist -## Guy Langston (1) +## Guy Langston [1] - Games: SokoSolve -## Haeric (1) +## Haeric [1] - Games: phpRPG - Contact: haeric@SF -## Hagish (1) +## Hagish [1] - Games: Iris2 -## Harm Geert Muller (1) +## Harm Geert Muller [1] - Games: Fairy-Max -## Harmen van der Wal (1) +## Harmen van der Wal [1] - Games: Hypercube -## Heiko Schäfer (1) +## Heiko Schäfer [1] - Games: NetMauMau -## Heiner Marxen (1) +## Heiner Marxen [1] - Games: JSoko -## Helmut Hoenig (1) +## Helmut Hoenig [1] - Games: Xjig -## Hilarious001 (1) +## Hilarious001 [1] - Games: 2Moons Browsergame Engine - Contact: Hilarious001@GH -## HoleInTheHeadStudios (2) +## HoleInTheHeadStudios [2] - Games: Magic Gardeners Tournament, Search for the Red Herring -## Holger Schäkel (1) +## Holger Schäkel [1] - Games: FooBillard++ - Contact: holger110462@SF -## Horst Kevin (1) +## Horst Kevin [1] - Games: Fictional Air Combat - Contact: horstkevin@SF -## Hubert Lamontagne (1) +## Hubert Lamontagne [1] - Games: Stringrolled -## Hugh Robinson (1) +## Hugh Robinson [1] - Games: SDL Asylum -## Immanuel Halupczok (1) +## Immanuel Halupczok [1] - Games: Cuyo -## Ingo Ruhnke (2) +## Ingo Ruhnke [2] - Games: Construo, Windstille -## Isabelle Bouchard (1) +## Isabelle Bouchard [1] - Games: Stringrolled -## Jaakko Tapani Peltonen (1) +## Jaakko Tapani Peltonen [1] - Games: Falcon's Eye -## Jacob L. Anawalt (1) +## Jacob L. Anawalt [1] - Games: Batalla Naval - Contact: jlanawalt@SF -## James Canete (1) +## James Canete [1] - Games: iortcw -## James Stone (1) +## James Stone [1] - Games: GL-117 -## Jan Friederich (1) +## Jan Friederich [1] - Games: Mmpong -## Jan Mulder (2) +## Jan Mulder [2] - Games: Pendumito, WebHangman -## Jan Schäfer (1) +## Jan Schäfer [1] - Games: JSkat -## Jan-Otto Kröpke (1) +## Jan-Otto Kröpke [1] - Games: 2Moons Browsergame Engine - Contact: jkroepke@GH -## Jani Kajala (1) +## Jani Kajala [1] - Games: Cat Mother Dead Justice -## Jasmine Langridge (1) +## Jasmine Langridge [1] - Games: Trigger -## Jason Nunn (1) +## Jason Nunn [1] - Games: Nighthawk -## Jason Rohrer (8) +## Jason Rohrer [8] - Games: Between, Cultivation, Gravitation, One Hour One Life, Passage, Primrose, Sleep Is Death, Transcend - Contact: jasonrohrer@GH, jcr13@SF -## Jay Fenlason (1) +## Jay Fenlason [1] - Games: Hack -## Jean-Baptiste Lamy / Nekeme Prod. (1) +## Jean-Baptiste Lamy / Nekeme Prod. [1] - Games: Slune -## Jean-Marc Le Peuvedic (1) +## Jean-Marc Le Peuvedic [1] - Games: GL-117 -## Jean-Michel Martin de Santero (2) +## Jean-Michel Martin de Santero [2] - Games: Powermanga, TecnoballZ -## Jeff Thoene (1) +## Jeff Thoene [1] - Games: Shotgun Debugger -## Jens Fursund (1) +## Jens Fursund [1] - Games: Qonk - Contact: fursund@SF -## Jeremy Sheeley (1) +## Jeremy Sheeley [1] - Games: Kobo Deluxe -## Jerry Jiang (1) +## Jerry Jiang [1] - Games: 2048 - Contact: tpcstld@GH - Home: https://tpcstld.me/ -## Jesse Smith (1) +## Jesse Smith [1] - Games: Atomic Tanks -## Jetro Lauha (1) +## Jetro Lauha [1] - Games: Pathogen Warrior - Home: https://jet.ro/ -## Jim Gilloghy (1) +## Jim Gilloghy [1] - Games: Colossal Cave Adventure -## Jimmy Christensen (2) +## Jimmy Christensen [2] - Games: OldSkool Gravity Game, SDL-Ball - Contact: DusteDdk@GH, dusteddk@SF -## Joan Queralt Molina (1) +## Joan Queralt Molina [1] - Games: Biogenesis -## Jochen Voss (1) +## Jochen Voss [1] - Games: Moon-buggy -## Joel Bouchard Lamontagne (1) +## Joel Bouchard Lamontagne [1] - Games: Stringrolled -## Joey Marshall (1) +## Joey Marshall [1] - Games: Snowballz -## Johan Peitz (1) +## Johan Peitz [1] - Games: Alex the Allegator 4 - Contact: peitz@SF -## Johannes Bergmeier (1) +## Johannes Bergmeier [1] - Games: Ksudoku -## John McIntosh (1) +## John McIntosh [1] - Games: 4D Maze Game -## John Nesky (1) +## John Nesky [1] - Games: Shotgun Debugger -## John-Paul Gignac (1) +## John-Paul Gignac [1] - Games: Pathological - Contact: jjgignac@SF -## Jonas Eschenburg (1) +## Jonas Eschenburg [1] - Games: Thunder&Lightning -## Jonas Spillmann (1) +## Jonas Spillmann [1] - Games: Amphetamine -## Jonathan Musther (1) +## Jonathan Musther [1] - Games: Slingshot -## Joona "JDruid" Karjalainen (1) +## Joona "JDruid" Karjalainen [1] - Games: Trip on the Funny Boat -## Joseph Hewitt (4) +## Joseph Hewitt [4] -- Games: Dungeon Monkey Eternal, GearHead, GearHead 2, Dungeon Monkey Unlimited +- Games: Dungeon Monkey Eternal, Dungeon Monkey Unlimited, GearHead, GearHead 2 - Contact: jwvhewitt@GH, jwvhewitt@SF -## Jujucece (1) +## Jujucece [1] - Games: pyRacerz -## Julian Bradfield (1) +## Julian Bradfield [1] - Games: Mah-Jong -## Julian Oliver (1) +## Julian Oliver [1] - Games: LevelHead -## Julien Jorge (1) +## Julien Jorge [1] - Games: Plee the Bear -## Juraj Michalek (1) +## Juraj Michalek [1] - Games: Atomic Tanks -## Jute Gyte (1) +## Jute Gyte [1] - Games: Blasphemer -## Jérôme Bolot (1) +## Jérôme Bolot [1] - Games: TecnoballZ -## Kai Hertel (1) +## Kai Hertel [1] - Games: Mmpong -## Kanna Yoshihiro (1) +## Kanna Yoshihiro [1] - Games: Cannon Smash -## kantharos (1) +## kantharos [1] - Games: Aklabeth - Contact: kantharos@SF -## Karel Fiser (1) +## Karel Fiser [1] - Games: Bombic2 -## Karl Bartel (1) +## Karl Bartel [1] - Games: Castle-Combat -## Katia Zawadzka (1) +## Katia Zawadzka [1] - Games: Deer Portal -## Kayl (1) +## Kayl [1] - Games: 2H4U - Contact: kaylnet@SF -## Kenta Cho (2) +## Kenta Cho [2] - Games: A7Xpg, Consomaton -## Kieran Pilkington (1) +## Kieran Pilkington [1] - Games: 0 A.D. - Contact: KieranP@GH - Home: https://k776.tumblr.com/ -## Kilgore Trout Mask Replicant (1) +## Kilgore Trout Mask Replicant [1] - Games: 1oom - Contact: KilgoreTroutMaskReplicant@GL -## Klivo (1) +## Klivo [1] - Games: Pendumito -## Konstantin Yegupov (1) +## Konstantin Yegupov [1] - Games: Trip on the Funny Boat -## krys (1) +## krys [1] - Games: Krystal Drop - Contact: krys@SF -## Lancelot de Ferrière (1) +## Lancelot de Ferrière [1] - Games: 0 A.D. - Contact: wraitii@GH, wraitii@SF -## Laurence R. Brothers (1) +## Laurence R. Brothers [1] - Games: Omega-rpg -## Laurent (1) +## Laurent [1] - Games: 2048 - Contact: marg51@GH - Home: https://uto.io/ -## Laurent Guyon (1) +## Laurent Guyon [1] - Games: TecnoballZ -## legoluft (1) +## legoluft [1] - Games: Krank -## leper (1) +## leper [1] - Games: 0 A.D. - Contact: leper@GH -## Linley Henzell (2) +## Linley Henzell [2] - Games: Liberation Circuit, Overgod -## lo-th (1) +## lo-th [1] - Games: 3d.city - Contact: lo-th@GH - Home: http://lo-th.github.io/labs/index.html -## Locomalito (1) +## Locomalito [1] - Games: L'Abbaye des Morts -## Loek (1) +## Loek [1] - Games: Qonk - Contact: exinion@SF -## Lori Angela Nagel (1) +## Lori Angela Nagel [1] - Games: Wograld -## Louens Veen (1) +## Louens Veen [1] - Games: GL-117 -## LucKey Productions (1) +## LucKey Productions [1] - Games: Quatter -- Home: https://luckeyproductions.nl/, https://libregamewiki.org/LucKey_Productions +- Home: https://libregamewiki.org/LucKey_Productions, https://luckeyproductions.nl/ -## Luismv (1) +## Luismv [1] - Games: Tactics Squad -## Lukas Löhrer (1) +## Lukas Löhrer [1] - Games: Amphetamine -## Mage (1) +## Mage [1] - Games: Zatacka -## Magnus Auvinen (1) +## Magnus Auvinen [1] - Games: Teeworlds -## Mariano Muñoz (1) +## Mariano Muñoz [1] - Games: glParchis -## Mario Donick (1) +## Mario Donick [1] - Games: LambdaRogue: The Book of Stars -## Marios Visvardis (1) +## Marios Visvardis [1] - Games: MUSoSu - Contact: marios_v@SF -## Mark Dickenson (1) +## Mark Dickenson [1] - Games: Alien Assault Traders - Contact: akapanamajack@SF -## Mark Harman (1) +## Mark Harman [1] - Games: Apricots -## Mark Saward (1) +## Mark Saward [1] - Games: StressFreeZone -## Mark Snellgrove (1) +## Mark Snellgrove [1] - Games: Apricots -## Markus J. Luzius (1) +## Markus J. Luzius [1] - Games: JSkat -## Martin Bickel (1) +## Martin Bickel [1] - Games: Advanced Strategic Command - Contact: ValHaris@GH, valharis@SF -## Martin Trautmann (1) +## Martin Trautmann [1] - Games: Holtz -## Masanao Izumo (1) +## Masanao Izumo [1] - Games: Kobo Deluxe -## Mateusz Viste (2) +## Mateusz Viste [2] - Games: Atomiks, Simple Sokoban - Contact: mv_fox@SF -## Mathew Velasquez (1) +## Mathew Velasquez [1] - Games: Open Syobon Action -## Matias Duarte (1) +## Matias Duarte [1] - Games: XBill -## Matthew D. Steele (2) +## Matthew D. Steele [2] - Games: Azimuth, System Syzygy -## Matthew Sarnoff (1) +## Matthew Sarnoff [1] - Games: Shotgun Debugger -## Matthias Kiefer (1) +## Matthias Kiefer [1] - Games: KSnakeDuel -## Matthias Meger (1) +## Matthias Meger [1] - Games: JSoko -## Matthias S. Benkmann (1) +## Matthias S. Benkmann [1] - Games: Domino On Acid -## Mauricio Piacentini (1) +## Mauricio Piacentini [1] - Games: KMines -## Maurizio Colucci (1) +## Maurizio Colucci [1] - Games: Free Tennis -## Max Bittker (1) +## Max Bittker [1] - Games: sandspiel -## Maxim Markaitis (1) +## Maxim Markaitis [1] - Games: Battery -## mbays (2) +## mbays [2] - Games: Intricacy, Kuklomenos -## MCMic (1) +## MCMic [1] - Games: Slime Volley -## Michael "fr1tz" Goldener (1) +## Michael "fr1tz" Goldener [1] - Games: Terminal Overload -## Michael Moerz (1) +## Michael Moerz [1] - Games: Advanced Strategic Command - Contact: natoka@SF -## Michael Speck (4) +## Michael Speck [4] - Games: LBreakout2, LBreakoutHD, LTris, Online Chess Club -## Michael Weber (1) +## Michael Weber [1] - Games: Shotgun Debugger -## Mick Kappenburg (1) +## Mick Kappenburg [1] - Games: Ksudoku -## Mike McBride (1) +## Mike McBride [1] - Games: KMines -## Mike Schuette (1) +## Mike Schuette [1] - Games: Xultris -## Mike Sharov (1) +## Mike Sharov [1] - Games: GJID -## Mikey Lubker (1) +## Mikey Lubker [1] - Games: Snowballz - Contact: ratchet@SF -## Mikhail Kourinny (1) +## Mikhail Kourinny [1] - Games: KMines -## Mikkhail Kurin (1) +## Mikkhail Kurin [1] - Games: AstroMenace - Contact: viewizard@SF -## Mohammed Morsi (1) +## Mohammed Morsi [1] - Games: Omega -## Mozilla (1) +## Mozilla [1] - Games: Runfield -## MrPouit (1) +## MrPouit [1] - Games: OpenAlchemist -## New Breed Software (2) +## New Breed Software [2] - Games: 3D Pong, Tux Paint - Home: http://newbreedsoftware.com/ -## Nicolas Auvray (1) +## Nicolas Auvray [1] - Games: 0 A.D. - Contact: itms@SF, na-Itms@GH -## Nicolas Hadacek (1) +## Nicolas Hadacek [1] - Games: KMines -## Nicolas Satragno (1) +## Nicolas Satragno [1] - Games: Omega -## Norbert Drexl (1) +## Norbert Drexl [1] - Games: GL-117 - Contact: heptargon@SF -## Oliver Baker (1) +## Oliver Baker [1] - Games: TuxKart -## Oliver Feiler (1) +## Oliver Feiler [1] - Games: Tornado -## Oliver Vogel (1) +## Oliver Vogel [1] - Games: XBlast -## Olli "Hectigo" Etuaho (2) +## Olli "Hectigo" Etuaho [2] - Games: Trip on the Funny Boat, Which Way Is Up? -## Olli Etuaho (2) +## Olli Etuaho [2] - Games: Beat Harvester, One is enough -## Olli Sorjonen (1) +## Olli Sorjonen [1] - Games: Cat Mother Dead Justice -## onpon4 (3) +## onpon4 [3] - Games: Pacewar, ReTux, Tangomon -## Opensource Game Studio (1) +## Opensource Game Studio [1] - Games: OGS Mahjong -## Ozan Kurt (1) +## Ozan Kurt [1] - Games: 2Moons Browsergame Engine - Contact: OzanKurt@GH -## Pascal von der Heiden (1) +## Pascal von der Heiden [1] - Games: Bloodmasters -## Patrick Fleckenstein (1) +## Patrick Fleckenstein [1] - Games: 54321 -## Patrick Gerdsmeier (1) +## Patrick Gerdsmeier [1] - Games: Sarah-Maries Eierjagd -## Patrick J. Naughton (1) +## Patrick J. Naughton [1] - Games: Amphetamine -## Paul Elms (1) +## Paul Elms [1] - Games: Froggix - Contact: scifly@SF -## Paul Hicks (1) +## Paul Hicks [1] - Games: 3Dc -## Paul Mueller (1) +## Paul Mueller [1] - Games: Free Space Colonization - Contact: bitnapper@SF -## Paul Robson (1) +## Paul Robson [1] - Games: Aklabeth -## Paul Rouget (1) +## Paul Rouget [1] - Games: Runfield -## Paul Wise (2) +## Paul Wise [2] -- Games: Hex-a-hop, Alex the Allegator 4 +- Games: Alex the Allegator 4, Hex-a-hop - Contact: pabs3@SF -## Pedro Izecksohn (1) +## Pedro Izecksohn [1] - Games: Abe's Amazing Adventure - Contact: izecksohn@SF -## Pete Shinners (1) +## Pete Shinners [1] - Games: SolarWolf -## Peter Rogers (1) +## Peter Rogers [1] - Games: PGU - Contact: parogers@GH -## Phil Hassey (1) +## Phil Hassey [1] - Games: PGU - Home: http://www.philhassey.com/blog/ -## Philip Dorrell (1) +## Philip Dorrell [1] - Games: PrimeShooter -## Philip Rodrigues (1) +## Philip Rodrigues [1] - Games: KMines -## Philip Taylor (1) +## Philip Taylor [1] - Games: 0 A.D. - Contact: philiptaylor@GH, philiptaylor@SF -## Philippe Bousquet (1) +## Philippe Bousquet [1] - Games: DarkCity - Contact: darken33@SF -## Piotr Pawlow (1) +## Piotr Pawlow [1] - Games: GL-117 -## Piwai (1) +## Piwai [1] - Games: 2H4U - Contact: insa_piwai@SF -## plaimi (2) +## plaimi [2] - Games: Limbs Off, Q -## Pureon (1) +## Pureon [1] - Games: 0 A.D. - Contact: ipureon@SF -## Puskutraktori (1) +## Puskutraktori [1] - Games: Trip on the Funny Boat -## PyMike (1) +## PyMike [1] - Games: Mrfuze -## Quetzy Garcia (1) +## Quetzy Garcia [1] - Games: PSY PONG 3D - Contact: quetzyg@SF -## Rafal Zawadzki (1) +## Rafal Zawadzki [1] - Games: Deer Portal -## Reduz (1) +## Reduz [1] - Games: Stringrolled -## Rene Puls (1) +## Rene Puls [1] - Games: Tornado -## Reuben Lord (1) +## Reuben Lord [1] - Games: Balder2D -## Ricardo Cruz (1) +## Ricardo Cruz [1] - Games: Microracers - Contact: rmcruz@SF -## Ricardo Quesada (1) +## Ricardo Quesada [1] - Games: Batalla Naval - Contact: riq@SF -## Richard Langridge (1) +## Richard Langridge [1] - Games: Trigger -## Richard Sweeney (1) +## Richard Sweeney [1] - Games: Project: Starfighter - Organization: Parallel Realities -## Richard T. Jones (1) +## Richard T. Jones [1] - Games: Bouncy the Hungry Rabbit -## Rick Thomson (1) +## Rick Thomson [1] - Games: Alien Assault Traders - Contact: tarnus@SF -## Riley Rainey (1) +## Riley Rainey [1] - Games: ACM -## Rob Norman (1) +## Rob Norman [1] - Games: phpRPG - Contact: stinx@SF -## Robert Noll (1) +## Robert Noll [1] - Games: StressFreeZone - Contact: doomhammer@SF -## Robert Schuster (1) +## Robert Schuster [1] - Games: Qonk - Contact: thebohemian@SF -## Roman Belov (1) +## Roman Belov [1] - Games: Caph -## Ron Schnell (1) +## Ron Schnell [1] - Games: Dunnet -## Ronen Ness (1) +## Ronen Ness [1] - Games: GeonBit.UI -## Ronnie Hedlund (1) +## Ronnie Hedlund [1] - Games: Galaxy Forces V2 -## Russ Adams (1) +## Russ Adams [1] - Games: Key Runner -## Ryan Bates (1) +## Ryan Bates [1] - Games: Ruby-warrior -## Régis Parret (1) +## Régis Parret [1] - Games: TecnoballZ -## s0600204 (1) +## s0600204 [1] - Games: 0 A.D. - Contact: s0600204@GH -## Sam Hocevar (2) +## Sam Hocevar [2] - Games: Not Pacman, Powermanga -## Sami Sorjonen (1) +## Sami Sorjonen [1] - Games: Cat Mother Dead Justice -## Santi "Popolon" Ontañón (1) +## Santi "Popolon" Ontañón [1] - Games: F-1 Spirit -## Santiago Ontañón (1) +## Santiago Ontañón [1] - Games: Super Transball 2 -## Sascha Laurien (1) +## Sascha Laurien [1] - Games: JSkat -## Sasha Bilton (1) +## Sasha Bilton [1] - Games: Freya Game Engine - Contact: pond@SF -## Shard (1) +## Shard [1] - Games: Anagramarama -## Shawn Anderson (1) +## Shawn Anderson [1] - Games: Snelps -## Sheldon Simms (1) +## Sheldon Simms [1] - Games: Omega-rpg - Contact: wsxyz@SF -## SiENcE (1) +## SiENcE [1] - Games: Iris2 -## silkut (1) +## silkut [1] - Games: OpenAlchemist -## Simon Laszlo (1) +## Simon Laszlo [1] - Games: 4D-TRIS - Contact: simzer@SF -## Simon Peter (1) +## Simon Peter [1] - Games: Kobo Deluxe -## Simon Schneegans (1) +## Simon Schneegans [1] - Games: M.A.R.S. -## Simon Tatham (1) +## Simon Tatham [1] - Games: Simon Tatham's Portable Puzzle Collection -## Sixth Floor Labs (1) +## Sixth Floor Labs [1] - Games: Project Alexandria -## Slava Anishenko (1) +## Slava Anishenko [1] - Games: Krank -## Soenke Hahn (1) +## Soenke Hahn [1] - Games: Nikki and the Robots -## Spiderweb Software (1) +## Spiderweb Software [1] - Games: Classic Blades of Exile -## Stas Verberkt (1) +## Stas Verberkt [1] - Games: KSnakeDuel -## Stefan Aldinger (1) +## Stefan Aldinger [1] - Games: Fictional Air Combat -## Stefan Huchler (1) +## Stefan Huchler [1] - Games: Canta -## Stefan Majewsky (1) +## Stefan Majewsky [1] - Games: Palapeli -## Steffen Pohle (1) +## Steffen Pohle [1] - Games: BomberClone -## Stephen Branley (1) +## Stephen Branley [1] - Games: Help Hannah's Horse -## Stephen Carlyle-Smith (4) +## Stephen Carlyle-Smith [4] - Games: Ares Dogfighter, Moonbase Assault, Sole Collector, SteveTech1 -## Stephen Sweeney (2) +## Stephen Sweeney [2] - Games: Blob Wars Episode 2 : Blob And Conquer, Project: Starfighter - Organization: Parallel Realities -## Stephen Thorne (1) +## Stephen Thorne [1] - Games: Pathological - Contact: jerub@SF -## Steve Baker (1) +## Steve Baker [1] - Games: TuxKart -## Steve Jordi (1) +## Steve Jordi [1] - Games: Blinken -## Sylvain Beucler (1) +## Sylvain Beucler [1] - Games: GNU FreeDink -## Sylvain Vedrenne (1) +## Sylvain Vedrenne [1] - Games: Sudokuki -## Sébastien Angibaud (1) +## Sébastien Angibaud [1] - Games: Plee the Bear -## Tangram (1) +## Tangram [1] - Games: Mr. Rescue -## TerranovaTeam (1) +## TerranovaTeam [1] - Games: Colobot: Gold Edition -## themightyglider (1) +## themightyglider [1] - Games: RogueBox Adventures -## Thijs van Ommen (1) +## Thijs van Ommen [1] - Games: Scrap -## Thomas Drexl (1) +## Thomas Drexl [1] - Games: GL-117 -## Thomas Hudson (1) +## Thomas Hudson [1] - Games: Atomic Tanks -## Thomas Perl (1) +## Thomas Perl [1] - Games: Tennix! -## Thomas Plunkett (1) +## Thomas Plunkett [1] - Games: Anagramarama -## Thorsten Kohnhorst (1) +## Thorsten Kohnhorst [1] - Games: Krank - Contact: monsterkodi@SF -## Tim Edmonds (1) +## Tim Edmonds [1] - Games: Numpty Physics -## Timong (1) +## Timong [1] - Games: jClassicRPG -## Timothy Chung (1) +## Timothy Chung [1] - Games: phpRPG - Contact: ttschung@SF -## Toby A. Inkster (1) +## Toby A. Inkster [1] - Games: Anagramarama -## Toddd (1) +## Toddd [1] - Games: Open Quartz - Contact: rsmd@SF -## Tom Beaumont (1) +## Tom Beaumont [1] - Games: Hex-a-hop -## Tom Rune Flo (1) +## Tom Rune Flo [1] - Games: CAVEZ of PHEAR -## Toni Aittoniemi (1) +## Toni Aittoniemi [1] - Games: Cat Mother Dead Justice -## Tony Oakden (1) +## Tony Oakden [1] - Games: Go Ollie! - Organization: Charlie Dog Games -## Torsten Maekler (1) +## Torsten Maekler [1] - Games: Advanced Strategic Command - Contact: tmaekler@SF -## Troels Kofoed Jacobsen (1) +## Troels Kofoed Jacobsen [1] - Games: Qonk -## Tuscan Knox (1) +## Tuscan Knox [1] - Games: Shotgun Debugger -## UPi (1) +## UPi [1] - Games: OpenMortal - Contact: upi@SF -## valuial (1) +## valuial [1] - Games: Advanced Strategic Command - Contact: valuial@GH -## Vianney Lecroart (1) +## Vianney Lecroart [1] - Games: Mtp Target -## Victor Hugo Soliz Kuncar (1) +## Victor Hugo Soliz Kuncar [1] - Games: Xye -## VinDuv (1) +## VinDuv [1] - Games: Slime Volley -## Wes Ellis (1) +## Wes Ellis [1] - Games: Gweled -## William Crowther (1) +## William Crowther [1] - Games: Colossal Cave Adventure -## William Tanksley (1) +## William Tanksley [1] - Games: Omega-rpg - Contact: wtanksle@SF -## XBlast development team (1) +## XBlast development team [1] - Games: XBlast -## xfennec (1) +## xfennec [1] - Games: ManiaDrive -## Yura (1) +## Yura [1] - Games: Rescue! Max - Contact: yuranet@SF -## Yuri D'Elia (2) +## Yuri D'Elia [2] - Games: FLTK Recycling Game!, Garith - Contact: wavexx@GL - Home: http://www.thregr.org/~wavexx/ -## Zack Middleton (1) +## Zack Middleton [1] - Games: iortcw -## Zeno Rogue (1) +## Zeno Rogue [1] - Games: Necklace of the Eye diff --git a/entries/achtung_die_kurve.md b/entries/achtung_die_kurve.md index 47bebf6a..d5d7cbdc 100644 --- a/entries/achtung_die_kurve.md +++ b/entries/achtung_die_kurve.md @@ -6,7 +6,7 @@ _Clone of Achtung, die Kurve!, a simple skill game._ - State: mature - Play: https://kurve.se/ - Platform: Web -- Keywords: action, clone, inspired by Achtung die Kurve!, multiplayer local, open content +- Keywords: action, clone, inspired by "Achtung, die Kurve!", multiplayer local, open content - Code repository: https://github.com/SimonAlling/kurve.git - Code language: JavaScript - Code license: AGPL-3.0 diff --git a/entries/battle_city.md b/entries/battle_city.md index 7a6a9cd9..d15e0cea 100644 --- a/entries/battle_city.md +++ b/entries/battle_city.md @@ -4,7 +4,7 @@ _Remake of Battlecity._ - Home: https://battlecity.org/ - State: mature, inactive since 2013 -- Keywords: action, inspired by Battlecity, remake, strategy +- Keywords: action, inspired by Battle City, remake, strategy - Code repository: https://github.com/Deceth/Battle-City.git - Code language: C, C++, Pascal - Code license: GPL-3.0 diff --git a/entries/do_it_yourself_doom_with_sdl.md b/entries/do_it_yourself_doom_with_sdl.md index 285400fe..bd840ed0 100644 --- a/entries/do_it_yourself_doom_with_sdl.md +++ b/entries/do_it_yourself_doom_with_sdl.md @@ -5,7 +5,7 @@ _A DOOM clone engine._ - Home: https://github.com/amroibrahim/DIYDoom - State: beta - Platform: Windows -- Keywords: game engine, inspired by DOOM, remake +- Keywords: game engine, inspired by Doom, remake - Code repository: https://github.com/amroibrahim/DIYDoom.git - Code language: C++ - Code license: MIT diff --git a/entries/freeorion.md b/entries/freeorion.md index 1fdf972d..e7cb470b 100644 --- a/entries/freeorion.md +++ b/entries/freeorion.md @@ -1,12 +1,12 @@ # FreeOrion -_Turn-based space empire and galactic conquest (4X) computer game._ +_Turn-based space empire and galactic conquest game._ - Home: https://www.freeorion.org/index.php/Main_Page, https://sourceforge.net/projects/freeorion/ - Media: https://en.wikipedia.org/wiki/Master_of_Orion#External_links - State: beta - Download: https://www.freeorion.org/index.php/Download -- Keywords: strategy, inspired by Master of Orion 1 + Master of Orion 2, open content, remake, turn-based +- Keywords: strategy, inspired by Master of Orion + Master of Orion 2, open content, remake, turn-based - Code repository: https://github.com/freeorion/freeorion.git, https://svn.code.sf.net/p/freeorion/code (svn) - Code language: C++, Python - Code license: GPL-2.0 diff --git a/entries/inexor.md b/entries/inexor.md index cf682482..49a17d48 100644 --- a/entries/inexor.md +++ b/entries/inexor.md @@ -6,7 +6,7 @@ _Remake of Cube 2: Sauerbraten._ - Media: - State: beta, inactive since 2018 - Keywords: remake, inspired by Cube 2: Sauerbraten -- Code repository: https://github.com/inexorgame/inexor-core.git (archived) +- Code repository: https://github.com/inexorgame/vulkan-renderer.git, https://github.com/inexorgame/inexor-core.git (+) (archived) - Code language: C++, JavaScript - Code license: zlib - Code dependencies: Cube 2 diff --git a/entries/keeperrl.md b/entries/keeperrl.md index b8e8a2e0..47dd1a17 100644 --- a/entries/keeperrl.md +++ b/entries/keeperrl.md @@ -5,7 +5,7 @@ _Bungeon builder._ - Home: https://keeperrl.com/, https://miki151.itch.io/keeperrl - State: beta - Platform: Windows -- Keywords: simulation, game engine, inspired by Dungeon Keeper II, requires original content +- Keywords: simulation, game engine, inspired by Dungeon Keeper 2, requires original content - Code repository: https://github.com/miki151/keeperrl.git - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/moria.md b/entries/moria.md index 41cb5e1d..b86d586f 100644 --- a/entries/moria.md +++ b/entries/moria.md @@ -1,6 +1,6 @@ # Moria -_Roguelike computer game inspired by J. R. R. Tolkien's novel The Lord of the Rings._ +_Roguelike inspired by Tolkien's novel The Lord of the Rings._ - Home: https://umoria.org/, http://beej.us/moria/ - Media: diff --git a/entries/netacka.md b/entries/netacka.md index 7ecfece4..67e3c804 100644 --- a/entries/netacka.md +++ b/entries/netacka.md @@ -4,7 +4,7 @@ _Remake of Achtung, die Kurve!._ - Home: https://pwmarcz.pl/netacka/ - State: mature -- Keywords: remake, inspired by Achtung die Kurve!, skill +- Keywords: remake, inspired by "Achtung, die Kurve!", skill - Code repository: https://github.com/pwmarcz/netacka.git - Code language: C - Code license: MIT diff --git a/entries/opengothic.md b/entries/opengothic.md index 78193a7a..3936032d 100644 --- a/entries/opengothic.md +++ b/entries/opengothic.md @@ -1,12 +1,12 @@ # OpenGothic -_Engine remake of Gothic 2: Night of the raven._ +_Engine remake of Gothic II._ - Home: https://github.com/Try/OpenGothic - State: beta - Download: https://github.com/Try/OpenGothic/releases - Platform: Windows -- Keywords: role playing, commercial content, game engine, inspired by Gothic + Gothic 2, remake, requires original content +- Keywords: role playing, commercial content, game engine, inspired by Gothic + Gothic II, remake, requires original content - Code repository: https://github.com/Try/OpenGothic.git - Code language: C++ - Code license: MIT diff --git a/entries/openhow.md b/entries/openhow.md index fba9232a..452ffe09 100644 --- a/entries/openhow.md +++ b/entries/openhow.md @@ -3,7 +3,6 @@ _Remake of Hogs of War._ - Home: https://github.com/TalonBraveInfo/OpenHoW -- Media: https://en.wikipedia.org/wiki/Hogs_of_War - State: beta - Platform: Windows, Linux - Keywords: strategy, commercial content, inspired by Hogs of War, remake, requires original content, turn-based diff --git a/entries/openkeeper.md b/entries/openkeeper.md index 76019888..732ab50b 100644 --- a/entries/openkeeper.md +++ b/entries/openkeeper.md @@ -1,6 +1,6 @@ # OpenKeeper -_Remake of the Dungeon Keeper II engine._ +_Remake of the Dungeon Keeper 2 engine._ - Home: https://github.com/tonihele/OpenKeeper - State: beta diff --git a/entries/regoth.md b/entries/regoth.md index 8eb46f84..05571d58 100644 --- a/entries/regoth.md +++ b/entries/regoth.md @@ -1,11 +1,11 @@ # REGoth -_Reimplementation of the zEngine, used by the game "Gothic" and "Gothic II"._ +_Reimplementation of the zEngine, used by the games Gothic and Gothic II._ - Home: https://regoth-project.github.io/REGoth-bs/index.html, https://github.com/REGoth-project/REGoth/wiki - State: mature - Download: https://github.com/REGoth-project/REGoth/releases -- Keywords: role playing, commercial content, inspired by Gothic + Gothic II, remake, requires original content (Gothic 1 and Gothic 2) +- Keywords: role playing, commercial content, inspired by Gothic + Gothic II, remake, requires original content - Code repository: https://github.com/REGoth-project/REGoth-bs.git, https://github.com/REGoth-project/REGoth.git (+) - Code language: C++ - Code license: GPL-3.0, MIT (https://github.com/REGoth-project/REGoth-bs/blob/master/LICENSE) diff --git a/entries/sdl_asylum.md b/entries/sdl_asylum.md index 692f6c5e..dc8ff319 100644 --- a/entries/sdl_asylum.md +++ b/entries/sdl_asylum.md @@ -1,6 +1,6 @@ # SDL Asylum -_C port of the computer game Asylum, which was written by Andy Southgate in 1994 for the Acorn Archimedes and is now public domain._ +_C port of Asylum._ - Home: http://sdl-asylum.sourceforge.net/, https://sourceforge.net/projects/sdl-asylum/ - Media: http://asylum.acornarcade.com/ @@ -16,6 +16,7 @@ _C port of the computer game Asylum, which was written by Andy Southgate in 1994 - Developer: Andy Southgate, Hugh Robinson [Successor of Asylum](http://asylum.acornarcade.com/) from 1994. +Asylum was written by Andy Southgate in 1994 for the Acorn Archimedes and is now public domain. ## Building diff --git a/entries/xu4.md b/entries/xu4.md index 70ad5904..9b109f4f 100644 --- a/entries/xu4.md +++ b/entries/xu4.md @@ -1,6 +1,6 @@ # xu4 -_A remake of the computer game Ultima IV._ +_A remake of Ultima IV._ - Home: http://xu4.sourceforge.net/, https://sourceforge.net/projects/xu4/ - Media: diff --git a/entries/zatacka.md b/entries/zatacka.md index d2993323..f887fd6d 100644 --- a/entries/zatacka.md +++ b/entries/zatacka.md @@ -6,7 +6,7 @@ _Remake of a 2D multiplayer game similar to the Tron movie-themed light cycle ga - State: beta, inactive since 2007 - Download: http://zatacka.sourceforge.net/index.php?id=download, https://sourceforge.net/projects/zatacka/files/ - Platform: Windows, Linux -- Keywords: arcade, 2D, inspired by Achtung die Kurve, multiplayer +- Keywords: arcade, 2D, inspired by "Achtung, die Kurve!", multiplayer - Code repository: http://zatacka.cvs.sourceforge.net (cvs) - Code language: C, C++ - Code license: GPL-2.0 diff --git a/entries/zatacka_x.md b/entries/zatacka_x.md index 60f4782e..57227426 100644 --- a/entries/zatacka_x.md +++ b/entries/zatacka_x.md @@ -4,7 +4,7 @@ _Remake of Achtung, die Kurve!._ - Home: https://github.com/simenheg/zatackax - State: beta -- Keywords: action, inspired by Achtung die Kurve!, remake +- Keywords: action, inspired by "Achtung, die Kurve!", remake - Code repository: https://github.com/simenheg/zatackax.git - Code language: C - Code license: GPL-3.0 diff --git a/inspirations.md b/inspirations.md index 561d9f48..79978a64 100644 --- a/inspirations.md +++ b/inspirations.md @@ -1,2043 +1,2046 @@ [comment]: # (partly autogenerated content, edit with care, read the manual before) -# Inspirations (510) +# Inspirations [510] -## 1010! (1) +## 1010! [1] - Inspired entries: Klooni 1010! -## 3D Deathchase (1) +## 3D Deathchase [1] - Inspired entries: Deathchase 3D -## A-Train (1) +## A-Train [1] - Inspired entries: FreeTrain -## Abuse (1) +## Abuse [1] - Inspired entries: Abuse -## Ace Combat: Assault Horizon (1) +## Ace Combat: Assault Horizon [1] - Inspired entries: Open Horizon -## Ace of Spades (2) +## Ace of Spades [2] - Inspired entries: Iceball, OpenSpades -## Achtung die Kurve (1) +## Achtung, die Kurve! [4] -- Inspired entries: Zatacka +- Inspired entries: "Achtung, die Kurve!", Netacka, Zatacka, Zatacka X -## Achtung die Kurve! (3) - -- Inspired entries: "Achtung, die Kurve!", Netacka, Zatacka X - -## Advance Wars (1) +## Advance Wars [1] - Inspired entries: Tanks of Freedom -## Age of Empires (2) +## Age of Empires [2] - Inspired entries: 0 A.D., openage -## Age of Empires II (2) +## Age of Empires II [2] - Inspired entries: freeaoe, openage -## Akalabeth: World of Doom (1) +## Akalabeth: World of Doom [1] - Inspired entries: Aklabeth -## Anno series (1) +## Allegiance [1] + +- Inspired entries: Free Allegiance + +## Anno series [1] - Inspired entries: Unknown Horizons -## Another World 2: Heart of the Alien (1) +## Another World 2: Heart of the Alien [1] - Inspired entries: Heart of the Alien -## AquaStax (1) +## AquaStax [1] - Inspired entries: aquastax -## Archon: The Light and the Dark (1) +## Archon: The Light and the Dark [1] - Inspired entries: XArchon -## Ares (1) +## Ares [1] - Inspired entries: Antares -## Arkanoid (2) +## Arkanoid [2] - Inspired entries: Ball And Wall, PyBreak360 -## ARMA 2 (1) +## ARMA 2 [1] - Inspired entries: Uebergame -## ARMA 3 (1) +## ARMA 3 [1] - Inspired entries: Uebergame -## ARMA: Armed Assault (1) +## ARMA: Armed Assault [1] - Inspired entries: Uebergame -## Armor Alley (1) +## Armor Alley [1] - Inspired entries: Armor Alley -## Artemis: Spaceship Bridge Simulator (2) +## Artemis: Spaceship Bridge Simulator [2] - Inspired entries: EmptyEpsilon, Space Nerds In Space -## Artillery Duel (1) +## Artillery Duel [1] - Inspired entries: Artillery Duel Reloaded -## Arx Fatalis (1) +## Arx Fatalis [1] - Inspired entries: Arx Libertatis -## Asteroids (3) +## Asteroids [3] - Inspired entries: Maelstrom, Sine, Vectoroids -## AstroMenace (1) +## AstroMenace [1] - Inspired entries: AstroMenace -## Astrosmash (1) +## Astrosmash [1] - Inspired entries: Cosmosmash -## Asylum (1) +## Asylum [1] - Inspired entries: SDL Asylum -## Atomic Bomberman (1) +## Atomic Bomberman [1] - Inspired entries: Bombman -## Atomix (4) +## Atomix [4] - Inspired entries: Atomiks, Atomix, KAtomic, WAtomic -## Awesomenauts (1) +## Awesomenauts [1] - Inspired entries: BlakedAwesomenaughts -## Baldur's Gate (1) +## Baldur's Gate [1] - Inspired entries: GemRB -## Ballerburg (1) +## Ballerburg [1] - Inspired entries: Ballerburg SDL -## Bard's Tale Contruction Set (1) +## Bard's Tale Contruction Set [1] - Inspired entries: Bt Builder -## Barony (1) +## Barony [1] - Inspired entries: Barony -## Battle Chess (1) +## Battle Chess [1] - Inspired entries: Brutal Chess -## Battle City (1) +## Battle City [2] -- Inspired entries: Tank: Zone of Death +- Inspired entries: Battle City, Tank: Zone of Death +- Media: https://en.wikipedia.org/wiki/Battle_City -## Battle Isle series (2) +## Battle Isle series [2] - Inspired entries: Advanced Strategic Command, Crimson Fields -## Battle Zone (1) +## Battle Zone [1] - Inspired entries: BZFlag -## Battlecity (1) - -- Inspired entries: Battle City - -## BeamNG.drive (1) +## BeamNG.drive [1] - Inspired entries: Rigs of Rods -## Beatmania IIDX (1) +## Beatmania IIDX [1] - Inspired entries: osu! -## Bejeweled (1) +## Bejeweled [1] - Inspired entries: Gweled -## Betrayal at Krondor (1) +## Betrayal at Krondor [1] - Inspired entries: xBaK -## BioWare's Aurora engine (1) +## BioWare's Aurora engine [1] - Inspired entries: xoreos -## Black & White (1) +## Black & White [1] - Inspired entries: openblack -## Black Shades (1) +## Black Shades [1] - Inspired entries: Black Shades Elite -## Blake Stone: Planet Strike (1) +## Blake Stone: Planet Strike [1] - Inspired entries: BStone -## Blob Wars Attrition (1) +## Blob Wars Attrition [1] - Inspired entries: Blob Wars : Attrition -## Blobby Volley (1) +## Blobby Volley [1] - Inspired entries: Slime Volley -## Blokus (1) +## Blokus [1] - Inspired entries: Pentobi -## Blood (2) +## Blood [2] - Inspired entries: NBlood, Transfusion -## Board Game (1) +## Board Game [1] - Inspired entries: VASSAL -## Boggle (1) +## Boggle [1] - Inspired entries: Tanglet -## Bolo (1) +## Bolo [1] - Inspired entries: orona -## Bomberman (8) +## Bomberman [8] - Inspired entries: Bombic, Bombic2, DynaDungeons, Granatier, I Have No Tomatoes, Mr.Boom, SDL Bomber, XBlast -## BOOM (1) +## BOOM [1] - Inspired entries: BOOM: Remake -## Boulder Dash (4) +## Boulder Dash [4] - Inspired entries: Boulder Dash, CAVEZ of PHEAR, GDash, Rocks'n'Diamonds -## Bratwurst (1) +## Bratwurst [1] - Inspired entries: bratwurst -## Breakout (2) +## Breakout [2] - Inspired entries: Breakout-VR, BRIQUOLO -## Bubble Bobble (1) +## Bubble Bobble [1] - Inspired entries: The Bub's Brothers -## Bug Bomber (1) +## Bug Bomber [1] - Inspired entries: BitRiot -## BurgerTime (1) +## BurgerTime [1] - Inspired entries: BurgerSpace -## Buster Bros (1) +## Buster Bros [1] - Inspired entries: Pang Zero -## Buzz Aldrin's Race Into Space (1) +## Buzz Aldrin's Race Into Space [1] - Inspired entries: Race Into Space -## BVE Trainsim (1) +## BVE Trainsim [1] - Inspired entries: OpenBVE -## C-Dogs (1) +## C-Dogs [1] - Inspired entries: C-Dogs SDL -## Cadaver (1) +## Cadaver [1] - Inspired entries: Cadaver -## Caesar 3 (2) +## Caesar 3 [2] - Inspired entries: CaesarIA, Julius -## Call to Power II (1) +## Call to Power II [1] - Inspired entries: Civilization: Call To Power 2 Source Project -## Cannon Fodder (1) +## Cannon Fodder [1] - Inspired entries: Open Fodder -## Carmageddon (1) +## Carmageddon [1] - Inspired entries: OpenC1 -## Carrier Command (1) +## Carrier Command [1] - Inspired entries: Thunder&Lightning -## Castle of the Winds (1) +## Castle of the Winds [1] - Inspired entries: Castle of the Winds in Elm -## Cataclysm (1) +## Cataclysm [1] - Inspired entries: Cataclysm: Dark Days Ahead -## Catacomb (1) +## Catacomb [1] - Inspired entries: CatacombSDL -## Catacomb 3-D (2) +## Catacomb 3-D [2] - Inspired entries: CatacombGL, Reflection Keen -## Catacomb Adventure Series (1) +## Catacomb Adventure Series [1] - Inspired entries: Reflection Keen -## Catacomb II (1) +## Catacomb II [1] - Inspired entries: CatacombSDL -## Cave Story (2) +## Cave Story [2] - Inspired entries: NXEngine, NXEngine-evo -## Chip's Challenge (1) +## Chip's Challenge [1] - Inspired entries: Tile World -## Chris Sawyer's Locomotion (1) +## Chris Sawyer's Locomotion [1] - Inspired entries: OpenLoco -## ChuChu Rocket! (1) +## ChuChu Rocket! [1] - Inspired entries: Duck Marines -## Circus Atari (1) +## Circus Atari [1] - Inspired entries: Circus Linux! -## Civilization (1) +## Civilization [1] - Inspired entries: CivOne -## Civilization II (3) +## Civilization II [3] - Inspired entries: C-evo, Freeciv, Freeciv-web -## Civilization V (1) +## Civilization V [1] - Inspired entries: UnCiv -## Claw (1) +## Claw [1] - Inspired entries: OpenClaw -## Clonk (1) +## Clonk [1] - Inspired entries: OpenClonk -## Colobot (1) +## Colobot [1] - Inspired entries: Colobot: Gold Edition -## Command & Conquer (1) +## Command & Conquer [1] - Inspired entries: OpenRA -## Command & Conquer: Generals (2) +## Command & Conquer: Generals [2] - Inspired entries: OpenSAGE, Thyme -## Command & Conquer: Red Alert (2) +## Command & Conquer: Red Alert [2] - Inspired entries: Chronoshift, OpenRA -## Commander Keen Series (4) +## Commander Keen Series [4] - Inspired entries: Commander Genius, Keen Dreams, Omnispeak, Reflection Keen -## Commando (1) +## Commando [1] - Inspired entries: CommandoJS -## Company of Heroes (1) +## Company of Heroes [1] - Inspired entries: Spring: 1944 -## Company of Heroes 2 (1) +## Company of Heroes 2 [1] - Inspired entries: Spring: 1944 -## Company of Heroes: Opposing Fronts (1) +## Company of Heroes: Opposing Fronts [1] - Inspired entries: Spring: 1944 -## Company of Heroes: Tales of Valor (1) +## Company of Heroes: Tales of Valor [1] - Inspired entries: Spring: 1944 -## CorsixTH (1) +## CorsixTH [1] - Inspired entries: Project Dollhouse -## Cortex Command (1) +## Cortex Command [1] - Inspired entries: CCCP -## Counter-Strike (1) +## Cosmo's Cosmic Adventure [1] + +- Inspired entries: Cosmo-Engine + +## Counter-Strike [1] - Inspired entries: FreeCS -## Crazy Machines series (1) +## Crazy Machines series [1] - Inspired entries: The Butterfly Effect -## Creatures (1) +## Creatures [1] - Inspired entries: Open Creatures -## Crimsonland (2) +## Crimsonland [2] - Inspired entries: Grimsonland, Violetland -## Crystal Caves (1) +## Crystal Caves [1] - Inspired entries: OpenCrystalCaves -## Crystal Quest (1) +## Crystal Quest [1] - Inspired entries: CrystalQuest -## Cube 2: Sauerbraten (2) +## Cube 2: Sauerbraten [2] - Inspired entries: Inexor, Open Cube -## CUBE engine (1) +## CUBE engine [1] - Inspired entries: AssaultCube -## Cube World (1) +## Cube World [1] - Inspired entries: Veloren -## Curse of the Azure Bonds (1) +## Curse of the Azure Bonds [1] - Inspired entries: coab -## Cytadela (1) +## Cytadela [1] - Inspired entries: Cytadela -## Dance Dance Revolution (2) +## Dance Dance Revolution [2] - Inspired entries: Performous, StepMania -## Death Rally (1) +## Death Rally [1] - Inspired entries: Dreerally -## Defender (2) +## Defender [2] - Inspired entries: Defendguin, Word War vi -## Deflektor (1) +## Deflektor [1] - Inspired entries: Mirror Magic -## Delver (1) +## Delver [1] - Inspired entries: DelverEngine -## Descent (2) +## Descent [2] - Inspired entries: D2X-XL, DXX-Rebirth -## Descent II (2) +## Descent II [2] - Inspired entries: D2X-XL, DXX-Rebirth -## Destructo (1) +## Destructo [1] - Inspired entries: Return of Dr. Destructo -## Diablo (6) +## Diablo [6] - Inspired entries: Devilution, DevilutionX, DGEngine, Flare, freeablo, Summoning Wars -## Diablo II (1) +## Diablo II [1] - Inspired entries: Riiablo -## Digger (2) +## Digger [2] - Inspired entries: CAVEZ of PHEAR, Digger Remastered -## Dink Smallwood (1) +## Dink Smallwood [1] - Inspired entries: GNU FreeDink -## Dogs of War (1) +## Dogs of War [1] - Inspired entries: openDOW -## Dominion (1) +## Dominion [1] - Inspired entries: OpenDominion -## Doom (14) +## Doom [15] -- Inspired entries: Chocolate Doom, Classic RBDoom 3 BFG, Doom Legacy, DOOM Retro, DOOM-iOS, Doomsday Engine, Freedoom, GZDoom, Mocha Doom, Odamex, PrBoom+, SLADE, The Eternity Engine, ZDoom +- Inspired entries: Chocolate Doom, Classic RBDoom 3 BFG, Do It Yourself Doom With SDL, Doom Legacy, DOOM Retro, DOOM-iOS, Doomsday Engine, Freedoom, GZDoom, Mocha Doom, Odamex, PrBoom+, SLADE, The Eternity Engine, ZDoom -## DOOM (1) - -- Inspired entries: Do It Yourself Doom With SDL - -## Doom 3 (3) +## Doom 3 [3] - Inspired entries: Classic RBDoom 3 BFG, dhewm3, RBDOOM-3-BFG -## Doom 64 (1) +## Doom 64 [1] - Inspired entries: Doom64EX -## Doom II (10) +## Doom II [10] - Inspired entries: Doom Legacy, DOOM Retro, DOOM-iOS, Doomsday Engine, Freedoom, GZDoom, Mocha Doom, Odamex, PrBoom+, ZDoom -## Double Dragon (1) +## Double Dragon [1] - Inspired entries: OpenBOR -## Drugwars (2) +## Drugwars [2] - Inspired entries: Dope Wars, Prescription Wars -## Duke Nukem (2) +## Duke Nukem [2] - Inspired entries: Dave Gnukem, Freenukum -## Duke Nukem 3D (6) +## Duke Nukem 3D [6] - Inspired entries: Chocolate Duke3D, Duke3D, Duke3d_w32, EDuke32, JFDuke3D, xDuke -## Duke Nukem II (1) +## Duke Nukem II [1] - Inspired entries: Rigel Engine -## Dune 2 (4) +## Dune 2 [4] - Inspired entries: Dune 2 - The Maker, Dune Dynasty, Dune Legacy, OpenDUNE -## Dune 2000 (1) +## Dune 2000 [1] - Inspired entries: OpenRA -## Dungeon Keeper (1) +## Dungeon Keeper [1] - Inspired entries: OpenDungeons -## Dungeon Keeper 2 (1) +## Dungeon Keeper 2 [2] -- Inspired entries: OpenKeeper +- Inspired entries: KeeperRL, OpenKeeper +- Media: https://en.wikipedia.org/wiki/Dungeon_Keeper_2 -## Dungeon Keeper II (1) - -- Inspired entries: KeeperRL - -## Dwarf Fortress (1) +## Dwarf Fortress [1] - Inspired entries: Veloren -## E.T. the Extra-Terrestrial (1) +## E.T. the Extra-Terrestrial [1] - Inspired entries: javascript-E.T. -## Eat The Whistle (1) +## Eat The Whistle [1] - Inspired entries: Eat The Whistle -## Echochrome (1) +## Echochrome [1] - Inspired entries: l-echo -## Elasto Mania (1) +## Elasto Mania [1] - Inspired entries: X-Moto -## Elements (1) +## Elements [1] - Inspired entries: OpenEtG -## Elite (2) +## Elite [2] - Inspired entries: Oolite, Vega Strike -## Elite II (1) +## Elite II [1] - Inspired entries: Pioneer -## Enduro (1) +## Enduro [1] - Inspired entries: Enduro tribute -## Escape from Colditz (1) +## Escape from Colditz [1] - Inspired entries: Colditz Escape -## Escape from Monkey Island (1) +## Escape from Monkey Island [1] - Inspired entries: ResidualVM -## Escape Velocity (2) +## Escape Velocity [2] - Inspired entries: Endless Sky, Naev -## F-1 Spirit (1) +## F-1 Spirit [1] - Inspired entries: F-1 Spirit -## Falcon's Eye (1) +## Falcon's Eye [1] - Inspired entries: Vulture's Eye -## Fall Down (2) +## Fall Down [2] - Inspired entries: ativayeban, Falling Time -## Fallout 2 (4) +## Fallout 2 [4] - Inspired entries: Falltergeist, jsFO, PARPG, sfall -## Fallout Online (1) +## Fallout Online [1] - Inspired entries: fonline -## Final Fantasy VII (1) +## Final Fantasy VII [1] - Inspired entries: Q-Gears -## Final Fantasy VIII (1) +## Final Fantasy VIII [1] - Inspired entries: OpenVIII -## Final Fight (1) +## Final Fight [1] - Inspired entries: OpenBOR -## Fire Power (1) +## Fire Power [1] - Inspired entries: OpenFire -## Flag Catcher (1) +## Flag Catcher [1] - Inspired entries: Gift Grabber -## Flappy Bird (4) +## Flappy Bird [4] - Inspired entries: Clumsy Bird, CrappyBird, Flappy Cow, Hocoslamfy -## Flying Shark (1) +## Flying Shark [1] - Inspired entries: Friking Shark -## FooBillard (1) +## FooBillard [1] - Inspired entries: FooBillard++ -## Forgotten Realms: Unlimited Adventures (1) +## Forgotten Realms: Unlimited Adventures [1] - Inspired entries: Dungeon Craft -## Forsaken (1) +## Forsaken [1] - Inspired entries: Forsaken -## Freelancer (1) +## Freelancer [1] - Inspired entries: Librelancer -## Frets on Fire (1) +## Frets on Fire [1] - Inspired entries: Frets on Fire X -## Frogger (2) +## Frogger [2] - Inspired entries: Froggix, TermFrogger -## Frogs and Flies (1) +## Frogs and Flies [1] - Inspired entries: Batrachians -## GearHead (1) +## GearHead [1] - Inspired entries: GearHead 2 -## Gish (1) +## Gish [1] - Inspired entries: freegish -## GL-117 (1) +## GL-117 [1] - Inspired entries: RedShift -## Gladiator (1) +## Gladiator [1] - Inspired entries: Openglad -## Glest (1) +## Glest [1] - Inspired entries: MegaGlest -## GoldenEye 007 (2) +## GoldenEye 007 [2] - Inspired entries: ges-code, GoldenEye: Source -## Gorillas (2) +## Gorillas [2] - Inspired entries: Gorillas, Gorillas-rs -## Gothic (2) +## Gothic [2] - Inspired entries: OpenGothic, REGoth -## Gothic 2 (1) +## Gothic II [2] -- Inspired entries: OpenGothic +- Inspired entries: OpenGothic, REGoth -## Gothic II (1) - -- Inspired entries: REGoth - -## Grand Theft Auto III (1) +## Grand Theft Auto III [1] - Inspired entries: OpenRW -## Grand Theft Auto: San Andreas (2) +## Grand Theft Auto: San Andreas [2] - Inspired entries: Grit Game Engine, SanAndreasUnity -## Gravity Force (2) +## Gravity Force [2] - Inspired entries: Galaxy Forces V2, Moagg2 -## Grim Fandango (1) +## Grim Fandango [1] - Inspired entries: ResidualVM -## Guitar Hero (3) +## Guitar Hero [3] - Inspired entries: Frets on Fire, Frets on Fire X, Performous -## Gunpoint (1) +## Gunpoint [1] - Inspired entries: Clonepoint -## Hammer of Thyrion (1) +## Hammer of Thyrion [1] - Inspired entries: HHexen -## Hardwar (1) +## Hardwar [1] - Inspired entries: Hardwar -## Head over Heels (1) +## Head over Heels [1] - Inspired entries: Head over Heels -## Heretic (10) +## Heretic [10] - Inspired entries: Chocolate Doom, Doom Legacy, DOOM-iOS, Doomsday Engine, GZDoom, Mocha Doom, Odamex, PrBoom+, The Eternity Engine, ZDoom -## Heroes of Might and Magic II (1) +## Heroes of Might and Magic II [1] - Inspired entries: Free Heroes 2 -## Heroes of Might and Magic III (2) +## Heroes of Might and Magic III [2] - Inspired entries: Ancient Beast, VCMI -## Hexen (10) +## Hexen [10] - Inspired entries: Chocolate Doom, Doom Legacy, DOOM-iOS, Doomsday Engine, GZDoom, Mocha Doom, Odamex, PrBoom+, The Eternity Engine, ZDoom -## Hexen II (1) +## Hexen II [1] - Inspired entries: Hammer of Thyrion -## Highway Encounter (1) +## Highway Encounter [1] - Inspired entries: Vorton -## Hogs of War (1) +## Hogs of War [1] - Inspired entries: OpenHoW +- Media: https://en.wikipedia.org/wiki/Hogs_of_War -## HoverRace (1) +## HoverRace [1] - Inspired entries: HoverRace -## Hovertank 3D (1) +## Hovertank 3D [1] - Inspired entries: Hovertank3D -## ICBM3D (1) +## ICBM3D [1] - Inspired entries: XInvaders 3D -## Icewind Dale (1) +## Icewind Dale [1] - Inspired entries: GemRB -## Imperium Galactica (1) +## Imperium Galactica [1] - Inspired entries: Open Imperium Galactica -## Indiana Jones and his Desktop Adventures (1) +## Indiana Jones and his Desktop Adventures [1] - Inspired entries: DesktopAdventures -## Infinity Loop (1) +## Infinity Loop [1] - Inspired entries: IO Reboot -## ioquake3 (1) +## ioquake3 [1] - Inspired entries: QuakeJS -## Iron Seed (1) +## Iron Seed [1] - Inspired entries: Iron Seed -## Jagged Alliance 2 (1) +## Jagged Alliance 2 [1] - Inspired entries: Jagged Alliance 2 Stracciatella -## Jazz Jackrabbit (1) +## Jazz Jackrabbit [1] - Inspired entries: OpenJazz -## Jazz Jackrabbit 2 (2) +## Jazz Jackrabbit 2 [2] - Inspired entries: Jazz² Resurrection, Project Carrot -## Jedi Knight II: Jedi Outcast (1) - -- Inspired entries: JediOutcastLinux - -## Jedi Knight: Jedi Academy (1) - -- Inspired entries: OpenJK - -## Jet-Story (1) +## Jet-Story [1] - Inspired entries: Jet-Story -## Jewel Thief (1) +## Jewel Thief [1] - Inspired entries: jewelthief -## JezzBall (2) +## JezzBall [2] - Inspired entries: Ice Breaker, WallBall -## Joust (1) +## Joust [1] - Inspired entries: Ostrich Riders -## Jump 'n Bump (1) +## Jump 'n Bump [1] - Inspired entries: Jump'n'Bump -## Jumpgate: The Reconstruction Initiative (1) +## Jumpgate: The Reconstruction Initiative [1] - Inspired entries: Open Jumpgate -## Keen Dreams (1) +## Keen Dreams [1] - Inspired entries: Reflection Keen -## Knights (1) +## Knights [1] - Inspired entries: Knights -## Knights and Merchants (1) +## Knights and Merchants [1] - Inspired entries: KaM Remake -## Krush Kill 'n' Destroy (1) +## Krush Kill 'n' Destroy [1] - Inspired entries: KKnD -## Kula World (1) +## Kula World [1] - Inspired entries: Cubosphere -## Ladder (2) +## Ladder [2] - Inspired entries: ladder, Ladder -## Larn (2) +## Larn [2] - Inspired entries: NLarn, Ularn -## Laser Squad (1) +## Laser Squad [1] - Inspired entries: Moonbase Assault -## Legend of Zelda (3) +## Legend of Zelda [3] - Inspired entries: Fanwor, Open Zelda, Zelda Classic -## Legend of Zelda - A Link to the Past (2) +## Legend of Zelda - A Link to the Past [2] - Inspired entries: lttp-phaser, Solarus -## Lego Rock Raiders (1) +## Lego Rock Raiders [1] - Inspired entries: rock-raiders-remake -## Lemmings (5) +## Lemmings [5] - Inspired entries: Lemmings.ts, Lemmini, Lix, Pingus, Rabbit Escape -## Liero (4) +## Liero [4] - Inspired entries: GUSANOS, LieroLibre, OpenLiero, OpenLieroX -## Lionheart (1) +## Lionheart [1] - Inspired entries: Lionheart Remake -## Little Big Adventure (2) +## Little Big Adventure [2] - Inspired entries: twin-e, TwinEngine -## Little Fighter 2 (1) +## Little Fighter 2 [1] - Inspired entries: F.LF -## Lode Runner (2) +## Lode Runner [2] - Inspired entries: KGoldrunner, XScavenger -## Log!cal (2) +## Log!cal [2] - Inspired entries: Orbium, Pathological -## Lose Your Marbles (1) +## Lose Your Marbles [1] - Inspired entries: Lose Your Marbles -## Lotus Esprit Turbo Challenge (1) +## Lotus Esprit Turbo Challenge [1] - Inspired entries: RacerJS -## Lugaru: The Rabbit's Foot (1) +## Lugaru: The Rabbit's Foot [1] - Inspired entries: Lugaru -## M.A.X. (1) +## M.A.X. [1] - Inspired entries: Mechanized Assault & eXploration Reloaded -## M.U.L.E. (1) +## M.U.L.E. [1] - Inspired entries: M.E.W.L. -## Mad TV (1) +## Mad TV [1] - Inspired entries: TVTower -## Magic: The Gathering Online (2) +## Mafia II [1] + +- Inspired entries: Mafia II: Toolkit + +## Magic: The Gathering Online [2] - Inspired entries: Magarena, XMage -## Magical Drop (1) +## Magical Drop [1] - Inspired entries: Krystal Drop -## Marathon (1) +## Marathon [1] - Inspired entries: Aleph One -## Marathon 2 (1) +## Marathon 2 [1] - Inspired entries: Aleph One -## Marathon Infinity (1) +## Marathon Infinity [1] - Inspired entries: Aleph One -## Marble Madness (1) +## Marble Madness [1] - Inspired entries: Trackballs -## Mario Kart (2) +## Mario Kart [2] - Inspired entries: Kartering, SuperTuxKart -## Mario Party (1) +## Mario Party [1] - Inspired entries: SuperTuxParty -## Mario World (3) +## Mario World [3] - Inspired entries: Mari0, Secret Maryo Chronicles, The Secret Chronicles of Dr. M. -## Master of Magic (1) +## Master of Magic [1] - Inspired entries: OpenMoM -## Master of Monsters (1) +## Master of Monsters [1] - Inspired entries: The Battle for Wesnoth -## Master of Orion (1) +## Master of Orion [2] -- Inspired entries: 1oom +- Inspired entries: 1oom, FreeOrion -## Master of Orion 1 (1) - -- Inspired entries: FreeOrion - -## Master of Orion 2 (2) +## Master of Orion 2 [2] - Inspired entries: FreeOrion, OpenMOO2 -## Maxit (2) +## Maxit [2] - Inspired entries: KittenMaxit, Maxit -## MechCommander 2 (1) +## MechCommander 2 [1] - Inspired entries: MechCommander 2 Omnitech -## MechWarrior (1) +## MechWarrior [1] - Inspired entries: Linwarrior 3D -## Mega Lo Mania (1) +## Mega Lo Mania [1] - Inspired entries: Gigalomania -## MegaMan (2) +## MegaMan [2] - Inspired entries: Executive Man, Rockbot -## Meridian 59 (1) +## Meridian 59 [1] - Inspired entries: Open Meridian -## Metroid Prime (1) +## Metroid Prime [1] - Inspired entries: urde -## Mice Men (1) +## Mice Men [1] - Inspired entries: Mice Men: Remix -## Micro Machines (3) +## Micro Machines [3] - Inspired entries: Dust Racing 2D, Microracers, Yorg -## Microprose Falcon 4.0 Combat Simulator (1) +## Microprose Falcon 4.0 Combat Simulator [1] - Inspired entries: FreeFalcon -## Microsoft Flight Simulator (1) +## Microsoft Flight Simulator [1] - Inspired entries: FlightGear -## Microsoft Train Simulator (1) +## Microsoft Train Simulator [1] - Inspired entries: Open Rails -## Midnight Club II (1) +## Midnight Club II [1] - Inspired entries: OpenMC2 -## Millipede (1) +## Millipede [1] - Inspired entries: Monsters and Mushrooms -## Minecraft (13) +## Minecraft [13] - Inspired entries: Chunk Stories, Craft, Digbuild, Gnomescroll, Hematite, Manic Digger, MineCraft-One-Week-Challenge, Minetest, pycraft, Terasology, TrueCraft, Veloren, Voxelands -## Minesweeper (4) +## Minesweeper [4] - Inspired entries: Mines, Minesweeper (in C), Minesweeper.Zone, proxx -## Missile Command (2) +## Missile Command [2] - Inspired entries: ICBM3D, Penguin Command -## moon-patrol (1) +## moon-patrol [1] - Inspired entries: Moon-buggy -## Moonbase Commander (1) +## Moonbase Commander [1] - Inspired entries: Scorched Moon -## Morpheus (1) +## Morpheus [1] - Inspired entries: Morpheus Web Remake -## Mortal Kombat (2) +## Mortal Kombat [2] - Inspired entries: mk.js, OpenMortal -## Movie Business (1) +## Movie Business [1] - Inspired entries: movbizz -## Myst III: Exile (1) +## Myst III: Exile [1] - Inspired entries: ResidualVM -## Natural Selection (2) +## Naev [1] + +- Inspired entries: Nox Imperii + +## Natural Selection [2] - Inspired entries: Tremulous, Unvanquished -## NaturalChimie (1) +## NaturalChimie [1] - Inspired entries: OpenAlchemist -## Nebulus (1) +## Nebulus [1] - Inspired entries: Toppler -## Need For Speed II SE (1) +## Need For Speed II SE [1] - Inspired entries: NFSIISE -## Need For Speed III: Hot Pursuit (1) +## Need For Speed III: Hot Pursuit [1] - Inspired entries: OpenNFS -## NetHack (1) +## NetHack [1] - Inspired entries: SLASH'EM -## Neverball (1) +## Neverball [1] - Inspired entries: Nuncabola -## Nexuiz (1) +## Nexuiz [1] - Inspired entries: Xonotic -## Night Stalker (1) +## Night Stalker [1] - Inspired entries: Afternoon Stalker -## Notrium (1) +## Notrium [1] - Inspired entries: OpenNotrium -## Nuclear Reaction (2) +## Nuclear Reaction [2] - Inspired entries: c64-nuclearreaction, chainreaction -## Oddworld: Abe's Exoddus (1) +## Oddworld: Abe's Exoddus [1] - Inspired entries: alive -## Oddworld: Abe's Oddysee (1) +## Oddworld: Abe's Oddysee [1] - Inspired entries: alive -## OGRE (1) +## OGRE [1] - Inspired entries: Alimer -## Old School RuneScape (1) +## Old School RuneScape [1] - Inspired entries: RuneLite -## Omega Race (1) +## Omega Race [1] - Inspired entries: Torrega Race -## One Must Fall: 2097 (1) +## One Must Fall: 2097 [1] - Inspired entries: OpenOMF -## Osu! Tatakae! Ouendan (1) +## Osu! Tatakae! Ouendan [1] - Inspired entries: osu! -## Oubliette (1) +## Oubliette [1] - Inspired entries: Liberal Crime Squad -## Outpost (1) +## Outpost [1] - Inspired entries: Outpost HD -## Outrun (1) +## Outrun [1] - Inspired entries: Cannonball -## Oxyd (1) +## Oxyd [1] - Inspired entries: Enigma -## Pac-Man (5) +## Pac-Man [5] - Inspired entries: EnTT Pacman, Ghostly, HTML5 Pacman, Pac Go, pacman-canvas -## Pacman (1) +## Pacman [1] - Inspired entries: MiniPacman -## Panzer General (2) +## Panzer General [2] - Inspired entries: LGeneral, Open Panzer -## Paradroid (2) +## Paradroid [2] - Inspired entries: FreedroidRPG, Nighthawk -## Pixel Dungeon (1) +## Pixel Dungeon [1] - Inspired entries: Remixed Dungeon -## Pizza Tycoon (1) +## Pizza Tycoon [1] - Inspired entries: Pizza Business -## Planescape: Torment (1) +## Planescape: Torment [1] - Inspired entries: GemRB -## Plasma Pong (1) +## Plasma Pong [1] - Inspired entries: Fluid Table Tennis -## Pokémon (2) +## Pokémon [2] - Inspired entries: OPMon, Tuxemon -## Portal (1) +## Portal [1] - Inspired entries: glPortal -## Postal (1) +## Postal [1] - Inspired entries: POSTAL 1 Open Source -## Powder Game (2) +## Powder Game [2] - Inspired entries: sandspiel, The Powder Toy -## Powerslave (1) +## Powerslave [1] - Inspired entries: Powerslave EX -## Powerslide (1) +## Powerslide [1] - Inspired entries: Powerslide remake -## Prince of Persia (3) +## Prince of Persia [3] - Inspired entries: FreePrince, Mininim, SDLPoP -## Progress Quest (2) +## Progress Quest [2] - Inspired entries: pq2, progress-quest -## Pushover (1) +## Pushover [1] - Inspired entries: Pushover -## Puzzle Bobble (1) +## Puzzle Bobble [1] - Inspired entries: Frozen Bubble -## Puzznic / Brix (1) +## Puzznic / Brix [1] - Inspired entries: Wizznic! -## Q*bert (1) +## Q*bert [1] - Inspired entries: ReQbert -## Quake (6) +## Quake [6] - Inspired entries: DarkPlaces, ezQuake, ProQuake 4, QuakeSpasm, TyrQuake, vkQuake -## Quake 2 (2) +## Quake 2 [2] - Inspired entries: Jake2, Yamagi Quake II -## Quake 3 (4) +## Quake 3 [4] - Inspired entries: FQuake3, ioquake3, OpenArena, QuakeJS -## Railroad Tycoon (1) +## Railroad Tycoon [1] - Inspired entries: FreeRails -## Rampart (1) +## Rampart [1] - Inspired entries: Castle-Combat -## RARS (1) +## RARS [1] - Inspired entries: "The Open Racing Car Simulator, TORCS" -## Redneck Rampage (1) +## Redneck Rampage [1] - Inspired entries: erampage -## Rescue! (1) +## Rescue! [1] - Inspired entries: Rescue! Max -## Return to Castle Wolfenstein (1) +## Return to Castle Wolfenstein [1] - Inspired entries: iortcw -## Revenge Of The Cats: Ethernet (1) +## Revenge Of The Cats: Ethernet [1] - Inspired entries: Terminal Overload -## Rick Dangerous (1) +## Rick Dangerous [1] - Inspired entries: RickyD -## RimWorld (1) +## RimWorld [1] - Inspired entries: Magical Life -## Rise of the Triad (1) +## Rise of the Triad [1] - Inspired entries: Rise of the Triad for Linux -## Rodent's Revenge (1) +## Rodent's Revenge [1] - Inspired entries: Open Rodent's Revenge -## RollerCoaster Tycoon (1) +## RollerCoaster Tycoon [2] -- Inspired entries: FreeRCT +- Inspired entries: FreeRCT, OpenRCT2 -## RollerCoaster Tycoon 1 (1) +## RollerCoaster Tycoon 2 [1] - Inspired entries: OpenRCT2 -## RollerCoaster Tycoon 2 (1) - -- Inspired entries: OpenRCT2 - -## RPG Maker (3) +## RPG Maker [3] - Inspired entries: EasyRPG Player, mkxp, Tapir -## Runescape Classic (2) +## Runescape Classic [2] - Inspired entries: 2006-rebotted, Open RSC -## Ryzom (1) +## Ryzom [1] - Inspired entries: Ryzom Core -## Scorched Earth (2) +## Scorched Earth [2] - Inspired entries: Atomic Tanks, Scorched3D -## SCUMM (1) +## SCUMM [1] - Inspired entries: ScummVM -## Sensible Soccer (2) +## Sensible Soccer [2] - Inspired entries: Freekick 3, YSoccer -## Sensitive (2) +## Sensitive [2] - Inspired entries: One Way To Go, sensitive-js -## Seven Kingdoms (1) +## Seven Kingdoms [1] - Inspired entries: Seven Kingdoms: Ancient Adversaries -## sfxr (1) +## sfxr [1] - Inspired entries: rFXGen -## Shadow of the Beast (1) +## Shadow of the Beast [1] - Inspired entries: shadow-of-the-beast-html5 -## Shadow Warrior (2) +## Shadow Warrior [2] - Inspired entries: JonoF's Shadow Warrior Port (JFSW), SWP -## Shadowgrounds: Survivor (1) +## Shadowgrounds: Survivor [1] - Inspired entries: Shadowgrounds -## Ship Simulator 2006 (1) +## Ship Simulator 2006 [1] - Inspired entries: Bridge Command -## Ship Simulator 2008 (1) +## Ship Simulator 2008 [1] - Inspired entries: Bridge Command -## Ship Simulator Extremes (1) +## Ship Simulator Extremes [1] - Inspired entries: Bridge Command -## Shobon Action (1) +## Shobon Action [1] - Inspired entries: Open Syobon Action -## Sid Meier's Alpha Centauri (1) +## Sid Meier's Alpha Centauri [1] - Inspired entries: Freeciv Alpha Centauri project -## Sid Meier's Colonization (2) +## Sid Meier's Colonization [2] - Inspired entries: cc94, FreeCol -## Sid Meier's Pirates! (1) +## Sid Meier's Pirates! [1] - Inspired entries: Crown and Cutlass -## Siege (1) +## Siege [1] - Inspired entries: FreeSiege -## Siege of Avalon (1) +## Siege of Avalon [1] - Inspired entries: Siege of Avalon : Open Source -## Silent Hunter 4 (1) +## Silent Hunter 4 [1] - Inspired entries: Danger from the Deep -## Simcity (8) +## Simcity [8] - Inspired entries: 3d.city, Citybound, Cytopia, Lincity, LinCity-NG, Micropolis, micropolisJS, OpenCity -## SimCity 2000 (1) +## SimCity 2000 [1] - Inspired entries: OpenSC2K -## Simon (1) +## Simon [1] - Inspired entries: asdf -## Simon Says (1) +## Simon Says [1] - Inspired entries: Blinken -## SimTower (1) +## SimTower [1] - Inspired entries: OpenSkyscraper -## SingStar (3) +## SingStar [3] - Inspired entries: Performous, UltraStar Deluxe, Vocaluxe -## SkiFree (2) +## SkiFree [2] - Inspired entries: Skifree-HTML5-clone, skifree.js -## Skool Daze (1) +## Skool Daze [1] - Inspired entries: pyskool -## SkyRoads (2) +## SkyRoads [2] - Inspired entries: OpenRoads, Orbit-Hopper -## Slime Volleyball (1) +## Slime Volleyball [1] - Inspired entries: Slime Volleyball -## Slot Racers (1) +## Slot Racers [1] - Inspired entries: Slot-Racers -## Snake (2) +## Snake [2] - Inspired entries: Gusty's Serpents, snake -## Sokoban (1) +## Sokoban [1] - Inspired entries: CavePacker -## Solar Fox (1) +## Solar Fox [1] - Inspired entries: SolarWolf -## Sonic the Hedgehog (2) +## Sonic the Hedgehog [2] - Inspired entries: Open Surge, Sonic Robo Blast 2 -## Sopwith (2) +## Sopwith [2] - Inspired entries: SDL Sopwith, Sopwith 3 -## Space Harrier (1) +## Space Harrier [1] - Inspired entries: Space Harrier Clone -## Space Invaders (1) +## Space Invaders [1] - Inspired entries: Hopson-Arcade -## Space Rangers 2: Dominators (1) +## Space Rangers 2: Dominators [1] - Inspired entries: OpenSR -## Space Station 13 (3) +## Space Station 13 [3] - Inspired entries: Griefly, SS13 Remake, unitystation -## Space Taxi (1) +## Space Taxi [1] - Inspired entries: Moagg2 -## Spear of Destiny (1) +## Spear of Destiny [1] - Inspired entries: ECWolf -## Spore (1) +## Spore [1] - Inspired entries: Thrive -## Star Control 2 (2) +## Star Control 2 [2] - Inspired entries: star-control2, The Ur-Quan Masters -## Star Ruler 2 (1) +## Star Ruler 2 [1] - Inspired entries: Star Ruler 2 -## Star Trek: Voyager – Elite Force (1) +## Star Trek: Voyager – Elite Force [1] - Inspired entries: RPG-X -## Star Wars 1983 arcade game (1) +## Star Wars (1983 arcade game) [1] - Inspired entries: Star-Wars-III -## Star Wars Episode I: Racer (1) +## Star Wars Episode I: Racer [1] - Inspired entries: OpenSWE1R -## Star Wars Jedi Knight: Dark Forces II (1) +## Star Wars Jedi Knight II: Jedi Outcast [1] + +- Inspired entries: JediOutcastLinux + +## Star Wars Jedi Knight: Dark Forces II [1] - Inspired entries: Gorc -## Star Wars: Galactic Battlegrounds (1) +## Star Wars Jedi Knight: Jedi Academy [1] + +- Inspired entries: OpenJK + +## Star Wars: Galactic Battlegrounds [1] - Inspired entries: openage -## Star Wars: Yoda Stories (2) +## Star Wars: Yoda Stories [2] - Inspired entries: DesktopAdventures, WebFun -## Starcraft (1) +## Starcraft [1] - Inspired entries: Stargus -## Stars! (2) +## Stars! [2] - Inspired entries: Freestars, NStars! -## Starshatter (1) +## Starshatter [1] - Inspired entries: starshatter-open -## StepMania (1) +## StepMania [1] - Inspired entries: OpenITG -## Story of Seasons series (1) +## Story of Seasons series [1] - Inspired entries: Greentwip's Harvest Moon -## Streets of Rage (1) +## Streets of Rage [1] - Inspired entries: OpenBOR -## Strife (3) +## Strife [3] - Inspired entries: Chocolate Doom, Strife: Veteran Edition, The Eternity Engine -## Stronghold (1) +## Stronghold [1] - Inspired entries: Sourcehold -## Stunt Car Racer (1) +## Stunt Car Racer [1] - Inspired entries: Stunt Car Racer Remake -## Stunts (1) +## Stunts [1] - Inspired entries: Ultimate Stunts -## SunDog: Frozen Legacy (2) +## SunDog: Frozen Legacy [2] - Inspired entries: sundog, SunDog Resurrection -## Supaplex (3) +## Supaplex [3] - Inspired entries: Rocks'n'Diamonds, splexhd, Supaxl -## Super Cars (1) +## Super Cars [1] - Inspired entries: Supercars III -## Super Foul Egg (1) +## Super Foul Egg [1] - Inspired entries: SuperFoulEgg -## Super Hexagon (1) +## Super Hexagon [1] - Inspired entries: Open Hexagon -## Super Mario (4) +## Super Mario [4] - Inspired entries: Mario Objects, Mega Mario, SuperTux, uMario -## Super Methane Brothers (2) +## Super Methane Brothers [2] - Inspired entries: Super Methane Brothers, super-methane-brothers-gx -## Super Metroid (1) +## Super Metroid [1] - Inspired entries: Hexoshi -## Super Monkey Ball (4) +## Super Monkey Ball [4] - Inspired entries: irrlamb, Neverball, Nuncabola, Veraball -## Super Smash Bros. (2) +## Super Smash Bros. [2] - Inspired entries: Super Tilt Bro, TUSSLE -## Supreme Commander (1) +## Supreme Commander [1] - Inspired entries: Zero-K -## Survivor 1986 (1) +## Survivor (1986) [1] - Inspired entries: Survivor -## Swing (1) +## Swing [1] - Inspired entries: XSwing Plus -## Syndicate (1) +## Syndicate [1] - Inspired entries: FreeSynd -## Syndicate Wars (1) +## Syndicate Wars [1] - Inspired entries: Syndicate Wars Port -## System Shock (1) +## System Shock [1] - Inspired entries: Shockolate -## System's Twilight (1) +## System's Twilight [1] - Inspired entries: System Syzygy -## Taiko no Tatsujin (1) +## Taiko no Tatsujin [1] - Inspired entries: osu! -## Team Fortress 2 (2) +## Team Fortress 2 [2] - Inspired entries: Gang Garrison 2, Open Fortress -## Tempest (1) +## Tempest [1] - Inspired entries: Arashi-JS -## Terraria (2) +## Terraria [2] - Inspired entries: LastTry, terrarium -## Test Drive (1) +## Test Drive [1] - Inspired entries: OpenGL Test Drive Remake -## Tetris (9) +## Tetris [9] - Inspired entries: 4D-TRIS, Hextris, Just another Tetris™ clone, NullpoMino, OpenBlok, Quadrapassel, Spludlow Tetris, Tetris (in C and NCURSES), vitetris -## Tetris Attack (4) +## Tetris Attack [4] - Inspired entries: Block Attack - Rise of the Blocks, Crack Attack!, FreeBlocks, Panel Attack -## The Battle for Wesnoth (1) +## The Battle for Wesnoth [1] - Inspired entries: Lords of the Fey -## The Binding of Isaac (2) +## The Binding of Isaac [2] - Inspired entries: Paper Isaac, Witch Blast -## The Castles of Dr. Creep (1) +## The Castles of Dr. Creep [1] - Inspired entries: The Castles of Dr. Creep -## The Clue! (1) +## The Clue! [1] - Inspired entries: Der Clou! -## The Elder Scrolls II: Daggerfall (1) +## The Elder Scrolls II: Daggerfall [1] - Inspired entries: Daggerfall Unity -## The Elder Scrolls III: Morrowind (3) +## The Elder Scrolls III: Morrowind [3] - Inspired entries: OpenMW, OpenMW for Android, TES3MP -## The Elder Scrolls: Arena (1) +## The Elder Scrolls: Arena [1] - Inspired entries: OpenTESArena -## The Great Giana Sisters (1) +## The Great Giana Sisters [1] - Inspired entries: OpenGGS -## The Incredible Machine series (1) +## The Incredible Machine series [1] - Inspired entries: The Butterfly Effect -## The Legend of Zelda: The Wind Waker (1) +## The Legend of Zelda: The Wind Waker [1] - Inspired entries: Wind Waker Randomizer -## The Lost Vikings (1) +## The Lost Vikings [1] - Inspired entries: freeVikings -## The Oregon Trail (1) +## The Oregon Trail [1] - Inspired entries: The-Trail -## The Settlers (1) +## The Settlers [1] - Inspired entries: Freeserf -## The Settlers II (2) +## The Settlers II [2] - Inspired entries: Return to the Roots, Widelands -## The Settlers III (1) +## The Settlers III [1] - Inspired entries: JSettlers -## The Sims (2) +## The Sims [2] - Inspired entries: FreeSims, Simitone -## The Sims Online (2) +## The Sims Online [2] - Inspired entries: FreeSO, Project Dollhouse -## Theme Hospital (1) +## Theme Hospital [1] - Inspired entries: CorsixTH -## Theme Park (1) +## Theme Park [1] - Inspired entries: Theme Park Builder 3D CAD -## Thief (1) +## Thief [1] - Inspired entries: The Dark Mod -## Thrust (1) +## Thrust [1] - Inspired entries: Thrust -## Tiny Wings (1) +## Tiny Wings [1] - Inspired entries: Tiny Wings -## Titus the Fox (1) +## Titus the Fox [1] - Inspired entries: OpenTitus -## Tomb Raider (3) +## Tomb Raider [3] - Inspired entries: OpenLara, OpenRaider, OpenTomb -## Tomb Raider Chronicles (1) +## Tomb Raider Chronicles [1] - Inspired entries: TOMB5 -## Toobz (1) +## Toobz [1] - Inspired entries: Marblez -## Total Annihilation (3) +## Total Annihilation [3] - Inspired entries: Spring, Total Annihilation 3D, Zero-K -## Touhou (1) +## Touhou [1] - Inspired entries: Taisei Project -## TrackMania (2) +## TrackMania [2] - Inspired entries: ManiaDrive, Stunt Rally -## Transball (1) +## Transball [1] - Inspired entries: Super Transball 2 -## Transport Tycoon (3) +## Transport Tycoon [3] - Inspired entries: OpenTTD, Simutrans, TTDPatch -## Tremulous (1) +## Tremulous [1] - Inspired entries: Tremfusion -## Tricky Towers (1) +## Tricky Towers [1] - Inspired entries: Tumbly Towers -## Triple Triad (1) +## Triple Triad [1] - Inspired entries: OpenTriad -## Tron (1) +## Tron [1] - Inspired entries: Pink Pony -## Turmoil (1) +## Turmoil [1] - Inspired entries: Data Storm -## Turok (1) +## Turok [1] - Inspired entries: TurokEX -## TuxRacer (1) +## TuxRacer [1] - Inspired entries: Extreme Tux Racer -## Tyrian (2) +## Tyrian [2] - Inspired entries: OpenTyrian, Tyrian Remake -## UFO: Enemy Unknown (6) +## UFO: Enemy Unknown [6] - Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar -## Ugh! (1) +## Ugh! [1] - Inspired entries: CaveExpress -## Ultima IV (1) +## Ultima III: Exodus [2] + +- Inspired entries: Anteform, Minima + +## Ultima IV [1] - Inspired entries: xu4 -## Ultima Online (2) +## Ultima Online [2] - Inspired entries: CrossUO, Iris2 -## Ultima series (1) +## Ultima series [1] - Inspired entries: Haxima -## Ultima VI (1) +## Ultima VI [1] - Inspired entries: Nuvie -## Ultima VII (1) +## Ultima VII [1] - Inspired entries: Exult -## Ultima VIII (1) +## Ultima VII: The Black Gate [1] + +- Inspired entries: Exult + +## Ultima VIII [1] - Inspired entries: Pentagram -## Ultima: Worlds of Adventure 2: Martian Dreams (1) +## Ultima: Worlds of Adventure 2: Martian Dreams [1] - Inspired entries: Nuvie -## UltraStar Deluxe (1) +## UltraStar Deluxe [1] - Inspired entries: Vocaluxe -## Uninvited (1) +## Uninvited [1] - Inspired entries: uninvited -## Urban Assault (1) +## Urban Assault [1] - Inspired entries: UA_source -## Urho3D (1) +## Urho3D [1] - Inspired entries: Alimer -## Visual Pinball (1) +## Visual Pinball [1] - Inspired entries: Visual Pinball -## Vlak (1) +## Vlak [1] - Inspired entries: Train -## VVVVVV (1) +## VVVVVV [1] - Inspired entries: WWW -## Warcraft II (2) +## Warcraft II [2] - Inspired entries: Dark Oberon, Wargus -## Warcraft: Orcs & Humans (1) +## Warcraft: Orcs & Humans [1] - Inspired entries: warcraft-remake -## Wario Land 3 (1) +## Wario Land 3 [1] - Inspired entries: Wario-Land-3 -## Warlords II (1) +## Warlords II [1] - Inspired entries: FreeLords -## Warrior Kings (1) +## Warrior Kings [1] - Inspired entries: wkbre -## Warsong (1) +## Warsong [1] - Inspired entries: The Battle for Wesnoth -## Warzone 2100 (1) +## Warzone 2100 [1] - Inspired entries: Warzone 2100 -## Webhangman (1) +## Webhangman [1] - Inspired entries: Pendumito -## What the Box (1) +## What the Box [1] - Inspired entries: Killer Crates -## Where in the World Is Carmen Sandiego? 1985 (1) +## Where in the World Is Carmen Sandiego? (1985) [1] - Inspired entries: thiefcatcher -## Wing Commander: Privateer (1) +## Wing Commander: Privateer [1] - Inspired entries: Privateer - Gemini Gold -## Wipeout (4) +## Wipeout [4] - Inspired entries: Ecksdee, H-Craft Championship, HexGL, The Rush -## Wizard of Wor (1) +## Wizard of Wor [1] - Inspired entries: KnightOfWor -## Wizardry (1) +## Wizardry [1] - Inspired entries: Wizardry Legacy -## Wolfenstein 3D (1) +## Wolfenstein 3D [1] - Inspired entries: ECWolf -## Wolfenstein: Enemy Territory (1) +## Wolfenstein: Enemy Territory [1] - Inspired entries: ET: Legacy -## Worlds of Ultima: The Savage Empire (1) +## Worlds of Ultima: The Savage Empire [1] - Inspired entries: Nuvie -## Worms Series (2) +## Worms Series [2] - Inspired entries: Hedgewars, WarMUX -## X-COM: Apocalypse (6) +## X-COM: Apocalypse [6] - Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar -## X-COM: Terror from the Deep (6) +## X-COM: Terror from the Deep [6] - Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar -## X-COM: UFO Defense (6) +## X-COM: UFO Defense [6] - Inspired entries: Open Apocalypse, OpenXcom, UFO2000, UFO: Alien Invasion, X-Force: Fight For Destiny, Xenowar -## XKobo (1) +## XKobo [1] - Inspired entries: Kobo Deluxe -## Xonotic (1) +## Xonotic [1] - Inspired entries: Chaos Esque Anthology -## XOR (1) +## XOR [1] - Inspired entries: XorCurses -## XPilot (1) +## XPilot [1] - Inspired entries: XPilot NG -## Z (2) +## Z [2] - Inspired entries: Zed Online, Zod Engine -## Zarch (1) +## Zarch [1] - Inspired entries: Ajax3d -## Zork (1) +## Zork [1] - Inspired entries: zorkClone -## Zuma (1) +## Zuma [1] - Inspired entries: Zaz +## ZZT [8] + +- Inspired entries: DreamZZT, KevEdit, Reconstruction of ZZT, Roton, RuZZT, Tyger, Zeta, zztgo +