removed @see notation
This commit is contained in:
parent
be96e7b085
commit
06290c2926
@ -4,6 +4,9 @@ http://antongerdelan.net/blog/ (other projects besides TestDrive)
|
|||||||
http://cdetect.sourceforge.net/
|
http://cdetect.sourceforge.net/
|
||||||
http://circularstudios.com/
|
http://circularstudios.com/
|
||||||
http://cyxdown.free.fr/bs/
|
http://cyxdown.free.fr/bs/
|
||||||
|
https://projects.tuxfamily.org/ (all of them)
|
||||||
|
https://www.artsoft.org/rocksndiamonds/
|
||||||
|
https://web.archive.org/web/20171228172756/http://www.oletus.fi/static/whichwayisup/
|
||||||
http://cyxdown.free.fr/f2b/
|
http://cyxdown.free.fr/f2b/
|
||||||
http://dead-code.org/home/
|
http://dead-code.org/home/
|
||||||
http://e-adventure.e-ucm.es/login/index.php (games of eAdventure)
|
http://e-adventure.e-ucm.es/login/index.php (games of eAdventure)
|
||||||
|
@ -21,14 +21,13 @@ Listing:
|
|||||||
# TODO contribute.html add content
|
# TODO contribute.html add content
|
||||||
|
|
||||||
# TODO more icons - (categories, stars, forks)
|
# TODO more icons - (categories, stars, forks)
|
||||||
# TODO rename fields (Home to Homepage, Inspirations to Inspiration)
|
|
||||||
# TODO replace or remove @notices in entries (maybe different entries format) ??
|
# TODO replace or remove @notices in entries (maybe different entries format) ??
|
||||||
# TODO SEO optimizations, google search ...
|
# TODO SEO optimizations, google search ...
|
||||||
# TODO sitemap
|
# TODO sitemap
|
||||||
# TODO Google search console
|
# TODO Google search console
|
||||||
# TODO <a> rel attribute https://www.w3schools.com/TAGS/att_a_rel.asp
|
# TODO <a> rel attribute https://www.w3schools.com/TAGS/att_a_rel.asp
|
||||||
# TODO naming: improve or send feedback?
|
# TODO naming: improve or send feedback? or edit? or contribute?
|
||||||
# TODO menu (before On Github, Blog)
|
# TODO menu (before On Github, Blog) or just in the footer
|
||||||
|
|
||||||
# TODO everywhere: style URLs (Github, Wikipedia, Internet archive, SourceForge, ...)
|
# TODO everywhere: style URLs (Github, Wikipedia, Internet archive, SourceForge, ...)
|
||||||
# TODO everywhere: singular, plural (game, entries, items)
|
# TODO everywhere: singular, plural (game, entries, items)
|
||||||
@ -42,7 +41,7 @@ Listing:
|
|||||||
# TODO statistics: with nice graphics (pie charts in SVG) with matplotlib, seaborn, plotly?
|
# TODO statistics: with nice graphics (pie charts in SVG) with matplotlib, seaborn, plotly?
|
||||||
# TODO statistics: get it from common statistics generator
|
# TODO statistics: get it from common statistics generator
|
||||||
|
|
||||||
# TODO footer: last updated with lower precision + link to license
|
# TODO footer: clean up, link to Github project
|
||||||
|
|
||||||
# TODO frameworks: icons
|
# TODO frameworks: icons
|
||||||
|
|
||||||
@ -131,8 +130,8 @@ genre_icon_map = {
|
|||||||
'Library': 'library'
|
'Library': 'library'
|
||||||
}
|
}
|
||||||
|
|
||||||
plurals = {k: k+'s' for k in ('Assets license', 'Contact', 'Code language', 'Code license', 'Developer', 'Download', 'Inspiration', 'Game', 'Keyword', 'Home', 'Organization', 'Platform', 'Tag')}
|
plurals = {k: k+'s' for k in ('Assets license', 'Contact', 'Code language', 'Code license', 'Developer', 'Download', 'Inspiration', 'Game', 'Keyword', 'Home', 'Homepage', 'Organization', 'Platform', 'Tag')}
|
||||||
for k in ('Media', 'Play', 'State'):
|
for k in ('Media', 'Play', 'Play online', 'State'):
|
||||||
plurals[k] = k
|
plurals[k] = k
|
||||||
for k in ('Code repository', 'Code dependency'):
|
for k in ('Code repository', 'Code dependency'):
|
||||||
plurals[k] = k[:-1] + 'ies'
|
plurals[k] = k[:-1] + 'ies'
|
||||||
@ -373,6 +372,7 @@ def make_url(href, content, title=None, css_class=None):
|
|||||||
url['class'] = css_class
|
url['class'] = css_class
|
||||||
return url
|
return url
|
||||||
|
|
||||||
|
|
||||||
def make_icon(css_class):
|
def make_icon(css_class):
|
||||||
return {
|
return {
|
||||||
'type': 'icon',
|
'type': 'icon',
|
||||||
@ -389,11 +389,13 @@ def make_text(content, css_class=None):
|
|||||||
text['class'] = css_class
|
text['class'] = css_class
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
def make_nothing():
|
def make_nothing():
|
||||||
return {
|
return {
|
||||||
'type': 'nothing'
|
'type': 'nothing'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def make_enumeration(entries, divider=', '):
|
def make_enumeration(entries, divider=', '):
|
||||||
enumeration = {
|
enumeration = {
|
||||||
'type': 'enumeration',
|
'type': 'enumeration',
|
||||||
@ -402,6 +404,7 @@ def make_enumeration(entries, divider=', '):
|
|||||||
}
|
}
|
||||||
return enumeration
|
return enumeration
|
||||||
|
|
||||||
|
|
||||||
def make_tags(entries):
|
def make_tags(entries):
|
||||||
return {
|
return {
|
||||||
'type': 'tags',
|
'type': 'tags',
|
||||||
@ -526,11 +529,18 @@ def convert_entries(entries, inspirations, developers):
|
|||||||
if field == 'Inspiration':
|
if field == 'Inspiration':
|
||||||
e = [make_url(inspirations_references[x], make_text(x, 'has-text-weight-semibold')) for x in e]
|
e = [make_url(inspirations_references[x], make_text(x, 'has-text-weight-semibold')) for x in e]
|
||||||
elif field == 'Developer':
|
elif field == 'Developer':
|
||||||
e = [make_url(developer_references[x], make_text(x, 'has-text-weight-semibold')) for x in e]
|
if len(e) > 10: # many devs, print smaller
|
||||||
|
e = [make_url(developer_references[x], make_text(x, 'has-text-weight-semibold is-size-7')) for x in e]
|
||||||
|
else:
|
||||||
|
e = [make_url(developer_references[x], make_text(x, 'has-text-weight-semibold')) for x in e]
|
||||||
elif field in c.url_fields:
|
elif field in c.url_fields:
|
||||||
e = [make_url(x, shortcut_url(x, name)) for x in e]
|
e = [make_url(x, shortcut_url(x, name)) for x in e]
|
||||||
else:
|
else:
|
||||||
e = [make_text(x) for x in e]
|
e = [make_text(x) for x in e]
|
||||||
|
if field == 'Home': # Home -> Homepage
|
||||||
|
field = 'Homepage'
|
||||||
|
elif field == 'Play': # Play -> Play online
|
||||||
|
field = 'Play online'
|
||||||
namex = make_text('{}: '.format(get_plural_or_singular(field, len(e))), 'has-text-weight-semibold')
|
namex = make_text('{}: '.format(get_plural_or_singular(field, len(e))), 'has-text-weight-semibold')
|
||||||
entry[field.lower()] = [namex, make_enumeration(e, divider)]
|
entry[field.lower()] = [namex, make_enumeration(e, divider)]
|
||||||
|
|
||||||
@ -556,7 +566,7 @@ def convert_entries(entries, inspirations, developers):
|
|||||||
if isinstance(e[0], osg.osg_parse.ValueWithComment):
|
if isinstance(e[0], osg.osg_parse.ValueWithComment):
|
||||||
e = [x.value for x in e]
|
e = [x.value for x in e]
|
||||||
if field == 'Code language':
|
if field == 'Code language':
|
||||||
e = [make_url(code_language_references[x], make_text(x, 'is-size-7')) for x in e]
|
e = [make_url(code_language_references[x.value], make_text(x, 'is-size-7')) for x in e]
|
||||||
elif field == 'Code license' or field == 'Assets license':
|
elif field == 'Code license' or field == 'Assets license':
|
||||||
e = [make_url(c.license_urls[x], x, css_class='is-size-7') if x in c.license_urls else make_text(x, 'is-size-7') for x in e]
|
e = [make_url(c.license_urls[x], x, css_class='is-size-7') if x in c.license_urls else make_text(x, 'is-size-7') for x in e]
|
||||||
elif field in c.url_fields:
|
elif field in c.url_fields:
|
||||||
@ -636,7 +646,7 @@ def generate(entries, inspirations, developers):
|
|||||||
# base dictionary
|
# base dictionary
|
||||||
base = {
|
base = {
|
||||||
'title': 'OSGL',
|
'title': 'OSGL',
|
||||||
'creation-date': datetime.datetime.utcnow()
|
'creation-date': datetime.datetime.now(datetime.timezone.utc).strftime('%Y-%m-%d %H:%M')
|
||||||
}
|
}
|
||||||
|
|
||||||
# copy css
|
# copy css
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
<a class="navbar-item{% if 'genres' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'genres.html']) }}">{{ macros.render_icon('price-tag') }}<span>By category</span></a>
|
<a class="navbar-item{% if 'genres' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'genres.html']) }}">{{ macros.render_icon('price-tag') }}<span>By category</span></a>
|
||||||
<a class="navbar-item{% if 'code language' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'languages.html']) }}">{{ macros.render_icon('language') }}<span>By code language</span></a>
|
<a class="navbar-item{% if 'code language' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'languages.html']) }}">{{ macros.render_icon('language') }}<span>By code language</span></a>
|
||||||
<a class="navbar-item{% if 'platforms' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'platforms.html']) }}">{{ macros.render_icon('laptop') }}<span>By OS support</span></a>
|
<a class="navbar-item{% if 'platforms' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'platforms.html']) }}">{{ macros.render_icon('laptop') }}<span>By OS support</span></a>
|
||||||
|
<a class="navbar-item{% if 'top-50' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['games', 'top50.html']) }}">{{ macros.render_icon('star') }}<span>GitHub Stars Top 50</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a class="navbar-item{% if 'frameworks' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['frameworks', 'index.html']) }}">{{ macros.render_icon('wrench') }}<span>Frameworks/Tools</span></a>
|
<a class="navbar-item{% if 'frameworks' in base['active_nav'] %} is-active{% endif %}" href="{{ base['url_to'](['frameworks', 'index.html']) }}">{{ macros.render_icon('wrench') }}<span>Frameworks/Tools</span></a>
|
||||||
@ -43,7 +44,7 @@
|
|||||||
<div class="block">
|
<div class="block">
|
||||||
Disclaimer: The content on this site is the result of voluntary work and may be outdated or incorrect.
|
Disclaimer: The content on this site is the result of voluntary work and may be outdated or incorrect.
|
||||||
The content is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>. Icons and ... <br>
|
The content is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>. Icons and ... <br>
|
||||||
Last updated on {{ base['creation-date'] }}
|
Last updated: {{ base['creation-date'] }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
{%- if 'developer' in item %}{{ macros.render_element(item['developer']) }}{% endif -%}
|
{%- if 'developer' in item %}{{ macros.render_element(item['developer']) }}{% endif -%}
|
||||||
</div>
|
</div>
|
||||||
<div class="block">
|
<div class="block">
|
||||||
{%- for field in ('home', 'media', 'download', 'play') -%}
|
{%- for field in ('homepage', 'media', 'download', 'play online') -%}
|
||||||
{%- if field in item -%}{{ macros.render_element(item[field]) }}<br>{%- endif -%}
|
{%- if field in item -%}{{ macros.render_element(item[field]) }}<br>{%- endif -%}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</div>
|
</div>
|
||||||
|
@ -863,38 +863,50 @@ class EntriesMaintainer:
|
|||||||
print('entries not yet loaded')
|
print('entries not yet loaded')
|
||||||
return
|
return
|
||||||
|
|
||||||
# collect statistics on git repositories
|
# remove download urls that are also in home
|
||||||
created = {}
|
|
||||||
stars = []
|
|
||||||
forks = []
|
|
||||||
for entry in self.entries:
|
for entry in self.entries:
|
||||||
repos = entry['Code repository']
|
homes = entry['Home']
|
||||||
comments = [x.comment for x in repos if x.value.startswith('https://github.com/') and x.comment]
|
downloads = entry.get('Download', [])
|
||||||
for comment in comments:
|
downloads = [download for download in downloads if download not in homes]
|
||||||
comment = comment.split(',')
|
if downloads:
|
||||||
comment = [c.strip() for c in comment]
|
entry['Download'] = downloads
|
||||||
comment = [c for c in comment if c.startswith('@')]
|
if not downloads and 'Download' in entry:
|
||||||
if comment:
|
del entry['Download']
|
||||||
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
|
# # collect statistics on git repositories
|
||||||
np.set_printoptions(suppress=True)
|
# created = {}
|
||||||
stars = np.array(stars, dtype=np.float)
|
# stars = []
|
||||||
forks = np.array(forks, dtype=np.float)
|
# forks = []
|
||||||
q = np.arange(0, 1, 0.1)
|
# for entry in self.entries:
|
||||||
print(np.quantile(stars, q))
|
# repos = entry['Code repository']
|
||||||
print(np.quantile(forks, q))
|
# 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.333)
|
||||||
|
# print(q)
|
||||||
|
# print(np.quantile(stars, q))
|
||||||
|
# print(np.quantile(forks, q))
|
||||||
|
|
||||||
# # cvs without any git
|
# # cvs without any git
|
||||||
# for entry in self.entries:
|
# for entry in self.entries:
|
||||||
|
@ -42,7 +42,7 @@ def get_config(key):
|
|||||||
generic_comment_string = '[comment]: # (partly autogenerated content, edit with care, read the manual before)'
|
generic_comment_string = '[comment]: # (partly autogenerated content, edit with care, read the manual before)'
|
||||||
|
|
||||||
# these fields have to be present in each entry (in this order)
|
# these fields have to be present in each entry (in this order)
|
||||||
essential_fields = ('File', 'Title', 'Home', 'State', 'Keyword', 'Code repository', 'Code language', 'Code license')
|
essential_fields = ('File', 'Title', 'Home', 'State', 'Keyword', 'Code language', 'Code license')
|
||||||
|
|
||||||
# only these fields can be used currently (in this order)
|
# only these fields can be used currently (in this order)
|
||||||
valid_properties = ('Home', 'Media', 'Inspiration', 'State', 'Play', 'Download', 'Platform', 'Keyword', 'Code repository', 'Code language',
|
valid_properties = ('Home', 'Media', 'Inspiration', 'State', 'Play', 'Download', 'Platform', 'Keyword', 'Code repository', 'Code language',
|
||||||
|
@ -235,7 +235,7 @@ def read_entries():
|
|||||||
entries = []
|
entries = []
|
||||||
|
|
||||||
# iterate over all entries
|
# iterate over all entries
|
||||||
exception_happened = False
|
exception_happened = None
|
||||||
for file, _, content in entry_iterator():
|
for file, _, content in entry_iterator():
|
||||||
|
|
||||||
if not content.endswith('\n'):
|
if not content.endswith('\n'):
|
||||||
@ -248,14 +248,14 @@ def read_entries():
|
|||||||
entry = check_and_process_entry(entry)
|
entry = check_and_process_entry(entry)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print('{} - {}'.format(file, e))
|
print('{} - {}'.format(file, e))
|
||||||
exception_happened = True
|
exception_happened = e # just store last one
|
||||||
# raise RuntimeError(e)
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# add to list
|
# add to list
|
||||||
entries.append(entry)
|
entries.append(entry)
|
||||||
if exception_happened:
|
if exception_happened:
|
||||||
raise RuntimeError('errors while reading entries')
|
print('error(s) while reading entries')
|
||||||
|
raise exception_happened
|
||||||
|
|
||||||
return entries
|
return entries
|
||||||
|
|
||||||
@ -354,7 +354,7 @@ def check_and_process_entry(entry):
|
|||||||
message += 'URL "{}" in field "{}" does not start with a valid prefix'.format(value, field)
|
message += 'URL "{}" in field "{}" does not start with a valid prefix'.format(value, field)
|
||||||
|
|
||||||
# github/gitlab repositories should end on .git and should start with https
|
# github/gitlab repositories should end on .git and should start with https
|
||||||
for repo in entry['Code repository']:
|
for repo in entry.get('Code repository', []):
|
||||||
if any(repo.startswith(x) for x in ('@', '?')):
|
if any(repo.startswith(x) for x in ('@', '?')):
|
||||||
continue
|
continue
|
||||||
repo = repo.value.split(' ')[0].strip()
|
repo = repo.value.split(' ')[0].strip()
|
||||||
|
@ -42817,6 +42817,7 @@
|
|||||||
## Philip Dorrell [1]
|
## Philip Dorrell [1]
|
||||||
|
|
||||||
- Games: PrimeShooter
|
- Games: PrimeShooter
|
||||||
|
- Home: http://thinkinghard.com/index.html
|
||||||
|
|
||||||
## Philip Dubé [1]
|
## Philip Dubé [1]
|
||||||
|
|
||||||
@ -45686,6 +45687,7 @@
|
|||||||
## Richard T. Jones [1]
|
## Richard T. Jones [1]
|
||||||
|
|
||||||
- Games: Bouncy the Hungry Rabbit
|
- Games: Bouncy the Hungry Rabbit
|
||||||
|
- Home: http://www.mechanicalcat.net/richard, https://pyweek.org/u/richard/
|
||||||
|
|
||||||
## Richard Turner [1]
|
## Richard Turner [1]
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
- Download: https://github.com/jkroepke/2Moons/releases
|
- Download: https://github.com/jkroepke/2Moons/releases
|
||||||
- Platform: Web
|
- Platform: Web
|
||||||
- Keyword: framework, simulation, strategy, space
|
- Keyword: framework, simulation, strategy, space
|
||||||
- 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 repository: https://github.com/jkroepke/2Moons.git (@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 language: PHP, JavaScript
|
||||||
- Code license: MIT
|
- Code license: MIT
|
||||||
- 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
|
- 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
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
- Home: http://www.newbreedsoftware.com/3dpong/
|
- Home: http://www.newbreedsoftware.com/3dpong/
|
||||||
- State: beta, inactive since 2004
|
- State: beta, inactive since 2004
|
||||||
|
- Download: http://www.newbreedsoftware.com/3dpong/download/
|
||||||
- Platform: Linux, macOS
|
- Platform: Linux, macOS
|
||||||
- Keyword: arcade, 3D, online
|
- Keyword: arcade, 3D, online
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: New Breed Software
|
- Developer: New Breed Software
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
- Home: https://packages.debian.org/sid/3dchess, http://www.ibiblio.org/pub/Linux/games/strategy/3Dc-0.8.1.tar.gz
|
- Home: https://packages.debian.org/sid/3dchess, http://www.ibiblio.org/pub/Linux/games/strategy/3Dc-0.8.1.tar.gz
|
||||||
- State: mature, inactive since 2000
|
- State: mature, inactive since 2000
|
||||||
|
- Download: https://packages.debian.org/source/sid/3dchess
|
||||||
- Keyword: board, puzzle, 3D, chess, content open
|
- Keyword: board, puzzle, 3D, chess, content open
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: libx, libxpm, xaw3dg
|
- Code dependency: libx, libxpm, xaw3dg
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
- Home: http://www.urticator.net/maze/
|
- Home: http://www.urticator.net/maze/
|
||||||
- State: mature, inactive since 2008
|
- State: mature, inactive since 2008
|
||||||
|
- Download: http://www.urticator.net/maze/download.html
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: educational, puzzle, 4D, content none, maze
|
- Keyword: educational, puzzle, 4D, content none, maze
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: Java
|
- Code language: Java
|
||||||
- Code license: Public domain
|
- Code license: Public domain
|
||||||
- Developer: John McIntosh
|
- Developer: John McIntosh
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: http://old.nklein.com/products/54321/
|
- Home: http://old.nklein.com/products/54321/
|
||||||
- State: mature, inactive since 2001
|
- State: mature, inactive since 2001
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: Custom (a very simple copyleft see http://old.nklein.com/etc/copyright.php)
|
- Code license: Custom (a very simple copyleft see http://old.nklein.com/etc/copyright.php)
|
||||||
- Code dependency: libpng, SDL, zlib
|
- Code dependency: libpng, SDL, zlib
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2005
|
- State: beta, inactive since 2005
|
||||||
- Download: https://sourceforge.net/projects/a7xpg/files/a7xpg/
|
- Download: https://sourceforge.net/projects/a7xpg/files/a7xpg/
|
||||||
- Keyword: arcade, flight, space
|
- Keyword: arcade, flight, space
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: D
|
- Code language: D
|
||||||
- Code license: 2-clause BSD
|
- Code license: 2-clause BSD
|
||||||
- Code dependency: libvorbis, SDL
|
- Code dependency: libvorbis, SDL
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
- Home: https://packages.debian.org/sid/acm, https://web.archive.org/web/20130114223737/http://www.websimulations.com/
|
- Home: https://packages.debian.org/sid/acm, https://web.archive.org/web/20130114223737/http://www.websimulations.com/
|
||||||
- State: mature, inactive since 2000
|
- State: mature, inactive since 2000
|
||||||
|
- Download: https://packages.debian.org/source/sid/acm
|
||||||
- Keyword: action, simulation, content open, flight
|
- Keyword: action, simulation, content open, flight
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Assets license: GPL-2.0
|
- Assets license: GPL-2.0
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://github.com/fastrgv/AdaGate/releases
|
- Download: https://github.com/fastrgv/AdaGate/releases
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: puzzle, 3D
|
- Keyword: puzzle, 3D
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Ada
|
- Code language: Ada
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: OpenGL, SDL2
|
- Code dependency: OpenGL, SDL2
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
- Home: https://web.archive.org/web/20180818173613/http://www.mushware.com/, https://packages.qa.debian.org/a/adanaxisgpl.html
|
- Home: https://web.archive.org/web/20180818173613/http://www.mushware.com/, https://packages.qa.debian.org/a/adanaxisgpl.html
|
||||||
- State: mature, inactive since 2007
|
- State: mature, inactive since 2007
|
||||||
|
- Download: https://packages.debian.org/sid/adanaxisgpl
|
||||||
- Keyword: action, 4D, content open, first-person, shooter, single-player, space
|
- Keyword: action, 4D, content open, first-person, shooter, single-player, space
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0 (non-free file in the commercial version)
|
- Code license: GPL-2.0 (non-free file in the commercial version)
|
||||||
- Code dependency: GLUT
|
- Code dependency: GLUT
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://perso.b2b2c.ca/~sarrazip/dev/afternoonstalker.html#download
|
- Download: http://perso.b2b2c.ca/~sarrazip/dev/afternoonstalker.html#download
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: action, remake, clone
|
- Keyword: action, remake, clone
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2014
|
- State: beta, inactive since 2014
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: arcade, 2D, content open
|
- Keyword: arcade, 2D, content open
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Assets license: GPL-2.0
|
- Assets license: GPL-2.0
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature, inactive since 2004
|
- State: mature, inactive since 2004
|
||||||
- Download: https://sourceforge.net/projects/aklabeth/files/aklabeth/
|
- Download: https://sourceforge.net/projects/aklabeth/files/aklabeth/
|
||||||
- Keyword: remake
|
- Keyword: remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: kantharos, Paul Robson
|
- Developer: kantharos, Paul Robson
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://packages.debian.org/stable/games/amphetamine, https://web.archive.org/web/20101023090423/http://homepage.hispeed.ch/loehrer/amph/amph.html
|
- Home: https://packages.debian.org/stable/games/amphetamine, https://web.archive.org/web/20101023090423/http://homepage.hispeed.ch/loehrer/amph/amph.html
|
||||||
- State: beta, inactive since 2008
|
- State: beta, inactive since 2008
|
||||||
- Keyword: platform, 2D, content open
|
- Keyword: platform, 2D, content open
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
- Home: https://web.archive.org/web/20150412072808/http://www.coralquest.com/anagramarama/
|
- Home: https://web.archive.org/web/20150412072808/http://www.coralquest.com/anagramarama/
|
||||||
- State: beta, inactive since 2002
|
- State: beta, inactive since 2002
|
||||||
|
- Download: https://web.archive.org/web/20160315052754/http://www.coralquest.com/anagramarama/download.html
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Assets license: GPL-2.0
|
- Assets license: GPL-2.0
|
||||||
- Developer: Alan Grier, Colm Gallagher, Shard, Thomas Plunkett, Toby A. Inkster
|
- Developer: Alan Grier (@artwork), Colm Gallagher (@lead), Shard, Thomas Plunkett (@audio), Toby A. Inkster
|
||||||
|
|
||||||
Find as many words as possible in the time available.
|
Find as many words as possible in the time available.
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://web.archive.org/web/20110819212117/http://www.fishies.org.uk/apricots.html
|
- Home: https://web.archive.org/web/20110819212117/http://www.fishies.org.uk/apricots.html
|
||||||
- State: beta, inactive since 2003
|
- State: beta, inactive since 2003
|
||||||
- Keyword: arcade, 2D, content open, flight, side-scrolling
|
- Keyword: arcade, 2D, content open, flight, side-scrolling
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
- Home: https://arianne-project.org/, https://arianne-project.org/engine/marauroa.html, https://sourceforge.net/projects/arianne/
|
- Home: https://arianne-project.org/, https://arianne-project.org/engine/marauroa.html, https://sourceforge.net/projects/arianne/
|
||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://arianne-project.org/engine/marauroa.html
|
|
||||||
- Keyword: framework, 2D, multiplayer online
|
- Keyword: framework, 2D, multiplayer online
|
||||||
- Code repository: https://git.code.sf.net/p/arianne/marauroa, http://arianne.cvs.sourceforge.net (cvs)
|
- Code repository: https://git.code.sf.net/p/arianne/marauroa, http://arianne.cvs.sourceforge.net (cvs)
|
||||||
- Code language: Java
|
- Code language: Java
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 2012
|
- State: beta, inactive since 2012
|
||||||
- Download: https://code.google.com/archive/p/artillery-duel-reloaded/downloads
|
- Download: https://code.google.com/archive/p/artillery-duel-reloaded/downloads
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Python
|
- Code language: Python
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: http://aussenposten.gamejs.org/download.html
|
- Download: http://aussenposten.gamejs.org/download.html
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: strategy, content open, real-time
|
- Keyword: strategy, content open, real-time
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: JavaScript
|
- Code language: JavaScript
|
||||||
- Code license: MIT
|
- Code license: MIT
|
||||||
- Code dependency: GameJs
|
- Code dependency: GameJs
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://perso.b2b2c.ca/~sarrazip/dev/batrachians.html#download
|
- Download: https://perso.b2b2c.ca/~sarrazip/dev/batrachians.html#download
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://web.archive.org/web/20190813223336/http://www.hectigo.net/games/beatharvester/
|
- Home: https://web.archive.org/web/20190813223336/http://www.hectigo.net/games/beatharvester/
|
||||||
- State: beta, inactive since 2009
|
- State: beta, inactive since 2009
|
||||||
- Keyword: action, 2D, content open, shooter
|
- Keyword: action, 2D, content open, shooter
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: Python
|
- Code language: Python
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: pygame, PyOpenGL
|
- Code dependency: pygame, PyOpenGL
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
- Home: https://www.anakreon.cz/berusky1.html, https://web.archive.org/web/20151026223411/https://sourceforge.net/projects/berusky/
|
- Home: https://www.anakreon.cz/berusky1.html, https://web.archive.org/web/20151026223411/https://sourceforge.net/projects/berusky/
|
||||||
- Inspiration: Sokoban
|
- Inspiration: Sokoban
|
||||||
- State: mature
|
- State: mature
|
||||||
- Download: @see-home (and https://web.archive.org/web/*/https://sourceforge.net/projects/berusky/files/*)
|
- Download: https://web.archive.org/web/*/https://sourceforge.net/projects/berusky/files/*
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: action, content open, logic
|
- Keyword: action, content open, logic
|
||||||
- Code repository: https://github.com/stransky/berusky.git (@created 2011, @stars 16, @forks 4)
|
- Code repository: https://github.com/stransky/berusky.git (@created 2011, @stars 16, @forks 4)
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/hcsoftware/files/Between/
|
- Download: https://sourceforge.net/projects/hcsoftware/files/Between/
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: puzzle, content open, multiplayer
|
- Keyword: puzzle, content open, multiplayer
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: PHP, C++
|
- Code language: PHP, C++
|
||||||
- Code license: ? (really PD)
|
- Code license: ? (really PD)
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://www.bomberclone.de/core.html
|
- Download: https://www.bomberclone.de/core.html
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: arcade, clone, content open
|
- Keyword: arcade, clone, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Assets license: GPL
|
- Assets license: GPL
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://pyweek.org/e/bouncy/, https://packages.debian.org/sid/bouncy
|
- Home: https://pyweek.org/e/bouncy/, https://packages.debian.org/sid/bouncy
|
||||||
- State: mature, inactive since 2007
|
- State: mature, inactive since 2007
|
||||||
- Keyword: arcade, content open, for kids
|
- Keyword: arcade, content open, for kids
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: Python
|
- Code language: Python
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: pygame
|
- Code dependency: pygame
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/brikx/files/
|
- Download: https://sourceforge.net/projects/brikx/files/
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://briquolo.free.fr/en/download.html
|
- Download: http://briquolo.free.fr/en/download.html
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: action, clone
|
- Keyword: action, clone
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/britbingo/files/
|
- Download: https://sourceforge.net/projects/britbingo/files/
|
||||||
- Platform: Web
|
- Platform: Web
|
||||||
- Keyword: action, board, content open
|
- Keyword: action, board, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: JavaScript
|
- Code language: JavaScript
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: GPL-3.0
|
- Assets license: GPL-3.0
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
- Home: http://browserquest.herokuapp.com/
|
- Home: http://browserquest.herokuapp.com/
|
||||||
- Media: https://en.wikipedia.org/wiki/BrowserQuest
|
- Media: https://en.wikipedia.org/wiki/BrowserQuest
|
||||||
- State: mature
|
- State: mature
|
||||||
- Play: @see-home
|
- Play: http://browserquest.herokuapp.com/
|
||||||
- Platform: Web
|
- Platform: Web
|
||||||
- Keyword: adventure, role playing, multiplayer online + massive
|
- Keyword: adventure, role playing, multiplayer online + massive
|
||||||
- Code repository: https://github.com/mozilla/BrowserQuest.git (@created 2011, @stars 8603, @forks 2567)
|
- Code repository: https://github.com/mozilla/BrowserQuest.git (@created 2011, @stars 8603, @forks 2567)
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://fydo.net/projects/buggygame
|
- Home: https://fydo.net/projects/buggygame
|
||||||
- State: beta, inactive since 2007
|
- State: beta, inactive since 2007
|
||||||
- Keyword: action, content open, side-scrolling, space
|
- Keyword: action, content open, side-scrolling, space
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: Python
|
- Code language: Python
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: pygame
|
- Code dependency: pygame
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html#download
|
- Download: https://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html#download
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 2009
|
- State: beta, inactive since 2009
|
||||||
- Download: https://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip
|
- Download: https://jotd.pagesperso-orange.fr/cadaver/bin/Cadaver-001.zip
|
||||||
- Keyword: action, remake, content commercial + original required
|
- Keyword: action, remake, content commercial + original required
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- Inspiration: Boulder Dash, Digger
|
- Inspiration: Boulder Dash, Digger
|
||||||
- State: beta, inactive since 2011
|
- State: beta, inactive since 2011
|
||||||
- Keyword: action, arcade, content open, text-based
|
- Keyword: action, arcade, content open, text-based
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: GPL-3.0
|
- Assets license: GPL-3.0
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://sourceforge.net/projects/chaosesqueanthology/files/
|
- Download: https://sourceforge.net/projects/chaosesqueanthology/files/
|
||||||
- Keyword: strategy, content open, first-person, shooter
|
- Keyword: strategy, content open, first-person, shooter
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: ?
|
- Code language: ?
|
||||||
- Code license: ? (GPL did not download the iso)
|
- Code license: ? (GPL did not download the iso)
|
||||||
- Assets license: CC-BY (mixed with GPL)
|
- Assets license: CC-BY (mixed with GPL)
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/chrzaszcz/files/
|
- Download: https://sourceforge.net/projects/chrzaszcz/files/
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://www.newbreedsoftware.com/circus-linux/download/, ftp://ftp.tuxpaint.org/unix/x/circus-linux/
|
- Download: http://www.newbreedsoftware.com/circus-linux/download/, ftp://ftp.tuxpaint.org/unix/x/circus-linux/
|
||||||
- Platform: Windows, macOS
|
- Platform: Windows, macOS
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://rohit.itch.io/clonepoint
|
- Home: https://rohit.itch.io/clonepoint
|
||||||
- Inspiration: Gunpoint
|
- Inspiration: Gunpoint
|
||||||
- State: beta
|
- State: beta
|
||||||
- Download: https://rohit.itch.io/clonepoint
|
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: action, clone, content open
|
- Keyword: action, clone, content open
|
||||||
- Code repository: https://github.com/rohit-n/Clonepoint.git (@created 2015, @stars 49, @forks 2)
|
- Code repository: https://github.com/rohit-n/Clonepoint.git (@created 2015, @stars 49, @forks 2)
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2015
|
- State: beta, inactive since 2015
|
||||||
- Download: https://sourceforge.net/projects/corengine/files/
|
- Download: https://sourceforge.net/projects/corengine/files/
|
||||||
- Keyword: game engine, 3D
|
- Keyword: game engine, 3D
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: zlib
|
- Code license: zlib
|
||||||
- Developer: CorEduard
|
- Developer: CorEduard
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://perso.b2b2c.ca/~sarrazip/dev/cosmosmash.html#download
|
- Download: http://perso.b2b2c.ca/~sarrazip/dev/cosmosmash.html#download
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://github.com/fastrgv/CoTerminalApps/releases
|
- Download: https://github.com/fastrgv/CoTerminalApps/releases
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: puzzle, content open, text-based
|
- Keyword: puzzle, content open, text-based
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Ada
|
- Code language: Ada
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: None
|
- Assets license: None
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
- Home: https://varunpant.com/resources/CrappyBird/index.html
|
- Home: https://varunpant.com/resources/CrappyBird/index.html
|
||||||
- Inspiration: Flappy Bird
|
- Inspiration: Flappy Bird
|
||||||
- State: mature, inactive since 2017
|
- State: mature, inactive since 2017
|
||||||
- Play: @see-home
|
- Play: https://varunpant.com/resources/CrappyBird/index.html
|
||||||
- Platform: Web
|
- Platform: Web
|
||||||
- Keyword: puzzle, remake
|
- Keyword: puzzle, remake
|
||||||
- Code repository: https://github.com/varunpant/CrappyBird.git (@created 2014, @stars 30, @forks 48)
|
- Code repository: https://github.com/varunpant/CrappyBird.git (@created 2014, @stars 30, @forks 48)
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2013
|
- State: beta, inactive since 2013
|
||||||
- Download: https://sourceforge.net/projects/critterding/files/critterding/
|
- Download: https://sourceforge.net/projects/critterding/files/critterding/
|
||||||
- Keyword: simulation, strategy, content open, evolution
|
- Keyword: simulation, strategy, content open, evolution
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/cultivation/files/cultivation/
|
- Download: https://sourceforge.net/projects/cultivation/files/cultivation/
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: simulation, 2D, content open, evolution
|
- Keyword: simulation, 2D, content open, evolution
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: Public domain (http://cultivation.sourceforge.net/)
|
- Code license: Public domain (http://cultivation.sourceforge.net/)
|
||||||
- Code dependency: GLUT
|
- Code dependency: GLUT
|
||||||
|
@ -5,9 +5,9 @@
|
|||||||
- State: mature, inactive since 2000
|
- State: mature, inactive since 2000
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: library
|
- Keyword: library
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: ? (BSD version?)
|
- Code license: ? (BSD version?)
|
||||||
|
- Developer: Ken Arnold
|
||||||
|
|
||||||
Terminal control library for Unix-like systems.
|
Terminal control library for Unix-like systems.
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://gottcode.org/cutemaze/
|
- Home: https://gottcode.org/cutemaze/
|
||||||
- State: mature
|
- State: mature
|
||||||
- Keyword: puzzle, maze
|
- Keyword: puzzle, maze
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: Qt
|
- Code dependency: Qt
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/cytadela/files/
|
- Download: https://sourceforge.net/projects/cytadela/files/
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: remake, shooter
|
- Keyword: remake, shooter
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://www.newbreedsoftware.com/defendguin/download/, ftp://ftp.tuxpaint.org/unix/x/defendguin
|
- Download: http://www.newbreedsoftware.com/defendguin/download/, ftp://ftp.tuxpaint.org/unix/x/defendguin
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: remake
|
- Keyword: remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature, inactive since 2004
|
- State: mature, inactive since 2004
|
||||||
- Download: https://digger.org/download.html
|
- Download: https://digger.org/download.html
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
- Download: https://sourceforge.net/projects/directpython/files/, https://sourceforge.net/projects/directpython11/files/
|
- Download: https://sourceforge.net/projects/directpython/files/, https://sourceforge.net/projects/directpython11/files/
|
||||||
- Platform: Windows
|
- Platform: Windows
|
||||||
- Keyword: library
|
- Keyword: library
|
||||||
- Code repository: http://hg.code.sf.net/p/directpython11/code @see-download
|
- Code repository: http://hg.code.sf.net/p/directpython11/code
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: 2-clause BSD (source headers)
|
- Code license: 2-clause BSD (source headers)
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 2008
|
- State: beta, inactive since 2008
|
||||||
- Download: http://www.rancidmeat.com/projects/duke3d_w32/duke3d_w32_b20_src.zip
|
- Download: http://www.rancidmeat.com/projects/duke3d_w32/duke3d_w32_b20_src.zip
|
||||||
- Keyword: action, remake, content commercial + original required, multiplayer LAN, shooter
|
- Keyword: action, remake, content commercial + original required, multiplayer LAN, shooter
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://dukeworld.com/eduke32/synthesis/latest/?s=d&o=d&dir=eduke32/synthesis/latest
|
- Download: https://dukeworld.com/eduke32/synthesis/latest/?s=d&o=d&dir=eduke32/synthesis/latest
|
||||||
- Keyword: action, remake, content commercial + original required, shooter
|
- Keyword: action, remake, content commercial + original required, shooter
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C, C++
|
- Code language: C, C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: Helixhorned, Hendricks266, hnt_tss, Pierre-Loup A. Griffais, Qbix, Richard C. Gobeille
|
- Developer: Helixhorned, Hendricks266, hnt_tss, Pierre-Loup A. Griffais, Qbix, Richard C. Gobeille
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# Evil Cult
|
# Evil Cult
|
||||||
|
|
||||||
- Home: https://code.google.com/archive/p/cult/
|
- Home: https://code.google.com/archive/p/cult/
|
||||||
|
- Media: https://trilarion.blogspot.com/2020/12/review-of-evil-cult.html
|
||||||
- State: mature
|
- State: mature
|
||||||
- Play: http://www.in-fi-del.net/static/cult/index.html
|
- Play: http://www.in-fi-del.net/static/cult/index.html
|
||||||
- Platform: Web
|
- Platform: Web
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://archive.org/details/ExcellentFix, https://packages.debian.org/source/excellent-bifurcation
|
- Home: https://archive.org/details/ExcellentFix, https://packages.debian.org/source/excellent-bifurcation
|
||||||
- State: mature, inactive since 2007
|
- State: mature, inactive since 2007
|
||||||
- Keyword: action, content open, shooter, top-down
|
- Keyword: action, content open, shooter, top-down
|
||||||
- Code repository: @see-debian
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Assets license: GPL-2.0
|
- Assets license: GPL-2.0
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://braingames.jorito.net/f1spirit/f1spirit.src_0.rc9-1615.tgz
|
- Download: https://braingames.jorito.net/f1spirit/f1spirit.src_0.rc9-1615.tgz
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: remake, simulation, content open
|
- Keyword: remake, simulation, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: ?
|
- Code license: ?
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/falconseye/files/
|
- Download: https://sourceforge.net/projects/falconseye/files/
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: remake, simulation, isometric, roguelike
|
- Keyword: remake, simulation, isometric, roguelike
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: NetHack General Public License
|
- Code license: NetHack General Public License
|
||||||
- Developer: Jaakko Tapani Peltonen
|
- Developer: Jaakko Tapani Peltonen
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2014
|
- State: beta, inactive since 2014
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: action, content open, shooter, top-down
|
- Keyword: action, content open, shooter, top-down
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: Qt
|
- Code dependency: Qt
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/foobillard/files/
|
- Download: https://sourceforge.net/projects/foobillard/files/
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: simulation, sports, 3D
|
- Keyword: simulation, sports, 3D
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: GLUT, SDL
|
- Code dependency: GLUT, SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 2011
|
- State: beta, inactive since 2011
|
||||||
- Download: https://www.princed.org/downloads/#FreePrince
|
- Download: https://www.princed.org/downloads/#FreePrince
|
||||||
- Keyword: action, platform, remake
|
- Keyword: action, platform, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/funlaby/files/
|
- Download: https://sourceforge.net/projects/funlaby/files/
|
||||||
- Platform: Windows
|
- Platform: Windows
|
||||||
- Keyword: puzzle, maze
|
- Keyword: puzzle, maze
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Pascal
|
- Code language: Pascal
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: jpaul_d, Sébastien Jean Robert Doeraene
|
- Developer: jpaul_d, Sébastien Jean Robert Doeraene
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
- Inspiration: arithmetic, TuxMath
|
- Inspiration: arithmetic, TuxMath
|
||||||
- State: mature, inactive since 2013
|
- State: mature, inactive since 2013
|
||||||
- Keyword: educational, content open, for kids
|
- Keyword: educational, content open, for kids
|
||||||
- Code repository: https://gitlab.com/wavexx/garith.git, https://github.com/wavexx/garith.git (archived, @archived, @created 2014, @stars 1, @forks 0)
|
- Code repository: https://gitlab.com/wavexx/garith.git, https://github.com/wavexx/garith.git (@archived, @created 2014, @stars 1, @forks 0)
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: LGPL-2.1
|
- Code license: LGPL-2.1
|
||||||
- Code dependency: GLUT
|
- Code dependency: GLUT
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://www.newbreedsoftware.com/gemdropx/download/
|
- Download: http://www.newbreedsoftware.com/gemdropx/download/
|
||||||
- Platform: Linux, macOS
|
- Platform: Linux, macOS
|
||||||
- Keyword: puzzle
|
- Keyword: puzzle
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: https://web.archive.org/web/20160308075926/http://www.jejik.com/gnome-hearts/, https://packages.ubuntu.com/xenial/gnome-hearts, https://packages.debian.org/search?keywords=gnome-hearts, https://launchpad.net/hearts
|
- Home: https://web.archive.org/web/20160308075926/http://www.jejik.com/gnome-hearts/, https://packages.ubuntu.com/xenial/gnome-hearts, https://packages.debian.org/search?keywords=gnome-hearts, https://launchpad.net/hearts
|
||||||
- State: mature, inactive since 2015
|
- State: mature, inactive since 2015
|
||||||
- Keyword: cards, strategy
|
- Keyword: cards, strategy
|
||||||
- Code repository: @see-debian
|
|
||||||
- Code language: Python
|
- Code language: Python
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://web.archive.org/web/20111209123851/http://www.tweeler.com/GoOllie_13.sh
|
- Download: https://web.archive.org/web/20111209123851/http://www.tweeler.com/GoOllie_13.sh
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: platform, content open
|
- Keyword: platform, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: ?
|
- Code language: ?
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: remake, skill
|
- Keyword: remake, skill
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: Qt
|
- Code dependency: Qt
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: mature, inactive since 2006
|
- State: mature, inactive since 2006
|
||||||
- Download: https://sourceforge.net/projects/grabble/files/
|
- Download: https://sourceforge.net/projects/grabble/files/
|
||||||
- Keyword: puzzle
|
- Keyword: puzzle
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Java
|
- Code language: Java
|
||||||
- Code license: ?
|
- Code license: ?
|
||||||
- Developer: CMG Lee
|
- Developer: CMG Lee
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/hcsoftware/files/Gravitation/
|
- Download: https://sourceforge.net/projects/hcsoftware/files/Gravitation/
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: adventure, content open
|
- Keyword: adventure, content open
|
||||||
- Code repository: @see-download (maybe some repositories at SF)
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: Public domain
|
- Code license: Public domain
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- Media: https://en.wikipedia.org/wiki/Hack_(video_game)
|
- Media: https://en.wikipedia.org/wiki/Hack_(video_game)
|
||||||
- State: mature, inactive since 1985
|
- State: mature, inactive since 1985
|
||||||
- Keyword: role playing, roguelike, text-based
|
- Keyword: role playing, roguelike, text-based
|
||||||
- Code repository: @see-debian (bsdgames)
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: 3-clause BSD
|
- Code license: 3-clause BSD
|
||||||
- Developer: Jay Fenlason
|
- Developer: Jay Fenlason
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/hannah/files/
|
- Download: https://sourceforge.net/projects/hannah/files/
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: action, arcade, content open, for kids
|
- Keyword: action, arcade, content open, for kids
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://tomatoes.sourceforge.net/downloads.html
|
- Download: http://tomatoes.sourceforge.net/downloads.html
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: arcade, remake, scrolling
|
- Keyword: arcade, remake, scrolling
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: zlib
|
- Code license: zlib
|
||||||
- Developer: Mika Halttunen, Paul Wise
|
- Developer: Mika Halttunen, Paul Wise
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 1998
|
- State: beta, inactive since 1998
|
||||||
- Download: http://www.newbreedsoftware.com/icbm3d/download/, ftp://ftp.tuxpaint.org/unix/x/icbm3d
|
- Download: http://www.newbreedsoftware.com/icbm3d/download/, ftp://ftp.tuxpaint.org/unix/x/icbm3d
|
||||||
- Keyword: arcade, artillery, clone
|
- Keyword: arcade, artillery, clone
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: ? (GPL-2.0 maybe but could not find it in the source code)
|
- Code license: ? (GPL-2.0 maybe but could not find it in the source code)
|
||||||
- Developer: Bill Kendrick
|
- Developer: Bill Kendrick
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://mattdm.org/icebreaker/download.shtml
|
- Download: https://mattdm.org/icebreaker/download.shtml
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: arcade, remake
|
- Keyword: arcade, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://empiredirectory.net/index.php/new-downloads
|
- Download: https://empiredirectory.net/index.php/new-downloads
|
||||||
- Keyword: role playing, console
|
- Keyword: role playing, console
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: ?
|
- Code language: ?
|
||||||
- Code license: ?
|
- Code license: ?
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
- State: beta, inactive since 2018
|
- State: beta, inactive since 2018
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: remake, first-person, shooter
|
- Keyword: remake, first-person, shooter
|
||||||
- Code repository: https://github.com/inexorgame/vulkan-renderer.git (@created 2019, @stars 173, @forks 6), https://github.com/inexorgame/inexor-core.git @add (archived, @archived, @created 2014, @stars 8, @forks 0)
|
- Code repository: https://github.com/inexorgame/vulkan-renderer.git (@created 2019, @stars 173, @forks 6), https://github.com/inexorgame/inexor-core.git @add (@archived, @created 2014, @stars 8, @forks 0)
|
||||||
- Code language: C++, JavaScript
|
- Code language: C++, JavaScript
|
||||||
- Code license: zlib
|
- Code license: zlib
|
||||||
- Code dependency: Cube 2
|
- Code dependency: Cube 2
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
- Inspiration: Infinity Loop
|
- Inspiration: Infinity Loop
|
||||||
- State: mature, inactive since 2017
|
- State: mature, inactive since 2017
|
||||||
- Keyword: puzzle, clone, content open
|
- Keyword: puzzle, clone, content open
|
||||||
- Code repository: https://github.com/omarchehab98/io-reboot.git (archived, @archived, @created 2016, @stars 16, @forks 5)
|
- Code repository: https://github.com/omarchehab98/io-reboot.git (@archived, @created 2016, @stars 16, @forks 5)
|
||||||
- Code language: C#
|
- Code language: C#
|
||||||
- Code license: MIT
|
- Code license: MIT
|
||||||
- Code dependency: Unity
|
- Code dependency: Unity
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- State: mature, inactive since 2013
|
- State: mature, inactive since 2013
|
||||||
- Download: https://web.archive.org/web/20150802151352/http://www.ironseed.com/ironseed-v1.20.0016-2013-03-17.zip
|
- Download: https://web.archive.org/web/20150802151352/http://www.ironseed.com/ironseed-v1.20.0016-2013-03-17.zip
|
||||||
- Keyword: remake
|
- Keyword: remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Pascal
|
- Code language: Pascal
|
||||||
- Code license: GPL-3.0 (not with the source code)
|
- Code license: GPL-3.0 (not with the source code)
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- State: beta, inactive since 2009
|
- State: beta, inactive since 2009
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: puzzle, content open, physics
|
- Keyword: puzzle, content open, physics
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: GPL-3.0
|
- Assets license: GPL-3.0
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/jsokoapplet/files/
|
- Download: https://sourceforge.net/projects/jsokoapplet/files/
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Java
|
- Code language: Java
|
||||||
- Code license: GPL-3.0 (+credits +no-misrepresentation)
|
- Code license: GPL-3.0 (+credits +no-misrepresentation)
|
||||||
- Assets license: GPL (+credits +no-misrepresentation)
|
- Assets license: GPL (+credits +no-misrepresentation)
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: http://www.knightsgame.org.uk/download.html
|
- Download: http://www.knightsgame.org.uk/download.html
|
||||||
- Platform: Windows
|
- Platform: Windows
|
||||||
- Keyword: remake, role playing, dungeon, multiplayer
|
- Keyword: remake, role playing, dungeon, multiplayer
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
- Home: http://olofson.net/kobodl/
|
- Home: http://olofson.net/kobodl/
|
||||||
- Inspiration: XKobo
|
- Inspiration: XKobo
|
||||||
- State: beta, inactive since 2007
|
- State: beta, inactive since 2007
|
||||||
|
- Download: http://olofson.net/kobodl/download.html
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: action, 2D, content open, scrolling, shooter, space
|
- Keyword: action, 2D, content open, scrolling, shooter, space
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-2.0 (LGPL?)
|
- Code license: GPL-2.0 (LGPL?)
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
- State: beta, inactive since 2011
|
- State: beta, inactive since 2011
|
||||||
- Download: https://sourceforge.net/projects/kqlives/files/
|
- Download: https://sourceforge.net/projects/kqlives/files/
|
||||||
- Keyword: role playing
|
- Keyword: role playing
|
||||||
- Code repository: https://github.com/OnlineCop/kqlives.git (archived, @archived, @created 2016, @stars 1, @forks 0), https://svn.code.sf.net/p/kqlives/code (svn)
|
- Code repository: https://github.com/OnlineCop/kqlives.git (@archived, @created 2016, @stars 1, @forks 0), https://svn.code.sf.net/p/kqlives/code (svn)
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: Brian Bennett, Chris Barry, Edgar Alberto Molina, Eduardo Machado de Oliveira, Eric Love, Günther Brammer, Josh Bolduc, Matthew Leverton, Nicholas Davies, OnlineCop, Peter Hull, Rathe Holloway, ReyBrujo, Team Terradactyl, Winter Knight, Z9484
|
- Developer: Brian Bennett, Chris Barry, Edgar Alberto Molina, Eduardo Machado de Oliveira, Eric Love, Günther Brammer, Josh Bolduc, Matthew Leverton, Nicholas Davies, OnlineCop, Peter Hull, Rathe Holloway, ReyBrujo, Team Terradactyl, Winter Knight, Z9484
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
- Home: http://mbays.freeshell.org/kuklomenos/
|
- Home: http://mbays.freeshell.org/kuklomenos/
|
||||||
- State: beta, inactive since 2012
|
- State: beta, inactive since 2012
|
||||||
|
- Download: http://mbays.freeshell.org/kuklomenos/#downloads
|
||||||
- Keyword: arcade, content open, shooter
|
- Keyword: arcade, content open, shooter
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: beta, inactive since 2016
|
- State: beta, inactive since 2016
|
||||||
- Download: https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/l-echo/source-archive.zip
|
- Download: https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/l-echo/source-archive.zip
|
||||||
- Keyword: puzzle, remake
|
- Keyword: puzzle, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
|
|
||||||
|
@ -3,9 +3,8 @@
|
|||||||
- Home: https://ostermiller.org/ladder/
|
- Home: https://ostermiller.org/ladder/
|
||||||
- Inspiration: Ladder
|
- Inspiration: Ladder
|
||||||
- State: mature, inactive since 2005
|
- State: mature, inactive since 2005
|
||||||
- Download: https://ostermiller.org/ladder/download.html
|
- Download: https://ostermiller.org/ladder/download.html (inside JAR file)
|
||||||
- Keyword: arcade, remake, text-based
|
- Keyword: arcade, remake, text-based
|
||||||
- Code repository: @see-download (inside JAR file)
|
|
||||||
- Code language: Java
|
- Code language: Java
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: Stephen Ostermiller
|
- Developer: Stephen Ostermiller
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://code.google.com/archive/p/lambdarogue/downloads
|
- Download: https://code.google.com/archive/p/lambdarogue/downloads
|
||||||
- Platform: Windows, Linux
|
- Platform: Windows, Linux
|
||||||
- Keyword: role playing, roguelike
|
- Keyword: role playing, roguelike
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Pascal
|
- Code language: Pascal
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: Mario Donick
|
- Developer: Mario Donick
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- Download: https://julianoliver.com/levelhead/install.html
|
- Download: https://julianoliver.com/levelhead/install.html
|
||||||
- Platform: Linux
|
- Platform: Linux
|
||||||
- Keyword: puzzle, content open
|
- Keyword: puzzle, content open
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++, Python
|
- Code language: C++, Python
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: CC-BY-SA-3.0
|
- Assets license: CC-BY-SA-3.0
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- Media: https://en.wikipedia.org/wiki/Lugaru
|
- Media: https://en.wikipedia.org/wiki/Lugaru
|
||||||
- Inspiration: Lugaru: The Rabbit's Foot
|
- Inspiration: Lugaru: The Rabbit's Foot
|
||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://osslugaru.gitlab.io/
|
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: action, remake
|
- Keyword: action, remake
|
||||||
- Code repository: https://gitlab.com/osslugaru/lugaru.git
|
- Code repository: https://gitlab.com/osslugaru/lugaru.git
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Download: https://7-zip.org/download.html, https://7-zip.org/sdk.html
|
- Download: https://7-zip.org/download.html, https://7-zip.org/sdk.html
|
||||||
- Keyword: library
|
- Keyword: library
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: LGPL-2.0
|
- Code license: LGPL-2.0
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
- Home: http://machinations.sourceforge.net/index.php, https://sourceforge.net/projects/machinations/
|
- Home: http://machinations.sourceforge.net/index.php, https://sourceforge.net/projects/machinations/
|
||||||
- Inspiration: StarCraft, Total Annihilation
|
- Inspiration: StarCraft, Total Annihilation
|
||||||
- State: beta, inactive since 2003
|
- State: beta, inactive since 2003
|
||||||
- Download: https://sourceforge.net/projects/machinations/
|
|
||||||
- Keyword: strategy, 3D, real-time
|
- Keyword: strategy, 3D, real-time
|
||||||
- Code repository: https://gitlab.com/osgames/machinations.git (backup of cvs), http://machinations.cvs.sourceforge.net/ (cvs)
|
- Code repository: https://gitlab.com/osgames/machinations.git (backup of cvs), http://machinations.cvs.sourceforge.net/ (cvs)
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
- State: mature
|
- State: mature
|
||||||
- Download: http://mahjong.julianbradfield.org/Linux/, http://mahjong.julianbradfield.org/Windows/, http://mahjong.julianbradfield.org/Source/
|
- Download: http://mahjong.julianbradfield.org/Linux/, http://mahjong.julianbradfield.org/Windows/, http://mahjong.julianbradfield.org/Source/
|
||||||
- Keyword: strategy
|
- Keyword: strategy
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
- Developer: Julian Bradfield
|
- Developer: Julian Bradfield
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://sourceforge.net/projects/mmario/files/
|
- Download: https://sourceforge.net/projects/mmario/files/
|
||||||
- Platform: Windows
|
- Platform: Windows
|
||||||
- Keyword: action, platform, remake
|
- Keyword: action, platform, remake
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: C++
|
- Code language: C++
|
||||||
- Code license: LGPL-2.1
|
- Code license: LGPL-2.1
|
||||||
- Code dependency: SDL
|
- Code dependency: SDL
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- Download: https://github.com/fastrgv/MiniPacman/releases
|
- Download: https://github.com/fastrgv/MiniPacman/releases
|
||||||
- Platform: Windows, Linux, macOS
|
- Platform: Windows, Linux, macOS
|
||||||
- Keyword: arcade, content open, text-based
|
- Keyword: arcade, content open, text-based
|
||||||
- Code repository: @see-download
|
|
||||||
- Code language: Ada
|
- Code language: Ada
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Assets license: None
|
- Assets license: None
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- Inspiration: Deflektor
|
- Inspiration: Deflektor
|
||||||
- State: mature
|
- State: mature
|
||||||
- Keyword: puzzle, remake
|
- Keyword: puzzle, remake
|
||||||
- Code repository: @see-home
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-2.0
|
- Code license: GPL-2.0
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
- Inspiration: Pong
|
- Inspiration: Pong
|
||||||
- State: beta, inactive since 2009
|
- State: beta, inactive since 2009
|
||||||
- Keyword: arcade, multiplayer, online
|
- Keyword: arcade, multiplayer, online
|
||||||
- Code repository: @see-debian
|
|
||||||
- Code language: C
|
- Code language: C
|
||||||
- Code license: GPL-3.0
|
- Code license: GPL-3.0
|
||||||
- Developer: Jan Friederich, Kai Hertel
|
- Developer: Jan Friederich, Kai Hertel
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user