1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| func InitModule(ctx context.Context, logger runtime.Logger, db *sql.DB, nk runtime.NakamaModule, initializer runtime.Initializer) error {
props, ok := ctx.Value(runtime.RUNTIME_CTX_ENV).(map[string]string)
if !ok {
return errors.New("invalid context runtime env")
}
env, ok := props["ENV"]
if !ok || env == "" {
return errors.New("'ENV' key missing or invalid in env")
}
hiroLicense, ok := props["HIRO_LICENSE"]
if !ok || hiroLicense == "" {
return errors.New("'HIRO_LICENSE' key missing or invalid in env")
}
binPath := "hiro.bin"
systems, err := hiro.Init(ctx, logger, nk, initializer, binPath, hiroLicense,
hiro.WithEconomySystem(fmt.Sprintf("base-economy-%s.json", env), true),
hiro.WithInventorySystem(fmt.Sprintf("base-inventory-%s.json", env), true))
if err != nil {
return err
}
// Pass the Hiro systems into your custom RPC.
if err = initializer.RegisterRpc("CustomFuction", CustomRpcFn(systems)); err != nil {
return err
}
return nil
}
|