Unity3d_Multiplayer Netwoking13

Networking Player Health

网络玩家健康

Changes to the player’s current health should only be applied on the Server.

对播放器当前健康状况的更改应该只应用于服务器。

These changes are then synchronized on the Clients.

然后这些更改在客户端上同步。

This is called Server Authority.

这称为服务器权限。

For more information on Server Authority please see the page on Network System Concepts.

有关服务器权限的更多信息,请参阅有关网络系统概念的页面。

To make our current health and damage system network aware and working under Server authority, we need to use State Synchronization and a special member variable on networked objects called SyncVars.

为了使我们当前的健康和损害系统网络意识到并在服务器权限下工作,我们需要在称为SyncVars的联网对象上使用状态同步和一个特殊的成员变量。

Network synchronized variables, or SyncVars, are indicated with the attribute [SyncVar].

网络同步变量(或SyncVars)用属性[SyncVar]表示。

For more information on SyncVars, please see the page on State Synchronization.

有关SyncVars的更多信息,请参阅状态同步页面。

Open the Health script for editing.

打开用于编辑的健康脚本。

Add the namespace UnityEngine.Networking.

UnityEngine.Networking添加名称空间。

using UnityEngine.Networking;

Change script to derive from NetworkBehaviour.

从网络行为派生的更改脚本。

public class Health : NetworkBehaviour

Make currentHealth a [SyncVar].

使currentHealth[SyncVar]。

[SyncVar]

public int currentHealth = maxHealth;

Add a check for “isServer” to the TakeDamage function, so that damage will only be applied on the Server.

在TakeDamage函数中添加一个“isServer”的检查,这样就只会在服务器上应用。

if (!isServer)

{

    return;

}

The final script should look like this:

Health

C#

using UnityEngine;

using UnityEngine.UI;

using UnityEngine.Networking;

using System.Collections;

public class Health : NetworkBehaviour {

    public const int maxHealth = 100;

    [SyncVar]

    public int currentHealth = maxHealth;

    public RectTransform healthBar;

    public void TakeDamage(int amount)

    {

        if (!isServer)

        {

            return;

        }


        currentHealth -= amount;

        if (currentHealth <= 0)

        {

            currentHealth = 0;

            Debug.Log("Dead!");

        }

        healthBar.sizeDelta = new Vector2(currentHealth, healthBar.sizeDelta.y);

    }

}

Save the script.

保存脚本。

Return to Unity.

回到Unity。

Build and Run this scene as a standalone application.

构建并运行这个场景作为一个独立的应用程序。

Click the Host button from the in-game UI to start this game as a Host.

单击游戏内UI中的主机按钮以作为主机启动此游戏。

Move the Player GameObject.

玩家GameObject移动。

Return to Unity.

回到Unity。

Enter Play Mode.

进入播放模式。

Click the LAN Client button from the in-game UI to connect to the Host as a Client.

单击游戏内UI中的LAN客户端按钮以连接到主机作为客户端。

Now the player’s current health is only being applied on the Server and being synchronized on all of the Clients.

现在,玩家的当前健康状态只应用在服务器上,并在所有客户端上同步。

This is difficult to see on all clients, however, because the Healthbar is not working on all of the instances of the game.

然而,这在所有客户端都很难看到,因为Healthbar并没有处理所有的游戏实例。

The variable currentHealth is public and can be seen in the editor.

变量currentHealth是公共的,可以在编辑器中看到。

If the editor is being run as the connected client, not the host, the current health on the Player GameObjects should be easy to see in the Inspector.

如果编辑器是作为连接的客户机运行的,而不是主机,那么在检查器中应该很容易看到当前的游戏对象的健康状况。


It should also be easy to see that the Healthbar is working, but only working on the Host Client attached to the Server and not on any of the other Clients.

它还应该很容易看到Healthbar正在工作,但是只在服务器上的主机客户机上工作,而不是在任何其他客户机上。

This is because we are not synchronizing the value of the Foreground GameObject’s RectTransform across the network and the code to set the Healthbar’s Size Delta is only being run on the Server.

这是因为我们没有在整个网络上同步前台GameObject的RectTransform的值,而设置Healthbar的大小增量的代码只在服务器上运行。

The reason the Healthbar works on the Host Client is because it is local to the Server.

Healthbar在主机客户机上工作的原因是它是本地服务器。

The Host Client does not have data serialized to it because it shares the same scene with the Server.

主机客户端没有数据序列化,因为它与服务器共享相同的场景。

We now need to synchronize the RectTransform on the Healthbar's Foreground GameObject.

现在我们需要在Healthbar的前景游戏对象上同步RectTransform。

Close the standalone player.

关闭独立的球员。

Return to Unity.

回到Unity。

Exit Play Mode.

退出播放模式。

This brings us to another tool for State Synchronization: the SyncVar hook.

这给我们带来了另一个状态同步的工具:SyncVar钩子。

SyncVar hooks will link a function to the SyncVar.

SyncVar钩子将一个函数链接到SyncVar。

These functions are invoked on the Server and all Clients when the value of the SyncVar changes.

当SyncVar的值发生变化时,这些函数将在服务器和所有客户机上调用。

For more information on SyncVars and SyncVar hooks, please see the page on State Synchronization.

有关SyncVars和SyncVar钩子的更多信息,请参阅状态同步页面。

Open the Health script for editing.

打开用于编辑的健康脚本。

Move the code that changes the Healthbar into it’s own function called OnChangeHealth.

将更改Healthbar的代码移动到它自己的函数OnChangeHealth中。

void OnChangeHealth (int currentHealth)

{

    healthBar.sizeDelta = new Vector2(health, currentHealth.sizeDelta.y);

}

It is worth noting that this function must have a parameter of the same type as the variable with the [SyncVar] attribute, in this case int currentHealth, and that the current value of the SyncVar will be sent to the hooked function as an argument.

值得注意的是,该函数必须具有与具有[SyncVar]属性的变量相同类型的参数,在本例中是int currentHealth,并且将SyncVar的当前值作为参数发送到钩子函数。

Set a hook to this new function in the SyncVar attribute for currentHealth.

在SyncVar属性中为currentHealth设置一个钩子。

[SyncVar(hook = "OnChangeHealth")]

The final script should look like this:

Health

C#

using UnityEngine;

using UnityEngine.UI;

using UnityEngine.Networking;

using System.Collections;

public class Health : NetworkBehaviour {

    public const int maxHealth = 100;

    [SyncVar(hook = "OnChangeHealth")]

    public int currentHealth = maxHealth;

    public RectTransform healthBar;

    public void TakeDamage(int amount)

    {

        if (!isServer)

            return;


        currentHealth -= amount;

        if (currentHealth <= 0)

        {

            currentHealth = 0;

            Debug.Log("Dead!");

        }

    }

    void OnChangeHealth (int health)

    {

        healthBar.sizeDelta = new Vector2(health, healthBar.sizeDelta.y);

    }

}

Now when the value of currentHealth changes, OnChangedHealth will be called on the Server and all Clients to update the Healthbar.

现在,当currentHealth的值发生变化时,将在服务器和所有客户端调用OnChangedHealth,以更新Healthbar。

Save the script.

保存脚本。

Return to Unity.

回到Unity。

Build and Run this scene as a standalone application.

构建并运行这个场景作为一个独立的应用程序。

Click the Host button from the in-game UI to start this game as a Host.

单击游戏内UI中的主机按钮以作为主机启动此游戏。

Move the Player GameObject.

玩家GameObject移动。

Return to Unity.

回到Unity。

Enter Play Mode.

进入播放模式。

Click the LAN Client button from the in-game UI to connect to the Host as a Client.

单击游戏内UI中的LAN客户端按钮以连接到主机作为客户端。

When the players shoot each other, all of the Healthbars should now reflect the value of player GameObject’s Current Health.

当玩家互相射击时,所有的Healthbars现在应该反映玩家的当前健康的价值。

The Healthbar is now synchronized and works in all instances of the game.

Healthbar现在已经同步并在游戏的所有实例中工作。

Close the standalone player.

关闭独立的球员。

Return to Unity.

回到Unity。

Exit Play Mode.

退出播放模式。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容