The DOUBLING incentive scheme

Version 4.005, 2021-12-22

Effective ver 4.005, the Game Server has the explicit concept of "incentive scheme". An "incentive scheme" is a system of rules and parameters which determines additional rewards for a player conditioned on achieving certain performance benchmarks, and associated changes in the server behaviour.

Specifying an incentive scheme

On the technical level, the incentive scheme is associated with a parameter set, i.e. each parameter set can have its own scheme; this is specified by the values of the approrpiate parameters in the appropriate row of the trial list file. The PIs prefer, however, that all parameter sets in a given trial list use the same incentive scheme; this means that the experiment designer should sdesign a given trial set file so that each incentive-scheme related column contains the same value in all of its data cells.

Currently, there are 2 incentive schemes available to experiment designers.

All experiment plans created prior of ver. 4.005 (December 2021) have the experiment plan named BONUS; this is identified by the non-empty column "activate_bonus_at" in each parameter set. The parameter sets with this incentive scheme should also have appropriate values in the columns "clear_how_many" and "bonus_extra_pts".

The incentive scheme named DOUBLING has been introduced in GS 4.005. The parameter sets using this scheme must have positive integer values in columns "x2_after" and "x4_after". The latter value must be greater than the former. These two values determine how long a sequence of correct move or pick attempts (within a single series of episodes, but possibly spanning the border of episodes) must be in order for the "doubling" and "quadrupling" incentives to be activated. Tehcnically speaking, the incentives are merely "promised" once the player has made the required number of successful moves or picks; they are actually "activated" as soon as the player completes the episode during which the achievement occured, i.e fully clears the board.

Specifically, the former incentive results in doubling the payoff for the entire series of episodes played with the current parameter set (i.e. with the current rule set); the latter incentive results in the quadrupling the reward for the current rule set, and also in terminating the currenty series, and moving the player to the next series (or the end of the session, if that was the last series).

Finally, it is possible for a parameter set to have no incentive scheme at all, if neither set of incentive-related columns are present in the trial list file.

Server reporting the incentive state in the DOUBLING scheme

The response structure of the Game Sever API /display call (as well as the display element of the response structures of the /move and /pick calls) contains a number of fields that are relevant for the incentive scheme. The GUI client can use them to provide appropriate display of the GUI elements related to the incentive scheme. These fields are as follows.

Fields supplied regardless of the scheme:

Fields supplied only in the DOUBLING scheme:

Series transitioning

Server-side, care is taken to where each /newEpisode call will take you, i.e. to the next episode of the same series, or to the first episode of the next series.

If the GUI client needs to know what the possible transitions in a given state is, it can use the "transitionMap" structure, which comes as part of the response structure of the /guess API call, as well as as part of the /display structure (is /display, /move, or /pick call) at the last move of each episode. For details, see the /guess call