The Battle for Wesnoth  1.19.0-dev
Public Member Functions | Private Types | Private Attributes | List of all members
image::modification_queue Class Reference

A modified priority queue used to order image modifications. More...

#include <image_modifications.hpp>

Public Member Functions

 modification_queue ()
 
bool empty () const
 
void push (std::unique_ptr< modification > mod)
 Adds mod to the queue (unless mod is nullptr). More...
 
void pop ()
 Removes the top element from the queue. More...
 
std::size_t size () const
 Returns the number of elements in the queue. More...
 
modificationtop () const
 Returns the top element in the queue . More...
 

Private Types

typedef std::map< int, std::vector< std::unique_ptr< modification > >, std::greater< int > > map_type
 Map from a mod's priority() to the mods having that priority. More...
 

Private Attributes

map_type priorities_
 Map from a mod's priority() to the mods having that priority. More...
 

Detailed Description

A modified priority queue used to order image modifications.

The priorities for this queue are to order modifications by priority(), then by the order they are added to the queue.

Definition at line 36 of file image_modifications.hpp.

Member Typedef Documentation

◆ map_type

typedef std::map<int, std::vector<std::unique_ptr<modification> >, std::greater<int> > image::modification_queue::map_type
private

Map from a mod's priority() to the mods having that priority.

Definition at line 55 of file image_modifications.hpp.

Constructor & Destructor Documentation

◆ modification_queue()

image::modification_queue::modification_queue ( )
inline

Definition at line 42 of file image_modifications.hpp.

Member Function Documentation

◆ empty()

bool image::modification_queue::empty ( ) const
inline

Definition at line 47 of file image_modifications.hpp.

References priorities_.

Referenced by image::load_image_sub_file().

◆ pop()

void image::modification_queue::pop ( )

Removes the top element from the queue.

Definition at line 45 of file image_modifications.cpp.

References priorities_.

Referenced by BOOST_AUTO_TEST_CASE(), and image::load_image_sub_file().

◆ push()

void image::modification_queue::push ( std::unique_ptr< modification mod)

Adds mod to the queue (unless mod is nullptr).

Definition at line 39 of file image_modifications.cpp.

References priorities_.

Referenced by BOOST_AUTO_TEST_CASE(), and image::modification::decode().

◆ size()

std::size_t image::modification_queue::size ( ) const

Returns the number of elements in the queue.

Definition at line 59 of file image_modifications.cpp.

References priorities_.

Referenced by BOOST_AUTO_TEST_CASE().

◆ top()

modification * image::modification_queue::top ( ) const

Returns the top element in the queue .

Definition at line 70 of file image_modifications.cpp.

References priorities_.

Referenced by BOOST_AUTO_TEST_CASE(), and image::load_image_sub_file().

Member Data Documentation

◆ priorities_

map_type image::modification_queue::priorities_
private

Map from a mod's priority() to the mods having that priority.

Definition at line 57 of file image_modifications.hpp.

Referenced by empty(), pop(), push(), size(), and top().


The documentation for this class was generated from the following files: