UnrealScript library and basis for all Acedia Framework mods
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

3.1 KiB

Acedia Frameworks

Acedia Frameworks (later just Acedia) is a platform for modding Killing Floor, which includes both creating new mods and managing them on servers. It's main goals are to provide...

  1. ...APIs that improve and standardize many recurring tasks like text coloring, storage and replication of arbitrary data (i.e. dynamic/associative arrays, player data), user commands, GUI and many more;
  2. ...abstraction layer, allowing it to potentially switch "backend" from vanilla game to server perks or even something else;
  3. ...out-of-the-box rich built-in capabilities to customize the game by changing settings;
  4. ...simple, but powerful interface for managing and configuring Acedia on servers.

NOTE: Although some note on server administration will be made, when relevant, this documentation is aimed for modders who want to use Acedia to make their mods.

Introduction

First of all, note that much of Acedia's documentation is located in the source code itself: comments to classes and their methods. This documentation is meant as a more of the overview, it is supposed to provide necessary details, but expecting to duplicate full information between sources and these documents is unreasonable.

You can use this document to understand Acedia's capabilities and how everything fits together, but if you need a more detailed descriptions of Acedia's classes - you'll have to read documentation in source files.

Global API access

Adding new global methods in UnrealScript isn't too convenient. One is forced to either use static methods through a cumbersome syntax: class'MyAwesomeClass'.static.MyAwesomMethod(...) or somehow fetch an instance of an object where desired functionality is defined.

Acedia doesn't ultimately fix this issue for everybody, but it addresses it for Acedia's own methods: any object in Acedia has a _ variable defined inside it, which provides access to APIs, i.e. objects that provide new functionality like so _.text.ParseString("give@ $ebr") or _.color.RGB(132, 45, 12).

Concrete APIs are described below.

Acedia and object management

Before tackling any other topic, it's important to understand that Acedia makes a much heavier use of Objects than most Killing Floor mods. This brings certain advantages, like allowing us to introduce collections capable of storing items of different classes, but also introduces an inconvenience of having to deallocate no longer used Objects.

Read more

Acedia and text

Related to that is the question of strings. Acedia provides it's own type Text for storing textual data and it is intended to replace string almost everywhere. Main reason is that strings are monolithic and their individual characters are hard to access, which complicates implementing custom methods for working with them.

Read more

API

Collections

Acedia provides dynamic and associative array collections capable of storing AcediaObjects. Thanks to boxing we can store essentially any type of variable inside them.

Read more