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

Scrollmap: 두 판 사이의 차이

Board Game Arena
둘러보기로 이동 검색으로 이동
(Created page with "Scrollmap is a BGA client side component to display an infinite game area. In many games, players are building the main game area with tiles or cards. Examples: * Carcassonne...")
 
편집 요약 없음
1번째 줄: 1번째 줄:
Scrollmap is a BGA client side component to display an infinite game area.
Scrollmap is a BGA client side component to display an infinite game area.


In many games, players are building the main game area with tiles or cards. Examples:
In some games, players are building the main game area with tiles or cards. Examples:
* Carcassonne
* Carcassonne
* Saboteur
* Saboteur
8번째 줄: 8번째 줄:
* ...
* ...


For tiles placement games when player are building , the board can be "infinite"
Of course this cause an additional difficulty for the adaptation, because we have to display an infinite game area into a finite space on the screen. This is where Scrollmap component can help you.
 
== Scrollmap in action ==
 
If you want to see how Scrollmap looks like, please try "Saboteur" or "Takenoko" games on BGA, or watch a game in progress.
 
In both games, you can see that there are arrow controls around the main game area, so that players can use them to scroll the view. You can also drag'n'drop the game area to scroll.
 
== How to use Scrollmap ==
 
At first, don't forget to add "ebg/scrollmap" as a dependency:
<pre>
define([
    "dojo","dojo/_base/declare",
    "ebg/core/gamegui",
    "ebg/counter",
    "ebg/scrollmap"     /// <==== HERE
],
</pre>
 
 
Then, declare a new variable in your class for the Scrollmap object:
 
<pre>
        constructor: function(){
        console.log('yourgame constructor');
             
        // Scrollable area       
        this.scrollmap = new ebg.scrollmap();
</pre>

2013년 4월 8일 (월) 14:35 판

Scrollmap is a BGA client side component to display an infinite game area.

In some games, players are building the main game area with tiles or cards. Examples:

  • Carcassonne
  • Saboteur
  • Takenoko
  • Taluva
  • ...

Of course this cause an additional difficulty for the adaptation, because we have to display an infinite game area into a finite space on the screen. This is where Scrollmap component can help you.

Scrollmap in action

If you want to see how Scrollmap looks like, please try "Saboteur" or "Takenoko" games on BGA, or watch a game in progress.

In both games, you can see that there are arrow controls around the main game area, so that players can use them to scroll the view. You can also drag'n'drop the game area to scroll.

How to use Scrollmap

At first, don't forget to add "ebg/scrollmap" as a dependency:

define([
    "dojo","dojo/_base/declare",
    "ebg/core/gamegui",
    "ebg/counter",
    "ebg/scrollmap"     /// <==== HERE
],


Then, declare a new variable in your class for the Scrollmap object:

        constructor: function(){
        console.log('yourgame constructor');
              
        // Scrollable area        	
        this.scrollmap = new ebg.scrollmap();