Stormancer.Server.Plugins.Gameye 0.1.0.13-pre

This is a prerelease version of Stormancer.Server.Plugins.Gameye.
dotnet add package Stormancer.Server.Plugins.Gameye --version 0.1.0.13-pre
NuGet\Install-Package Stormancer.Server.Plugins.Gameye -Version 0.1.0.13-pre
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Stormancer.Server.Plugins.Gameye" Version="0.1.0.13-pre" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Stormancer.Server.Plugins.Gameye --version 0.1.0.13-pre
#r "nuget: Stormancer.Server.Plugins.Gameye, 0.1.0.13-pre"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Stormancer.Server.Plugins.Gameye as a Cake Addin
#addin nuget:?package=Stormancer.Server.Plugins.Gameye&version=0.1.0.13-pre&prerelease

// Install Stormancer.Server.Plugins.Gameye as a Cake Tool
#tool nuget:?package=Stormancer.Server.Plugins.Gameye&version=0.1.0.13-pre&prerelease

Gameye plugin

Enables the Stormancer game session system to host game servers in Gameye.

Installation

Client

//Include the plugin code
#include "gameye.hpp"


[...]

// In the Stormancer library configuration code, add and configure the Gameye plugin.

conf->additionalParameters[Stormancer::Gameye::ConfigurationKeys::GameyePortId] = "7777";
conf->addPlugin(new Stormancer::Gameye::GameyePlugin());

Server

  • Add the Stormancer.Server.Plugins.Gameye NuGet package to the application server project.
  • Declare a Gameye game server pool and configure the game session system to use it.

pool configuration options

"gameyePool1":{ "Image":"docker-image:xx", "Region":"europe", //Default game eye region to host game servers if no appropriate region mapping found between a region in the game and a region in gameye. "RegionsMapping":{"eu":"europe"} //Maps the regions of the game to regions in gameye. }

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.0.13-pre 46 3/11/2024
0.1.0.12-pre 121 11/11/2023
0.1.0.11-pre 54 11/8/2023
0.1.0.10-pre 67 10/30/2023
0.1.0.9-pre 67 10/25/2023
0.1.0.8-pre 75 10/20/2023
0.1.0.7-pre 76 9/29/2023
0.1.0.6-pre 84 8/29/2023
0.1.0.5-pre 101 6/15/2023
0.1.0.4-pre 73 6/15/2023
0.1.0.3-pre 74 6/15/2023
0.1.0.1-pre 82 6/14/2023
0.1.0-pre 73 6/13/2023

Added
*******
- Added a provider for the Stormancer gameserver system which enables running game servers on Gameye.
- Added support for container logs retrieval.