Skip to content

Commit

Permalink
Updated license information
Browse files Browse the repository at this point in the history
  • Loading branch information
mortennobel committed Apr 15, 2012
1 parent 67b4415 commit e395088
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
14 changes: 11 additions & 3 deletions example/chess/chess.html
Expand Up @@ -14,11 +14,19 @@
<header></header>
<h1>KickJS chess</h1>
<div style="padding: 5px;">
Chess engine created based on <a href="http://www.tckerrigan.com/Chess/TSCP">Tom Kerrigan's Simple Chess Program (TSCP)</a> Copyright 1997 Tom Kerrigan<br>
Left click to select (and to move). Right click to change view.<br>
Chess engine created based on <a href="http://www.tckerrigan.com/Chess/TSCP">Tom Kerrigan's Simple Chess Program (TSCP)</a> Copyright 1997 Tom Kerrigan. (See full copyright text at the end of the page)<br><br>
The KickJS chess is more a proof of concept than an full chess game.<br><br>
Left click to select (and to move). Right click to change view.<br>

</div><br>
<!--<button id="fullscreen" class='yui3-button'>Full screen</button><br>-->
<canvas id="canvas" style="border: none;" width="800" height="800"></canvas>
<canvas id="canvas" width="800" height="800"></canvas>

<h1>TSCP Copyright notice</h1>
TSCP is copyrighted. You have my permission to download it, look at the code, and run it. If you want to do anything else with TSCP you must get my explicit permission. This includes redistributing TSCP, creating a derivative work, or using any of its code for any reason.
<br>
To get permission, just e-mail me at tom.kerrigan@gmail.com. As long as you aren't trying to proft off my work or take credit for it, I will almost certainly give you permission.<br><br>

<script type="text/javascript">
if (location.search === "?debug"){
document.write('<script type="text/javascript" src="../js/webgl-debug.js"></s'+'cript>');
Expand Down
9 changes: 9 additions & 0 deletions example/chess/tscp181.js
@@ -1,3 +1,12 @@
// The following code is crosscompiled from the chess engine TSCP (C++).
// The code is used by permission from Tom Kerrigan
//
// License
//
// TSCP is copyrighted. You have my permission to download it, look at the code, and run it. If you want to do anything else with TSCP you must get my explicit permission. This includes redistributing TSCP, creating a derivative work, or using any of its code for any reason.
//
// To get permission, just e-mail me at tom.kerrigan@gmail.com. As long as you aren't trying to proft off my work or take credit for it, I will almost certainly give you permission.

// Note: Some Emscripten settings will significantly limit the speed of the generated code.
// Note: Some Emscripten settings may limit the speed of the generated code.
// TODO: " u s e s t r i c t ";
Expand Down

0 comments on commit e395088

Please sign in to comment.