gpg:: TurnBasedMatchConfig
#include <turn_based_match_config.h>
TurnBasedMatch
の作成に必要なデータを含むデータ構造。
概要
コンストラクタとデストラクタ |
|
---|---|
TurnBasedMatchConfig(std::shared_ptr< const TurnBasedMatchConfigImpl > impl)
|
|
TurnBasedMatchConfig()
|
|
TurnBasedMatchConfig(const TurnBasedMatchConfig & copy_from)
既存の
TurnBasedMatchConfig のコピーを作成します。 |
|
TurnBasedMatchConfig(TurnBasedMatchConfig && move_from)
既存の
TurnBasedMatchConfig を移動します。 |
パブリック関数 |
|
---|---|
ExclusiveBitMask() const
|
int64_t
プレーヤーのゲーム固有の排他的ロール(「攻撃者」や「防御者」など)を示すビットマスク。
|
MaximumAutomatchingPlayers() const
|
uint32_t
試合に追加する自動マッチング プレーヤーの最大数。
|
MinimumAutomatchingPlayers() const
|
uint32_t
試合に追加する自動マッチング プレーヤーの最小数。
|
PlayerIdsToInvite() const
|
const std::vector< std::string > &
新しく作成された試合に招待するプレーヤー ID。
|
Valid() const
|
bool
この
TurnBasedMatchConfig にデータが入力されている場合は true を返します。 |
Variant() const
|
uint32_t
マッチタイプまたはモードを示すために使用されるデベロッパー固有の値。
|
operator=(const TurnBasedMatchConfig & copy_from)
|
別の
TurnBasedMatchConfig からコピーして、この TurnBasedMatchConfig を割り当てます。 |
operator=(TurnBasedMatchConfig && move_from)
|
別の
TurnBasedMatchConfig を移動して、この TurnBasedMatchConfig を割り当てます。 |
クラス |
|
---|---|
gpg:: |
1 つ以上の TurnBasedMatchConfig オブジェクトを作成します。 |
パブリック関数
ExclusiveBitMask
int64_t ExclusiveBitMask() const
プレーヤーのゲーム固有の排他的ロール(「攻撃者」や「防御者」など)を示すビットマスク。
自動マッチングを行うには、ペア設定されたプレーヤーの論理積(AND)が 0 にする必要があります。Valid が true を返した場合にのみ呼び出せます。
MaximumAutomatchingPlayers
uint32_t MaximumAutomatchingPlayers() const
試合に追加する自動マッチング プレーヤーの最大数。
Valid が true を返した場合にのみ呼び出せます。
MinimumAutomatchingPlayers
uint32_t MinimumAutomatchingPlayers() const
試合に追加する自動マッチング プレーヤーの最小数。
Valid が true を返した場合にのみ呼び出せます。
PlayerIdsToInvite
const std::vector< std::string > & PlayerIdsToInvite() const
新しく作成された試合に招待するプレーヤー ID。
Valid が true を返した場合にのみ呼び出せます。
TurnBasedMatchConfig
TurnBasedMatchConfig( std::shared_ptr< const TurnBasedMatchConfigImpl > impl )
shared_ptr
から TurnBasedMatchConfigImpl
への TurnBasedMatchConfig
を作成します。
API による内部使用を想定しています。
TurnBasedMatchConfig
TurnBasedMatchConfig()
TurnBasedMatchConfig
TurnBasedMatchConfig( const TurnBasedMatchConfig & copy_from )
既存の TurnBasedMatchConfig
のコピーを作成します。
TurnBasedMatchConfig
TurnBasedMatchConfig( TurnBasedMatchConfig && move_from )
既存の TurnBasedMatchConfig
を移動します。
有効
bool Valid() const
この TurnBasedMatchConfig
にデータが入力されている場合は true を返します。
TurnBasedMatchConfig
オブジェクトのゲッター関数(PlayerIdsToInvite
、MinimumAutomatchingPlayers
など)を使用できるようにするには、true を返す必要があります。
バリアント
uint32_t Variant() const
マッチタイプまたはモードを示すために使用されるデベロッパー固有の値。
同じ値を使用しているプレーヤーのみがマッチングできます。Valid が true を返した場合にのみ呼び出せます。
operator=
TurnBasedMatchConfig & operator=( const TurnBasedMatchConfig & copy_from )
別の TurnBasedMatchConfig
からコピーして、この TurnBasedMatchConfig
を割り当てます。
operator=
TurnBasedMatchConfig & operator=( TurnBasedMatchConfig && move_from )
別の TurnBasedMatchConfig
を移動して、この TurnBasedMatchConfig
を割り当てます。