opensourcegames/docs/index.html
2018-06-13 14:11:03 +02:00

49 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Open Source Games</title>
<meta name="description" content="">
<meta name="author" content="Trilarion">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/vanilla-dataTables.css">
<script type="text/javascript" src="js/vanilla-dataTables.js"></script>
</head>
<body>
<div class="container">
<h2>List of Open Source Games</h2>
<p>Collection of open source games managed on <a href="https://github.com/Trilarion/opensourcegames">Github</a> (see also the <a href="https://trilarion.blogspot.com/search/label/osgames">Blog</a>). Give feedback on the <a href="https://github.com/Trilarion/opensourcegames/issues">Issue tracker</a>.</p>
<p> Other collections: <a href="https://osgameclones.com/">Open Source Game Clones</a>, <a href="https://github.com/leereilly/games/blob/master/README.md">Games on Github</a>, <a href="https://en.wikipedia.org/wiki/List_of_open-source_video_games">Open source games (Wikipedia)</a></p>
<p><h4>Features</h4></p>
<p>
<ul>
<li>Over 400 game entries. About 60% of the projects are mature and about 40% are currently inactive.</li>
<li>Mostly written in C++, C, Java, Python, Lua, Javascript or PHP.</li>
<li>Mostly published under GPL-2.0/3.0, MIT or Apache-2.0 license.</li>
<li>Tagged with keywords like: TBS, RTS, roguelike, remake, MMO, ..</li>
<li>Columns in the table (below) can be sorted and the rows can be filtered using the "Search" field.</li>
<li>Follow the "entry" link to see more details.</li>
</ul>
</p>
<p><a name="table"></a><h4>Table</h4></p>
<p>
<table class="table"></table>
<small>Dynamic table powered by <a href="https://github.com/Mobius1/Vanilla-DataTables">Vanilla-DataTables</a>.</small>
</p>
</div>
<script>
var dataTable = new DataTable("table", {
perPage: 15,
perPageSelect: [10, 15, 30],
ajax: "data.json",
footer: true
});
dataTable.on('datatable.init', function(args) {
dataTable.columns().sort(1);
});
</script>
</body>
</html>