POSTS
RESTGames – More than katas
By Carlos Buenosvinos
- 2 minutes read - 323 wordsToday, Christian (@theUniC) and I (@buenosvinos) would like to introduce you “REST Games“: Games based in REST Services for learning and practicing coding.
Its goal is to provide some coding challenges that go beyond katas. You will have to implement a small JSON REST API that will play a well known multiplayer game, such as battleship, connect-4, tic-tac-toe, etc. The best part comes when two mates develop the same JSON REST API and you can use our referees programs two make them play one against the other. Who will win?
Why REST?
For building a REST service in any language, you will have to deep into different REST frameworks, dependency management, etc. It can be challenging when starting to learn a new language. REST also allows to make any service play together, whether is developed in PHP, Scala, Clojure, Node, etc.
Why games?
Games have algorithms, strategies and some sort of Artificial Intelligence. They are more difficult than katas. Some multiplayer games are not mathematically resolved, so, you can win even playing with the best engine.
Battleship: The first game
Battleship is a popular game about sinking ships in a war style. The rules are the official ones from the Hasbro original board game. You can find then here: http://www.hasbro.com/common/instruct/Battleship.PDF. A part of the original rules, if your REST APIs does not work properly (connectivity issues, returning wrong values, etc.) you will loose the game.
Where to start?
Visit the battleship referee for making two players play Battleship. You will find it at https://github.com/restgames/battleship-client</a>. You’ll find rules, skeletons, suggestions and much more.
Battleship: Skeletons
If you feel a bit lazy about to start, we’ve created some skeleton applications you can use to start your own project. For now, there are Clojure and PHP skeleton applications for playing Battleship. You can find them, here.
Feel free to use REST Games in your meet ups or trainings. Let us know if you have suggestions, comments or contributions.