This is an old revision of the document!


Skillsystem

Besides the InventorySystem a good game very often needs a skill- or value-management. Here comes TGorillaSkillSystem in place. Imagine you're playing a character in a RPG or sports game you normally have many different skills you can evolve to get better or make progress.

A SkillSystem manages groups which contains skills and supports multilingual content.

uses
  Gorilla.Utils.SkillSystem;
 
[...]
 
FSkillSystem : TGorillaSkillSystem;
FMySkills : TGorillaSkillGroup;
FSkills : Array[0..1] of TGorillaSkill;
 
[...]
 
// create a new empty skill system
FSkillSystem := TGorillaSkillSystem.Create(Self);
FSkillSystem.Language := 'en-us';
 
// add a group for managing general skills
FMySkills := FSkillSystem.AddGroup();
FMySkill.Name := 'MySkills';
 
// add some skill to this group
FSkills[0] := AddSkill();
FSkills[0].Name := 'Power';
FSkills[0].Level := 1;
FSkills[0].MaxLevel := 10;
 
FSkills[1] := AddSkill();
FSkills[1].Name := 'Speed';
FSkills[1].Level := 1;
FSkills[1].MaxLevel := 10;

Skill

Property Description
Activated Defines if the skill is activated for use. It is different to “Enabled” which only unlocks the skill for activation. By default this value is set to false.
Value Defines the main property/skill value. Use this value to compute game / app effects. By default this value is set to 1.0.
Factor Defines an interpolation factor used with the interpolation method to calculate the level corresponding value. By default this value is set to 1.0.
Interpolation Defines an interpolation function by which a new value is computed, in dependency to the level. By default this value is set to LinearInterpolation.
Level Defines a value to identify a level category. By default this value is set to 0.
MaxLevel Defines the maximum level to be reached. By default this value is set to 0.
LevelingTime Defines the time for leveling up this skill. By default this value is set to 1000ms.
NextSkill Defines a linked skill which will be enabled on leveling up. Use this property instead of interpolation mechanism. By default this value is not set.
Data Use this value to store skill specific variable content. For example if the Value field do not provide enough information for this skill. By default this value is set to TValue.Empty.

User Interface

We're very sorry but currently the is no user interface template available. So you have to display your skill by yourself.

Load & Save

Skill settings can be written to xml-fileformat. Sadly AssetsManager support is not given yet.