Crate game_library

source ·
Expand description

Elementalist Shared Game Library

This library contains all the shared game logic for the Elementalist game.

Fully Generic Components

These components are fully generic and can be used in any game. (They are the base components for the Elementalist game.)

  • Attribute - An attribute has a current and max value. (e.g. health, mana, etc.)
  • Stat - Contains a floating point value that can be used to represent a stat.
  • StatBonus - Contains a percentage value with calculations for adding or removing points or percentages from the value. (e.g. +10% health, -5% damage, etc.)
  • Volume - Volume component with a “muted” flag.
  • Xp - Experience component with a level and experience points, uses a custom experience curve.

Elementalist Game Components/Resources/Events/Enums

The remaining items are specific to the Elementalist game.

Modules

  • Colors used in the game. Some which are specifically named here due to their use in the game.
  • Data loading module
  • Enums used in the game library and Elementalist game.
  • Events that can be sent to the game state machine.
  • A resource to hold handles for the fonts used in the game.
  • Math utilities for Elementalist and this game library.
  • Helper functions for building the menus.
  • A 2D progress bar module for easily adding progress bars to your game.
  • Settings resources for the game.
  • The states used in the game.

Structs

  • Simple acceleration component containing a 2D vector
  • Attribute component. This is a simple integer representing the attribute of an entity. Has properties like max_attribute and current_attribute. We support operations with integers, floats, and other Attribute components.
  • The biome system is a list of 1 - 10 “biomes” that are then used to determine the actual biome of the world. This is then used to determine the type of terrain and the type of objects that are placed in the world. This is then used to determine the actual biome of the world.
  • Component that stores the current camera scale level.
  • A resource that stores the cursor position in world coordinates.
  • Stores in the generated biome map and generated object map.
  • A resource that stores the seed for the generation of the primal realm.
  • Health component to hold an entity’s health value
  • This plugin is used to update the z coordinate of the transform based on the layer
  • Mana component to hold an entity’s mana value
  • Bundle that contains all components needed for moving things
  • A plugin that provides the resources and systems for the noise generation.
  • Elementalist physics plugin
  • Details about a realm.
  • Plugin to configure the scheduling of systems.
  • The details about a simple (one sprite or tile) object that can be placed on the map.
  • Skills are used to track a meta-progression of a player’s abilities.
  • Bundle that contains all components needed for a spell
  • A resource that stores the player’s spell choices.
  • Details about a spell.
  • The lifetime of a spell
  • A stat is a value that should be used to represent a character’s speed, strength or other statistic. This is not an [game_library::Attribute] which has a maximum and exists between 0 and that maximum. A stat is a value that really is a value which can be used directly in the game.
  • A stat bonus is a value that can be increased or decreased. These should be considered values that operate on a percentage scale, where 1.0 is 100% (i.e. no change), 0.5 is 50% (i.e. half), and 2.0 is 200% (i.e. double).
  • Bundle that contains data for all stats an entity might have.
  • Effects from a spell or other item.
  • Details about a tileset.
  • A volume setting, which should be an integer between 0 and 100.
  • Experience component

Enums

  • Provides sets to use with any system to provide consistent ordering.
  • The layer of the sprite. The lower the value, the further back the sprite is.

Traits

  • Trait for objects that have an internal ID.
  • Trait to convert a map of Marker to appropriate biomes from a Realm