All Projects → getnamo → Udp Ue4

getnamo / Udp Ue4

Licence: mit
Convenience UDP wrapper for Unreal Engine 4

Projects that are alternatives of or similar to Udp Ue4

Hp Socket
High Performance TCP/UDP/HTTP Communication Component
Stars: ✭ 4,420 (+4602.13%)
Mutual labels:  networking, udp
Libzt
ZeroTier Sockets - Put a network stack in your app
Stars: ✭ 486 (+417.02%)
Mutual labels:  networking, udp
Enet Csharp
Reliable UDP networking library
Stars: ✭ 464 (+393.62%)
Mutual labels:  networking, udp
Realtime Server
A realtime dedicated game server ( FPS / MOBA ). 一个实时的专用游戏服务器.
Stars: ✭ 358 (+280.85%)
Mutual labels:  ue4, real-time
Chill Netcat
UDP-only netcat implementation with OCaml / MirageOS
Stars: ✭ 13 (-86.17%)
Mutual labels:  networking, udp
Goben
goben is a golang tool to measure TCP/UDP transport layer throughput between hosts.
Stars: ✭ 391 (+315.96%)
Mutual labels:  networking, udp
Yasio
A multi-platform support c++11 library with focus on asio (asynchronous socket I/O) for any client application.
Stars: ✭ 483 (+413.83%)
Mutual labels:  ue4, udp
Wireguard Docs
📖 Unofficial WireGuard Documentation: Setup, Usage, Configuration, and full example setups for VPNs supporting both servers & roaming clients.
Stars: ✭ 3,201 (+3305.32%)
Mutual labels:  networking, udp
Roc Toolkit
Real-time audio streaming over the network.
Stars: ✭ 673 (+615.96%)
Mutual labels:  networking, real-time
Ngtcp2
ngtcp2 project is an effort to implement IETF QUIC protocol
Stars: ✭ 589 (+526.6%)
Mutual labels:  networking, udp
Web Udp Public
Public demand for Web UDP
Stars: ✭ 312 (+231.91%)
Mutual labels:  networking, udp
Rnl
RNL - Realtime Network Library - The opensource reliable UDP network library
Stars: ✭ 59 (-37.23%)
Mutual labels:  real-time, udp
Drop watch
Monitor reasons why and where linux drops UDP packets
Stars: ✭ 289 (+207.45%)
Mutual labels:  networking, udp
Networker
A simple to use TCP and UDP networking library for .NET. Compatible with Unity.
Stars: ✭ 408 (+334.04%)
Mutual labels:  networking, udp
Valvesockets Csharp
Managed C# abstraction of GameNetworkingSockets library by Valve Software
Stars: ✭ 273 (+190.43%)
Mutual labels:  networking, udp
Cnp3
Computer Networking : Principles, Protocols and Practice (first and second edition, third edition is being written on https://github.com/cnp3/ebook)
Stars: ✭ 471 (+401.06%)
Mutual labels:  networking, udp
React Native Udp
node's dgram for react-native
Stars: ✭ 238 (+153.19%)
Mutual labels:  networking, udp
Flopnite Ue4
A remake of the popular battle royale game, Fortnite, made in Unreal Engine 4 and integrated with Amazon GameLift
Stars: ✭ 250 (+165.96%)
Mutual labels:  ue4, networking
Laminar
A simple semi-reliable UDP protocol for multiplayer games
Stars: ✭ 530 (+463.83%)
Mutual labels:  networking, udp
Objecttransport
Send and Receive objects over TCP or UDP
Stars: ✭ 39 (-58.51%)
Mutual labels:  networking, udp

udp-ue4

Convenience ActorComponent UDP wrapper for Unreal Engine 4.

GitHub release Github All Releases

This may not be the most sensible wrapper for your use case, but is meant to co-exist with https://github.com/getnamo/socketio-client-ue4 with similar workflow.

Wraps built-in ue4 udp functionality as an actor component with both sending and receiving capabilities. Confirmed working with node.js dgram (see example echo server gist for testing).

Quick Install & Setup

  1. Download Latest Release
  2. Create new or choose project.
  3. Browse to your project folder (typically found at Documents/Unreal Project/{Your Project Root})
  4. Copy Plugins folder into your Project root.
  5. Plugin should be now ready to use.

How to use - Basics

Select an actor of choice. Add UDP component to that actor.

add component

Select the newly created component and modify any default settings

defaults

e.g. if you're only interested in sending, untick should auto-listen and modify your send ip/port to match your desired settings. Conversely you can untick auto-connect if you're not interested in sending.

Also if you want to connect/listen on your own time untick both and connect manually via e.g. key event

manual connect

Sending

Once you've auto-connected (more accurately prepared sending socket, since you don't get a callback in UDP like in TCP) or manually connected to the sending socket, use emit to send some data, utf8 conversion provided by socket.io plugin.

emit

Receiving

events

Once you've started listening to data you'll receive data on the OnReceivedBytes event

receive bytes

which you can convert to convenient strings or structures via socket.io (optional).

Reliable Stream

Each release includes the socket.io client plugin, that plugin is intended to be used for reliable control and then real-time/freshest data component of your network can be piped using this udp plugin. Consider timestamping your data so you can know which packets to drop/ignore.

Notes

MIT licensed.

Largely inspired from https://wiki.unrealengine.com/UDP_Socket_Sender_Receiver_From_One_UE4_Instance_To_Another.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].