RiskofThunder-R2API_ContentManagement icon

R2API ContentManagement

API for adding content to the game

Last updated 3 months ago
Total downloads 1766462
Total rating 6 
Categories Libraries
Dependency string RiskofThunder-R2API_ContentManagement-1.0.4
Dependants 782 other packages depend on this package

This mod requires the following mods to function

bbepis-BepInExPack-5.4.2109 icon
bbepis-BepInExPack

Unified BepInEx all-in-one modding pack - plugin framework, detour library

Preferred version: 5.4.2109
RiskofThunder-HookGenPatcher-1.2.3 icon
RiskofThunder-HookGenPatcher

MMHOOK generation at runtime.

Preferred version: 1.2.3
RiskofThunder-R2API_Core-5.0.11 icon
RiskofThunder-R2API_Core

Core R2API module

Preferred version: 5.0.11

README

R2API.ContentManagement - ContentPack creation and Management.

About

R2API.ContentManagement is a submodule assembly for R2API that provides a unifieed system for handling ContentPacks from mods that use R2API. The ContentManagement submodule handles automatic creation of ContentPacks for an assembly that calls a method that adds any piece of content to the game, as such, most Content related submodules have a direct dependency on the ContentManagement submodule.

Use Cases / Features

R2API.ContentManaged is used for mods that would like to have R2API handle the content added to the game, alongside mods that would like to obtain the benefits of letting R2API handle certain parts of content creation

  • R2APISerializableContentPack is an updated version of the RoR2's original SerializableContentPack, it contains all the missing fields that where added in Survivors of the Void alongside safety procedures to avoid adding null entries to the finalized content pack.
    • Note: R2APISerializableContentPack does not inherit from SerializableContentPack, and the ContentManagement system doesnt support any other kind of SerializableContentPack, wether the vanilla one or a custom one.
  • By adding a content pack to the ContentManagement, R2API will automatically handle the following things:
    • Avoid null entries on content packs.
    • Avoid empty strings as asset names, which fixes certain issues such as SkillDef preferences.
    • Systems for connecting a ContentPack to the assembly that added it, and viceversa.
    • Automatic loading of the ContentPack using a ContentPackProvider (Optional)
  • A ContentAddition class that can be used for adding ContentPieces using the ContentManager, the class comes with error checking functionality which will inform the mod creator if something is wrong with their content piece (IE: An artifact def that does not have icons. (Causes exceptions at runtime));
    • While ItemDefs, EquipmentDefs and EliteDefs can be added by ContentAddition, it is heavily recommended to use the Items and Elites modules respectively.

Related Pages

Changelog

'1.0.4'

  • Fix content getting erroneously attributed to R2API's contentpack.

'1.0.3'

  • Re-opt-in to system-initializers,fixing behavior related to late-registration of content.

'1.0.2'

  • Make the API safer.

'1.0.1'

  • Fix some R2API nuget packages that had their dependencies version numbers set incorrectly.

'1.0.0'

  • Split from the main R2API.dll into its own submodule.