2018-03-09 17:37:57 +01:00
2018-03-09 17:37:57 +01:00
2018-01-05 06:52:32 +01:00
2018-03-03 07:26:48 +01:00
2018-03-09 00:18:38 +01:00

MLAPI (Mid level API) is a framework that hopefully simplifies building networked games in Unity. It is built on the LLAPI and is similar to the HLAPI in many ways. It does not however integrate into the compiler and it's meant to offer much greater flexibility than the HLAPI while keeping some of it's simplicity. It offers greater performance over the HLAPI.

Requirements

  • Unity 2017 or newer

Features

  • Host support (Client hosts the server)
  • Object and player spawning [Wiki page]
  • Connection approval [Wiki page]
  • Message names
  • Replace the integer QOS with names. When you setup the networking you specify names that are associated with a channel. This makes it easier to manage. You can thus specify that a message should be sent on the "damage" channel which handles all damage related logic and is running on the AllCostDelivery channel.
  • ProtocolVersion to allow making different versions not talk to each other.
  • NetworkedBehaviours does not have to be on the root, it's simply just a class that implements the send methods etc.
  • Custom tickrate
  • Supports separate Unity projects crosstalking
  • Passthrough messages [Wiki page]
  • Scene Management [Wiki page]
  • Built in Lag compensation [Wiki page]
  • NetworkTransform replacement [Wiki page]
  • Targeted messages [Wiki page]
  • Port of NetworkedAnimator [Wiki page]
  • Networked Object Pooling [Wiki page]
  • Synced Vars [Wiki page]

Planned features

  • Area of interest
  • Encrypted messages / full encryption for all messages. Diffie Hellman key exchange with the option to sign the transaction using RSA.
  • Serializer (both for the library to speed up and to allow structs to be sent easily)
  • Message compression

Example

Example project

The example project has a much lower priority compared to the library itself. If something doesn't exist in the example nor the wiki. Please open an issue on GitHub.

Issues and missing features

If there are any issues, bugs or features that are missing. Please open an issue on GitHub!

Testing

The project is not extensivley tested. I am however very active on answering and fixing issues. If you are using the library and you find something doesn't work or throws an exception. Open an issue or submit a PR.

Description
A networking framework built on Unity's LLAPI that offers greater flexibility over the Unity HLAPI
Readme 2.1 MiB
Languages
C# 100%