This is a documentation for Board Game Arena: play board games online !

Tutorial gomoku: Difference between revisions

From Board Game Arena
Jump to navigation Jump to search
(Created page with "TODO")
 
No edit summary
Line 1: Line 1:
TODO
Here is how your games look by default when it has just been created :
 
[[File:Gomoku tuto1.png]]
 
Gather useful images for the game and edit them as needed.
Edit .tpl & .css to add the board :
 
[[File:Gomoku tuto2.png]]
 
Edit .sql to create a table for intersections.
Edit .game.php->setupNewGame to insert the empty intersections (19x19) with coordinates into the database.
Edit .game.php->getAllDatas to retrieve the state of the intersections from the database.
Edit .tpl to create a template for intersections (jstpl_intersection).
Edit .js to setup the intersections layer that will be used to get click events and to display the stones. Use some temporary css colors on borders or background+opacity to make sure they are positioned right. You can declare some constants in material.inc.php and pass them to your .js through .game.php->getAllDatas for easy repositioning.
 
[[File:Gomoku tuto3.png]]
 
Define your game states in states.inc.php
Add onclick events on intersections in .js, calling an action with appropriate parameters
Add action in .action.php, retrieving parameters and calling the appropriate game action.
Add game action in .game.php to update the database, then notify the client using a method ‘’
Implement this method in javascript to update the intersection to show the stone, and register it inside the setNotifications function.
The basic game turn is implemented: you can drop some stones.
 
[[File:Gomoku tuto4.png]]
 
Remove temporary css visualisation helpers : looks good!
 
[[File:Gomoku tuto5.png]]
 
Implement specific rules for the game (if any)
Implement rule for computing game progression in .game.php->getGameProgression()
Implement end of game detection and update the score according to who is the winner in .game.php->stCheckEndOfGame()
Notify the score and implement the corresponding interface update in .js
 
Test everything thoroughly... you are done!
 
[[File:Gomoku tuto6.png]]

Revision as of 23:09, 5 December 2012

Here is how your games look by default when it has just been created :

Gomoku tuto1.png

Gather useful images for the game and edit them as needed. Edit .tpl & .css to add the board :

Gomoku tuto2.png

Edit .sql to create a table for intersections. Edit .game.php->setupNewGame to insert the empty intersections (19x19) with coordinates into the database. Edit .game.php->getAllDatas to retrieve the state of the intersections from the database. Edit .tpl to create a template for intersections (jstpl_intersection). Edit .js to setup the intersections layer that will be used to get click events and to display the stones. Use some temporary css colors on borders or background+opacity to make sure they are positioned right. You can declare some constants in material.inc.php and pass them to your .js through .game.php->getAllDatas for easy repositioning.

Gomoku tuto3.png

Define your game states in states.inc.php Add onclick events on intersections in .js, calling an action with appropriate parameters Add action in .action.php, retrieving parameters and calling the appropriate game action. Add game action in .game.php to update the database, then notify the client using a method ‘’ Implement this method in javascript to update the intersection to show the stone, and register it inside the setNotifications function. The basic game turn is implemented: you can drop some stones.

Gomoku tuto4.png

Remove temporary css visualisation helpers : looks good!

Gomoku tuto5.png

Implement specific rules for the game (if any) Implement rule for computing game progression in .game.php->getGameProgression() Implement end of game detection and update the score according to who is the winner in .game.php->stCheckEndOfGame() Notify the score and implement the corresponding interface update in .js

Test everything thoroughly... you are done!

Gomoku tuto6.png