All Projects → vizor-games → Infraworldruntime

vizor-games / Infraworldruntime

Licence: apache-2.0
A solution that enables Unreal Engine 4 to work with Google gRPC services from either C++ or Blueprints.

Programming Languages

cpp
1120 projects

Projects that are alternatives of or similar to Infraworldruntime

Houdiniengineforunreal
Houdini Engine Plugin for Unreal Engine 4
Stars: ✭ 533 (+433%)
Mutual labels:  unreal-engine, ue4
Blui
Rich HTML UI engine for UE4
Stars: ✭ 753 (+653%)
Mutual labels:  unreal-engine, ue4
Pbcharactermovement
HL2-style, classic FPS movement for Unreal Engine 4 implemented in C++
Stars: ✭ 582 (+482%)
Mutual labels:  unreal-engine, ue4
Gascontent
Repo to gather all Gameplay Ability System content for UE4
Stars: ✭ 398 (+298%)
Mutual labels:  unreal-engine, ue4
Ueviewer
Viewer and exporter for Unreal Engine 1-4 assets (UE Viewer).
Stars: ✭ 1,083 (+983%)
Mutual labels:  unreal-engine, ue4
Unrealcpp
Unreal Engine 4 C++ examples
Stars: ✭ 490 (+390%)
Mutual labels:  unreal-engine, ue4
Varest
REST API plugin for Unreal Engine 4 - we love restfull backend and JSON communications!
Stars: ✭ 707 (+607%)
Mutual labels:  unreal-engine, ue4
Unrealeditorpythonscripts
Some of my personal scripts i made to use for my own projects, but free of charge to be used for any project and any purpose as long as it is not violating the Unreal Engine EULA.
Stars: ✭ 282 (+182%)
Mutual labels:  unreal-engine, ue4
Unrealnetworkprofiler
A modern WPF based Network Profiler for Unreal Engine.
Stars: ✭ 29 (-71%)
Mutual labels:  unreal-engine, ue4
Runtimemeshcomponent
Unreal Engine 4 plugin component for rendering runtime generated content.
Stars: ✭ 903 (+803%)
Mutual labels:  unreal-engine, ue4
Ue4 Docker
Windows and Linux containers for Unreal Engine 4
Stars: ✭ 384 (+284%)
Mutual labels:  unreal-engine, ue4
Psrealvehicle
Plugin for Unreal Engine 4 with simple force-driven vehicle simulation
Stars: ✭ 92 (-8%)
Mutual labels:  unreal-engine, ue4
Fmodel
File explorer for UE4 games and with cosmetics icon creation support for Fortnite, Valorant, Battle Breakers, and Spellbreak
Stars: ✭ 299 (+199%)
Mutual labels:  unreal-engine, ue4
Buoyancysystem
A system for buoyancy and boat physics in Unreal Engine 4.
Stars: ✭ 87 (-13%)
Mutual labels:  unreal-engine, ue4
Ue4 Binary Builder
An application designed to create installed Unreal Engine builds (aka Rocket builds) from Unreal Engine GitHub source.
Stars: ✭ 292 (+192%)
Mutual labels:  unreal-engine, ue4
Dungeontemplatelibrary
🌏: Dungeon free resources (terrain & roguelike generation)
Stars: ✭ 595 (+495%)
Mutual labels:  unreal-engine, ue4
TransMat
Blender Python - Instantly Recreate Blender Shader Node Trees as Unreal Materials
Stars: ✭ 30 (-70%)
Mutual labels:  unreal-engine, ue4
Genericgraph
Generic graph data structure plugin for ue4
Stars: ✭ 256 (+156%)
Mutual labels:  unreal-engine, ue4
Actionrpggame
Unreal Engine 4 Action RPG type game starter kit.
Stars: ✭ 773 (+673%)
Mutual labels:  unreal-engine, ue4
Actionroguelike
Third-person Action Roguelike made in Unreal Engine C++ (for Stanford CS193U 2020)
Stars: ✭ 1,121 (+1021%)
Mutual labels:  unreal-engine, ue4

Vizor Infraworld

License Maintainability

Welcome to the Infraworld source code!

Infraworld is a solution that enables Unreal Engine 4 to work with Google gRPC services using either C++ or Blueprints.

Infraworld is a fast, robust and cross platform. It fits any stage of development: either prototyping or production. Saving a tons of your team's time, you need to write your gRPC wrappers by hand no more. A special converter utility will do it for you, producing high quality, debuggable and multi-threaded code, gaining lowest possible overhead to your game logic thread. You may also work with either generated or shipped with gRPC C functions and C++ classes in your own way, even completely ignoring runtime classes, since the InfraworldRuntime adds all required headers and wires all required libraries.

Also, you may want to use a protobuild utility to automate cross-language gRPC wrapper generation.

Getting started

Building gRPC support

At the first step, you need to build gRPC runtime libraries. Just run Setup.sh for Linux, Setup.bat for Windows or Setup.command for macOS (please don't use Setup.sh on macOS, because Linux and macOS build pipelines are completely different!). OR you may want to use our sweet pre-compiled binaries to avoid manual building and save our planet from carbon emission disaster! The runtime uses gRPC branch v1.23.x.

  • For Windows, we recommend you to use chocolatey to install packages into your system. Note that you do need all these programs in your system's PATH (See how to edit PATH on Windows):
  • For any distribution of Linux and for macOS systems you need (use apt, pacman, emerge or any other package manager to install this software):
    • git
    • automake, autoconf and libtool
    • make
    • strip
    • go
    • Unreal Engine 4.22 installed, additionally you need to export UE_ROOT=/path/to/root/ue4/directory, because you need UE4 to build GRPC for linux.
  • For macOS (use homebrew or macports to install this software):
    • git
    • xCode 10.0+
    • go

Note that required programs for Linux and MacOS systems are being checked in run-time.

Then you may (or may not) import GrpcIncludes and GrpcLibraries folders into your VCS, but you need to build them manually at least one time for each platform. The build process requires an access to the Internet.

Installing the plugin

Just copy the resulting folder into the your project’s Plugins folder (create it if you don’t have one). Then, after that project is being opened, a dialog box, telling that the plugin is need to be compiled should appear. Then confirm the dialog by clicking Yes.

Building and the converter

Please take a look at the infraworld-cornerstone documentation for details.

Using generated code.

Please take a look at the example project for tutorial.

Running the example project

You should copy built plugin's folder into InfraworldRuntimeExample/Plugins folder. Then just open InfraworldDemo.uproject. Server code is in DemoServer folder. You are required to install dependencies using pip and requirements.txt file. For more details please check our InfraworldExample repository

Debugging

Since the plugin itself is an open source software, you may want to debug it or add some extra functionality. Since it is distributed as an Unreal Engine plugin, you can add it into your own game and then generate Visual Studio solution, XCode project or CMakeLists. Use Development or DebugGame run configuration!

Contribution

Please feel free to report known bugs, propose new features and improve tests using Github's pull request system. Please do not add either build libraries for an any platform or header files into your commits. Thank you very much for contributing into free software.

References

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].