ManiaAPI.NadeoAPI.Extensions.Gbx
2.1.0
dotnet add package ManiaAPI.NadeoAPI.Extensions.Gbx --version 2.1.0
NuGet\Install-Package ManiaAPI.NadeoAPI.Extensions.Gbx -Version 2.1.0
<PackageReference Include="ManiaAPI.NadeoAPI.Extensions.Gbx" Version="2.1.0" />
<PackageVersion Include="ManiaAPI.NadeoAPI.Extensions.Gbx" Version="2.1.0" />
<PackageReference Include="ManiaAPI.NadeoAPI.Extensions.Gbx" />
paket add ManiaAPI.NadeoAPI.Extensions.Gbx --version 2.1.0
#r "nuget: ManiaAPI.NadeoAPI.Extensions.Gbx, 2.1.0"
#addin nuget:?package=ManiaAPI.NadeoAPI.Extensions.Gbx&version=2.1.0
#tool nuget:?package=ManiaAPI.NadeoAPI.Extensions.Gbx&version=2.1.0
ManiaAPI.NadeoAPI.Extensions.Gbx
Connects ManiaAPI.NadeoAPI
with GBX.NET features to provide convenient map upload and map update.
Features
- Upload a map
- Update a map
Example
A bit more advanced example to show how you can update a map without having to manually specify the map ID:
using ManiaAPI.NadeoAPI;
using ManiaAPI.NadeoAPI.Extensions.Gbx;
using GBX.NET;
using GBX.NET.Engines.Game;
var ns = new NadeoServices();
await ns.AuthorizeAsync("mylogin", "mypassword", AuthorizationMethod.UbisoftAccount);
// Parse the map Gbx header
var mapFileName = "Path/To/Map.Map.Gbx";
var map = Gbx.ParseHeaderNode<CGameCtnChallenge>(mapFileName);
// Get the map info (we need map ID, not map UID)
var mapInfo = await ns.GetMapInfoAsync(map.MapUid);
// Update the map (no leaderboard lost!)
await ns.UpdateMapAsync(mapInfo.MapId, mapFileName);
You can also pass the CGameCtnChallenge
instance directly, but it is not recommended as the object is re-serialized and some data might change or corrupt (rarely, but still possible).
This example parses the map twice, which is not optimal. Currently, a method overload that can call
GetMapInfoAsync
behind the scenes is missing.
Product | Versions 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- GBX.NET (>= 2.0.9)
- ManiaAPI.NadeoAPI (>= 2.1.0)
-
net9.0
- GBX.NET (>= 2.0.9)
- ManiaAPI.NadeoAPI (>= 2.1.0)
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 |
---|---|---|
2.1.0 | 443 | 3/24/2025 |
2.0.0 | 141 | 3/23/2025 |
2.0.0-beta5 | 115 | 3/21/2025 |
2.0.0-beta4 | 127 | 12/21/2024 |
2.0.0-beta3 | 70 | 12/21/2024 |
2.0.0-alpha6 | 124 | 2/9/2024 |
2.0.0-alpha5 | 113 | 1/19/2024 |
2.0.0-alpha10 | 86 | 6/19/2024 |