Jump to content

Search the Community

Showing results for tags 'Network'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to UNIGINE Forums
    • News & Announcements
    • Getting started
  • Development
    • Content Creation
    • World Design
    • Rendering
    • Animation
    • Physics, Navigation and Path Finding
    • UI Systems
    • Sound & Video
    • Editor
    • C++ Programming
    • C# Programming
    • Networking
    • Sim IG (Image Generator)
    • VR Discussions
    • General
  • Improving UNIGINE
    • Documentation
    • Feedback for UNIGINE team
    • Bug Reports
    • Unigine SDK Beta feedback
  • Community
    • Add-on Store (https://store.unigine.com/)
    • Showcase
    • Collaboration
    • Tools, Plugins, Materials & Tutorials
    • General Discussions
  • Legacy
    • UnigineScript

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 4 results

  1. Hello Unigine Team, First of all , Thanks a lot for 2.15 Community, I Love It :-) Second, Is it possible Making Multiplayer Games in LAN network (Like Game-Net) or Internet Online Games via Unigine 2.15 Community? Third , if Yes. How to Access to Multiplayer Games Library exist for C# Component , and how to access in the Library? Fourth, is exist a tutorial for that? Sincerely Ahmad Karami Bukani
  2. Hi, I just began writing network code for our project and got stuck with a few issues. I can run two servers : Server 1: port 50000 Server 2: port 50001 Now the client application has to search for the first available server from these two and connect to it. So first I need to find an available server. For this, inside Client init() I'm doing : network.pingAvailableLANServers( 49999, 50000 ); network.pingAvailableLANServers( 49999, 50001 ); The NETWORK_ON_PONG_RECEIVED call is registered to be handled by onPongReceived(). So assuming both servers are running, I can expect onPongReceived() to be triggered twice, once from each server. But that's not happening. 1. onPongReceived() is triggered only from the last server (port 50001). If 3 servers are running, callback is still triggered only from the last server. 2. A single ping is causing 2 onPongReceived() callbacks instead of 1, everytime. Note: For ease of coding, I'm running all server and client instances from a single PC. Kindly let me know any mistake in my logic. Thanks.
  3. Compiler errors in IRC client

    UnigineSDK-source-2012-02-26/source/plugins/Network/source/irc_client/IRCClient.cpp from line 285 to 336 printf("%s",message.toString()); needs to change to: printf("%s",message.toString().c_str()); Hope you already fix it!=) You should update our sources btw =)
  4. Built-in Server browser ?

    Does Unigine have built-in server browser, so players can see if game servers (a particular game that is built with Unigine) are running, how many players on them, ping, etc. ?
×
×
  • Create New...