golang和unity3d進行通訊繪圖。。。

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

一般GO語言是來寫伺服器,主要是省事線程的編寫的過程。

和UNITY3D來進行通訊

主要代碼

func main() {Addr, _ := net.ResolveTCPAddr("tcp4", ":6000")listener, err := net.ListenTCP("tcp", Addr)if err != nil {fmt.Fprintf(os.Stderr, "錯誤: %s", err.Error())os.Exit(1)}for {conn, err := listener.Accept()if err != nil {continue}go handleClient(conn)}}func handleClient(conn net.Conn) {defer conn.Close()var buf [128]bytefor {n, err := conn.Read(buf[0:])if err != nil {return}rAddr := conn.RemoteAddr()fmt.Println("接受的訊息:", rAddr.String(), string(buf[0:n]))_, err2 := conn.Write([]byte("6*0.5"))if err2 != nil {return}}}

 

在u3d中有編寫代碼來接受收到的參數:

ClientSocket = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);string ip = GetIP ().ToString ();//伺服器ipDebug.Log (ip);IPAddress ipa = IPAddress.Parse (ip);IPEndPoint iep = new IPEndPoint (ipa, 6000);try {ClientSocket.Connect (iep);//串連到伺服器thread = new Thread (new ThreadStart (ClientReceive));thread.Start ();} catch (Exception ex) {Debug.Log (ex.Message);clientReceiveValue = ex.Message;}

然後編寫兩個線程,一個接受,一個發送,收到的參數進行遊戲或者程式繪圖。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.