GS2-Lottery GS2-Deploy/CDK リファレンス
エンティティ
Namespace
ネームスペース
ネームスペースは一つのプロジェクトで同じサービスを異なる用途で複数利用できるようにするための仕組みです。 GS2 のサービスは基本的にネームスペースというレイヤーがあり、ネームスペースが異なれば同じサービスでもまったく別のデータ空間として取り扱われます。
そのため、各サービスの利用を開始するにあたってネームスペースを作成する必要があります。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
name | string | ✓ | ~ 32文字 | ネームスペース名 | |
description | string | ~ 1024文字 | 説明文 | ||
transactionSetting | TransactionSetting | ✓ | トランザクション設定 | ||
lotteryTriggerScriptId | string | ~ 1024文字 | 抽選を実行した際に呼び出される GS2-Script のスクリプト | ||
choicePrizeTableScriptId | string | ~ 1024文字 | 抽選確率テーブルを動的に決定するための GS2-Script のスクリプト | ||
logSetting | LogSetting | ログの出力設定 |
GetAttr
型 | 説明 | |
---|---|---|
Item | Namespace | 作成したネームスペース |
実装例
Type: GS2::Lottery::Namespace
Properties:
Name: namespace1
Description: null
TransactionSetting:
EnableAutoRun: false
QueueNamespaceId: grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001
KeyId: grn:gs2:ap-northeast-1:YourOwnerId:key:namespace1:key:key-0001
LotteryTriggerScriptId: null
ChoicePrizeTableScriptId: null
LogSetting:
LoggingNamespaceId: grn:gs2:ap-northeast-1:YourOwnerId:log:namespace1
from gs2_cdk import Stack, core, lottery
class SampleStack(Stack):
def __init__(self):
super().__init__()
lottery.Namespace(
stack=self,
name="namespace-0001",
transaction_setting=core.TransactionSetting(
enable_auto_run=False,
options=core.TransactionSettingOptions(
distributor_namespace_id=,
key_id='grn:gs2:ap-northeast-1:YourOwnerId:key:namespace-0001:key:key-0001',
queue_namespace_id='grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001',
)
),
options=lottery.NamespaceOptions(
log_setting=core.LogSetting(
logging_namespace_id='grn:gs2:ap-northeast-1:YourOwnerId:log:namespace-0001',
),
),
)
print(SampleStack().yaml()) # Generate Template
class SampleStack extends \Gs2Cdk\Core\Model\Stack
{
function __construct() {
parent::__construct();
new \Gs2Cdk\Lottery\Model\Namespace_(
stack: $this,
name: "namespace-0001",
transactionSetting: new \Gs2Cdk\Core\Model\TransactionSetting(
enableAutoRun: False,
options: new \Gs2Cdk\Core\Model\Options\TransactionSettingOptions(
distributorNamespaceId: ,
keyId: "grn:gs2:ap-northeast-1:YourOwnerId:key:namespace-0001:key:key-0001",
queueNamespaceId: "grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001",
)
),
options: new \Gs2Cdk\Lottery\Model\Options\NamespaceOptions(
logSetting: new \Gs2Cdk\Core\Model\LogSetting(
loggingNamespaceId: "grn:gs2:ap-northeast-1:YourOwnerId:log:namespace-0001",
),
),
);
}
}
print((new SampleStack())->yaml()); // Generate Template
class SampleStack extends io.gs2.cdk.core.model.Stack
{
public SampleStack() {
super();
new io.gs2.cdk.lottery.model.Namespace(
this,
"namespace-0001",
new io.gs2.cdk.core.model.TransactionSetting(
false,
new io.gs2.cdk.core.model.options.TransactionSettingOptions(
,
"grn:gs2:ap-northeast-1:YourOwnerId:key:namespace-0001:key:key-0001",
"grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001"
)
),
new io.gs2.cdk.lottery.model.options.NamespaceOptions() {
{
logSetting = new io.gs2.cdk.core.model.LogSetting(
"grn:gs2:ap-northeast-1:YourOwnerId:log:namespace-0001"
);
}
}
);
}
}
System.out.println(new SampleStack().yaml()); // Generate Template
import core from "@/gs2cdk/core";
import lottery from "@/gs2cdk/lottery";
class SampleStack extends core.Stack
{
public constructor() {
super();
new lottery.model.Namespace(
this,
"namespace-0001",
new core.TransactionSetting(
false,
{
,
"grn:gs2:ap-northeast-1:YourOwnerId:key:namespace-0001:key:key-0001",
"grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001"
}
),
{
logSetting: new core.LogSetting(
"grn:gs2:ap-northeast-1:YourOwnerId:log:namespace-0001"
)
}
);
}
}
console.log(new SampleStack().yaml()); // Generate Template
public class SampleStack : Gs2Cdk.Core.Model.Stack
{
public SampleStack() {
new Gs2Cdk.Gs2Lottery.Model.Namespace(
this,
"namespace-0001",
new Gs2Cdk.Core.Model.TransactionSetting(
false,
new Gs2Cdk.Core.Model.Options.TransactionSettingOptions(
DistributorNamespaceId = ,
KeyId = "grn:gs2:ap-northeast-1:YourOwnerId:key:namespace-0001:key:key-0001",
QueueNamespaceId = "grn:gs2:ap-northeast-1:YourOwnerId:queue:queue-0001"
}
),
new Gs2Cdk.Gs2Lottery.Model.Options.NamespaceOptions {
logSetting = new Gs2Cdk.Core.Model.LogSetting(
"grn:gs2:ap-northeast-1:YourOwnerId:log:namespace-0001"
),
}
);
}
}
Debug.Log(new SampleStack().Yaml()); // Generate Template
CurrentLotteryMaster
現在有効なマスターデータ
GS2ではマスターデータの管理にJSON形式のファイルを使用します。 ファイルをアップロードすることで、実際にサーバーに設定を反映することができます。
JSONファイルを作成する方法として、マネージメントコンソール上でのマスターデータエディタを提供していますが よりゲームの運営に相応しいツールを作成し、適切なフォーマットのJSONファイルを書き出すことでもサービスを利用可能です。
JSONファイルの形式についてはドキュメントを参照ください。
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
namespaceName | string | ✓ | ~ 32文字 | ネームスペース名 | |
settings | string | ✓ | ~ 5242880文字 | マスターデータ |
GetAttr
型 | 説明 | |
---|---|---|
Item | CurrentLotteryMaster | 更新した現在有効な抽選設定 |
実装例
Type: GS2::Lottery::CurrentLotteryMaster
Properties:
NamespaceName: namespace1
Settings: {
"version": "2019-02-21",
"lotteryModels": [
{
"name": "gacha",
"metadata": "GACHA",
"mode": "normal",
"method": "prize_table",
"prizeTableName": "gacha"
},
{
"name": "gacha_ssr",
"metadata": "SSR",
"mode": "normal",
"method": "prize_table",
"prizeTableName": "gacha-ssr"
},
{
"name": "gacha_sr",
"metadata": "SR",
"mode": "normal",
"method": "prize_table",
"prizeTableName": "gacha-sr"
},
{
"name": "gacha_r",
"metadata": "R",
"mode": "normal",
"method": "prize_table",
"prizeTableName": "gacha-r"
},
{
"name": "box",
"metadata": "BOX",
"mode": "box",
"method": "prize_table",
"prizeTableName": "box"
}
],
"prizeTables": [
{
"name": "gacha",
"metadata": "SSR",
"prizes": [
{
"prizeId": "prize-1",
"type": "prize_table",
"prizeTableName": "gacha-ssr",
"weight": 5
},
{
"prizeId": "prize-2",
"type": "prize_table",
"prizeTableName": "gacha-sr",
"weight": 15
},
{
"prizeId": "prize-3",
"type": "prize_table",
"prizeTableName": "gacha-r",
"weight": 80
}
]
},
{
"name": "gacha-ssr",
"metadata": "SSR",
"prizes": [
{
"prizeId": "prize-4",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 1
},
{
"prizeId": "prize-5",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 2
},
{
"prizeId": "prize-6",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 3
}
]
},
{
"name": "gacha-sr",
"metadata": "SR",
"prizes": [
{
"prizeId": "prize-7",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 10
},
{
"prizeId": "prize-8",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 20
},
{
"prizeId": "prize-9",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 30
}
]
},
{
"name": "gacha-r",
"metadata": "R",
"prizes": [
{
"prizeId": "prize-10",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 100
},
{
"prizeId": "prize-11",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 200
},
{
"prizeId": "prize-12",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 300
}
]
},
{
"name": "box",
"metadata": "BOX",
"prizes": [
{
"prizeId": "prize-13",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 30
},
{
"prizeId": "prize-14",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 20
},
{
"prizeId": "prize-15",
"type": "action",
"acquireActions": [
{
"action": "Gs2Money:DepositByUserId",
"request": "{\\"count\\": 1}"
}
],
"weight": 10
}
]
}
]
}
from gs2_cdk import Stack, core, lottery
class SampleStack(Stack):
def __init__(self):
super().__init__()
lottery.Namespace(
stack=self,
# 省略
).master_data(
[
lottery.LotteryModel(
name='gacha',
mode='normal',
method='prize_table',
options=lottery.LotteryModelOptions(
metadata='GACHA',
prize_table_name='gacha',
),
),
lottery.LotteryModel(
name='gacha_ssr',
mode='normal',
method='prize_table',
options=lottery.LotteryModelOptions(
metadata='SSR',
prize_table_name='gacha-ssr',
),
),
lottery.LotteryModel(
name='gacha_sr',
mode='normal',
method='prize_table',
options=lottery.LotteryModelOptions(
metadata='SR',
prize_table_name='gacha-sr',
),
),
lottery.LotteryModel(
name='gacha_r',
mode='normal',
method='prize_table',
options=lottery.LotteryModelOptions(
metadata='R',
prize_table_name='gacha-r',
),
),
lottery.LotteryModel(
name='box',
mode='box',
method='prize_table',
options=lottery.LotteryModelOptions(
metadata='BOX',
prize_table_name='box',
),
),
],
[
lottery.PrizeTable(
name='gacha',
prizes=[ {'prizeId': 'prize-1', 'type': 'prize_table', 'prizeTableName': 'gacha-ssr', 'weight': 5},
{'prizeId': 'prize-2', 'type': 'prize_table', 'prizeTableName': 'gacha-sr', 'weight': 15},
{'prizeId': 'prize-3', 'type': 'prize_table', 'prizeTableName': 'gacha-r', 'weight': 80},
],
options=lottery.PrizeTableOptions(
metadata='SSR',
),
),
lottery.PrizeTable(
name='gacha-ssr',
prizes=[ {'prizeId': 'prize-4', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 1},
{'prizeId': 'prize-5', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 2},
{'prizeId': 'prize-6', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 3},
],
options=lottery.PrizeTableOptions(
metadata='SSR',
),
),
lottery.PrizeTable(
name='gacha-sr',
prizes=[ {'prizeId': 'prize-7', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
{'prizeId': 'prize-8', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-9', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
],
options=lottery.PrizeTableOptions(
metadata='SR',
),
),
lottery.PrizeTable(
name='gacha-r',
prizes=[ {'prizeId': 'prize-10', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 100},
{'prizeId': 'prize-11', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 200},
{'prizeId': 'prize-12', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 300},
],
options=lottery.PrizeTableOptions(
metadata='R',
),
),
lottery.PrizeTable(
name='box',
prizes=[ {'prizeId': 'prize-13', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
{'prizeId': 'prize-14', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-15', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
],
options=lottery.PrizeTableOptions(
metadata='BOX',
),
),
],
)
print(SampleStack().yaml()) # Generate Template
class SampleStack extends \Gs2Cdk\Core\Model\Stack
{
function __construct() {
parent::__construct();
(new \Gs2Cdk\Lottery\Model\Namespace_(
stack: $this,
// 省略
))->masterData(
[
new \Gs2Cdk\Lottery\Model\LotteryModel(
name:"gacha",
mode: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMode::NORMAL
method: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMethod::PRIZE_TABLE
options: new \Gs2Cdk\Lottery\Model\Options\LotteryModelOptions(
metadata:"GACHA",
prizeTableName:"gacha",
),
),
new \Gs2Cdk\Lottery\Model\LotteryModel(
name:"gacha_ssr",
mode: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMode::NORMAL
method: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMethod::PRIZE_TABLE
options: new \Gs2Cdk\Lottery\Model\Options\LotteryModelOptions(
metadata:"SSR",
prizeTableName:"gacha-ssr",
),
),
new \Gs2Cdk\Lottery\Model\LotteryModel(
name:"gacha_sr",
mode: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMode::NORMAL
method: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMethod::PRIZE_TABLE
options: new \Gs2Cdk\Lottery\Model\Options\LotteryModelOptions(
metadata:"SR",
prizeTableName:"gacha-sr",
),
),
new \Gs2Cdk\Lottery\Model\LotteryModel(
name:"gacha_r",
mode: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMode::NORMAL
method: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMethod::PRIZE_TABLE
options: new \Gs2Cdk\Lottery\Model\Options\LotteryModelOptions(
metadata:"R",
prizeTableName:"gacha-r",
),
),
new \Gs2Cdk\Lottery\Model\LotteryModel(
name:"box",
mode: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMode::BOX
method: \Gs2Cdk\Lottery\Model\Enums\CurrentLotteryMasterMethod::PRIZE_TABLE
options: new \Gs2Cdk\Lottery\Model\Options\LotteryModelOptions(
metadata:"BOX",
prizeTableName:"box",
),
),
],
[
new \Gs2Cdk\Lottery\Model\PrizeTable(
name:"gacha",
prizes:[ {'prizeId': 'prize-1', 'type': 'prize_table', 'prizeTableName': 'gacha-ssr', 'weight': 5},
{'prizeId': 'prize-2', 'type': 'prize_table', 'prizeTableName': 'gacha-sr', 'weight': 15},
{'prizeId': 'prize-3', 'type': 'prize_table', 'prizeTableName': 'gacha-r', 'weight': 80},
],
options: new \Gs2Cdk\Lottery\Model\Options\PrizeTableOptions(
metadata:"SSR",
),
),
new \Gs2Cdk\Lottery\Model\PrizeTable(
name:"gacha-ssr",
prizes:[ {'prizeId': 'prize-4', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 1},
{'prizeId': 'prize-5', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 2},
{'prizeId': 'prize-6', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 3},
],
options: new \Gs2Cdk\Lottery\Model\Options\PrizeTableOptions(
metadata:"SSR",
),
),
new \Gs2Cdk\Lottery\Model\PrizeTable(
name:"gacha-sr",
prizes:[ {'prizeId': 'prize-7', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
{'prizeId': 'prize-8', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-9', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
],
options: new \Gs2Cdk\Lottery\Model\Options\PrizeTableOptions(
metadata:"SR",
),
),
new \Gs2Cdk\Lottery\Model\PrizeTable(
name:"gacha-r",
prizes:[ {'prizeId': 'prize-10', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 100},
{'prizeId': 'prize-11', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 200},
{'prizeId': 'prize-12', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 300},
],
options: new \Gs2Cdk\Lottery\Model\Options\PrizeTableOptions(
metadata:"R",
),
),
new \Gs2Cdk\Lottery\Model\PrizeTable(
name:"box",
prizes:[ {'prizeId': 'prize-13', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
{'prizeId': 'prize-14', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-15', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
],
options: new \Gs2Cdk\Lottery\Model\Options\PrizeTableOptions(
metadata:"BOX",
),
),
],
);
}
}
print((new SampleStack())->yaml()); // Generate Template
class SampleStack extends io.gs2.cdk.core.model.Stack
{
public SampleStack() {
super();
new io.gs2.cdk.lottery.model.Namespace(
this,
// 省略
).masterData(
Arrays.asList(
new io.gs2.cdk.lottery.model.LotteryModel(
"gacha",
Normal,
PrizeTable,
new io.gs2.cdk.lottery.model.options.LotteryModelOptions() {
{
metadata: "GACHA";
prizeTableName: "gacha";
}
}
),
new io.gs2.cdk.lottery.model.LotteryModel(
"gacha_ssr",
Normal,
PrizeTable,
new io.gs2.cdk.lottery.model.options.LotteryModelOptions() {
{
metadata: "SSR";
prizeTableName: "gacha-ssr";
}
}
),
new io.gs2.cdk.lottery.model.LotteryModel(
"gacha_sr",
Normal,
PrizeTable,
new io.gs2.cdk.lottery.model.options.LotteryModelOptions() {
{
metadata: "SR";
prizeTableName: "gacha-sr";
}
}
),
new io.gs2.cdk.lottery.model.LotteryModel(
"gacha_r",
Normal,
PrizeTable,
new io.gs2.cdk.lottery.model.options.LotteryModelOptions() {
{
metadata: "R";
prizeTableName: "gacha-r";
}
}
),
new io.gs2.cdk.lottery.model.LotteryModel(
"box",
Box,
PrizeTable,
new io.gs2.cdk.lottery.model.options.LotteryModelOptions() {
{
metadata: "BOX";
prizeTableName: "box";
}
}
)
),
Arrays.asList(
new io.gs2.cdk.lottery.model.PrizeTable(
"gacha",
Arrays.asList(
{'prizeId': 'prize-1', 'type': 'prize_table', 'prizeTableName': 'gacha-ssr', 'weight': 5},
{'prizeId': 'prize-2', 'type': 'prize_table', 'prizeTableName': 'gacha-sr', 'weight': 15},
{'prizeId': 'prize-3', 'type': 'prize_table', 'prizeTableName': 'gacha-r', 'weight': 80}
),
new io.gs2.cdk.lottery.model.options.PrizeTableOptions() {
{
metadata: "SSR";
}
}
),
new io.gs2.cdk.lottery.model.PrizeTable(
"gacha-ssr",
Arrays.asList(
{'prizeId': 'prize-4', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 1},
{'prizeId': 'prize-5', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 2},
{'prizeId': 'prize-6', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 3}
),
new io.gs2.cdk.lottery.model.options.PrizeTableOptions() {
{
metadata: "SSR";
}
}
),
new io.gs2.cdk.lottery.model.PrizeTable(
"gacha-sr",
Arrays.asList(
{'prizeId': 'prize-7', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
{'prizeId': 'prize-8', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-9', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30}
),
new io.gs2.cdk.lottery.model.options.PrizeTableOptions() {
{
metadata: "SR";
}
}
),
new io.gs2.cdk.lottery.model.PrizeTable(
"gacha-r",
Arrays.asList(
{'prizeId': 'prize-10', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 100},
{'prizeId': 'prize-11', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 200},
{'prizeId': 'prize-12', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 300}
),
new io.gs2.cdk.lottery.model.options.PrizeTableOptions() {
{
metadata: "R";
}
}
),
new io.gs2.cdk.lottery.model.PrizeTable(
"box",
Arrays.asList(
{'prizeId': 'prize-13', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
{'prizeId': 'prize-14', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-15', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10}
),
new io.gs2.cdk.lottery.model.options.PrizeTableOptions() {
{
metadata: "BOX";
}
}
)
)
);
}
}
System.out.println(new SampleStack().yaml()); // Generate Template
import core from "@/gs2cdk/core";
import lottery from "@/gs2cdk/lottery";
class SampleStack extends core.Stack
{
public constructor() {
super();
new lottery.model.Namespace(
this,
// 省略
).masterData(
[
new lottery.model.LotteryModel(
"gacha",
lottery.model.CurrentLotteryMasterMode.NORMAL,
lottery.model.CurrentLotteryMasterMethod.PRIZE_TABLE,
{
metadata: "GACHA",
prizeTableName: "gacha"
}
),
new lottery.model.LotteryModel(
"gacha_ssr",
lottery.model.CurrentLotteryMasterMode.NORMAL,
lottery.model.CurrentLotteryMasterMethod.PRIZE_TABLE,
{
metadata: "SSR",
prizeTableName: "gacha-ssr"
}
),
new lottery.model.LotteryModel(
"gacha_sr",
lottery.model.CurrentLotteryMasterMode.NORMAL,
lottery.model.CurrentLotteryMasterMethod.PRIZE_TABLE,
{
metadata: "SR",
prizeTableName: "gacha-sr"
}
),
new lottery.model.LotteryModel(
"gacha_r",
lottery.model.CurrentLotteryMasterMode.NORMAL,
lottery.model.CurrentLotteryMasterMethod.PRIZE_TABLE,
{
metadata: "R",
prizeTableName: "gacha-r"
}
),
new lottery.model.LotteryModel(
"box",
lottery.model.CurrentLotteryMasterMode.BOX,
lottery.model.CurrentLotteryMasterMethod.PRIZE_TABLE,
{
metadata: "BOX",
prizeTableName: "box"
}
)
],
[
new lottery.model.PrizeTable(
"gacha",
[
{'prizeId': 'prize-1', 'type': 'prize_table', 'prizeTableName': 'gacha-ssr', 'weight': 5},
{'prizeId': 'prize-2', 'type': 'prize_table', 'prizeTableName': 'gacha-sr', 'weight': 15},
{'prizeId': 'prize-3', 'type': 'prize_table', 'prizeTableName': 'gacha-r', 'weight': 80}
],
{
metadata: "SSR"
}
),
new lottery.model.PrizeTable(
"gacha-ssr",
[
{'prizeId': 'prize-4', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 1},
{'prizeId': 'prize-5', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 2},
{'prizeId': 'prize-6', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 3}
],
{
metadata: "SSR"
}
),
new lottery.model.PrizeTable(
"gacha-sr",
[
{'prizeId': 'prize-7', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
{'prizeId': 'prize-8', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-9', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30}
],
{
metadata: "SR"
}
),
new lottery.model.PrizeTable(
"gacha-r",
[
{'prizeId': 'prize-10', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 100},
{'prizeId': 'prize-11', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 200},
{'prizeId': 'prize-12', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 300}
],
{
metadata: "R"
}
),
new lottery.model.PrizeTable(
"box",
[
{'prizeId': 'prize-13', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
{'prizeId': 'prize-14', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-15', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10}
],
{
metadata: "BOX"
}
)
]
);
}
}
console.log(new SampleStack().yaml()); // Generate Template
public class SampleStack : Gs2Cdk.Core.Model.Stack
{
public SampleStack() {
new Gs2Cdk.Gs2Lottery.Model.Namespace(
this,
// 省略
).MasterData(
new [] {
new Gs2Cdk.Gs2Lottery.Model.LotteryModel(
"gacha",
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMode.Normal,
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMethod.PrizeTable,
new Gs2Cdk.Gs2Lottery.Model.Options.LotteryModelOptions {
metadata = "GACHA",
prizeTableName = "gacha",
}
),
new Gs2Cdk.Gs2Lottery.Model.LotteryModel(
"gacha_ssr",
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMode.Normal,
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMethod.PrizeTable,
new Gs2Cdk.Gs2Lottery.Model.Options.LotteryModelOptions {
metadata = "SSR",
prizeTableName = "gacha-ssr",
}
),
new Gs2Cdk.Gs2Lottery.Model.LotteryModel(
"gacha_sr",
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMode.Normal,
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMethod.PrizeTable,
new Gs2Cdk.Gs2Lottery.Model.Options.LotteryModelOptions {
metadata = "SR",
prizeTableName = "gacha-sr",
}
),
new Gs2Cdk.Gs2Lottery.Model.LotteryModel(
"gacha_r",
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMode.Normal,
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMethod.PrizeTable,
new Gs2Cdk.Gs2Lottery.Model.Options.LotteryModelOptions {
metadata = "R",
prizeTableName = "gacha-r",
}
),
new Gs2Cdk.Gs2Lottery.Model.LotteryModel(
"box",
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMode.Box,
Gs2Cdk.Gs2Lottery.Model.Enums.CurrentLotteryMasterMethod.PrizeTable,
new Gs2Cdk.Gs2Lottery.Model.Options.LotteryModelOptions {
metadata = "BOX",
prizeTableName = "box",
}
)
},
new [] {
new Gs2Cdk.Gs2Lottery.Model.PrizeTable(
"gacha",
new Gs2Cdk.Gs2Lottery.Model.Prize[] {
{'prizeId': 'prize-1', 'type': 'prize_table', 'prizeTableName': 'gacha-ssr', 'weight': 5},
{'prizeId': 'prize-2', 'type': 'prize_table', 'prizeTableName': 'gacha-sr', 'weight': 15},
{'prizeId': 'prize-3', 'type': 'prize_table', 'prizeTableName': 'gacha-r', 'weight': 80}
},
new Gs2Cdk.Gs2Lottery.Model.Options.PrizeTableOptions {
metadata = "SSR",
}
),
new Gs2Cdk.Gs2Lottery.Model.PrizeTable(
"gacha-ssr",
new Gs2Cdk.Gs2Lottery.Model.Prize[] {
{'prizeId': 'prize-4', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 1},
{'prizeId': 'prize-5', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 2},
{'prizeId': 'prize-6', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 3}
},
new Gs2Cdk.Gs2Lottery.Model.Options.PrizeTableOptions {
metadata = "SSR",
}
),
new Gs2Cdk.Gs2Lottery.Model.PrizeTable(
"gacha-sr",
new Gs2Cdk.Gs2Lottery.Model.Prize[] {
{'prizeId': 'prize-7', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10},
{'prizeId': 'prize-8', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-9', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30}
},
new Gs2Cdk.Gs2Lottery.Model.Options.PrizeTableOptions {
metadata = "SR",
}
),
new Gs2Cdk.Gs2Lottery.Model.PrizeTable(
"gacha-r",
new Gs2Cdk.Gs2Lottery.Model.Prize[] {
{'prizeId': 'prize-10', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 100},
{'prizeId': 'prize-11', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 200},
{'prizeId': 'prize-12', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 300}
},
new Gs2Cdk.Gs2Lottery.Model.Options.PrizeTableOptions {
metadata = "R",
}
),
new Gs2Cdk.Gs2Lottery.Model.PrizeTable(
"box",
new Gs2Cdk.Gs2Lottery.Model.Prize[] {
{'prizeId': 'prize-13', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 30},
{'prizeId': 'prize-14', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 20},
{'prizeId': 'prize-15', 'type': 'action', 'acquireActions': [{'action': 'Gs2Money:DepositByUserId', 'request': '{"count": 1}'}], 'weight': 10}
},
new Gs2Cdk.Gs2Lottery.Model.Options.PrizeTableOptions {
metadata = "BOX",
}
)
}
);
}
}
Debug.Log(new SampleStack().Yaml()); // Generate Template
Probability
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
prize | DrawnPrize | ✓ | 景品の種類 | ||
rate | float | ✓ | ~ 1.0 | 排出確率(0.0〜1.0) |
Prize
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
prizeId | string | ✓ | UUID | ~ 36文字 | 景品ID |
type | enum [‘action’, ‘prize_table’] | ✓ | ~ 128文字 | 景品の種類 | |
acquireActions | List<AcquireAction> | {type} == “action” | [] | 景品の入手アクションリスト | |
drawnLimit | int | {type} == “action” | 1 ~ 100000 | 最大排出数 | |
limitFailOverPrizeId | string | {type} == “action” and {drawnLimit} > 0 | ~ 32文字 | 最大排出数に達していた時に代わりに排出する景品ID | |
prizeTableName | string | {type} == “prize_table” | ~ 128文字 | 排出確率テーブルの名前 | |
weight | int | ✓ | 1 ~ 2147483646 | 排出重み |
DrawnPrize
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
prizeId | string | ✓ | ~ 36文字 | 景品ID | |
acquireActions | List<AcquireAction> | 入手アクションのリスト |
BoxItem
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
prizeId | string | ✓ | ~ 128文字 | 景品ID | |
acquireActions | List<AcquireAction> | 入手アクションのリスト | |||
remaining | int | ✓ | ~ 2147483646 | 残り数量 | |
initial | int | ✓ | ~ 2147483646 | 初期数量 |
AcquireAction
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
action | enum [] | ✓ | ~ 128文字 | スタンプシートを使用して実行するアクションの種類 | |
request | string | ✓ | ~ 1048576文字 | リクエストのJSON |
Config
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
key | string | ✓ | ~ 64文字 | 名前 | |
value | string | ~ 51200文字 | 値 |
GitHubCheckoutSetting
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
apiKeyId | string | ✓ | ~ 1024文字 | GitHub のAPIキーGRN | |
repositoryName | string | ✓ | ~ 1024文字 | リポジトリ名 | |
sourcePath | string | ✓ | ~ 1024文字 | ソースコードのファイルパス | |
referenceType | enum [‘commit_hash’, ‘branch’, ’tag’] | ✓ | ~ 128文字 | コードの取得元 | |
commitHash | string | {referenceType} == “commit_hash” | ~ 1024文字 | コミットハッシュ | |
branchName | string | {referenceType} == “branch” | ~ 1024文字 | ブランチ名 | |
tagName | string | {referenceType} == “tag” | ~ 1024文字 | タグ名 |
LogSetting
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
loggingNamespaceId | string | ✓ | ~ 1024文字 | ネームスペースGRN |
TransactionSetting
型 | 必須 | デフォルト | 値の制限 | 説明 | |
---|---|---|---|---|---|
enableAutoRun | bool | ✓ | false | 発行したスタンプシートをサーバーサイドで自動的に実行するか | |
distributorNamespaceId | string | {enableAutoRun} | ~ 1024文字 | スタンプシートの実行に使用する GS2-Distributor ネームスペース | |
keyId | string | !{enableAutoRun} | ~ 1024文字 | スタンプシートの署名に使用する GS2-Key の暗号鍵 | |
queueNamespaceId | string | ~ 1024文字 | スタンプシートの実行に使用する GS2-JobQueue のネームスペース |