https://github.com/blixt/monkey
An m,n,k,p,q-game (x-in-a-row) engine developed for Google App Engine
https://github.com/blixt/monkey
Last synced: 5 months ago
JSON representation
An m,n,k,p,q-game (x-in-a-row) engine developed for Google App Engine
- Host: GitHub
- URL: https://github.com/blixt/monkey
- Owner: blixt
- Created: 2010-11-08T16:14:52.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T22:41:44.000Z (about 8 years ago)
- Last Synced: 2025-02-24T06:55:38.655Z (over 1 year ago)
- Language: Python
- Homepage: http://mnk.appspot.com/
- Size: 128 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MoNKey!
## Goal
The goal for this project is to support two-player sessions of m,n,k,p,q-games
through a web interface developed using Google App Engine as the framework.
## m,n,k,p,q-game?
From Wikipedia:
> An `m`,`n`,`k`-game is an abstract board game in which two players take turns
> in placing a stone of their color on an `m`×`n` board, the winner being the
> player who first gets `k` stones of their own color in a row, horizontally,
> vertically, or diagonally. Thus, tic-tac-toe is the 3,3,3-game and free-style
> gomoku is the 19,19,5-game.
The p and q variables were introduced to support Connect6. From Connect6.org:
> Black plays first and puts only `q` black stone on `q` unoccupied
> intersections (also called grids). Subsequently, Black and White alternately
> put `p` of their own stones on `p` unoccupied grids.
## License
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.