http://blog.csdn.net/u010019717/article/details/46993697

孙广东  2015.7.21

本节提供了与网络系统一起使用的组件的详细信息。

1、Network Animator

 

NetworkAnimator 用于跨网络同步动画。

Properties

Property: Function:
animator 要同步的对象上的Animator 组件。

Details  暂无

2、NetworkBehaviour

NetworkBehaviours 是特别脚本,用于处理对象上的 NetworkIdentity 组件。这些脚本都能够执行 HLAPI ,像Commands、 ClientRPCs、 SyncEvents 和 SyncVars 等功能。

与Unity Network System服务器authoritative 权威系统,网络对象的 NetworkIdentities 必须是“spawned”,由服务器使用 NetworkServer.Spawn()。这会导致他们被分配一个NetworkInstanceId,在连接到服务器的客户端上创建。

Properties

Property: Function:
isLocalPlayer True if this object is the player object for the local client.
isServer True if this object is running on the server, and has been spawned.
isClient True if this object is running on a client.
hasAuthority True if this object is the authoritative version of the object. So either on the server, or on the client with localPlayerAuthority.
assetId This is the assetId of the object’s NetworkIdentity.
netId This is the netId of the object’s NetworkIdentity.
playerControllerId This is the playerControllerId of the object’s NetworkIdentity.
connectionToServer NetworkConnection object to use to send to the server.
connectionToClient

NetworkConnection object to use to send to the client.

NetworkBehaviours 具有以下的特点,介绍如下。

• Synchronized Variables 同步变量
• Network callbacks 网络回调
• Server and Client functions服务器和客户端功能
• Sending Commands发送命令
• Client RPC Calls 客户端 RPC 调用
• Networked Events 网络事件

Synchronized Variables
同步的变量
NetworkBehaviours 成员变量可以从服务器同步到客户端。因为该服务器是有权威在此系统中,同步是仅在  服务器到客户端  的方向。 客户请求做的事情是通过命令Commands处理,不是从客户端同步的变量。

SyncVar 属性用于 标记 成员变量,如  正在同步。SyncVars 可以是任何 基本类型、 不是类、 列表或其他集合。

  1. public class SpaceShip : NetworkBehaviour
  2. {
  3. [SyncVar]
  4. public int health;
  5. [SyncVar]
  6. public string playerName;
  7. }

SyncVar 的值在服务器上更改,它将发送到所有的游戏中准备好的clients 。当 生成对象 时,客户端上创建他们从服务器的所有 SyncVars 的最新状态。

Network callbacks
网络回调

有各种 网络事件的 NetworkBehaviour 脚本调用的回调函数。这些是对基类 虚函数,所以它们可以被重写在使用这样的代码:

  1. public class SpaceShip : NetworkBehaviour
  2. {
  3. public override void OnStartServer()
  4. {
  5. // disable client stuff
  6. }
  7. public override void OnStartClient()
  8. {
  9. // register client events, enable effects
  10. }
  11. }

当对象在服务器上被生成或当服务器启动时 对场景中的对象   调用 OnStartServer 函数。  当对象在客户端被生成 ,或者当客户端连接到服务器以进行场景中的物体,将调用 OnStartClient 函数。这些函数是有用的, 去做那些特定于客户端或服务器的事,  例如suppressing effects 抑制效应在服务器上,或设置客户端事件。

请注意,当使用的是local client 本地客户端,这两个函数将被同一个对象调用。

其他回调包括:
• OnSerialize - called to gather state to send from the server to clients 调用以收集状态将从服务器发送到客户端
• OnDeSerialize - called to apply state to objects on clients 调用以将状态应用于客户端上的对象
• OnNetworkDestroy - called on clients when server told the object to be destroyed 当服务器告诉要被销毁的对象在客户端上调用
• OnStartLocalPlayer - called on clients for player objects for the local client (only)
• OnRebuildObservers - called on the server when the set of observers for an object is rebuild
• OnSetLocalVisibility - called on a host when the visibility of an object changes for the local client
• OnCheckObserver - called on the server to check visibility state for a new client

Server and Client functions
服务器和客户端功能

NetworkBehaviours 中的成员函数可以用来   自定义属性  来指定它们 作为 仅服务器或仅客户端的功能标记。例如:

  1. using UnityEngine;
  2. using UnityEngine.Networking;
  3. public class SimpleSpaceShip : NetworkBehaviour
  4. {
  5. int health;
  6. [Server]
  7. public void TakeDamage( int amount)
  8. {
  9. // will only work on server
  10. health -= amount;
  11. }
  12. [Client]
  13. void ShowExplosion()
  14. {
  15. // will only run on client
  16. }
  17. [ClientCallback]
  18. void Update()
  19. {
  20. // engine invoked callback - will only run on client
  21. }
  22. }

这些属性  使函数立即返回, 如果他们在客户端或服务器未处于活动状态时调用。他们不会生成编译时错误,但如果调用错误的范围内,他们将发出警告日志消息。ServerCallback 和 ClientCallback 的属性可以用于用户代码不能控制的调用的引擎回调函数。这些属性不会导致生成的警告。

Sending Commands
发送命令

命令是为客户端请求做某事  在服务器上的方式。由于 HLAPI 是一个服务器的权威系统,客户可以只通过命令做事情。发送该命令的客户端上的player 对象对应的服务器上运行命令。这种路由会自动发生,客户端一个不同的player发送命令它是不可能的。

命令必须以  前缀"Cmd" 开头和有  [Command] 自定义属性,如以下:

  1. using UnityEngine;
  2. using UnityEngine.Networking;
  3. public class SpaceShip : NetworkBehaviour
  4. {
  5. bool alive;
  6. float thrusting;
  7. int spin;
  8. [Command]
  9. public void CmdThrust(float thrusting, int spin)
  10. {
  11. if (!alive)
  12. {
  13. this.thrusting = 0;
  14. this.spin = 0;
  15. return;
  16. }
  17. this.thrusting = thrusting;
  18. this.spin = spin;
  19. }
  20. [ClientCallback]
  21. void Update()
  22. {
  23. int spin = 0;
  24. if (Input.GetKey(KeyCode.LeftArrow))
  25. {
  26. spin += 1;
  27. }
  28. if (Input.GetKey(KeyCode.RightArrow))
  29. {
  30. spin -= 1;
  31. }
  32. // this will be called on the server
  33. CmdThrust(Input.GetAxis("Vertical"), spin);
  34. }
  35. }

命令被调用,通常在客户端上  。但是,而不是命令函数在客户端上运行的 ,它将在该服务器上的客户端Player对象调用。因此,命令是类型安全,有内置的安全机制和路由到player,以及使用参数有效的序列化机制,使快速调用它们。

Client RPC Calls
客户端 RPC 调用

客户端 RPC 调用是   一个服务器对象 让  客户端对象 做一些事情的方式。这是和如何用命令发送消息 方向相反,但概念是相同的。客户端 RPC 调用然而不只调用player对象,他们可以在任何 NetworkIdentity 对象上调用。必须以前缀 "Rpc" 开头,并且必须 [ClientRPC] 的自定义属性,像下面:

  1. using UnityEngine;
  2. using UnityEngine.Networking;
  3. public class SpaceShipRpc : NetworkBehaviour
  4. {
  5. [ClientRpc]
  6. public void RpcDoOnClient(int foo)
  7. {
  8. Debug.Log("OnClient " + foo);
  9. }
  10. [ServerCallback]
  11. void Update()
  12. {
  13. int value = UnityEngine.Random.Range(0,100);
  14. if (value < 10)
  15. {
  16. // this will be invoked on all clients
  17. RpcDoOnClient(value);
  18. }
  19. }
  20. }

Networked Events
网络的事件

网络的事件就像   客户端 RPC 调用,但不是只在客户端对象上调用一个函数,客户端对象上的事件将被触发。为事件 注册的其他脚本 然后调用 -  参数在服务器上,所以这使得网络的客户端上脚本间交互。事件必须以前缀 “Event” 开头并且有 SyncEvent 的自定义属性。

事件可以用于生成功能强大的网络游戏系统,可以通过其他脚本扩展。此示例演示如何影响脚本在客户端上的可以响应由服务器上的战斗脚本生成的事件。

  1. using UnityEngine;
  2. using UnityEngine.Networking;
  3. // Server script
  4. public class MyCombat : NetworkBehaviour
  5. {
  6. public delegate void TakeDamageDelegate(int side, int damage);
  7. public delegate void DieDelegate();
  8. public delegate void RespawnDelegate();
  9. float deathTimer;
  10. bool alive;
  11. int health;
  12. [SyncEvent(channel=1)]
  13. public event TakeDamageDelegate EventTakeDamage;
  14. [SyncEvent]
  15. public event DieDelegate EventDie;
  16. [SyncEvent]
  17. public event RespawnDelegate EventRespawn;
  18. [Server]
  19. void TakeDamage(int amount)
  20. {
  21. if (!alive)
  22. return;
  23. if (health > amount) {
  24. health -= amount;
  25. }
  26. else
  27. {
  28. health = 0;
  29. alive = false;
  30. // send die event to all clients
  31. EventDie();
  32. deathTimer = Time.time + 5.0f;
  33. }
  34. }
  35. [ServerCallback]
  36. void Update()
  37. {
  38. if (!alive)
  39. {
  40. if (Time.time > deathTimer)
  41. {
  42. Respawn();
  43. }
  44. return;
  45. }
  46. }
  47. [Server]
  48. void Respawn()
  49. {
  50. alive = true;
  51. // send respawn event to all clients
  52. EventRespawn();
  53. }
  54. }

Hints

    • This is a base class that provides Commands and ClientRpc calls.

Unity5.1 新的网络引擎UNET(十五) Networking 引用--上的更多相关文章

  1. Unity5.1 新的网络引擎UNET(二) UNET 官方推荐Demo案例

    http://blog.csdn.net/u010019717/article/details/46873153 视频 http://www.iqiyi.com/playlist391685502.h ...

  2. Unity5.1 新的网络引擎UNET(九) UNET 官方推荐视频教程

    孙广东  2015.7.14 在新的网络引擎出现之前,Unity提供的是 内置 Raknet网络引擎, 这一次Unity想更新UGUI一样,花了大的手笔更新了, UNET. 原来的旧的网络组件 被提示 ...

  3. Unity5.1 新的网络引擎UNET(十五) Networking 引用--下

     孙广东 2015.7.21 本节提供了与网络系统一起使用的组件的具体信息. 10.Network Proximity Checker Suggest a change Success! Than ...

  4. Unity5.1 新的网络引擎UNET(十五) Networking 引用--中

    孙广东 2015.7.21 本节提供了与网络系统一起使用的组件的具体信息. 3.NetworkClient NetworkClient 是一个 HLAPI 类,管理网络连接到服务器 - - 相应着 U ...

  5. Unity5.1 新的网络引擎UNET(八) UNET 系统概括

     孙广东   2015.7.12 Server and Host 在Unity 的 网络系统,游戏有 一个server和多个client. 当没有专用的server时,client之中的一个扮演s ...

  6. Unity5.1 新的网络引擎UNET(四) UNET Remote Actions

    孙广东   2015.7.12 网络系统 具有网络中执行操作actions 的方法.这些类型的actions 有时是调用远程过程调用(Remote Procedure Calls). 在网络系统中有两 ...

  7. Unity5.1 新的网络引擎UNET(七) UNET 单人游戏转换为多人

     单人游戏转换为多人   孙广东   2015.7.12 本文档描写叙述将单人游戏转换为使用新的网络系统的多人游戏的步骤.这里描写叙述的过程是简化,对于一个真正的游戏事实上须要更高级别版本号的实际 ...

  8. centos Linux系统日常管理2 tcpdump,tshark,selinux,strings命令, iptables ,crontab,TCP,UDP,ICMP,FTP网络知识 第十五节课

    centos  Linux系统日常管理2  tcpdump,tshark,selinux,strings命令, iptables ,crontab,TCP,UDP,ICMP,FTP网络知识 第十五节课 ...

  9. 渗透测试学习 十五、 文件上传&&解析漏洞

    大纲:文件解析漏洞 上传本地验证绕过 上传服务器验证绕过 文件解析漏洞 解析漏洞主要说的是一些特殊文件被IIS.Apache.Nginx在某些情况下解释成脚本文件格式的漏洞. IIS 5.x/6.0解 ...

随机推荐

  1. P1533 可怜的狗狗

    http://www.luogu.org/problem/show?pid=1533 题目背景 小卡由于公务需要出差,将新家中的狗狗们托付给朋友嘉嘉,但是嘉嘉是一个很懒的人,他才没那么多时间帮小卡喂狗 ...

  2. PostGIS_导入shp格式的数据

    1.导入shp到PostGIS 开启PostGIS shp Loader,如下图: 打开View connection details....输入连接数据库的参数,如下: 连接成功后,点击Add Fi ...

  3. Struts2的配置

    Struts2的配置 Struts2可以通过Convention插件管理Action和结果映射,也可以通过使用XML文件进行管理,这两种方式各有好处:使用Convention插件管理减少了XML文件的 ...

  4. WinForm窗体及其控件的自适应

    3步骤: 1.在需要自适应的Form中实例化全局变量   AutoSizeFormClass.cs源码在下方 AutoSizeFormClass asc = new AutoSizeFormClass ...

  5. Java一些动手动脑实验

    一.Java字段初始化的规律: 输出结果为:100 和 300 当把{filed=200}放在public int field=100之后输出结果为:200 和 300 所以执行类成员定义时指定的默认 ...

  6. 【leetcode❤python】387. First Unique Character in a String

    #-*- coding: UTF-8 -*- class Solution(object):    def firstUniqChar(self, s):        s=s.lower()     ...

  7. TC SRM633

    第三题:n个数字,有m个限制,每个限制给出某两个数字的Gcd或者Lcm为多少.最后问这样的n个数存在否. 思路:我们发现,对于素数p1,p2,n个数中每个数含有多少个p1,p2是没有联系的,因此每个素 ...

  8. HTML-3月20日课堂总结

    1.图片热点 2.表单制作 3.课后作业 1.图片热点 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN&qu ...

  9. [翻译]投影变换 Projection Transform (Direct3D 9)

    你可以认为投影变换就是控制摄像机内部的一种方式.他可以类推为为摄像机选择一个漏字板.它是三种变换中最难懂的.本文只讨论以下的一些内容. 典型的投影变换就是缩放和透视投影.投影就变换把视椎转化为一个立方 ...

  10. Know How To Use Check Box Mapping Of Other Values Property In Oracle Forms

    Check Box Mapping of Other Values specifies how any fetched or assigned value that is not one of the ...