BBRAPIModules 0.4.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package BBRAPIModules --version 0.4.4
NuGet\Install-Package BBRAPIModules -Version 0.4.4
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="BBRAPIModules" Version="0.4.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BBRAPIModules --version 0.4.4
#r "nuget: BBRAPIModules, 0.4.4"
#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 BBRAPIModules as a Cake Addin
#addin nuget:?package=BBRAPIModules&version=0.4.4

// Install BBRAPIModules as a Cake Tool
#tool nuget:?package=BBRAPIModules&version=0.4.4

BattleBitAPIRunner

Modular battlebit community server api runner. Lets you host community servers with modules without having to code.

Hosting tutorial: https://www.youtube.com/watch?v=B8JNTL4-AxU
Module programming tutorial: https://www.youtube.com/watch?v=RN8891f0B14

Features

  • Start the community server API endpoint for your server to connect to
  • Modules are simple C# source files .cs
  • Modules support module dependencies
  • Modules support optional module dependencies
  • Modules support binary dependencies (Newtonsoft.Json, System.Net.Http, ...)
  • Integrated Per-module and per-server configuration files

Configuration

Configure the runner in the appsettings.json:

{
  "IP": "127.0.0.1",
  "Port": 29595,
  "ModulePath": "./modules",
  "Modules": [ "C:\\path\\to\\specific\\ModuleFile.cs" ],
  "DependencyPath": "./dependencies",
  "ConfigurationPath": "./configurations"
}
  • IP: Listening IP
  • Port: Listening port
  • ModulePath: Path to the folder containing all modules (is created if not exist)
  • Modules: Array of individual module file paths
  • DependencyPath: Path to the folder containing all binary (dll) dependencies (is created if not exist)
  • ConfigurationPath: Path to the folder containing all module and per-server module configuration files (is created if not exist)

Module and per-server module configurations are located in the configurations subdirectory, if you have not changed the path.

Usage

Download the latest release, unpack, configure and start BattleBitAPIRunner. The modules, dependencies and configurations folder will be created in the same directory as the executable, if you have not specified a different path in the configuration file. Modules are loaded upon startup. To reload modules the application has to be restarted.

Place modules in the modules folder or specify their path in the configuration file. Place binary dependencies in the dependencies folder.

Developing modules

Modules are .net 6.0 C# source code files. They are compiled in runtime when the application starts. To debug a module, simply attach your debugger to the BattleBitAPIRunner process.

To create a module, create a (library) .net 6.0 C# project. Set ImplicitUsings to disabled, for example by unchecking Enable implicit global usings to be declared by the project SDK. in the project settings. Add a nuget dependency to BBRAPIModules. In your module source file, have exactly one public class which has the same name as your file and inherit BBRAPIModules.BattleBitModule. Your module class now has all methods of the BattleBit API, such as OnConnected.

Sepcial callback cases

  • OnModulesLoaded is called after all modules have been loaded.
  • OnPlayerSpawning will provide the OnPlayerSpawnArguments of the previous (non-null) module output. If any module returns null, the final result will be null.
  • OnPlayerTypedMessage final result will be false if any module output is false.
  • OnPlayerRequestingToChangeRole final result will be false if any module output is false.
  • OnPlayerRequestingToChangeTeam final result will be false if any module output is false.

Optional module dependencies

To optionally use specific modules, add a public property of type BattleBitModule or dynamic to your module and add the [ModuleReference] attribute to it. Make sure the name of the property is the name of the required module.

[ModuleReference]
public BattleBitModule? PlayerFinder { get; set; }
// or using dynamic
[ModuleReference]
public dynamic? RichText { get; set; }

When all modules are loaded (OnModulesLoaded) the dependant module will be available on this property, if it was loaded.

You can call methods on that module by using the Call method or by invoking the method dynamically.

this.PlayerFinder?.Call("TargetMethod");
this.PlayerFinder?.Call("TargetMethodWithParams", "param1", 2, 3);
bool? result = this.PlayerFinder?.Call<bool>("TargetMethodWithReturnValue");
// or using dynamic
this.RichText?.TargetMethod();
this.RichText?.TargetMethodWithParams("param1", 2, 3);
bool? result = this.RichText?.TargetMethodWithReturnValue();

Required module dependencies

To require a dependency to another module, include the required module source file in your project (optional, only for syntax validation and autocomplete). Add a [RequireModule(typeof(YourModuleDependency))] attribute to your module class. Multiple attributes for multiple required dependencies are supported.

[RequireModule(typeof(PlayerPermissions))]
[RequireModule(typeof(CommandHandler))]
public class MyModule : BattleBitModule

You will also have to add the module properties to your class as you would do with optional module dependencies, except they will be guaranteed to not be null after OnModulesLoaded.

Module Configuration

Create a class containing public properties of all your configuration variables and inherit from ModuleConfiguration. Add a public property of your configuration class to your module. If the property is static it will be a global configuration shared by all instances of your module across all servers. If the property is not static, it will be a per-server configuration. You can have multiple configurations, static and non-static, per module. The configuration file will be called like the property name.

public class MyModuleConfiguration : ModuleConfiguration
{
    public string SomeConfigurationValue { get; set; } = string.Empty;
}
public class MyModule : BattleBitModule
{
    public MyModuleConfiguration GlobalConfig { get; set; }
    public MyModuleConfiguration PerServerConfig { get; set; }
}

This will create a ./configurations/MyModule/GlobalConfig.json and a ./configurations/127.0.0.1_29595/MyModule/PerServerConfig.json (for each server) configuration file.

Modules

Example modules

Base modules

Other modules

Features to come

  • Dynamic loading and unloading of modules without the need to restart
  • You can suggest some over at the Blood is Good Discord
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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
1.2.0 201 11/30/2023
1.1.0 153 10/2/2023
1.0.0 152 9/24/2023
0.4.11 195 8/31/2023
0.4.10 148 8/30/2023
0.4.9 133 8/29/2023
0.4.8 139 8/27/2023
0.4.7 140 8/26/2023
0.4.6 109 8/26/2023
0.4.5 141 8/24/2023
0.4.4 163 8/20/2023
0.4.3 120 8/18/2023
0.0.4.2 136 8/17/2023
0.0.4.1 101 8/17/2023
0.0.4 118 8/17/2023
0.0.3 121 8/16/2023
0.0.2 134 8/15/2023

- Updated to latest API