GJM: Unity3D基於Socket通訊例子 [轉載]

来源:http://www.cnblogs.com/GJM6/archive/2016/11/16/6068812.html
-Advertisement-
Play Games

首先創建一個C# 控制台應用程式, 直接伺服器端代碼丟進去,然後再到Unity 裡面建立一個工程,把客戶端代碼掛到相機上,運行服務端,再運行客戶端。 高手勿噴!~! 完全源碼已經奉上,大家開始研究吧!! 嘎嘎嘎! 服務端代碼:Program.cs using System; using System ...


點擊查看原圖

首先創建一個C# 控制台應用程式, 直接伺服器端代碼丟進去,然後再到Unity 裡面建立一個工程,把客戶端代碼掛到相機上,運行服務端,再運行客戶端。 高手勿噴!~!

完全源碼已經奉上,大家開始研究吧!! 嘎嘎嘎!

 

服務端代碼:Program.cs

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Net.Sockets;
  6. namespace SoketDemo
  7. {
  8. class Program
  9. {
  10. // 設置連接埠
  11. const int portNo = 500;
  12. static void Main(string[] args)
  13. {
  14. // 初始化伺服器IP
  15. System.Net.IPAddress localAdd = System.Net.IPAddress.Parse("127.0.0.1");
  16. // 創建TCP偵聽器
  17. TcpListener listener = new TcpListener(localAdd, portNo);
  18. listener.Start();
  19. // 顯示伺服器啟動信息
  20. Console.WriteLine("Server is starting...n");
  21. // 迴圈接受客戶端的連接請求
  22. while (true)
  23. {
  24. ChatClient user = new ChatClient(listener.AcceptTcpClient());
  25. // 顯示連接客戶端的IP與埠
  26. Console.WriteLine(user._clientIP + " is joined...n");
  27. }
  28. }
  29. }
  30. }
複製代碼

服務端代碼:ChatClient.cs

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections;
  6. using System.Net.Sockets;
  7. namespace SoketDemo
  8. {
  9. class ChatClient
  10. {
  11. public static Hashtable ALLClients = new Hashtable(); // 客戶列表
  12. private TcpClient _client; // 客戶端實體
  13. public string _clientIP; // 客戶端IP
  14. private string _clientNick; // 客戶端昵稱
  15. private byte[] data; // 消息數據
  16. private bool ReceiveNick = true;
  17. public ChatClient(TcpClient client)
  18. {
  19. this._client = client;
  20. this._clientIP = client.Client.RemoteEndPoint.ToString();
  21. // 把當前客戶端實例添加到客戶列表當中
  22. ALLClients.Add(this._clientIP, this);
  23. data = new byte[this._client.ReceiveBufferSize];
  24. // 從服務端獲取消息
  25. client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);
  26. }
  27. // 從客戶端獲取消息
  28. public void ReceiveMessage(IAsyncResult ar)
  29. {
  30. int bytesRead;
  31. try
  32. {
  33. lock (this._client.GetStream())
  34. {
  35. bytesRead = this._client.GetStream().EndRead(ar);
  36. }
  37. if (bytesRead < 1)
  38. {
  39. ALLClients.Remove(this._clientIP);
  40. Broadcast(this._clientNick + " has left the chat");
  41. return;
  42. }
  43. else
  44. {
  45. string messageReceived = System.Text.Encoding.ASCII.GetString(data, 0, bytesRead);
  46. if (ReceiveNick)
  47. {
  48. this._clientNick = messageReceived;
  49. Broadcast(this._clientNick + " has joined the chat.");
  50. //this.sendMessage("hello");
  51. ReceiveNick = false;
  52. }
  53. else
  54. {
  55. Broadcast(this._clientNick + ">" + messageReceived);
  56. }
  57. }
  58. lock (this._client.GetStream())
  59. {
  60. this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);
  61. }
  62. }
  63. catch (Exception ex)
  64. {
  65. ALLClients.Remove(this._clientIP);
  66. Broadcast(this._clientNick + " has left the chat.");
  67. }
  68. }
  69. // 向客戶端發送消息
  70. public void sendMessage(string message)
  71. {
  72. try
  73. {
  74. System.Net.Sockets.NetworkStream ns;
  75. lock (this._client.GetStream())
  76. {
  77. ns = this._client.GetStream();
  78. }
  79. // 對信息進行編碼
  80. byte[] bytesToSend = System.Text.Encoding.ASCII.GetBytes(message);
  81. ns.Write(bytesToSend, 0, bytesToSend.Length);
  82. ns.Flush();
  83. }
  84. catch (Exception ex)
  85. {
  86. }
  87. }
  88. // 向客戶端廣播消息
  89. public void Broadcast(string message)
  90. {
  91. Console.WriteLine(message);
  92. foreach (DictionaryEntry c in ALLClients)
  93. {
  94. ((ChatClient)(c.Value)).sendMessage(message + Environment.NewLine);
  95. }
  96. }
  97. }
  98. }
複製代碼

客戶端代碼 :ClientHandler

  1. using UnityEngine;
  2. using System.Collections;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Text;
  7. using System.Net.Sockets;
  8. public class ClientHandler : MonoBehaviour
  9. {
  10. const int portNo = 500;
  11. private TcpClient _client;
  12. byte[] data;
  13. public string nickName = "";
  14. public string message = "";
  15. public string sendMsg = "";
  16. void OnGUI()
  17. {
  18. nickName = GUI.TextField(new Rect(10, 10, 100, 20), nickName);
  19. message = GUI.TextArea(new Rect(10, 40, 300, 200), message);
  20. sendMsg = GUI.TextField(new Rect(10, 250, 210, 20), sendMsg);
  21. if (GUI.Button(new Rect(120, 10, 80, 20), "Connect"))
  22. {
  23. //Debug.Log("hello");
  24. this._client = new TcpClient();
  25. this._client.Connect("127.0.0.1", portNo);
  26. data = new byte[this._client.ReceiveBufferSize];
  27. //SendMessage(txtNick.Text);
  28. SendMessage(nickName);
  29. this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);
  30. };
  31. if (GUI.Button(new Rect(230, 250, 80, 20), "Send"))
  32. {
  33. SendMessage(sendMsg);
  34. sendMsg = "";
  35. };
  36. }
  37. public void SendMessage(string message)
  38. {
  39. try
  40. {
  41. NetworkStream ns = this._client.GetStream();
  42. byte[] data = System.Text.Encoding.ASCII.GetBytes(message);
  43. ns.Write(data, 0, data.Length);
  44. ns.Flush();
  45. }
  46. catch (Exception ex)
  47. {
  48. //MessageBox.Show(ex.ToString());
  49. }
  50. }
  51. public void ReceiveMessage(IAsyncResult ar)
  52. {
  53. try
  54. {
  55. int bytesRead;
  56. bytesRead = this._client.GetStream().EndRead(ar);
  57. if (bytesRead < 1)
  58. {
  59. return;
  60. }
  61. else
  62. {
  63. Debug.Log(System.Text.Encoding.ASCII.GetString(data, 0, bytesRead));
  64. message += System.Text.Encoding.ASCII.GetString(data, 0, bytesRead);
  65. }
  66. this._client.GetStream().BeginRead(data, 0, System.Convert.ToInt32(this._client.ReceiveBufferSize), ReceiveMessage, null);
  67. }
  68. catch (Exception ex)
  69. {
  70. }
  71. }
  72. }

 原 帖 地址 http://www.u3dchina.com/forum.php?mod=viewthread&tid=4741&extra=page%3D1%26filter%3Dsortid%26sortid%3D14%26sortid%3D14

如有版權問題 請聯繫我:[email protected] 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • crontab是一個用來設置、刪除或顯示供守護進程cron執行的定時任務的命令。每一個用戶都可以擁有屬於自己的定時任務,定時任務文件預設以用戶名命名,並放在/var/spool/cron目錄,該目錄普通用戶無訪問許可權。 可以通過cron.allow 和 cron.deny文件管理用戶使用cronta ...
  • ARM彙編程式結構 一個ARM程式可以被劃分為多個代碼段和數據段,在彙編的時候這些段會被形成一個可執行文件 子程式調用 ARM彙編中,子程式的調用一般通過 指令實現,在程式中,執行 即可完成子程式的調用。該指令在執行時完成如下操作: 1. 將子程式的返回地址保存在LR 2. 將PC指向子程式的入口 ...
  • GNU平臺無關 符號定義偽指令 ,`.local .set .equ` .global 使得符號對連接器可見,變為對整個工程可用的全局變數 .local 表示符號對外部不可見,只對本文件可見 .set 給一個全局變數或局部變數賦值,和 的功能一樣 .equ 和 一樣,只是格式不同 數據定義偽指令 , ...
  • 最近悟出來一個道理,在這兒分享給大家:學歷代表你的過去,能力代表你的現在,學習代表你的將來。 十年河東十年河西,莫欺少年窮 學無止境,精益求精 最近在做自學MVC,遇到的問題很多,索性一點點總結下。 本篇旨在寫一篇上傳文件的博客,上傳文件中以上傳圖片最多,所以本篇以上傳圖片為例進行說明: 在進行講解 ...
  • 在UWP開發中,我們能使用的到方向有三種: OrientationSensor下的四元數;Compass羅盤的HeadingMagneticNorth;以及SimpleOrientationSensor。 先說下SimpleOrientationSensor,這個是用在比較簡單的情況下,它只能讀取6 ...
  • Nop里自帶的為名稱、姓氏,FirstName、LastName。 這些欄位並不存在與Custom表中,看過代碼的應該都知道,在GenericAttribute中以縱表的形式存儲。 \Libraries\Nop.Core\Domain\Customers\SystemCustomerAttribut ...
  • 有用戶反映,Tausus.MVC 能寫WebAPI麽?能!教程呢?嗯,木有-_-!好吧,剛好2.0出來,就帶上WEBAPI教程了! ...
  • 本節內容: 顯示信息 確認 Message API給用戶顯示一個信息,或從用戶那裡獲取一個確認信息。 Message API預設使用sweetalert實現,為使sweetalert正常工作,你應該包含它的css和javascript文件,然後把abp.sweet-alert.js適配器包含到你的頁 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...