Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NSHoffman/N7CommandManager
Flexible Command Manager for Killing Floor Three Hundred Pounds server. Provides rich API to change various game settings and trigger different events.
https://github.com/NSHoffman/N7CommandManager
config game greylisted killingfloor mutator unrealscript
Last synced: about 2 months ago
JSON representation
Flexible Command Manager for Killing Floor Three Hundred Pounds server. Provides rich API to change various game settings and trigger different events.
- Host: GitHub
- URL: https://github.com/NSHoffman/N7CommandManager
- Owner: NSHoffman
- License: mit
- Created: 2022-08-17T17:56:35.000Z (over 2 years ago)
- Default Branch: dev
- Last Pushed: 2024-04-26T08:38:18.000Z (8 months ago)
- Last Synced: 2024-07-30T20:58:48.848Z (5 months ago)
- Topics: config, game, greylisted, killingfloor, mutator, unrealscript
- Language: UnrealScript
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# N7 Command Manager
## Description
Killing Floor Mutate API initially designed and developed for Three Hundred Pounds server.
Provides various commands for both players and admins to change game settings and trigger gameplay actions/events.## Table of Contents
- [1. Motivation](#motivation)
- [2. What N7CM is offering](#what-n7cm-is-offering)
- [3. How to use](#how-to-use)
- [3.1. Regular Players](#regular-players)
- [3.2. Admins](#admins)
- [3.3. Developers/Modders](#developersmodders)
- [3.3.1. `N7_CommandManager`](#n7_commandmanager)
- [3.3.2. `N7_GameStateUtils`](#n7_gamestateutils)
- [3.3.3. `N7_CommandValidator`](#n7_commandvalidator)
- [3.3.4. `N7_CommandExecutionState`](#n7_commandexecutionstate)
- [3.3.5. `N7_Command`](#n7_command)
- [3.3.6. Command Classes (`N7_GameSettingsCommand`, `N7_TargetCommand` etc)](#command-classes-n7_gamesettingscommand-n7_targetcommand-etc)
- [3.3.7. Models (`N7_HPConfigModel`, `N7_FakedPlayersModel` etc)](#models-n7_hpconfigmodel-n7_fakedplayersmodel-etc)
- [3.3.8. `N7_ColorManager`/`N7_CommandMessageColors`](#n7_colormanagern7_commandmessagecolors)
- [4. Changelog](#changelog)
- [5. Contacts](#contacts)## Motivation
The motivation and reasoning behind development of the command manager is that most publicly available APIs have:
- Limited availability for certain actor groups (i.e. AdminPlus is admin-only API)
- Little potential for further extension (Adding new commands when needed, editing the existing ones)
- Poor configuration capabilities
- Inconsistent and not thorough validation mechanism## What N7CM is offering
- Large number of built-in commands
- Ability to provide multiple aliases for a single command (so it can be called in the way you are used to)
- Access configuration (Players/Spectators/Admins)
- MinMax values configuration for numeric arguments
- Rich and consistent validation for sender, targets, arguments, game state etc.
- Structure flexible enough to allow for API extension when new commands are needed
- Three-level notification system (for senders, for targets and global)
- Color highlighting configuration capabilities for certain parts of notifications/messages## How to use
### Regular Players
Regular players can use any non-admin command from this pack.
The common signature is: `mutate [command] [...args]`.
The list of available commands for players can be requested via `mutate help`.
To get information or (if available) some extended details regarding specific command one can use `mutate help [command]`.### Admins
Admins can use all of the regular commands + bunch of commands with admin-only access
The list of available commands for admins can be requested via `mutate ahelp` or `mutate adminhelp` (check `N7_AdminHelpCommand` aliases).
To get information or (if available) some extended details regarding specific admin command one can use `mutate ahelp [command]`.> [`CONFIG.md`](./CONFIG.md) contains basic guidelines for command settings configuration
### Developers/Modders
For those who want to extend the existing API there is some more information in terms of internal structure of the command manager.
#### `N7_CommandManager`
This is the entry file, the mutator itself that dispatches incoming `mutate` requests.
Each of the available commands' classes must be specified in `N7_CommandManager.CommandsClasses` array.
Initialization includes the following steps:- `InitServices()` - Initialization of the services used by the command manager and individual command classes;
- `InitModels()` - Initialization of data related to specific game settings that need to be kept track of;
- `InitCommands()` - Initialization of commands. Command classes from `N7_CommandManager.CommandsClasses` get initialized and stored in `N7_CommandManager.Commands` array. Both arrays are static and one need to pay attention to capacity of those which is defined by `COMMANDS_COUNT` constant.#### `N7_GameStateUtils`
This file contains some useful methods that can be applied in variety of commands and take significant number of code lines.
Mostly these would affect some parts of ZEDs, players or game state.Each command has access to `N7_GameStateUtils` via `GSU` field which is defined in `N7_CommandManager` file.
#### `N7_CommandValidator`
This class provides validation API that is used to check user input and various aspects of game state.
#### `N7_CommandExecutionState`
These classes keep track of command state when its execution is in progress.
`N7_CommandExecutionState` contains information about current execution, namely:
- The Sender
- Targets (if there are any)
- Status and Error Code (if status is failed)
- Command ArgumentsIt also allows for caching of some temporary values that are needed across different execution stages but need not be recalculated.
It can cache:- String
- TargetName
- Integer
- Float
- Boolean#### `N7_Command`
Base class for all commands. Each new command must be derived from this class to inherit the base execution flow.
The execution flow consists of 5 stages:1. `N7_CommandExecutionState` Initialization - Execution State literally gets its initial values.
2. Arguments validation - Multi-step validation process when lots of conditions get checked (Gametype, Sender, Game State, Admin Access Restrictions etc.)
3. Action Processing - Desired effects/actions are applied.
4. Success/Error Notification - Depending on notification settings a selection of actors are notified about execution status.
5. Optional Cleanup - If any values not related to `N7_CommandExecutionState` were used to keep track of execution progress those need to be reset.This flow is `final` and cannot be altered in subclasses.
Usually one might want to override the following methods to alter the command execution:- `Check...(N7_CommandExecutionState)` - Checker methods.
- `DoAction(N7_CommandExecutionState)` - This is where the actual action logic resides.
- `Notify...(N7_CommandExecutionState)` - Notifications.#### Command Classes (`N7_GameSettingsCommand`, `N7_TargetCommand` etc)
Classes derived from `N7_Command` which provide common logic for specified sets of commands.
`N7_GameSettingsCommand` provides some configuration and settings for commands whose sole purpose is to change
some game settings be it maximum players number or ZED-time status.`N7_TargetCommand` provides extended logic for commands that affect a selection of players.
Here resides the common logic for target validation and per-target command execution.#### Models (`N7_HPConfigModel`, `N7_FakedPlayersModel` etc)
Models' only purpose is exposing some of the game-/command-related APIs to `N7_CommandManager`
so it does not get overwhelmed with data management functionality.#### `N7_ColorManager`/`N7_CommandMessageColors`
These classes are responsible for coloring of messages and notifications.
`N7_ColorManager` is the class that provides color collection based on [Material Design colors](https://materialui.co/colors/).
It also provides API for text coloring and color picking based on IDs rather than RGBA structs.
All color IDs follow the same structure: `:`. Also `black`, `white` or `rgb(byte, byte, byte)` compliant values are supported.
Information on both colors and tints can be found on Material Design colors page.`N7_CommandMessageColors` is just a class that keeps configurable color IDs for various messages/notifications parts.
It is also responsible for providing colorization API for commands.
One is not strictly tied to the cases defined in base `N7_CommandMessageColors` class as it can be extended and assigned to `N7_CommandManager.ColorsClass` field.## Changelog
All the changes and updates can be found in the separate [`CHANGELOG.md`](./CHANGELOG.md) file.
## Contacts
For questions/concerns/recommendations you can contact me via steam or email:
**Steam Profile:** [N7n](https://steamcommunity.com/id/NSHoffman/)
**Email:** [[email protected]](mailto:[email protected])