48 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			2.5 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>List of open source games in beta or mature state under a license that allows sharing and modification. The list is 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>). For feedback (additions, corrections, ..) use the <a href="https://github.com/Trilarion/opensourcegames/issues">Issue tracker</a>. Some <a href="https://github.com/Trilarion/opensourcegames/blob/master/statistics.md#statistics">statistics</a> about the games.</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>, <a href="https://libregamewiki.org/Main_Page">LibreGameWiki</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>Games mostly written in C++, C, Java, Python, Lua, Javascript or PHP.</li>
 | |
|     <li>Games mostly published under GPL-2.0/3.0, MIT or Apache-2.0 license.</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: 30,
 | |
|        perPageSelect: [15, 30, 50],
 | |
|        ajax: "data.json",
 | |
|        footer: true
 | |
|      });
 | |
|      dataTable.on('datatable.init', function(args) {
 | |
|        dataTable.columns().sort(1);
 | |
|      });
 | |
|    </script>
 | |
| </body>
 | |
| </html> |