介绍 #

Nakama 包括一个快速嵌入式代码运行库,用于编写 JavaScript 包、Go 插件Lua 模块 形式的自定义逻辑。

运行时框架对于编写游戏或应用程序的服务器端逻辑是必不可少的。使用它可以编写不希望在客户端设备或浏览器上运行的代码。通过服务器部署的代码可以立即被客户端使用,从而可以动态更改行为并更快地添加新功能。 此代码可用于运行权威逻辑或执行验证检查,以及通过 HTTPS 与其他服务集成。

在想要设置各种功能的规则时,例如用户可以有多少好友或他们可以加入多少群组时,使用服务器端代码。

我们不建议修改 Nakama 源代码并从源代码进行重新构建,以添加新功能或自定义行为。推荐的方法是使用嵌入式运行库。

本页面讲述 Nakama 运行时框架中的关键概念和功能。

加载模块 #

Tip
Heroic Labs 建议使用 JavaScript VM。

默认情况下,服务器会在启动时扫描 data/modules 文件夹中相对于服务器文件或在 YAML 配置中指定的文件夹中的所有文件。您还可以在启动服务器时,通过命令标志指定模块文件夹。

作为启动序列,将加载和评估运行库路径文件夹中带 .lua.so.js 扩展名的文件。每个运行库都可以访问 Nakama API 来操作来自客户端的消息,并按需执行逻辑。

受支持的不同语言以 Go -> Lua -> JavaScript 的优先顺序加载。如果在多个运行库中注册了比赛处理程序或 RPC 函数/挂钩,这可以确保确定的行为,从而提供灵活性,以最适合的方式利用不同的运行库,并使它们无缝地协同工作。例如,您可以在 JavaScript 运行库中定义一个 RPC 函数,以创建一个使用一组用 Go 编写的比赛处理程序的比赛。

JavaScript 运行库 #

JavaScript 运行库需要一个 index.js 文件。要更改将在运行库路径中加载代码的相对文件路径的名称,可以在服务器 YML 中或作为命令标志对其进行设置。

1
nakama --runtime.js_entrypoint "some/path/index.js"

此路径必须相对于默认或设置的运行库路径

Go 运行库 #

Go 运行库寻找 Go 插件 .so 共享对象文件。

参阅构建 Go 共享对象,了解如何用自定义 Go 运行时代码生成此文件。

Lua 运行库 #

Lua 运行库将解释和加载任何 .lua 文件,包括子目录中的文件。这些可以作为具有相对路径的模块引用。

每个 Lua 文件代表一个模块,每个模块中的所有代码都将运行并可用于注册函数。

运行时上下文 #

所有运行库中的所有注册函数都会收到 context 作为第一个参数。其中包含的字段依赖于执行代码的时间和方式。您可以从上下文中提取有关请求或发出请求的用户的信息:

Server
1
local user_id = context.user_id
Server
1
2
3
4
userId, ok := ctx.Value(runtime.RUNTIME_CTX_USER_ID).(string)
if !ok {
  // User ID not found in the context.
}
Server
1
let userId = ctx.userId;

如果您用 Lua 编写运行时代码,context 将是一个您可以从中直接访问字段的表。Go 运行时上下文是标准 context.Context 类型,可按如上所示方式访问其字段。在 JavaScript 中,上下文是有属性的纯对象。

Go 上下文 #

运行时上下文与 Go 上下文不同。重要的是,Context 类型应当包括在所有服务器请求中,避免服务器被死请求(已经断开连接的用户的请求)过载的可能性。

包含 Context 就能将上下文取消(在用户的服务器 HTTP 连接关闭时)传播到整条请求链,避免这类死请求的处理和/或积聚。

数据库处理程序 #

运行库包括可用于访问基础游戏数据库的数据库对象。这样您就可以在游戏设计和逻辑中加入自定义 SQL 查询。

数据库处理程序对于可用的数据库连接数有限制。连同其他错误一起,则会导致对用户的响应速率变慢。为避免此类问题,您必须确保一旦完成相关的行,自定义 SQL 查询就适当地释放连接。

如使用 db.QueryContext()db.Query(),您必须在完成数据库行数据后调用 row.Close()

如使用 db.QueryRow()db.QueryRowContext(),您必须在完成数据库行数据后调用 row.Scanrow.Close()

注意,应当尽可能避免使用自定义 SQL,而是首选使用 Nakama 的 内置功能。您还应当避免创建自定义表。如果您的游戏设计需要这些选项之一,请与 Heroic Labs 联系后再继续。

记录器 #

服务器运行库中包含的记录器实例使您能够使用以下严重性描述在服务器代码中写入和访问日志消息:INFOWARNERRORDEBUG

请查看用于 TypeScriptGoLua 运行库的实例。

Nakama 模块 #

服务器中内置的代码运行库包含 Nakama 模块。此模块可让您访问一系列用于实现自定义逻辑和行为的函数。

请参阅您首选语言的函数参考,了解可用的函数:

功能 #

RPC 函数 #

借助远程过程调用 (RPC),可调用运行时代码中注册的函数,对从客户端接收到的消息进行操作,或按需执行自定义逻辑,例如聊天消息猥亵语言过滤器

从客户端和通过服务器到服务器调用均可调用 RPC 函数。

挂钩 #

所有运行时代码都在服务器启动时接受评估,并可用于注册函数 — 这些函数叫做挂钩。您可以注册 before 挂钩来拦截和响应客户端消息,注册 after 挂钩来在处理事件后调用函数,注册客户端可调用的自定义 RPC 挂钩

在运行库中注册函数有多种方法,每种方法都用于处理客户端和服务器之间的特定行为。例如:

Server
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
-- NOTE: Function arguments have been omitted in the example.
-- If you are sending requests to the server via the real-time connection, ensure that you use this variant of the function.
nk.register_rt_before()
nk.register_rt_after()

-- Otherwise use this.
nk.register_req_after()
nk.register_req_before()

-- If you'd like to run server code when the matchmaker has matched players together, register your function using the following.
nk.register_matchmaker_matched()

-- If you'd like to run server code when the leaderboard/tournament resets register your function using the following.
nk.register_leaderboard_reset()
nk.register_tournament_reset()

-- Similarly, you can run server code when the tournament ends.
nk.register_tournament_end()
Server
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// NOTE: All Go runtime registrations must be made in the module's InitModule function.
//       Function arguments have been omitted in the example.

// If you are sending requests to the server via the real-time connection, ensure that you use this variant of the function.
initializer.RegisterBeforeRt()
initializer.RegisterAfterRt()

// Otherwise use the relevant before / after hook, e.g.
initializer.RegisterBeforeAddFriends()
initializer.RegisterAfterAddFriends()
// (...)

// If you'd like to run server code when the matchmaker has matched players together, register your function using the following.
initializer.RegisterMatchmakerMatched()

// If you'd like to run server code when the leaderboard/tournament resets register your function using the following.
initializer.RegisterLeaderboardReset()
initializer.RegisterTournamentReset()

// Similarly, you can run server code when the tournament ends.
initializer.RegisterTournamentEnd()
Server
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// NOTE: All JavaScript runtime registrations must be made in the bundle's InitModule function.
//       Function arguments have been omitted in the example.

// If you are sending requests to the server via the real-time connection, ensure that you use this variant of the function.
initializer.registerRtBefore()
initializer.registerRtAfter()

// Otherwise use the relevant before / after hook, e.g.
initializer.registerBeforeAddFriends()
initializer.registerAfterAddFriends()
// (...)

// If you'd like to run server code when the matchmaker has matched players together, register your function using the following.
initializer.registerMatchmakerMatched()

// If you'd like to run server code when the leaderboard/tournament resets register your function using the following.
initializer.registerLeaderboardReset()
initializer.registerTournamentReset()

// Similarly, you can run server code when the tournament ends.
initializer.registerTournamentEnd()

参阅消息名称中可用挂钩的完整列表。

Before 挂钩 #

可以注册任何函数来拦截从客户端接收的消息,并基于自定义逻辑对其进行操作(或拒绝)。这适用于在服务器的标准功能之外实施特定规则。

在 Go 中,每个挂钩接收到的请求输入都是作为 struct,其中包含的数据将由服务器为该请求而处理,如果此功能应该接收输入的话。在 Lua 中,第二个参数将是传入的 payload,其中包含的数据将由服务器处理。在 JavaScript 中,payload 是第四个参数。

您必须记住在函数末尾以接收到的相同结构返回有效负载。 如您选择返回 nil (Lua) 或 null|undefined (JavaScript),而不是 payload(或 Go 中的 non-nil error ),服务器将停止进一步处理此消息。这可用于阻止服务器接受某些消息或禁用/拉黑某些服务器功能。

After 挂钩 #

类似于 Before 挂钩,您可以附加一个函数来操作消息。在管道中处理消息后,将调用注册的函数。在将响应消息发送到客户端后,将异步执行自定义代码。

第二个参数是“传出有效负载”,其中包含服务器对请求的响应。第三个参数包含“传入有效负载”,其中包含最初为此请求传递给服务器的数据。

After 挂钩无法更改发送回客户端的响应有效负载,并且错误也不会阻止发送响应。

RPC 挂钩 #

客户端和服务器之间的一些逻辑最好作为客户端可以执行的 RPC 函数来处理。为此 Nakama 支持自定义 RPC 挂钩注册。

可以在客户端代码中使用注册的 RPC 的 ID 来发送 RPC 消息,以便在服务器上执行函数并返回结果。

从 Go 运行时代码返回的结果为 (string, error)。从 Lua 运行时代码中,结果总是作为 Lua 字符串(或者可选的 nil)返回。从 JavaScript 运行时代码,结果始终都应当是字符串、null 或被省略(未定义)。

服务器到服务器 #

您可以检查上下文是否有用户 ID,以查看 RPC 函数是客户端还是服务器到服务器调用。服务器到服务器调用从不具有用户 ID。如果您希望将函数限定为永远不能从客户端访问,那么只要在上下文中找到用户 ID 就返回一个错误。

请参阅服务器运行库示例

运行一次 #

运行时环境允许您运行只能执行一次的代码。如果您需要执行或注册来自第三方服务的自定义 SQL 查询,这非常实用。

请参阅 TypeScriptGoLua 的实现示例。

消息名称 #

如果运行时代码为 Go,请参阅界面定义中的完整挂钩列表,这可从运行库包中获得。

使用以下请求名称注册 BeforeAfter 挂钩:

Request NameDescription
AddFriendsAdd friends by ID or username to a user’s account.
AddGroupUsersAdd users to a group.
AuthenticateCustomAuthenticate a user with a custom id against the server.
AuthenticateDeviceAuthenticate a user with a device id against the server.
AuthenticateEmailAuthenticate a user with an email+password against the server.
AuthenticateFacebookAuthenticate a user with a Facebook OAuth token against the server.
AuthenticateGameCenterAuthenticate a user with Apple’s GameCenter against the server.
AuthenticateGoogleAuthenticate a user with Google against the server.
AuthenticateSteamAuthenticate a user with Steam against the server.
BlockFriendsBlock one or more users by ID or username.
CreateGroupCreate a new group with the current user as the owner.
DeleteFriendsDelete one or more users by ID or username.
DeleteGroupDelete one or more groups by ID.
DeleteLeaderboardRecordDelete a leaderboard record.
DeleteNotificationsDelete one or more notifications for the current user.
DeleteStorageObjectsDelete one or more objects by ID or username.
GetAccountFetch the current user’s account.
GetUsersFetch zero or more users by ID and/or username.
HealthcheckA healthcheck which load balancers can use to check the service.
ImportFacebookFriendsImport Facebook friends and add them to a user’s account.
JoinGroupImmediately join an open group, or request to join a closed one.
KickGroupUsersKick a set of users from a group.
LeaveGroupLeave a group the user is a member of.
LinkCustomAdd a custom ID to the social profiles on the current user’s account.
LinkDeviceAdd a device ID to the social profiles on the current user’s account.
LinkEmailAdd an email+password to the social profiles on the current user’s account.
LinkFacebookAdd Facebook to the social profiles on the current user’s account.
LinkGameCenterAdd Apple’s GameCenter to the social profiles on the current user’s account.
LinkGoogleAdd Google to the social profiles on the current user’s account.
LinkSteamAdd Steam to the social profiles on the current user’s account.
ListChannelMessagesList a channel’s message history.
ListFriendsList all friends for the current user.
ListGroupsList groups based on given filters.
ListGroupUsersList all users that are part of a group.
ListLeaderboardRecordsList leaderboard records.
ListMatchesFetch a list of running matches.
ListNotificationsFetch a list of notifications.
ListStorageObjectsList publicly readable storage objects in a given collection.
ListUserGroupsList groups the current user belongs to.
PromoteGroupUsersPromote a set of users in a group to the next role up.
DemoteGroupUsersDemote a set of users in a group to a lower role.
ReadStorageObjectsGet storage objects.
UnlinkCustomRemove the custom ID from the social profiles on the current user’s account.
UnlinkDeviceRemove the device ID from the social profiles on the current user’s account.
UnlinkEmailRemove the email+password from the social profiles on the current user’s account.
UnlinkFacebookRemove Facebook from the social profiles on the current user’s account.
UnlinkGameCenterRemove Apple’s GameCenter from the social profiles on the current user’s account.
UnlinkGoogleRemove Google from the social profiles on the current user’s account.
UnlinkSteamRemove Steam from the social profiles on the current user’s account.
UpdateAccountUpdate fields in the current user’s account.
UpdateGroupUpdate fields in a given group.
WriteLeaderboardRecordWrite a record to a leaderboard.
WriteStorageObjectsWrite objects into the storage engine.

名称不区分大小写。更多信息,请参阅apigrpc.proto

对于实时 before 和 after 挂钩,请使用以下消息名称:

Message NameDescription
ChannelJoinJoin a realtime chat channel.
ChannelLeaveLeave a realtime chat channel.
ChannelMessageSendSend a message to a realtime chat channel.
ChannelMessageUpdateUpdate a message previously sent to a realtime chat channel.
ChannelMessageRemoveRemove a message previously sent to a realtime chat channel.
MatchCreateA client to server request to create a realtime match.
MatchDataSendA client to server request to send data to a realtime match.
MatchJoinA client to server request to join a realtime match.
MatchLeaveA client to server request to leave a realtime match.
MatchmakerAddSubmit a new matchmaking process request.
MatchmakerRemoveCancel a matchmaking process using a ticket.
StatusFollowStart following some set of users to receive their status updates.
StatusUnfollowStop following some set of users to no longer receive their status updates.
StatusUpdateSet the user’s own status.

名称不区分大小写。更多信息,请参阅 realtime.proto

限制 #

请参阅 TypeScriptGoLua 页面,了解运行库特有限制。

后台作业 #

为了避免“死机”(用户不在时宕机)和不必要的服务器负载,应该避免后台作业,而是采用事件驱动的路由。在这种方法中,客户端在用户返回时进行 RPC 调用,并在该调用函数中执行游戏逻辑和用例所需的任何更新。

计划的后台作业将做不必要的工作,即在整个用户群中执行这些更新,而不管用户是否处于非活动状态,但这种方法可确保只为仍在游戏中活动的用户执行工作。

使用后台作业可能会导致进一步的问题,因为任何作业都将限于一个 Nakama 实例,这就需要跨所有实例进行复制,或者跨实例的非同质工作负载。

Related Pages