xyginext  0.2.0
Second generation of xygine game creation framework
Class Hierarchy
This inheritance list is sorted roughly, but not completely, alphabetically:
[detail level 12345]
 Cxy::Sprite::AnimationRepresents a single animation
 Cxy::AppAbstract base class for new games or applications
 Cxy::AudioEmitterAudio emitter component. Audio emitter provide points within the scene to play audio, either one shot effects or streaming music. If the buffer used to supply the audio is monothen the AudioEmitter will be panned spatially relative to the current listener (usually the active scene camera), unless it has been set to absolute positioning. Requires a scene to have an AudioSystem
 Cxy::Message::AudioEventEvents raised by the AudioSystem
 Cxy::AudioListenerAudio Listener component. The AudioListener component defines the point at which the active AudioSystem hears any playing AudioSources. Only one listener is active at a time, by default on the Scene's active camera entity. When using mono AudioEmitters spatialisation is calculated based on an AudioSource's position relative to the active AudioListener
 Cxy::AudioMixerMultichannel Audio mixer class. The AudioMixer allows AudioEmitter components to group their outputs into one of 16 channels, each of which may have their volume adjusted, affecting all of the AudioEmitters currently routed through that channel. The AudioMixer also has a master volume channel which is applied to all subsequent channels. By default AudioEmitter components are assigned to channel 0. For these AudioMixer settings to be applied a scene must have an active AudioSystem
 Cxy::AudioScapeContains one or more definitions used to create AudioEmitter components. Similarly to the SpriteSheet class used for loading Sprites from configuration files, AudioScapes can be used to define the settings used to create AudioEmitter components. AudioScape files usually have the extension *.xas with the following ConfigFile compatible layout:
 Cxy::Detail::AudioSourceImpl
 Cxy::BaseResource< T >Abstract base class for resource management
 Cxy::BaseResource< sf::Font >
 Cxy::BaseResource< sf::Image >
 Cxy::BaseResource< sf::SoundBuffer >
 Cxy::BaseResource< sf::Texture >
 Cxy::BitmapFontBitmap font class. Bitmap fonts are created by loading a font atlas with the following layout: 10 characters wide, by 10 characters high, starting with ASCII character 32 (space) and ending with ASCII character 126 (tilde). Some or all of the characters may be implemented but unimplemented characters should be left blank. As bitmap fonts are very simplistic anything other than ASCII encoding is not supported
 Cxy::BitmapTextBitmapText class. BitmapText components are used to render text with a BitmapFont. BitmapText work similarly to Text components, in that they require a reference to a BitmapFont that exists at least as long as the BitmapText instance. Entities with a BitmapText component also require a Drawable component and a Transform component
 Cxy::BroadphaseComponentEntities with broadphase components are returned from dynamic tree queries, which can then be used in collision testing. Narrow phase collision should be performed independently
 Cxy::CallbackAllows attaching a callback function to an entity
 Cxy::CameraRepresents a 2D camera. Camera components can be attached to entities so that they take on the transform of any transform component, and also be used to bound the game world view
 Cxy::CommandCommand struct. Each command encapsulates a mask of target IDs as well as a command in the form of a std::function
 Cxy::CommandTargetAttaches a command ID bitmask to an Entity. ID should be a bit mask of flags representing target IDs. For example:
 Cxy::ComponentManager
 Cxy::ConfigItemBase class for all items loaded from a configuration file
 Cxy::ConsoleConsole class. The console class provides a feedback window and interface with xygine. Any class can register a command with the console as long as it inherits the ConsoleClient interface
 Cxy::ConsoleClientInterface for registering console commands. To register a command with the console a class needs to inherit this interface, which ensures proper lifetime of console commands which refer to specific instances of an object
 Cxy::State::ContextContains information about the current application context
 Cxy::SysTime::DataStruct containing data/time information
 Cxy::DirectorAbstract Base Class for Directors. A director is an 'observer' of the scene to which it belongs, and has the ability to command, or direct entities within it. While Directors do not exist within the world, they can receive both external events, such as player input, and system messages emitted from the scene. Based on this input the Director can then use a CommandSystem (one of which is automatically added to the scene when a Director is first added, if it does not exist) to send commands to entities within the scene. For example a Director may take player input, process it then send movement commands to a player entity. It may also be used to implement gameplay rules by using the events it has observed to decide when new enemies should be spawned, where a player should restart and so on
 CDrawable
 Cxy::EmitterSettingsSettings used by a particle emitter to initialise new particles
 Cxy::EntityEntity class Entity objects are handles to the underlying collection of components, and as such should be treated similarly to a pointer. That is, they are lightweight enough to copy around, but you should remain aware of the lifetime of the entity being handled, using Entity::isValid() or Entity::destroyed()
 Cxy::EntityManagerManages the relationship between an Entity and its components
 Cxy::FileSystemUtilities for manipulating the current file system
 Cxy::Detail::FixedStack< T, SIZE >
 Cxy::GuiClientAllows registering GUI controls with the default output window, or registering custom windows using the ui namespace. Classes which inherit this interface may register controls with the imgui renderer. This is usually used for debugging output or when creating tooling
 Cstd::ios_baseSTL class
 Cxy::LoggerClass to allowing messages to be logged to a combination of one or more destinations such as the console, log file or output window in Visual Studio
 Cxy::MessageMessage class
 Cxy::MessageBusSystem wide message bus for custom event messaging
 Cxy::NetClientCreates a clientside host which can be used to create a peer connected to a NetHost server
 Cxy::NetClientImpl
 Cxy::NetEventNetwork event. These are used to poll NetHost and NetClient objects for network activity
 Cxy::NetHostCreates a network host. Network hosts, or servers, can have multiple clients connected to them, via a reliable UDP stream
 Cxy::NetHostImpl
 Cxy::NetPeerA peer represents a single, multichannel connection between a client and a host
 Cxy::NetEvent::PacketEvent packet. Contains packet data recieved by PacketRecieved event. Not valid for other event types
 Cxy::ParticleRepresents a single particle in a system
 Cxy::ParticleEmitterParticle Emitter. Component struct used to emit particles from an entity
 Cxy::Detail::Pool
 Cxy::PostProcessAbstract base class for full screen post processes
 Cxy::QuadTreeItemEntities with a QuadTreeItem and Transform component will be actively partitioned an in QuadTree system which is added to the entities scene
 Cxy::QuadTreeNodeNodes which make up the branches and leaves of the QuadTree
 Cxy::ResourceHandlerClass for generic resource management using handles
 Cxy::ResourceLoaderStruct responsible for loading resources
 Cxy::Message::SceneEventEvents raised by the Scecne class
 Cxy::ShaderResourceSpecialised resource manager for shaders
 Cxy::SpriteSprite component optimised to work with the ECS. Sprite components require their entity to also have a Drawable component and a Transform component
 Cxy::SpriteAnimationComponent which contains information about the currently playing sprite animation. Requires a SpriteAnimator system in the scene
 Cxy::SpriteSheetSupports loading multiple sprites from a single texture atlas via the ConfigFile format
 Cxy::StateAbstract base class for xygine states
 Cxy::Message::StateEventEvents raised by the StateStack
 Cxy::StateStackMaintains a stack of active states
 Cstreambuf
 Cxy::ui::Style
 Cxy::SystemBase class for systems. Systems should all derive from this base class, and instanciated before any entities are created. Concrete system types should declare a list component types via requireComponent() on construction, so that only entities with the relevant components are added to the system
 Cxy::SysTimeStatic functions for common date/time queries using the system clock. These are not thread safe so appropriate care should be taken when accessing the time from multiple threads
 Cxy::TextECS friendly implementation of Text. Text components should appear on entities which also have a transform and drawable component. Text is drawn with a RenderSystem. NOTE As text is rendered via a drawable component in the same way as sprites and other drawables, the drawable component should use setDepth() to increase the depth value of a text renderable so that it appears above other drawables. This should be the first thing to check if text appears 'invisible'
 CTransformable
 Cxy::TreeNode
 Cxy::UIHitBoxUsed to trigger callbacks when hit events occur in the component's area
 Cxy::Vector4< T >4 component vector class. Useful when storing floating point colour values, particularly with ConfigFile objects
 Cxy::App::VideoSettingsVideoSettings struct
 Cxy::Message::WindowEventEvents raised by the RenderWindow