91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity中Websocket的簡單使用

發布時間:2020-02-23 01:06:05 來源:網絡 閱讀:21770 作者:lreach 欄目:游戲開發

首先我們需要一個websocket服務器,之前的博文中有做
Tomcat架設簡單Websocket服務器
用的時候打開就行了,先不管它

Unity中新建場景
建UI(UGUI)
有一個連接按鈕Button
一個信息輸入框InputField
一個發送按鈕Button
一個斷開按鈕Button
一個消息顯示框Text

(猜你喜歡:Unity 連接WebSocket(ws://)服務器的方法
Unity中Websocket的簡單使用

場景中建一個GameObject,在上面加個腳本,就叫WSMgr好了
用到了BestHTTP這個插件

(猜你喜歡:在Unity3d下如何使用WebSocket

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using BestHTTP;
using BestHTTP.WebSocket;
using System;
using BestHTTP.Examples;
using UnityEngine.UI;
using System.Text;

public class WSMgr : MonoBehaviour {

    //public string url = "ws://localhost:8080/web1/websocket";
    public string url = "ws://localhost:8080/web1/ws";
    public InputField msg;
    public Text console;

    private WebSocket webSocket;

    private void Start()
    {
        init();
    }

    private void init()
    {
        webSocket = new WebSocket(new Uri(url));
        webSocket.OnOpen += OnOpen;
        webSocket.OnMessage += OnMessageReceived;
        webSocket.OnError += OnError;
        webSocket.OnClosed += OnClosed;
    }

    private void antiInit()
    {
        webSocket.OnOpen = null;
        webSocket.OnMessage = null;
        webSocket.OnError = null;
        webSocket.OnClosed = null;
        webSocket = null;
    }

    private void setConsoleMsg(string msg)
    {
        console.text = "Message: " + msg;
    }

    public void Connect()
    {
        webSocket.Open();
    }

    private byte[] getBytes(string message)
    {

        byte[] buffer = Encoding.Default.GetBytes(message);
        return buffer;
    }

    public void Send()
    {
        webSocket.Send(msg.text);
    }

    public void Send(string str)
    {
        webSocket.Send(str);
    }

    public void Close()
    {
        webSocket.Close();
    }

    #region WebSocket Event Handlers

    /// <summary>
    /// Called when the web socket is open, and we are ready to send and receive data
    /// </summary>
    void OnOpen(WebSocket ws)
    {
        Debug.Log("connected");
        setConsoleMsg("Connected");
    }

    /// <summary>
    /// Called when we received a text message from the server
    /// </summary>
    void OnMessageReceived(WebSocket ws, string message)
    {
        Debug.Log(message);
        setConsoleMsg(message);
    }

    /// <summary>
    /// Called when the web socket closed
    /// </summary>
    void OnClosed(WebSocket ws, UInt16 code, string message)
    {
        Debug.Log(message);
        setConsoleMsg(message);
        antiInit();
        init();
    }

    private void OnDestroy()
    {
        if(webSocket!=null && webSocket.IsOpen)
        {
            webSocket.Close();
            antiInit();
        }
    }

    /// <summary>
    /// Called when an error occured on client side
    /// </summary>
    void OnError(WebSocket ws, Exception ex)
    {
        string errorMsg = string.Empty;
#if !UNITY_WEBGL || UNITY_EDITOR
        if (ws.InternalRequest.Response != null)
            errorMsg = string.Format("Status Code from Server: {0} and Message: {1}", ws.InternalRequest.Response.StatusCode, ws.InternalRequest.Response.Message);
#endif
        Debug.Log(errorMsg);
        setConsoleMsg(errorMsg);
        antiInit();
        init();
    }

    #endregion
}

Connect   Send   Close 三個方法對應的就是三個按鈕的功能
OnOpen   OnMessage   OnError   OnClose這四個一看就是Websocket的四個事件對應的方法

首先在Start方法中init()
點擊Connect,連接
Unity中Websocket的簡單使用
在輸入框中輸入,點擊Send就發送
Unity中Websocket的簡單使用

點擊Close斷開連接
Unity中Websocket的簡單使用
底部的Text中會顯示消息

同樣,Tomcat服務端也有顯示
Unity中Websocket的簡單使用

發布WebGL測試可用

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绥滨县| 凤阳县| 古田县| 乐陵市| 昌黎县| 上栗县| 浮梁县| 翼城县| 渝北区| 黑河市| 韩城市| 微山县| 申扎县| 开远市| 孙吴县| 鄱阳县| 丰顺县| 乌苏市| 吉林市| 云浮市| 桃园市| 兰溪市| 红原县| 安新县| 金沙县| 平果县| 武义县| 如皋市| 紫云| 融水| 中西区| 贵南县| 萨嘎县| 济宁市| 瓮安县| 滁州市| 尤溪县| 札达县| 新沂市| 卓尼县| 广宁县|