sorting of developer names

This commit is contained in:
Trilarion 2021-01-13 14:15:53 +01:00
parent 023ca7e9f0
commit c6997c8a7a
710 changed files with 803 additions and 725 deletions

View File

@ -15,6 +15,14 @@ http://haxepunk.com/
http://hcsoftware.sourceforge.net/jason-rohrer/ (various games there)
http://hge.relishgames.com/
http://hgm.nubati.net/
https://en.wikipedia.org/wiki/Catacomb_(video_game) (released under GNU)
https://github.com/JCWasmx86/Conquer
https://github.com/SaeruHikari/SakuraEngine
https://github.com/zhangdoa/InnocenceEngine
https://github.com/septag/rizz
https://github.com/EvilPudding/candle
https://github.com/TorqueGameEngines/Torque3D
https://github.com/polymonster/pmtech
http://icculus.org/
http://icculus.org/asciiroth/
http://icculus.org/avp/

View File

@ -25,7 +25,7 @@ name_aliases = {'Andreas Rosdal': 'Andreas Røsdal', 'davefancella': 'Dave Fance
'buginator': 'Buginator', 'CiprianKhlud': 'Ciprian Khlud', 'dericpage': 'Deric Page',
'DI Murat Sari': 'Murat Sari', 'DolceTriade': 'Dolce Triade', 'DreamingPsion': 'Dreaming Psion',
'edwardlii': 'Edward Lii', 'erik-vos': 'Erik Vos', 'joevenzon': 'Joe Venzon', 'noamgat': 'Noam Gat',
'Dr. Martin Brumm': 'Martin Brumm'}
'Dr. Martin Brumm': 'Martin Brumm', 'South Bound Apps (Android)': 'South Bound Apps'}
def collect_github_entries():

View File

@ -39,7 +39,7 @@ class DevelopersMaintainer:
for other_name in developer_names[index + 1:]:
if osg.name_similarity(str.casefold(name), str.casefold(other_name)) > 0.85:
print(' {} - {} is similar'.format(name, other_name))
print('duplicates checked (took {:.3f}s)'.format(time.process_time()-start_time))
print('duplicates checked (took {:.1f}s)'.format(time.process_time()-start_time))
def check_for_orphans(self):
if not self.developers:

View File

@ -7,9 +7,8 @@ Sorts the entries in the contents files of each sub folder alphabetically.
"""
# TODO check for within an entry for similar dev names
# TODO special mode (load all and safe all)
# TODO sort devs alphabetically upon save (if not done yet)
# TODO statistics on git repositories (created, stars, forks) and meaningful categories
# TODO wikipedia (media search)
# TODO google search (for homepages or media entries) for popular ones at least
import os
import re
@ -864,13 +863,46 @@ class EntriesMaintainer:
print('entries not yet loaded')
return
# cvs without any git
# collect statistics on git repositories
created = {}
stars = []
forks = []
for entry in self.entries:
repos = entry['Code repository']
cvs = [repo for repo in repos if 'cvs' in repo]
git = [repo for repo in repos if 'git' in repo]
if len(cvs) > 0 and len(git) == 0:
print('Entry "{}" with repos: {}'.format(entry['File'], repos))
comments = [x.comment for x in repos if x.value.startswith('https://github.com/') and x.comment]
for comment in comments:
comment = comment.split(',')
comment = [c.strip() for c in comment]
comment = [c for c in comment if c.startswith('@')]
if comment:
try:
comment = [c.split(' ') for c in comment]
comment = [c[1] for c in comment if len(c) > 1]
except Exception:
print(comment)
raise
created[comment[0]] = created.get(comment[0], 0) + 1
stars.append(comment[1])
forks.append(comment[2])
for key, value in sorted(created.items(), key=lambda x: x[0]):
print("{} : {}".format(key, value))
import numpy as np
np.set_printoptions(suppress=True)
stars = np.array(stars, dtype=np.float)
forks = np.array(forks, dtype=np.float)
q = np.arange(0, 1, 0.1)
print(np.quantile(stars, q))
print(np.quantile(forks, q))
# # cvs without any git
# for entry in self.entries:
# repos = entry['Code repository']
# cvs = [repo for repo in repos if 'cvs' in repo]
# git = [repo for repo in repos if 'git' in repo]
# if len(cvs) > 0 and len(git) == 0:
# print('Entry "{}" with repos: {}'.format(entry['File'], repos))
# # combine content keywords
# n = len('content ')

View File

@ -2,11 +2,17 @@
Maintenance of inspirations.md and synchronization with the inspirations in the entries.
"""
from utils import osg, osg_ui
# TODO wikipedia search and match
# TODO mark those that are contained in the database
# TODO search fandom
import time
from utils import osg, osg_ui, osg_wikipedia
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',
'RollerCoaster Tycoon', 'Star Wars Jedi Knight', 'The Settlers', 'Ultima', 'Ship Simulator')
'RollerCoaster Tycoon', 'Star Wars Jedi Knight', 'The Settlers', 'Ultima', 'Ship Simulator', 'Prince of Persia',
'Panzer General', 'LBreakout', 'Jagged Alliance')
class InspirationMaintainer:
@ -30,14 +36,15 @@ class InspirationMaintainer:
if not self.inspirations:
print('inspirations not yet loaded')
return
start_time = time.process_time()
inspiration_names = list(self.inspirations.keys())
for index, name in enumerate(inspiration_names):
for other_name in inspiration_names[index + 1:]:
if any((name.startswith(x) and other_name.startswith(x) for x in valid_duplicates)):
continue
if osg.name_similarity(name, other_name) > 0.8:
if osg.name_similarity(str.casefold(name), str.casefold(other_name)) > 0.9:
print(' {} - {} is similar'.format(name, other_name))
print('duplicates checked')
print('duplicates checked took {:.1f}s'.format(time.process_time()-start_time))
def check_for_orphans(self):
if not self.inspirations:
@ -75,7 +82,28 @@ class InspirationMaintainer:
for inspiration in self.inspirations.values():
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
inspiration['Media'] = inspiration.get('Media', []) + [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_inspired_entries(self):
if not self.inspirations:
@ -113,6 +141,7 @@ if __name__ == "__main__":
'Check for duplicates': m.check_for_duplicates,
'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 inspirations from entries': m.update_inspired_entries,
'Read entries': m.read_entries
}

View File

@ -458,7 +458,7 @@ def create_entry_content(entry):
# we automatically sort some fields
sort_fun = lambda x: str.casefold(x.value)
for field in ('Media', 'Inspiration', 'Code Language'):
for field in ('Media', 'Inspiration', 'Code Language', 'Developer', 'Build system'):
if field in entry:
values = entry[field]
entry[field] = sorted(values, key=sort_fun)

View File

@ -4,6 +4,7 @@ Using https://github.com/goldsmith/Wikipedia
"""
import wikipedia
wikipedia.set_lang('en') # just in case that isn't so already
def search(search_term, results=3):
@ -13,4 +14,12 @@ def search(search_term, results=3):
:param max_results:
:return:
"""
return wikipedia.search(search_term, results=results)
return wikipedia.search(search_term, results=results)
def pages(titles):
pages = []
for title in titles:
page = wikipedia.page(title, auto_suggest=False)
pages.append(page)
return pages

View File

@ -50510,7 +50510,7 @@
- Games: Cataclysm: Dark Days Ahead
- Contact: Soup-de-Loop@GH
## South Bound Apps (Android) [1]
## South Bound Apps [1]
- Games: Memory Game
- Contact: soboapps@GH

View File

@ -12,7 +12,7 @@
- Code license: GPL-2.0
- Code dependency: libogg, libvorbis, libxml2, OpenAL, SDL2, zlib
- Assets license: CC-BY-SA-3.0
- Developer: Erik Johansson, Ben Brian, Nicolas Auvray, Philip Taylor, Lancelot de Ferrière, s0600204, Kieran Pilkington, leper, Pureon
- Developer: Ben Brian, Erik Johansson, Kieran Pilkington, Lancelot de Ferrière, leper, Nicolas Auvray, Philip Taylor, Pureon, s0600204
Engine part is called Pyrogenesis.

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/2006rebotted/2006rebotted.git (@created 2019, @stars 65, @forks 119)
- Code language: Java
- Code license: 2-clause BSD
- Developer: Daniel Ginovker, Danial, Mr Extremez, Josh Shippam, Gptaqbc, Olivier, Damion, Ben Maher, DPSCryptic, MitchvanWijngaarden, Arisu, Sandro Coutinho
- Developer: Arisu, Ben Maher, Damion, Danial, Daniel Ginovker, DPSCryptic, Gptaqbc, Josh Shippam, MitchvanWijngaarden, Mr Extremez, Olivier, Sandro Coutinho
Remake of Runescape Classic.
Open source 2006 Runescape emulation with botting.

View File

@ -9,7 +9,7 @@
- Code language: JavaScript, Java
- Code license: MIT
- Assets license: MIT (very few assets)
- Developer: Gabriele Cirulli, Laurent, Jerry Jiang (Android port), sigod, Tim Petricola, Lee Reilly, Paul Woitaschek
- Developer: Gabriele Cirulli, Jerry Jiang (Android port), Laurent, Lee Reilly, Paul Woitaschek, sigod, Tim Petricola
Sliding block puzzle game.
Port to Android: https://github.com/tpcstld/2048

View File

@ -9,7 +9,7 @@
- Code language: C++
- Code license: GPL-2.0
- Code dependency: SDL
- Developer: Piwai, Kayl
- Developer: Kayl, Piwai
Mix between a Tetris-like game and a wall breaker.

View File

@ -8,6 +8,6 @@
- Code repository: https://github.com/jkroepke/2Moons.git (archived, @archived, @created 2015, @stars 133, @forks 102), https://github.com/steemnova/steemnova.git @add (@created 2018, @stars 50, @forks 49)
- Code language: PHP, JavaScript
- Code license: MIT
- Developer: Jan-Otto Kröpke, Ozan Kurt, Hilarious001, bergi9, tatarysh, mys, IntinteDAO, Adam Jordanek, Flugschwein, Roberto, Martin, Gregario Mansa, Ravikin, sarmaticus, z3ll1337, Pope19, Casey Parker, louis88, donpepe0
- Developer: Adam Jordanek, bergi9, Casey Parker, donpepe0, Flugschwein, Gregario Mansa, Hilarious001, IntinteDAO, Jan-Otto Kröpke, louis88, Martin, mys, Ozan Kurt, Pope19, Ravikin, Roberto, sarmaticus, tatarysh, z3ll1337
## Building

View File

@ -8,6 +8,6 @@
- Code license: GPL-2.0
- Code dependency: libx, libxpm, xaw3dg
- Assets license: GPL-2.0
- Developer: Paul Hicks, Bernard Kennedy
- Developer: Bernard Kennedy, Paul Hicks
## Building

View File

@ -3,7 +3,7 @@
- Home: http://www.urticator.net/maze/
- State: mature, inactive since 2008
- Platform: Windows, Linux, macOS
- Keyword: puzzle, 4D, content none, maze, educational
- Keyword: educational, puzzle, 4D, content none, maze
- Code repository: @see-home
- Code language: Java
- Code license: Public domain

View File

@ -9,7 +9,7 @@
- Code language: C
- Code license: GPL-2.0
- Code dependency: SDL
- Developer: Gabor Torok, Pedro Izecksohn, Alex Clark
- Developer: Alex Clark, Gabor Torok, Pedro Izecksohn
## Building

View File

@ -6,7 +6,7 @@
- Code repository: https://github.com/AdaDoom3/AdaDoom3.git (@created 2013, @stars 207, @forks 23)
- Code language: Ada
- Code license: GPL-3.0
- Developer: AdaDoom3, Adrian-Ken Rueegsegger, mulander, OneWingedShark, Michael Hardeman
- Developer: AdaDoom3, Adrian-Ken Rueegsegger, Michael Hardeman, mulander, OneWingedShark
Id Software's Id-tech-4-BFG ported to Ada

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/ValHaris/asc-hq.git (@created 2019, @stars 11, @forks 2)
- Code language: C++
- Code license: GPL-2.0
- Developer: Martin Bickel, Christian Schramm, valuial, Armin Bajramovic, Dorfdrull, Michael Moerz, Frederik Kesting, Torsten Maekler, ValHaris
- Developer: Armin Bajramovic, Christian Schramm, Dorfdrull, Frederik Kesting, Martin Bickel, Michael Moerz, Torsten Maekler, ValHaris, valuial
## Building

View File

@ -9,7 +9,7 @@
- Code language: C, Scheme
- Code license: GPL-3.0
- Assets license: GPL-3.0
- Developer: Thomas H. P. Andersen, Esme, dmustieles, Marv-CZ, Robert Ancell, Jason D. Clinton, Miloslav Trmač, Piotr Drąg, Matej, Fran Diéguez, Claude Paroz, Jordi Mas, Ivar Smolin, Daniel Nylander, kelemeng, Ask Hjorth Larsen, Anders Jonsson, pesder, Milo Casagrande, Iñaki Larrañaga Murgoitio, aurisc4, Tim Horton, Changwoo Ryu, Yuri Myasoedov, tmtfx, Gil Forcada Codinachs, Jeremy Bicha, mirosnik1, Andika Triwidada, nma-2009, Uyghur, Danylo Korostil, Ihar Hrachyshka, Takeshi Aihana, Tom Tryfonidis, Yaron Shahrabani, Dmytro-bit, annoab, Branko Kokanovic, Dušan Kazik, Leonardo Ferreira Fontenelle, William Jon McCann, Andre Klapper, Kristjan, gogogogi, Rūdolfs Mazurs, Alexander Shopov, Christian Kirbach, dmtrs32, Vincent Untz, Bruce Cowan, Cedric Valmary, Petr Kovar, Alexandre Franke, dasj19, enrico-br, Javier Jardón, etkinator, Philip Withnall, Rafael Fontenelle, Stéphane Raimbault, Sveinn í Felli, Ville-Pekka Vainio, Yanko Kaneti, Yuri Chornoivan, Jan Kyselica, sicklylife.jp
- Developer: Alexander Shopov, Alexandre Franke, Anders Jonsson, Andika Triwidada, Andre Klapper, annoab, Ask Hjorth Larsen, aurisc4, Branko Kokanovic, Bruce Cowan, Cedric Valmary, Changwoo Ryu, Christian Kirbach, Claude Paroz, Daniel Nylander, Danylo Korostil, dasj19, dmtrs32, dmustieles, Dmytro-bit, Dušan Kazik, enrico-br, Esme, etkinator, Fran Diéguez, Gil Forcada Codinachs, gogogogi, Ihar Hrachyshka, Ivar Smolin, Iñaki Larrañaga Murgoitio, Jan Kyselica, Jason D. Clinton, Javier Jardón, Jeremy Bicha, Jordi Mas, kelemeng, Kristjan, Leonardo Ferreira Fontenelle, Marv-CZ, Matej, Milo Casagrande, Miloslav Trmač, mirosnik1, nma-2009, pesder, Petr Kovar, Philip Withnall, Piotr Drąg, Rafael Fontenelle, Robert Ancell, Rūdolfs Mazurs, sicklylife.jp, Stéphane Raimbault, Sveinn í Felli, Takeshi Aihana, Thomas H. P. Andersen, Tim Horton, tmtfx, Tom Tryfonidis, Uyghur, Ville-Pekka Vainio, Vincent Untz, William Jon McCann, Yanko Kaneti, Yaron Shahrabani, Yuri Chornoivan, Yuri Myasoedov
Collection of patience games.

View File

@ -1,7 +1,7 @@
# Aleph One
- Home: https://alephone.lhowon.org/, https://github.com/Aleph-One-Marathon/alephone/wiki, https://sourceforge.net/projects/marathon/
- Inspiration: Marathon, Marathon 2, Marathon Infinity
- Inspiration: Marathon, Marathon 2: Durandal, Marathon Infinity
- State: mature
- Download: https://sourceforge.net/projects/marathon/files/
- Platform: Windows, Linux, macOS
@ -9,7 +9,7 @@
- Code repository: https://github.com/Aleph-One-Marathon/alephone.git (@created 2015, @stars 291, @forks 58), https://svn.code.sf.net/p/marathon/code (svn)
- Code language: C++, Lua
- Code license: GPL-3.0
- Developer: Christian Bauer, Jeremiah Morris, Jesse Simko, Loren Petrich, Alexander Strange, Gregory Smith, Aaron Davies, Jeremy Parsons, Catherine Seppanen, Daniel Blezek, hogdotmac, Jason Yates, Mike Benonis, Michael D. Adams, Nigel, Alexei Svitkine, Solra Bizna, 0xMk, Chris Hellberg, Chris Hallock, Benoît Hauquier, TrajansRow, darealshinji, Joshua Scoggins
- Developer: 0xMk, Aaron Davies, Alexander Strange, Alexei Svitkine, Benoît Hauquier, Catherine Seppanen, Chris Hallock, Chris Hellberg, Christian Bauer, Daniel Blezek, darealshinji, Gregory Smith, hogdotmac, Jason Yates, Jeremiah Morris, Jeremy Parsons, Jesse Simko, Joshua Scoggins, Loren Petrich, Michael D. Adams, Mike Benonis, Nigel, Solra Bizna, TrajansRow
Continuation of Bungie's Marathon 2 FPS game engine.

View File

@ -10,7 +10,7 @@
- Code license: GPL-2.0
- Code dependency: Allegro
- Assets license: GPL-2.0
- Developer: Johan Peitz (design, source code, graphics), Anders Svensson (music, sound effects), Paul Wise
- Developer: Anders Svensson (music, sound effects), Johan Peitz (design, source code, graphics), Paul Wise
Retro-style platformer.

View File

@ -9,6 +9,6 @@
- Code language: C++
- Code license: MIT
- Code dependency: SDL2
- Developer: Paul, d3nwah, Michael Grima, mouzedrift, UltraStars3000, pryon, THEONLYDarkShadow, L. P., GproKaru, Kari1993, FrozenFish24, Jay Peet
- Developer: d3nwah, FrozenFish24, GproKaru, Jay Peet, Kari1993, L. P., Michael Grima, mouzedrift, Paul, pryon, THEONLYDarkShadow, UltraStars3000
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/liballeg/allegro5.git (@created 2010, @stars 1106, @forks 209)
- Code language: C
- Code license: zlib
- Developer: allefant, Trent Gamblin, Pavel Sountsov, SiegeLord, Jon Rafkind, Sebastian Krzyszkowiak, Peter Hull, Beoran, Julian Smythe, Bruce Pascoe, Andreas Rönnquist, elias-pschernig, Ryan Roden-Corrent, Bill Quith, Aldrik Ramaekers, mhenschel, Doug Thompson, Bruno Félix Rezende Ribeiro, Zorro, tobing65, Fırat Salgür, Jonathan Lilliemarck, Karthik Kumar Viswanathan, Orangeyness, Boris Carvajal, Jonathan Seeley, wangp, Rm Beer, Rodolfo Borges, Mark Oates
- Developer: Aldrik Ramaekers, allefant, Andreas Rönnquist, Beoran, Bill Quith, Boris Carvajal, Bruce Pascoe, Bruno Félix Rezende Ribeiro, Doug Thompson, elias-pschernig, Fırat Salgür, Jon Rafkind, Jonathan Lilliemarck, Jonathan Seeley, Julian Smythe, Karthik Kumar Viswanathan, Mark Oates, mhenschel, Orangeyness, Pavel Sountsov, Peter Hull, Rm Beer, Rodolfo Borges, Ryan Roden-Corrent, Sebastian Krzyszkowiak, SiegeLord, tobing65, Trent Gamblin, wangp, Zorro
## Building

View File

@ -10,7 +10,7 @@
- Code license: AGPL-3.0
- Code dependency: LambdaHack, SDL
- Assets license: AGPL-3.0
- Developer: Mikolaj Konarski, Andres Löh, Dan Keefe
- Developer: Andres Löh, Dan Keefe, Mikolaj Konarski
Sci-Fi roguelike and tactical squad combat game.

View File

@ -8,6 +8,6 @@
- Code license: GPL-2.0
- Code dependency: SDL
- Assets license: GPL
- Developer: Jonas Spillmann, Lukas Löhrer, Patrick J. Naughton, Chris Laurel
- Developer: Chris Laurel, Jonas Spillmann, Lukas Löhrer, Patrick J. Naughton
## Building

View File

@ -7,7 +7,7 @@
- Code language: C
- Code license: GPL-2.0
- Assets license: GPL-2.0
- Developer: Colm Gallagher, Alan Grier, Thomas Plunkett, Toby A. Inkster, Shard
- Developer: Alan Grier, Colm Gallagher, Shard, Thomas Plunkett, Toby A. Inkster
Find as many words as possible in the time available.

View File

@ -9,6 +9,6 @@
- Code language: JavaScript
- Code license: AGPL-3.0
- Code dependency: Phaser
- Developer: Dread Knight, Clément Foucault, Cong, Karl Tiedt, Robin Van den Broeck, Caleb Joseph, Tristan Kernan, Archiboldian Cartheniscope, nemui, Shane Walsh, BLBLBL, TheSeally, leopoldwe, Sebastian Lugo, Calvin , SlimeTP, yoel123, Max0nyshchenko, Ray Nathan Low, Sean Diamond, Henrik Aarnio, Bruce Olivier, Matt Horning, Janne, Willian Gustavo Veiga, randompast, Raul Humberto Lopez Lopez, Spencer Zhang, Jordan Barnes, marcel-odya, Patryk Bieszke, CameronFoss, Ignacio Cartes, James Archbold, Tilman Raendchen, vampiressae, ChengYuuu, Dusty Williams, Kaylina Savela, zaryanz
- Developer: Archiboldian Cartheniscope, BLBLBL, Bruce Olivier, Caleb Joseph, Calvin, CameronFoss, ChengYuuu, Clément Foucault, Cong, Dread Knight, Dusty Williams, Henrik Aarnio, Ignacio Cartes, James Archbold, Janne, Jordan Barnes, Karl Tiedt, Kaylina Savela, leopoldwe, marcel-odya, Matt Horning, Max0nyshchenko, nemui, Patryk Bieszke, randompast, Raul Humberto Lopez Lopez, Ray Nathan Low, Robin Van den Broeck, Sean Diamond, Sebastian Lugo, Shane Walsh, SlimeTP, Spencer Zhang, TheSeally, Tilman Raendchen, Tristan Kernan, vampiressae, Willian Gustavo Veiga, yoel123, zaryanz
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/Zukero/andors-trail.git (@created 2013, @stars 126, @forks 75)
- Code language: Java
- Code license: GPL-2.0
- Developer: Oskar Wiksten, Nut, Firefly130984, Zukero, Richard, Hummus Samurai, Olivier Dragon, Ian Haase, Allan Nordhøy, Mauro Carvalho Chehab, Zizkin, "Weblate (bot)", Lunovox, Moerit, Moonbood, satanas99, Valentin, finnomeno, Silvério Santos, Xaver-Entropia, David García Garzón, Lucas Delvallet, fifa1988, Satnam S Virdi, Scott Devaney, Viktar Vaŭčkievič, Anderson Nogueira, carceris-magister, Michael L., Bervianto Leo Pratama, Chriz76, Heimen Stoffels, sosozozo, Jiri Daněk, osoitz, Wuerfelbruder
- Developer: Allan Nordhøy, Anderson Nogueira, Bervianto Leo Pratama, carceris-magister, Chriz76, David García Garzón, fifa1988, finnomeno, Firefly130984, Heimen Stoffels, Hummus Samurai, Ian Haase, Jiri Daněk, Lucas Delvallet, Lunovox, Mauro Carvalho Chehab, Michael L., Moerit, Moonbood, Nut, Olivier Dragon, Oskar Wiksten, osoitz, Richard, satanas99, Satnam S Virdi, Scott Devaney, Silvério Santos, sosozozo, Valentin, Viktar Vaŭčkievič, "Weblate (bot)", Wuerfelbruder, Xaver-Entropia, Zizkin, Zukero
Quest-driven roguelike fantasy dungeon crawler RPG with a powerful story.

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/jcarolus/android-chess.git (@created 2014, @stars 258, @forks 187)
- Code language: Java, C++
- Code license: MIT
- Developer: Jeroen Carolus, TimmyT123, Alessandro Dal Bello, alondene, Brainsucker92
- Developer: Alessandro Dal Bello, alondene, Brainsucker92, Jeroen Carolus, TimmyT123
## Building

View File

@ -9,7 +9,7 @@
- Code language: C
- Code license: GPL-2.0
- Code dependency: SDL
- Developer: Nick McConnell, Anna Sidwell, Chris Carr, Erik Osheim, backwardsEric, Peter Denison, fizzix, Ben Semmler, ajps, David Barr, Kusunose Toru, Tim Schumacher, Mikolaj Konarski, artes-liberales, Alex Mooney, Colin Woodbury, Dag Arneson, pete-mack, Bardur Arantsson, CJNyfalt, LostTemplar, jenschou, 3m4r, Cuboideb, kjfletch, David Medley, ridiculousfish, Eastwind921, LuthienCeleste, Ryan Schmidt, Spenser Black, sulkasormi
- Developer: 3m4r, ajps, Alex Mooney, Anna Sidwell, artes-liberales, backwardsEric, Bardur Arantsson, Ben Semmler, Chris Carr, CJNyfalt, Colin Woodbury, Cuboideb, Dag Arneson, David Barr, David Medley, Eastwind921, Erik Osheim, fizzix, jenschou, kjfletch, Kusunose Toru, LostTemplar, LuthienCeleste, Mikolaj Konarski, Nick McConnell, pete-mack, Peter Denison, ridiculousfish, Ryan Schmidt, Spenser Black, sulkasormi, Tim Schumacher
Single-player dungeon exploration game.

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/anura-engine/anura.git (@created 2013, @stars 308, @forks 63)
- Code language: C, C++
- Code license: zlib (src folder)
- Developer: davewx7, Kristina Simpson, David Roberts, Richard Kettering, garbageslam, galegosimpatico, Joni Orponen, Yaohan Chen, anura-worker, Autofire, Alexander van Gessel, marcavis, Anthony J. Bentley
- Developer: Alexander van Gessel, Anthony J. Bentley, anura-worker, Autofire, davewx7, David Roberts, galegosimpatico, garbageslam, Joni Orponen, Kristina Simpson, marcavis, Richard Kettering, Yaohan Chen
Engine for Frogatto and Friends.

View File

@ -8,7 +8,7 @@
- Code license: GPL-2.0
- Code dependency: SDL
- Assets license: GPL
- Developer: Mark Snellgrove, Mark Harman
- Developer: Mark Harman, Mark Snellgrove
Fly an airplane, fire missiles, drop bombs, destroy enemy buildings and planes.

View File

@ -8,7 +8,7 @@
- Code language: Python
- Code license: GPL-3.0
- Code dependency: pygame
- Developer: Nathan Mills, Henry Hirsch, Elle, Miguel de Dios Matias
- Developer: Elle, Henry Hirsch, Miguel de Dios Matias, Nathan Mills
Focused not just on fighting, but on story and character development.

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/ao-libre/ao-server.git (@created 2018, @stars 33, @forks 36), https://github.com/ao-libre/ao-cliente.git @add (@created 2018, @stars 44, @forks 59), https://github.com/ao-libre/ao-worldeditor.git @add (@created 2020, @stars 1, @forks 5), http://morgoao.cvs.sourceforge.net/ (cvs)
- Code language: Visual Basic
- Code license: GPL-2.0, AGPL-3.0
- Developer: Pablo Ignacio Márquez, Amraphen, AOSecProj, Ignacio Arminas, Juan Dalmasso, BrianPr, Luciano Contartese, Mauro Segoviano, Samuel Fernandez, Jotabe, Leandro Mendoza, Marco Vanotti, Mateo, Pato, BoxStar, Lucas, Juan Martín Sotuyo Dodero, Joaquín, ReyarB, Zaxtor, Pato Torres, LoreleiArgAoLibre, Ronin, Alexis Caraballo, Neox189, cucsijuan, FrancoBenito, Fredy Treboux, Fakkerz, Natanael Andrés Garrido, Borouse, Cuicui, abusiv0, WalterSit0, Juanmz, Lautaro Marino, pLuS, Alejandro Santos
- Developer: abusiv0, Alejandro Santos, Alexis Caraballo, Amraphen, AOSecProj, Borouse, BoxStar, BrianPr, cucsijuan, Cuicui, Fakkerz, FrancoBenito, Fredy Treboux, Ignacio Arminas, Joaquín, Jotabe, Juan Dalmasso, Juan Martín Sotuyo Dodero, Juanmz, Lautaro Marino, Leandro Mendoza, LoreleiArgAoLibre, Lucas, Luciano Contartese, Marco Vanotti, Mateo, Mauro Segoviano, Natanael Andrés Garrido, Neox189, Pablo Ignacio Márquez, Pato, Pato Torres, pLuS, ReyarB, Ronin, Samuel Fernandez, WalterSit0, Zaxtor
See also: [spin-off](https://github.com/horacioMartinez/argentumonline.io), [server mod](https://sourceforge.net/projects/aoserverbyshura/).

View File

@ -7,7 +7,7 @@
- Code repository: https://git.code.sf.net/p/arianne/marauroa, http://arianne.cvs.sourceforge.net (cvs)
- Code language: Java
- Code license: GPL-2.0
- Developer: Kimmo Rundelin, Katie Russell, Hendrik Brummermann, AntumDeluge, Balaur, bleutailfly, bluelads4, filinep, Lumocra, Markus, Martin Fuchs, Laguz, monsterdhal, onu, Chris, plassy, Marcel Miebach, sjtsp2008, soniccuz, Storyteller, RedQueen, tigertoes, yoriy
- Developer: AntumDeluge, Balaur, bleutailfly, bluelads4, Chris, filinep, Hendrik Brummermann, Katie Russell, Kimmo Rundelin, Laguz, Lumocra, Marcel Miebach, Markus, Martin Fuchs, monsterdhal, onu, plassy, RedQueen, sjtsp2008, soniccuz, Storyteller, tigertoes, yoriy
Framework/engine is the Marauroa subproject.

View File

@ -9,7 +9,7 @@
- Code repository: https://gitlab.com/armagetronad/armagetronad.git, https://github.com/ArmagetronAd/armagetronad.git (@created 2019, @stars 10, @forks 2), https://svn.code.sf.net/p/armagetronad/code (svn)
- Code language: C++
- Code license: GPL-2.0
- Developer: Wrzlprnft, Dave Fancella, Fred, Manuel Moos, Andreas Bombe, Manuel Moos, blane, Charlie Head, epsy, dave iceman, Kurt Johnson, klaxnek, Menno de Bell, Luke-Jr, Alex E. Kelly, Michael Lechtermann, MocI, DLH, Philippe Villeneuve, Self_Destructo, Edmund Keefe, yarrt, Your_mom_arma, Yann Kaiser, Luke Dashjr, armanelgtron, Matías Pino
- Developer: Alex E. Kelly, Andreas Bombe, armanelgtron, blane, Charlie Head, Dave Fancella, dave iceman, DLH, Edmund Keefe, epsy, Fred, klaxnek, Kurt Johnson, Luke Dashjr, Luke-Jr, Manuel Moos, Manuel Moos, Matías Pino, Menno de Bell, Michael Lechtermann, MocI, Philippe Villeneuve, Self_Destructo, Wrzlprnft, Yann Kaiser, yarrt, Your_mom_arma
Simple action game modeled after the lightcycle sequence of the movie Tron.

View File

@ -9,7 +9,7 @@
- Code repository: https://github.com/arx/ArxLibertatis.git (@created 2011, @stars 583, @forks 91)
- Code language: C++
- Code license: GPL-3.0
- Developer: Daniel Scharrer, Eli2, Erik Lund, David Stejskal, Lubosz Sarnecki, Chris Gray, Dimoks, Philippe Cavalaria, Olzaq, adejr, Thomas L, Jonathan Powell, Frederik Gelder, Jan-Hendrik Peters, Dreamer
- Developer: adejr, Chris Gray, Daniel Scharrer, David Stejskal, Dimoks, Dreamer, Eli2, Erik Lund, Frederik Gelder, Jan-Hendrik Peters, Jonathan Powell, Lubosz Sarnecki, Olzaq, Philippe Cavalaria, Thomas L
Port of Arx Fatalis.

View File

@ -10,7 +10,7 @@
- Code language: C, C++
- Code license: Custom (zlib like)
- Code dependency: SDL
- Developer: Sebastian, flow, RandumKiwi, driAn, Rafael C. Barreto, Bukz, Lee Salzman, Mr.Floppy, GeneralDisarray, makkE, Glen Masgai, Nieb, Ronald Reagan, sireus, Cleaner, Toca, Ricky Ratzlaff, Cristian Vlasceanu, stef, Andrew D, Julian, Rick, Elliot Lockwood, Lucas Gautheron, Alejandro V. Garcia, "szyk (grenadier)", RonaldReagan, Cristian
- Developer: Alejandro V. Garcia, Andrew D, Bukz, Cleaner, Cristian, Cristian Vlasceanu, driAn, Elliot Lockwood, flow, GeneralDisarray, Glen Masgai, Julian, Lee Salzman, Lucas Gautheron, makkE, Mr.Floppy, Nieb, Rafael C. Barreto, RandumKiwi, Rick, Ricky Ratzlaff, Ronald Reagan, RonaldReagan, Sebastian, sireus, stef, "szyk (grenadier)", Toca
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/viewizard/astromenace.git (@created 2018, @stars 99, @forks 14)
- Code language: C++, C
- Code license: GPL-3.0
- Developer: Mikkhail Kurin, viewizard, Mikhail Kurinnoi, Alistair Findlay, Dmitry Marakasov
- Developer: Alistair Findlay, Dmitry Marakasov, Mikhail Kurinnoi, Mikkhail Kurin, viewizard
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/Atlantis-PBEM/Atlantis.git (@created 2011, @stars 50, @forks 31), https://svn.code.sf.net/p/atlantis/code (svn)
- Code language: C++
- Code license: GPL-2.0
- Developer: Stephen Baillie, Loriaki, T Gerigk, Enno Rehling, Artem Trytiak
- Developer: Artem Trytiak, Enno Rehling, Loriaki, Stephen Baillie, T Gerigk
PBEM Game engine which is used to create many different strategy wargames today and for the past decade.
Game engine? Implementations?

View File

@ -11,7 +11,7 @@
- Code license: GPL-2.0
- Code dependency: Allegro
- Assets license: GPL
- Developer: Jesse Smith, Juraj Michalek, Thomas Hudson, Billy Buerger, Sven Eden, CtHx Ъ, Keilaron, Neil Graeme Matthews, ubr47k
- Developer: Billy Buerger, CtHx Ъ, Jesse Smith, Juraj Michalek, Keilaron, Neil Graeme Matthews, Sven Eden, Thomas Hudson, ubr47k
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/GNOME/atomix.git (@created 2012, @stars 17, @forks 4)
- Code language: C
- Code license: GPL-2.0
- Developer: evfool, Piotr Drąg, Marv-CZ, Matej, aurisc4, Anders Jonsson, dmustieles, Thomas H. P. Andersen, Rafael Fontenelle, Alan01, kelemeng, Javier Jardón, Mario Blättermann, Yosef Or Boczko
- Developer: Alan01, Anders Jonsson, aurisc4, dmustieles, evfool, Javier Jardón, kelemeng, Mario Blättermann, Marv-CZ, Matej, Piotr Drąg, Rafael Fontenelle, Thomas H. P. Andersen, Yosef Or Boczko
A puzzle game in which you have to build full molecules.

View File

@ -7,6 +7,6 @@
- Code repository: https://gitlab.com/osgames/attal.git (backup of cvs), http://attal.cvs.sourceforge.net/ (cvs)
- Code language: C++
- Code license: GPL-2.0
- Developer: Audoux, lusum, Gilles Oppeneau, alexandre, Verrier Cyrille, Forest Darling, Quentin DUSOULIER, leyral, Raphael Goulais, Tim Felgentreff, tribunal
- Developer: alexandre, Audoux, Forest Darling, Gilles Oppeneau, leyral, lusum, Quentin DUSOULIER, Raphael Goulais, Tim Felgentreff, tribunal, Verrier Cyrille
## Building

View File

@ -11,7 +11,7 @@
- Code license: AGPL-3.0
- Code dependency: SDL2
- Assets license: Commercial
- Developer: Keriew, whgest, Bianca van Schaik, José Cadete, William Hardy Gest, devnoname120, Vittorio Mattei, HoratioVex, rsn8887, HyperJeanJean, Alexey, nwtour
- Developer: Alexey, Bianca van Schaik, devnoname120, HoratioVex, HyperJeanJean, José Cadete, Keriew, nwtour, rsn8887, Vittorio Mattei, whgest, William Hardy Gest
## Building

View File

@ -8,7 +8,7 @@
- Code language: C++
- Code license: GPL-3.0
- Code dependency: wxWidgets
- Developer: Andy Gryc, Bérenger Morel, Denis Conruyt, falerion, John Dullea, Keith Davies, Rick Crew, CALLIES Vincent, Tom Deprez, mcondon, Thomas 'Chad' Boyer, Jakim Friant, Martijn Sanders, Grzegorz Kaczorek, Josh Flachsbart, Steve-the-ripper, Mikhail Maximov
- Developer: Andy Gryc, Bérenger Morel, CALLIES Vincent, Denis Conruyt, falerion, Grzegorz Kaczorek, Jakim Friant, John Dullea, Josh Flachsbart, Keith Davies, Martijn Sanders, mcondon, Mikhail Maximov, Rick Crew, Steve-the-ripper, Thomas 'Chad' Boyer, Tom Deprez
Role playing game mapping program.

View File

@ -7,7 +7,7 @@
- Code repository: https://gitlab.com/osgames/avanor.git (backup of svn), https://svn.code.sf.net/p/avanor/code (svn)
- Code language: C++, Lua
- Code license: GPL-2.0
- Developer: Siarhei Siamashka, Vadim Gaidukevich, Brian Angeletti
- Developer: Brian Angeletti, Siarhei Siamashka, Vadim Gaidukevich
Relatively easy to win but feature rich fantasy roguelike game with a highly interactive world.

View File

@ -11,7 +11,7 @@
- Code license: GPL-3.0
- Code dependency: SDL
- Assets license: GPL-3.0
- Developer: Matthew D. Steele, Lucas O. Wagner
- Developer: Lucas O. Wagner, Matthew D. Steele
Metroidvania with vector graphics.

View File

@ -7,7 +7,7 @@
- Code language: C++
- Code license: MIT
- Code dependency: Qt
- Developer: Roger Zanoni, Ken VanDine, Rodrigo Oliveira, Tomaz Noleto, Ragner Magalhaes, Paulo Pinheiro
- Developer: Ken VanDine, Paulo Pinheiro, Ragner Magalhaes, Rodrigo Oliveira, Roger Zanoni, Tomaz Noleto
2D Game Engine for QML.

View File

@ -8,6 +8,6 @@
- Code language: C++
- Code license: GPL-3.0
- Code dependency: OpenGL, SDL2
- Developer: Ciprian, WALL OF JUSTICE, Lutz Kellen, DrWhoCares, David CARLIER, Sheridan Kane Rathbun, Pegasus Epsilon, Linus Heckemann, ptitSeb, Gilgatex, akp, Phillip Whelan
- Developer: akp, Ciprian, David CARLIER, DrWhoCares, Gilgatex, Linus Heckemann, Lutz Kellen, Pegasus Epsilon, Phillip Whelan, ptitSeb, Sheridan Kane Rathbun, WALL OF JUSTICE
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://gitlab.com/osgames/batnav.git (import of cvs), http://batnav.cvs.sourceforge.net (cvs)
- Code language: C
- Code license: GPL-2.0
- Developer: Ricardo Quesada, Jacob L. Anawalt
- Developer: Jacob L. Anawalt, Ricardo Quesada
Battleship game.

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/GaidamakUA/BatteryReborn.git (new approach, @created 2019, @stars 3, @forks 1)
- Code language: Java
- Code license: EPL-2.0 (new approach), Custom (old see _README.txt)
- Developer: Maxim Markaitis, em7em7em, Ian Gusev, Yurii Mazurevich
- Developer: em7em7em, Ian Gusev, Maxim Markaitis, Yurii Mazurevich
Control an airplane in a top-down view and shoot down enemy planes, helicopters and tanks.

View File

@ -9,7 +9,7 @@
- Code language: C++
- Code license: GPL-2.0
- Assets license: Proprietary
- Developer: Vladimir Menshakov, Methos, Vladimir Zhuravlev, Vladimir
- Developer: Methos, Vladimir, Vladimir Menshakov, Vladimir Zhuravlev
Fast 2D tank arcade game with multiplayer and split-screen modes.

View File

@ -8,6 +8,6 @@
- Code repository: https://gitlab.com/osgames/bmtactics.git (copy of source releases)
- Code language: JavaScript
- Code license: GPL-2.0
- Developer: Kevin Lemoine, Zachary Murray, Freaky Picasso, Franklin Buskirk, Morgan Smith, Tobias Theuer, Joseph Baffaro, Andrew Beal
- Developer: Andrew Beal, Franklin Buskirk, Freaky Picasso, Joseph Baffaro, Kevin Lemoine, Morgan Smith, Tobias Theuer, Zachary Murray
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://git.code.sf.net/p/biogenesis/git
- Code language: Java
- Code license: GPL-2.0
- Developer: Joan Queralt Molina, AdaM, Joan Queralt, MarcoA, Richard David Williams, Tyler
- Developer: AdaM, Joan Queralt, Joan Queralt Molina, MarcoA, Richard David Williams, Tyler
Artificial life simulator, simulating organisms, their workings and their environment.

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/bote-team/bote.git (@created 2013, @stars 19, @forks 4)
- Code language: C++
- Code license: Custom (private use allowed)
- Developer: anonymissimus, Reg, Vuto-BotE, Malvoisin, Iceflower
- Developer: anonymissimus, Iceflower, Malvoisin, Reg, Vuto-BotE
In the style of classics such as Microprose's Master of Orion 2 or ST: Birth of the Federation.
See also [Android/Java version](https://bitbucket.org/sarkanyi/bote-libgdx/) and https://blotunga.itch.io/birth-of-the-empires

View File

@ -10,7 +10,7 @@
- Code license: GPL-2.0
- Code dependency: SDL2
- Assets license: GPL
- Developer: eykamp, raptor, Samuel Williams, Bryan Conrad, Vittorio Giovara, Rémi Verschelde, bobdaduck, Naleo Hyde, Carl Hewett, Pascal Terjan
- Developer: bobdaduck, Bryan Conrad, Carl Hewett, eykamp, Naleo Hyde, Pascal Terjan, raptor, Rémi Verschelde, Samuel Williams, Vittorio Giovara
## Building

View File

@ -8,7 +8,7 @@
- Code language: C++
- Code license: Apache-2.0
- Code dependency: SDL2
- Developer: VenKamikaze, Luke Hoschke
- Developer: Luke Hoschke, VenKamikaze
## Building

View File

@ -9,7 +9,7 @@
- Code repository: https://gitlab.com/osgames/blacknova.git (backup of svn), https://svn.code.sf.net/p/blacknova/code (svn)
- Code language: PHP, JavaScript
- Code license: GPL-2.0
- Developer: Ron Harwood, David Rowlands, TheMightyDude, Adam Fort, Kelly Shane Harrelson, Paul Ogle, Ramjet, The Kabal, Brian Gustin
- Developer: Adam Fort, Brian Gustin, David Rowlands, Kelly Shane Harrelson, Paul Ogle, Ramjet, Ron Harwood, The Kabal, TheMightyDude
Web-based, multi-player space exploration game inspired by the popular BBS game of TradeWars.
Fork is [Red Nova Traders](https://sourceforge.net/projects/rednova/), inactive since 2006.

View File

@ -9,7 +9,7 @@
- Code language: Java
- Code license: Apache-2.0
- Code dependency: libGDX
- Developer: Rafael Garcia, Edu Garcia, danigm
- Developer: danigm, Edu Garcia, Rafael Garcia
## Building

View File

@ -9,7 +9,7 @@
- Code license: None (only assets)
- Code dependency: Heretic
- Assets license: 3-clause BSD
- Developer: G. Wessner, Jute Gyte, Blasphemer
- Developer: Blasphemer, G. Wessner, Jute Gyte
Initial goal is to serve as a Free data package for engines based on the GPLed Heretic source.
The IWAD data is released under a 3-clause BSD license. Its theme is dark fantasy with inspirations from metal music and horror.

View File

@ -9,7 +9,7 @@
- Code license: GPL-2.0
- Code dependency: KDE Frameworks
- Assets license: GPL-2.0, GFDL (documentation)
- Developer: Albert Astals Cid, Danny Allen (artwork, documentation), Steve Jordi (font), tsdgeos, Montel Laurent, Christoph Feck, Andreas Cord-Landwehr, Jonathan Riddell, Patrick Spendrin, Yuri Chornoivan, Jeremy Whiting, Stephan Kulow, Urs Wolfer, Eckhart Wörner, Matthias Kretz
- Developer: Albert Astals Cid, Andreas Cord-Landwehr, Christoph Feck, Danny Allen (artwork, documentation), Eckhart Wörner, Jeremy Whiting, Jonathan Riddell, Matthias Kretz, Montel Laurent, Patrick Spendrin, Stephan Kulow, Steve Jordi (font), tsdgeos, Urs Wolfer, Yuri Chornoivan
KDE implementation of the memory game Simon Says.

View File

@ -9,7 +9,7 @@
- Code license: GPL-2.0
- Code dependency: SDL
- Assets license: commercial
- Developer: Stephen Sweeney, Hans de Goede, Guus Sliepen, Alba Mendez
- Developer: Alba Mendez, Guus Sliepen, Hans de Goede, Stephen Sweeney
Created by Parallel Realities.

View File

@ -8,7 +8,7 @@
- Code repository: https://svn.code.sf.net/p/blobby/code (svn)
- Code language: C++
- Code license: GPL-2.0
- Developer: danielknobe, Jonathan Sieber, CvX!, Erik Schultheis, Sven Rech
- Developer: CvX!, danielknobe, Erik Schultheis, Jonathan Sieber, Sven Rech
Continuation of the famous Blobby Volley 1.x arcade game.

View File

@ -9,6 +9,6 @@
- Code repository: https://git.code.sf.net/p/blobwars/code, https://gitlab.com/osgames/blobwars.git @add, https://src.fedoraproject.org/rpms/blobwars.git @add, https://github.com/OSSGames/GAME-SDL-ACTION-Blobwars_Metal_Blob_Solid.git (@created 2019, @stars 0, @forks 0)
- Code language: C++
- Code license: GPL-2.0
- Developer: Hans de Goede, Guus Sliepen, Stephen Sweeney
- Developer: Guus Sliepen, Hans de Goede, Stephen Sweeney
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://github.com/boardgameio/boardgame.io.git (@created 2017, @stars 8396, @forks 596)
- Code language: JavaScript, TypeScript
- Code license: MIT
- Developer: Nicolo John Davis, Chris Swithinbank, flamecoals, Stefan Hanke, Jason Harrison, Philihp Busby, Francois Schneider, Amit Portnoy, Clemens Wolff, Saeid Alidadi, Stefan Ladwig, Adrian Gaudebert, Kyle J. Roux, Omar Halbouni, janKir, qsona, Chris Heninger
- Developer: Adrian Gaudebert, Amit Portnoy, Chris Heninger, Chris Swithinbank, Clemens Wolff, flamecoals, Francois Schneider, janKir, Jason Harrison, Kyle J. Roux, Nicolo John Davis, Omar Halbouni, Philihp Busby, qsona, Saeid Alidadi, Stefan Hanke, Stefan Ladwig
Notable probjects: https://boardgame.io/documentation/#/notable_projects
Platform: https://github.com/freeboardgames/FreeBoardGames.org

View File

@ -10,7 +10,7 @@
- Code language: C
- Code license: GPL-2.0
- Assets license: GPL
- Developer: Steffen Pohle, Patrick, Martijn de Boer
- Developer: Martijn de Boer, Patrick, Steffen Pohle
## Building

View File

@ -9,6 +9,6 @@
- Code repository: https://gitlab.com/osgames/bombermaaan.git (import of svn), https://svn.code.sf.net/p/bombermaaan/code (svn)
- Code language: C++
- Code license: GPL-3.0
- Developer: Fury, Bernd A., JEROME BIGOT, baptiste sansierra, Eggomat
- Developer: baptiste sansierra, Bernd A., Eggomat, Fury, JEROME BIGOT
## Building

View File

@ -8,7 +8,7 @@
- Code language: C++
- Code license: GPL-2.0
- Code dependency: SDL
- Developer: Karel Fiser, Bernard
- Developer: Bernard, Karel Fiser
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/boostorg/boost.git (@created 2013, @stars 3932, @forks 1171)
- Code language: C++
- Code license: Boost-1.0
- Developer: boost-commitbot, Vladimir Prus, Dave Abrahams, jzmaddock, Hartmut Kaiser, Jeremy G. Siek, Daniel James, Beman Dawes, Doug Gregor, Eric Niebler, René Ferdinand Rivera Morell, Joel de Guzman, Robert Ramey, Peter Dimov, Jens Maurer, Gennadiy Rozental, Jeff Garland, Jonathan Turkanis, chriskohlhoff, jewillco, joaquintides, stevensmi, swatanabe, thorsten-ottosen, Ion Gaztañaga, rxg, Jurko Gospodnetić, Vicente J. Botet Escriba, tschw, Marshall Clow, Barend Gehrels, Andrey Semashev, Daniel Wallin, Frank Mori Hess, Paul Mensonides, Paul A. Bristow, Jürgen Hunold, Fernando Cacciola, Toon Knapen, henry-ch, Alexander Nasonov, Roland, Guillaume Melquiond, Gunter Winkler, Andrew Sutton, Noel Belcourt, Thomas Witt, João Abecasis, Matthias Troyer, Troy Straszheim, Bryce Adelstein Lelbach aka wash, Daryle Walker, Antony Polukhin, danielmarsden, burbelgruff, Matias Capeletto, Oliver Kowalke, Andy Tompkins, goerch, Aaron Windsor, Alisdair Meredith, François, Nicola Musatti, Tim Blechmann, Hailin Jin, Glen Fernandes, chhenning, Daniel Frey, Stefan Seefeld, David Bellot, ngedmond, David Deakins, hervebronnimann, Christopher Currie, Dave Jenkins, Andrii Sydorchuk, Michael Jackson, Christopher Jefferson, Giovanni Bajo, jayayedee, Edward Diener, Raoouul, Artyom Beilis, Lorenzo Caminiti, Nathan Ridge, nikiml, Thomas Heller, jhellrung, Juan Carlos Arevalo Baeza, cppljevans, Matt Calabrese, Michael Caisse, Jonathan Wakely, Abel Sinkovics
- Developer: Aaron Windsor, Abel Sinkovics, Alexander Nasonov, Alisdair Meredith, Andrew Sutton, Andrey Semashev, Andrii Sydorchuk, Andy Tompkins, Antony Polukhin, Artyom Beilis, Barend Gehrels, Beman Dawes, boost-commitbot, Bryce Adelstein Lelbach aka wash, burbelgruff, chhenning, chriskohlhoff, Christopher Currie, Christopher Jefferson, cppljevans, Daniel Frey, Daniel James, Daniel Wallin, danielmarsden, Daryle Walker, Dave Abrahams, Dave Jenkins, David Bellot, David Deakins, Doug Gregor, Edward Diener, Eric Niebler, Fernando Cacciola, Frank Mori Hess, François, Gennadiy Rozental, Giovanni Bajo, Glen Fernandes, goerch, Guillaume Melquiond, Gunter Winkler, Hailin Jin, Hartmut Kaiser, henry-ch, hervebronnimann, Ion Gaztañaga, jayayedee, Jeff Garland, Jens Maurer, Jeremy G. Siek, jewillco, jhellrung, joaquintides, Joel de Guzman, Jonathan Turkanis, Jonathan Wakely, João Abecasis, Juan Carlos Arevalo Baeza, Jurko Gospodnetić, jzmaddock, Jürgen Hunold, Lorenzo Caminiti, Marshall Clow, Matias Capeletto, Matt Calabrese, Matthias Troyer, Michael Caisse, Michael Jackson, Nathan Ridge, ngedmond, Nicola Musatti, nikiml, Noel Belcourt, Oliver Kowalke, Paul A. Bristow, Paul Mensonides, Peter Dimov, Raoouul, René Ferdinand Rivera Morell, Robert Ramey, Roland, rxg, Stefan Seefeld, stevensmi, swatanabe, Thomas Heller, Thomas Witt, thorsten-ottosen, Tim Blechmann, Toon Knapen, Troy Straszheim, tschw, Vicente J. Botet Escriba, Vladimir Prus
Portable C++ source libraries.
[Boost Software License 1.0](https://github.com/boostorg/boost/blob/master/LICENSE_1_0.txt)

View File

@ -8,7 +8,7 @@
- Code language: C++
- Code license: GPL-2.0
- Code dependency: OpenGL
- Developer: Andreas Beckermann, Ben Adler, Thomas Capricelli, Rivo Laks, Felix Seeger, Krzysztof Kosz, Mickael Marchand, Scott MacDonald, Timo Huebel, Nils Trzebin
- Developer: Andreas Beckermann, Ben Adler, Felix Seeger, Krzysztof Kosz, Mickael Marchand, Nils Trzebin, Rivo Laks, Scott MacDonald, Thomas Capricelli, Timo Huebel
More like alpha.

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/valeriansaliou/boulder-dash.git (@created 2015, @stars 11, @forks 8)
- Code language: Java
- Code license: MIT
- Developer: Valerian Saliou, Colin LEVERGER
- Developer: Colin LEVERGER, Valerian Saliou
Dig through caves collecting gems.

View File

@ -6,7 +6,7 @@
- Code repository: https://github.com/erincatto/Box2D.git (@created 2015, @stars 4634, @forks 910)
- Code language: C, C++, Objective-C
- Code license: zlib
- Developer: Erin Catto, Jarrod Mosen, Isaac Burns
- Developer: Erin Catto, Isaac Burns, Jarrod Mosen
## Building

View File

@ -10,7 +10,7 @@
- Code license: GPL-2.0
- Code dependency: pyglet
- Assets license: CC (caprica-letters and all the music in the latest version)
- Developer: Paul, DavidF, Ashwin Menon, Jonathan Toomim, Rahul Patel, Samantha McVey, Paul Hoskinson, xantares
- Developer: Ashwin Menon, DavidF, Jonathan Toomim, Paul, Paul Hoskinson, Rahul Patel, Samantha McVey, xantares
Dual n-back brain training exercise.

View File

@ -8,6 +8,6 @@
- Code language: C++
- Code license: GPL-2.0
- Code dependency: Irrlicht Engine
- Developer: James Packer, whoopsie, ceeac, David Elir Evans
- Developer: ceeac, David Elir Evans, James Packer, whoopsie
## Building

View File

@ -9,6 +9,6 @@
- Code repository: https://gitlab.com/osgames/brutalchess.git (import of svn), https://svn.code.sf.net/p/brutalchess/code (svn)
- Code language: C++
- Code license: GPL-2.0
- Developer: Michael Cook, Joe Flint, neilpa
- Developer: Joe Flint, Michael Cook, neilpa
## Building

View File

@ -9,7 +9,7 @@
- Code repository: https://github.com/bibendovsky/bstone.git (@created 2013, @stars 161, @forks 24)
- Code language: C++
- Code license: GPL-2.0
- Developer: Boris I. Bendovsky, 01y, Manuel K, Cong, Scott, CrimsonTautology, XxMiltenXx
- Developer: 01y, Boris I. Bendovsky, Cong, CrimsonTautology, Manuel K, Scott, XxMiltenXx
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://git.code.sf.net/p/bygfoot/git, https://svn.code.sf.net/p/bygfoot/code (svn)
- Code language: Java
- Code license: GPL-2.0
- Developer: Gunnar, Gyozo Both, Christopher Hunter, Felipe de Melo Barbosa, Ivan Ramirez, Jeffrey Sanders, Mihai Floran, Tom Stellard, zbrox
- Developer: Christopher Hunter, Felipe de Melo Barbosa, Gunnar, Gyozo Both, Ivan Ramirez, Jeffrey Sanders, Mihai Floran, Tom Stellard, zbrox
Football (a.k.a. soccer) manager game featuring many international leagues and cups.

View File

@ -10,7 +10,7 @@
- Code repository: https://github.com/BZFlag-Dev/bzflag.git (@created 2015, @stars 201, @forks 64), https://svn.code.sf.net/p/bzflag/code (svn)
- Code language: C++
- Code license: LGPL-2.1, MPL-2.0
- Developer: blast007, Sean Morrison, Bullet Catcher, Tim Riker, Vladimir Jimenez, Tupone Alfredo, Bryan Jennings, Bernt Hansen, Steven Mertens, Frank Thilo, Cobra_Fast, Chris Schoeneman, Dave Brosius, David Wollner, Daniel Remenak, Alexander Boyd, Joe Van Overberghe, Flash, Kyle Mills, kingrobot, alezakos, L4m3r, Joshua Bodine, Mark Thomas, mdskpr, Frank Evers, Thomas Stauer, Dave Rodgers, Jeffery Myers, Jeff Makey, Alfredo Tupone, jwmelto, Mike Miller, Zehra
- Developer: Alexander Boyd, alezakos, Alfredo Tupone, Bernt Hansen, blast007, Bryan Jennings, Bullet Catcher, Chris Schoeneman, Cobra_Fast, Daniel Remenak, Dave Brosius, Dave Rodgers, David Wollner, Flash, Frank Evers, Frank Thilo, Jeff Makey, Jeffery Myers, Joe Van Overberghe, Joshua Bodine, jwmelto, kingrobot, Kyle Mills, L4m3r, Mark Thomas, mdskpr, Mike Miller, Sean Morrison, Steven Mertens, Thomas Stauer, Tim Riker, Tupone Alfredo, Vladimir Jimenez, Zehra
## Building

View File

@ -12,7 +12,7 @@
- Code license: GPL-2.0 (parts 2-clause BSD)
- Code dependency: SDL2
- Assets license: CC0, CC-BY, CC-BY-SA
- Developer: Cong, Lucas Martin-King, Carsten Teibes, Matthias Mailänder, Antoine Musso, Justin Jacobs, William, Veikko Soininen
- Developer: Antoine Musso, Carsten Teibes, Cong, Justin Jacobs, Lucas Martin-King, Matthias Mailänder, Veikko Soininen, William
Overhead run-and-gun game.

View File

@ -9,7 +9,7 @@
- Code repository: https://bitbucket.org/dalerank/caesaria.git, https://github.com/dalerank/caesaria-game.git (@created 2014, @stars 201, @forks 43)
- Code language: C++, JavaScript, C
- Code license: GPL-3.0
- Developer: dalerank, sleepstranger, George Gaál, Vladislav Rassokhin, victor sosa, Erepb, GandjX, Pavel Alexandrov, andreibranescu, Ivan, Silas, pufik6666, Artem Kuskis, Dmitry Marakasov, gathanase, Vladimir Baranov, Rovanion Luckey, Softer, Tomasz Wsuł, Martin Schultz
- Developer: andreibranescu, Artem Kuskis, dalerank, Dmitry Marakasov, Erepb, GandjX, gathanase, George Gaál, Ivan, Martin Schultz, Pavel Alexandrov, pufik6666, Rovanion Luckey, Silas, sleepstranger, Softer, Tomasz Wsuł, victor sosa, Vladimir Baranov, Vladislav Rassokhin
## Building

View File

@ -9,6 +9,6 @@
- Code language: C++
- Code license: GPL-2.0
- Code dependency: OpenGL
- Developer: Kanna Yoshihiro, yotsuya san, Takayuki KUSANO
- Developer: Kanna Yoshihiro, Takayuki KUSANO, yotsuya san
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/djyt/cannonball.git (@created 2012, @stars 361, @forks 84)
- Code language: C++
- Code license: MAME
- Developer: reassembler, Manuel Alfayate Corchete, Santhosh Raju
- Developer: Manuel Alfayate Corchete, reassembler, Santhosh Raju
## Building

View File

@ -9,6 +9,6 @@
- Code license: GPL-3.0
- Code dependency: GStreamer, Soya3D
- Assets license: GPL-2.0 (fonts)
- Developer: Andreas Kattner, Stefan Huchler, Felix Rodriguez Lopez
- Developer: Andreas Kattner, Felix Rodriguez Lopez, Stefan Huchler
## Building

View File

@ -9,6 +9,6 @@
- Code license: AGPL-3.0
- Code dependency: Twisted
- Assets license: CC-BY-SA-3.0
- Developer: Farsides, Matjaz Gregoric, Adolfo R. Brandes, Xavier Antoviaque, Chris McCormick, Rogerio Hilbert Lima
- Developer: Adolfo R. Brandes, Chris McCormick, Farsides, Matjaz Gregoric, Rogerio Hilbert Lima, Xavier Antoviaque
## Building

View File

@ -6,7 +6,7 @@
- Code repository: https://github.com/castle-engine/castle-engine.git (@created 2015, @stars 450, @forks 67)
- Code language: Pascal
- Code license: LGPL-2.0 (visual editor and some other assets GPL-2.0)
- Developer: Michalis Kamburelis, Eugene Loza, Jan Adamec, Andrzej Kilijański, Tomasz W, Benedikt Magnus, Kagamma, Sven, Matthias
- Developer: Andrzej Kilijański, Benedikt Magnus, Eugene Loza, Jan Adamec, Kagamma, Matthias, Michalis Kamburelis, Sven, Tomasz W
## Building

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/mordrax/cotwelm.git (@created 2016, @stars 88, @forks 7)
- Code language: Elm, JavaScript
- Code license: MIT
- Developer: Joseph Ni, Dušan Juretić
- Developer: Dušan Juretić, Joseph Ni
See also Castle of the Winds.

View File

@ -8,7 +8,7 @@
- Code repository: https://gitlab.com/osgames/catmother.git (import of svn), https://svn.code.sf.net/p/catmother/code (svn)
- Code language: C++
- Code license: 3-clause BSD, GPL-2.0 (not sure which of them actually)
- Developer: Olli Sorjonen, Sami Sorjonen, Jani Kajala, Toni Aittoniemi, James Marshall, naaier, shodan123
- Developer: James Marshall, Jani Kajala, naaier, Olli Sorjonen, Sami Sorjonen, shodan123, Toni Aittoniemi
3D-engine (C++/DirectX9) and a fully playable prototype of a 3rd person action/adventure game featuring running, shooting and sneaking.

View File

@ -6,7 +6,7 @@
- Code repository: https://github.com/Whales/Cataclysm.git (@created 2010, @stars 273, @forks 89)
- Code language: C++
- Code license: CC-BY-SA-3.0
- Developer: Whales, Daniel Dengler, Alien-AV
- Developer: Alien-AV, Daniel Dengler, Whales
Post-apocalyptic roguelike.
See also [Cataclysm: Dark Days Ahead](cataclysm_dark_days_ahead.md) (fork)

View File

@ -11,7 +11,7 @@
- Code license: CC-BY-SA-3.0
- Code dependency: ncurses
- Assets license: CC-BY-SA-3.0
- Developer: Zhilkin Serg, Kevin Granade, Angela Graves, BevapDin, KA101, Coolthulhu, mugling, John Bytheway, Anton Burmistrov, Curtis Merrill, Dmitry Serov, Christian Buskirk, "Jianxiang Wang (王健翔)", Vitaly Vlasov, acidia, yobbobanana, codemime, Mark Langsdorf, Binrui Dong, OzoneH3, atomicdryad, Cyrano7, Fris0uman, I-am-Erk, pisskop, Kael Talvadore, Heather Soron Kaminski, curstwist, Ian Strachan, BorkBorkGoesTheCode, nexusmrsep, snipercup, John Candlebury, anothersimulacrum, Isaac Freund, Eric Pierce, Soyweiser, Clarence "Sparr" Risher, Octav "Narc" Sandulescu, CosmicCoincidence, Brian Lefler, Williham Williham Totland, Matthew Taylor, Brandon Kentel, Mshock777, LaVeyanFiend, David, Whales, freezerbunny, HuXTUS, Pupsi Mupsi, Christian Bielert, GlyphGryph, Jason Jones, Piotr Staszewski, malhawee, Firestorm01X2, Fergus Dall, Peter Lacey-Bordeaux, Violet White, DangerNoodle, Oleg Antipin, PropaneSoup, Maleclypse, Eric, RarkGrames, Jeremy Osborne, Huynh Yen Loc, Hymore246, utunnels, Aenye, origamiwolf, LyleSY, eso, Zach Morgan, Eighth-of-Third, Donnie McNabb, Sean "Chezzo" Osman, NaturesWitness, arijust, Steven Wu, lucianposton, DanmakuDan, Jason Gilbert, Nate Moore, Rémy Roy, Alan Brady, Robik81, Noctifer-de-Mortem, Chaosvolt, Ivan Zaitsev, Jorn Vernee, NotFuji, Snaaty, Pär Karlsson, jokermatt999, Hirmuolio, Brian-Otten, Tonkatsu, Inglonias, Justin, Oleksii S. Malakhov, Anuradha Dissanayake, Nymall, cainiaowu, Frost-wood, Alec White Valentine, Jerimee Richir, Ben Gray, OrenAudeles, Vasyan, Brian McDade, Kodi Arfer, Leland Clemmons, Voker57, Tivec, zombiethoughts, Sergey Alirzaev, cake>pie, DeadLeaves, Efi, maxmurder, Ava, Bence, Zaweri, xanderrootslayer, Mooses2k, Seth, DracoGriffin, Serhiy Zahoriya, carmakazi, misterprimus, Davi-DeGanne, ipcyborg, jcd000, Karthas077, 8street, BeigeSand, Charlie Nolan, SunshineDistillery, Tomas Volka, Alexey Mostovoy, 9600bauds, CodeBandit, FulcrumA, Kelenius, Oliver Jowett, Alexander Morland, KongMD, akirashirosawa, Danny Bautista, EpicOrange, Spencer Michaels, Oddzball, Rail-Runner, Roy Berube, Catacstone, Malkeus, vache, Denis Volk, Brandon Bergren, ToxiClay, ituluwituluwzev, mrkybe, Paul Fenwick, wormingdead, jkraybill, Barhandar, philippeop, Chris Vickio, maxsond, Brad Busse, Tom Quinn, Andi Shores, Cosmitz, Theawesomeboophis, hitbutton, Kyle Fawcett, Bernardo Sulzbach, Lil Shining Man, ephemeralstoryteller, Alexey Kim, GennFaol, andrei, Greg McNew, OvenBaker, Wishbringer, Xenomorph-III, ejseto, Ekarus Ryndren, axujen, Nioca, VampyreLord, evilexecutive, halfahermit, Robert Maupin, Gordon Watt, neitsa, Mike, Quietust, karols146, SouP, Pete Goodfellow, Allison, RogueYun, Herbert Jones, vidarsk, chaisawlajatang, Matt K., KurzedMetal, MT-Arnoldussen, starpolemic, Treah Blade, Amans Tofu, Ben Fox-Moore, GiM, pouar, DemAvalon, Dyrewulfe, Mom-Bun, ampersand55, Competently-Incompetent, Reclusive-reptile, Keyspace-1, Gatleos, Senrain, Xpyder, nikheizen, RadHazard, MorCel374, Sergio Duran, Stevensonz, TheFlame52, Venera3, klorpa, mark7, hyper2snyper, Tsunder, Veraghin, Larwick, DZiral, Jeremy Rose, phaethonfire, LISPCoC, Leonid Vasilev, Aleksander , Ashes, Joe, Barry Gackle, Dylan Greer, Gabriel-SE, Muffindrake, oddbjol, Steven Noonan, Wouter van Kesteren, barsoosayque, dissociativity, kilozombie, Surma, plazma-rush, meladath, FryCarson, Nick Taylor, Petr Onderka, Tony, Vlad, AlisW02, Faalagorn, valuial, angoddu, anonym, akrieger, DialoMalison, Dru, Kevin Giovinazzo, ThinkInvisible, anabatic, arcke, Edith Brunel, Alasnuyo, Goron, Jacek Nakonieczny, Rabbit, darktoes, patternoia, Dark Daskin, Francisco Moreira, CountAlex, David Holmes, Hesu Lee, D Anzorge, FlameStormer2000, Josh Richey, Lap, Skippy McSkip, Vollch, daftfad, johnrdconnolly, xalgenos, Asmageddon, joshuagiles, Aloxaf, DoctorVanGogh, GalenEvil, Ilya Margolin, Kilvoctu, MisterFelixFox, Pr0man, casswedson, mightyagrippa, railmonkey, yowshi, Xygen, DoctorGoat, Kanexan, NeviNovat, Soufian, ice-o-metric, nsklaus, Peter Piwowarski, sneeze-attack, Mecares, prutschman, Podesta, harison86, Nathan Fowler, rsulli55, Ryan, Cliffs Dover, Maddremor, vulkans22, Regularitee, Robert Tisdale, Sean Mirrsen, Stéphane Travostino, moosestrangler, mctynp, mqrause, akozhevn, lucasmr, surprise22, Greev, Lucasargh, Michael Davies, Nicholas De Nova, UrbanCMC, sagethor, Rolf K, Ivan P., Mdnthrvst, Reaper42, Catiua, ChunkOfMeat, Gabe-Lincoln, JonahDes, TechyBen, Turtlicious, Wokko1, Wuzzy, aierce, awesine, faefux, skYYman, spacenookie, taiyu, Esdian, Jeremy, Reiner Herrmann, Tamiore, zwparchman
- Developer: 8street, 9600bauds, acidia, Aenye, aierce, akirashirosawa, akozhevn, akrieger, Alan Brady, Alasnuyo, Alec White Valentine, Aleksander, Alexander Morland, Alexey Kim, Alexey Mostovoy, AlisW02, Allison, Aloxaf, Amans Tofu, ampersand55, anabatic, Andi Shores, andrei, Angela Graves, angoddu, anonym, anothersimulacrum, Anton Burmistrov, Anuradha Dissanayake, arcke, arijust, Ashes, Asmageddon, atomicdryad, Ava, awesine, axujen, Barhandar, Barry Gackle, barsoosayque, BeigeSand, Ben Fox-Moore, Ben Gray, Bence, Bernardo Sulzbach, BevapDin, Binrui Dong, BorkBorkGoesTheCode, Brad Busse, Brandon Bergren, Brandon Kentel, Brian Lefler, Brian McDade, Brian-Otten, cainiaowu, cake>pie, carmakazi, casswedson, Catacstone, Catiua, chaisawlajatang, Chaosvolt, Charlie Nolan, Chris Vickio, Christian Bielert, Christian Buskirk, ChunkOfMeat, Clarence "Sparr" Risher, Cliffs Dover, CodeBandit, codemime, Competently-Incompetent, Coolthulhu, CosmicCoincidence, Cosmitz, CountAlex, curstwist, Curtis Merrill, Cyrano7, D Anzorge, daftfad, DangerNoodle, DanmakuDan, Danny Bautista, Dark Daskin, darktoes, Davi-DeGanne, David, David Holmes, DeadLeaves, DemAvalon, Denis Volk, DialoMalison, dissociativity, Dmitry Serov, DoctorGoat, DoctorVanGogh, Donnie McNabb, DracoGriffin, Dru, Dylan Greer, Dyrewulfe, DZiral, Edith Brunel, Efi, Eighth-of-Third, ejseto, Ekarus Ryndren, ephemeralstoryteller, EpicOrange, Eric, Eric Pierce, Esdian, eso, evilexecutive, Faalagorn, faefux, Fergus Dall, Firestorm01X2, FlameStormer2000, Francisco Moreira, freezerbunny, Fris0uman, Frost-wood, FryCarson, FulcrumA, Gabe-Lincoln, Gabriel-SE, GalenEvil, Gatleos, GennFaol, GiM, GlyphGryph, Gordon Watt, Goron, Greev, Greg McNew, halfahermit, harison86, Heather Soron Kaminski, Herbert Jones, Hesu Lee, Hirmuolio, hitbutton, HuXTUS, Huynh Yen Loc, Hymore246, hyper2snyper, I-am-Erk, Ian Strachan, ice-o-metric, Ilya Margolin, Inglonias, ipcyborg, Isaac Freund, ituluwituluwzev, Ivan P., Ivan Zaitsev, Jacek Nakonieczny, Jason Gilbert, Jason Jones, jcd000, Jeremy, Jeremy Osborne, Jeremy Rose, Jerimee Richir, "Jianxiang Wang (王健翔)", jkraybill, Joe, John Bytheway, John Candlebury, johnrdconnolly, jokermatt999, JonahDes, Jorn Vernee, Josh Richey, joshuagiles, Justin, KA101, Kael Talvadore, Kanexan, karols146, Karthas077, Kelenius, Kevin Giovinazzo, Kevin Granade, Keyspace-1, kilozombie, Kilvoctu, klorpa, Kodi Arfer, KongMD, KurzedMetal, Kyle Fawcett, Lap, Larwick, LaVeyanFiend, Leland Clemmons, Leonid Vasilev, Lil Shining Man, LISPCoC, Lucasargh, lucasmr, lucianposton, LyleSY, Maddremor, Maleclypse, malhawee, Malkeus, Mark Langsdorf, mark7, Matt K., Matthew Taylor, maxmurder, maxsond, mctynp, Mdnthrvst, Mecares, meladath, Michael Davies, mightyagrippa, Mike, MisterFelixFox, misterprimus, Mom-Bun, Mooses2k, moosestrangler, MorCel374, mqrause, mrkybe, Mshock777, MT-Arnoldussen, Muffindrake, mugling, Nate Moore, Nathan Fowler, NaturesWitness, neitsa, NeviNovat, nexusmrsep, Nicholas De Nova, Nick Taylor, nikheizen, Nioca, Noctifer-de-Mortem, NotFuji, nsklaus, Nymall, Octav "Narc" Sandulescu, oddbjol, Oddzball, Oleg Antipin, Oleksii S. Malakhov, Oliver Jowett, OrenAudeles, origamiwolf, OvenBaker, OzoneH3, patternoia, Paul Fenwick, Pete Goodfellow, Peter Lacey-Bordeaux, Peter Piwowarski, Petr Onderka, phaethonfire, philippeop, Piotr Staszewski, pisskop, plazma-rush, Podesta, pouar, Pr0man, PropaneSoup, prutschman, Pupsi Mupsi, Pär Karlsson, Quietust, Rabbit, RadHazard, Rail-Runner, railmonkey, RarkGrames, Reaper42, Reclusive-reptile, Regularitee, Reiner Herrmann, Robert Maupin, Robert Tisdale, Robik81, RogueYun, Rolf K, Roy Berube, rsulli55, Ryan, Rémy Roy, sagethor, Sean "Chezzo" Osman, Sean Mirrsen, Senrain, Sergey Alirzaev, Sergio Duran, Serhiy Zahoriya, Seth, Skippy McSkip, skYYman, Snaaty, sneeze-attack, snipercup, Soufian, SouP, Soyweiser, spacenookie, Spencer Michaels, starpolemic, Steven Noonan, Steven Wu, Stevensonz, Stéphane Travostino, SunshineDistillery, Surma, surprise22, taiyu, Tamiore, TechyBen, Theawesomeboophis, TheFlame52, ThinkInvisible, Tivec, Tom Quinn, Tomas Volka, Tonkatsu, Tony, ToxiClay, Treah Blade, Tsunder, Turtlicious, UrbanCMC, utunnels, vache, valuial, VampyreLord, Vasyan, Venera3, Veraghin, vidarsk, Violet White, Vitaly Vlasov, Vlad, Voker57, Vollch, vulkans22, Whales, Williham Williham Totland, Wishbringer, Wokko1, wormingdead, Wouter van Kesteren, Wuzzy, xalgenos, xanderrootslayer, Xenomorph-III, Xpyder, Xygen, yobbobanana, yowshi, Zach Morgan, Zaweri, Zhilkin Serg, zombiethoughts, zwparchman
Turn-based survival game set in a post-apocalyptic world.
Fork of [Cataclysm](cataclysm.md)

View File

@ -8,6 +8,6 @@
- Code repository: https://github.com/dogballs/cattle-bity.git (@created 2018, @stars 12, @forks 3)
- Code language: TypeScript
- Code license: MIT
- Developer: Michael, Anton-Aleksei Ilyin
- Developer: Anton-Aleksei Ilyin, Michael
## Building

View File

@ -8,7 +8,7 @@
- Code language: C++
- Code license: AGPL-3.0
- Code dependency: Allegro
- Developer: MaximDude, Gareth YR, orengg, Basxto, Evgeniy VIgovskiy, pawnishoovy, Dan Tabar
- Developer: Basxto, Dan Tabar, Evgeniy VIgovskiy, Gareth YR, MaximDude, orengg, pawnishoovy
Based on the open sourced code of Cortex Command.

View File

@ -7,6 +7,6 @@
- Code repository: https://github.com/maikmerten/chainreaction.git (@created 2012, @stars 2, @forks 4)
- Code language: Java
- Code license: LGPL-3.0
- Developer: Johannes Neubauer, Stephan Windmüller, maikmerten, HaroldPirschner
- Developer: HaroldPirschner, Johannes Neubauer, maikmerten, Stephan Windmüller
## Building

View File

@ -8,7 +8,7 @@
- Code language: Dart, JavaScript
- Code license: MIT
- Assets license: MIT
- Developer: Robert Blackhart, Paul VanKeuren, Andy Castille, Courtney B Reid, Craig S. Cottingham, Brian Grey
- Developer: Andy Castille, Brian Grey, Courtney B Reid, Craig S. Cottingham, Paul VanKeuren, Robert Blackhart
Code for the server may not be up-to-date.
See also Glitch the Game, released source code.

View File

@ -9,6 +9,6 @@
- Code language: Python
- Code license: GPL-3.0
- Code dependency: NumPy, pygame
- Developer: Stas Zytkiewicz, Chris_147, Matias A. Graña, Robert Wadley, Alexander Kolotov, Christiaan de Wit, Peter Govers, Rene Dohmen
- Developer: Alexander Kolotov, Chris_147, Christiaan de Wit, Matias A. Graña, Peter Govers, Rene Dohmen, Robert Wadley, Stas Zytkiewicz
## Building

View File

@ -9,7 +9,7 @@
- Code repository: https://github.com/chocolate-doom/chocolate-doom.git (@created 2009, @stars 1002, @forks 356)
- Code language: C
- Code license: GPL-2.0
- Developer: Simon Howard, James Haley, Jonathan Dowland, rtc, Kaiser, Zvonimir Buzanic, Turo Lamminen, Fabian Greffrath, "James Haley (Nightdive Studios)", Mike Swanson, Samuel, Alex Mayfield, nukeykt, Michael Francis, CapnClever, Julia Nechaevskaya, linguica, Alexandre-Xavier Labonté-Lamoureux, David CARLIER, Azarien, Jan Engelhardt, James Canete, Rodrigo Rebello, William Breathitt Gray, alexey.lysiuk, Jason Benaim
- Developer: Alex Mayfield, Alexandre-Xavier Labonté-Lamoureux, alexey.lysiuk, Azarien, CapnClever, David CARLIER, Fabian Greffrath, James Canete, James Haley, "James Haley (Nightdive Studios)", Jan Engelhardt, Jason Benaim, Jonathan Dowland, Julia Nechaevskaya, Kaiser, linguica, Michael Francis, Mike Swanson, nukeykt, Rodrigo Rebello, rtc, Samuel, Simon Howard, Turo Lamminen, William Breathitt Gray, Zvonimir Buzanic
Doom source port that accurately reproduces the experience of Doom as it was played in the 1990s.
Supports a number of games and mods based on the Doom.

View File

@ -8,7 +8,7 @@
- Code language: C
- Code license: GPL-2.0, Custom
- Code dependency: SDL
- Developer: Fabien, darealshinji, Rohit Nirmal
- Developer: darealshinji, Fabien, Rohit Nirmal
Remake of Duke Nukem 3D.
TODO: License conflicts, see https://github.com/fabiensanglard/chocolate_duke3D/issues/48

View File

@ -8,7 +8,7 @@
- Code repository: https://git.code.sf.net/p/chromium-bsu/code
- Code language: C++
- Code license: Artistic License-1.0 (clarified version)
- Developer: Paul Wise, brianwredfern, Max Horn, Keyboard Sage, Mark B. Allan, Sam Hocevar
- Developer: brianwredfern, Keyboard Sage, Mark B. Allan, Max Horn, Paul Wise, Sam Hocevar
Arcade-style, top-scrolling space shooter.

View File

@ -8,7 +8,7 @@
- Code repository: https://github.com/TheAssemblyArmada/Chronoshift.git (@archived, @created 2018, @stars 140, @forks 19)
- Code language: C++
- Code license: GPL-2.0
- Developer: OmniBlade, Toms, Olivier Abdesselam
- Developer: Olivier Abdesselam, OmniBlade, Toms
## Building

View File

@ -9,6 +9,6 @@
- Code repository: https://github.com/citybound/citybound.git (@created 2016, @stars 6282, @forks 233)
- Code language: Rust, JavaScript
- Code license: AGPL-3.0
- Developer: Anselm Eickhoff, Vladimir, O01eg, Ben Wang, Rasmus Larsen, Martin Risell Lilja
- Developer: Anselm Eickhoff, Ben Wang, Martin Risell Lilja, O01eg, Rasmus Larsen, Vladimir
## Building

View File

@ -7,7 +7,7 @@
- Code repository: https://gitlab.com/osgames/civil.git (backup of cvs), http://civil.cvs.sourceforge.net/ (cvs)
- Code language: Python
- Code license: GPL-2.0
- Developer: Jan Ekholm, Korruptor, Marcus Alanen, Gareth Noyce, Tom Flanagan, Kalle Svensson, Michael Earl, Uwe Hermann, John Eikenberry
- Developer: Gareth Noyce, Jan Ekholm, John Eikenberry, Kalle Svensson, Korruptor, Marcus Alanen, Michael Earl, Tom Flanagan, Uwe Hermann
Follow-up: https://gitlab.com/Trilarion/civil

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