Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ajlopez committed Jan 3, 2013
0 parents commit 2dc3c12
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .npmignore
@@ -0,0 +1 @@
/samples
23 changes: 23 additions & 0 deletions LICENSE
@@ -0,0 +1,23 @@

Copyright (C) 2013, Angel J Lopez
http://www.ajlopez.com
http://ajlopez.wordpress.com
http://twitter.com/ajlopez

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
48 changes: 48 additions & 0 deletions README.md
@@ -0,0 +1,48 @@
# SimplChess

Chess game implementation with evaluators.

## Installation

Via npm on Node:

```
npm install simplechess
```


## Usage

Reference in your program:

```js
var simplechess = require('simplechess');
```

TBD
## Development

```
git clone git://github.com/ajlopez/SimpleChess.git
cd SimpleChess
npm install
npm test
```

## Samples

TBD

## To do

- Samples

## Contribution

Feel free to [file issues](https://github.com/ajlopez/SimpleChess) and submit
[pull requests](https://github.com/ajlopez/SimpleChess/pulls) — contributions are
welcome.

If you submit a pull request, please be sure to add or update corresponding
test cases, and ensure that `npm test` continues to pass.

16 changes: 16 additions & 0 deletions package.json
@@ -0,0 +1,16 @@
{ "name": "simplechess"
, "description": "Chess game and evaluation"
, "keywords": [ "game", "chess", "javascript" ]
, "version": "0.0.1alpha"
, "author": "Angel 'Java' Lopez <webmaster@ajlopez.com> (http://www.ajlopez.com)"
, "repository": { "type": "git", "url": "git://github.com/ajlopez/SimpleChess.git" }
, "main": "./lib/simplechess.js"
, "engines": { "node": ">= 0.6.0 && < 0.9.0" }
, "scripts": {
"test": "node ./test.js"
}
, "dependencies": {
}
, "devDependencies": {
}
}
54 changes: 54 additions & 0 deletions test.js
@@ -0,0 +1,54 @@
#!/usr/bin/env node

// Based on https://github.com/laverdet/node-fibers/blob/master/test.js

var fs = require('fs');
var spawn = require('child_process').spawn;
var path = require('path');

function runTest(test, cb) {
var proc = spawn(process.execPath, [path.join('test', test)], {env: {NODE_PATH: __dirname}});
proc.stdout.setEncoding('utf8');
proc.stderr.setEncoding('utf8');

var stdout = '', stderr = '';
proc.stdout.on('data', function(data) {
stdout += data;
});
proc.stderr.on('data', function(data) {
stderr += data;
});
proc.stdin.end();

proc.on('exit', function(code) {
if ((stdout !== 'pass\n' && stdout !== '') || stderr !== '') {
return cb(new Error(
'Test `'+ test+ '` failed.\n'+
'code: '+ code+ '\n'+
'stderr: '+ stderr+ '\n'+
'stdout: '+ stdout));
}
console.log(test+ ': '+ 'pass');
cb();
});
}

var cb = function(err) {
if (err) {
console.error(String(err));
process.exit(1);
}
};
fs.readdirSync('./test').reverse().forEach(function(file) {
var stats = fs.lstatSync(path.join('./test',file));
if (!stats.isFile())
return;

cb = new function(cb, file) {
return function(err) {
if (err) return cb(err);
runTest(file, cb);
};
}(cb, file);
});
cb();

0 comments on commit 2dc3c12

Please sign in to comment.