├── .dockerignore ├── .gitattributes ├── .gitignore ├── Dockerfile ├── README.md ├── VARS.js ├── package.json ├── server.js ├── tampermonkey script ├── content │ ├── UserGui.js │ ├── chessboard.css │ ├── chessboard.js │ ├── chesspieces │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── jquery.js │ ├── lozza.js │ ├── stockfish-2018.js │ ├── stockfish-5.js │ └── stockfish-multi-thread │ │ ├── stockfish.js │ │ ├── stockfish.wasm │ │ └── stockfish.worker.js └── smart-chess.js └── utils ├── engine.js ├── engine └── engine_path └── process.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tampermonkey script 3 | utils/engine/* 4 | */stockfish* -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.exe 3 | *.bin -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/README.md -------------------------------------------------------------------------------- /VARS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/VARS.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/server.js -------------------------------------------------------------------------------- /tampermonkey script/content/UserGui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/UserGui.js -------------------------------------------------------------------------------- /tampermonkey script/content/chessboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chessboard.css -------------------------------------------------------------------------------- /tampermonkey script/content/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chessboard.js -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bB.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bK.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bN.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bP.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bQ.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/bR.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wB.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wK.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wN.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wP.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wQ.svg -------------------------------------------------------------------------------- /tampermonkey script/content/chesspieces/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/chesspieces/wR.svg -------------------------------------------------------------------------------- /tampermonkey script/content/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/jquery.js -------------------------------------------------------------------------------- /tampermonkey script/content/lozza.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/lozza.js -------------------------------------------------------------------------------- /tampermonkey script/content/stockfish-2018.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/stockfish-2018.js -------------------------------------------------------------------------------- /tampermonkey script/content/stockfish-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/stockfish-5.js -------------------------------------------------------------------------------- /tampermonkey script/content/stockfish-multi-thread/stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/stockfish-multi-thread/stockfish.js -------------------------------------------------------------------------------- /tampermonkey script/content/stockfish-multi-thread/stockfish.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/stockfish-multi-thread/stockfish.wasm -------------------------------------------------------------------------------- /tampermonkey script/content/stockfish-multi-thread/stockfish.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/content/stockfish-multi-thread/stockfish.worker.js -------------------------------------------------------------------------------- /tampermonkey script/smart-chess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/tampermonkey script/smart-chess.js -------------------------------------------------------------------------------- /utils/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/utils/engine.js -------------------------------------------------------------------------------- /utils/engine/engine_path: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayfpack13/chess-analysis-bot/HEAD/utils/process.js --------------------------------------------------------------------------------