diff options
author | ClarkeCode <clarke.john.robert@gmail.com> | 2023-05-01 02:48:35 +0200 |
---|---|---|
committer | ClarkeCode <clarke.john.robert@gmail.com> | 2023-05-01 02:48:35 +0200 |
commit | c92481448159d3a363d6a99b3025bd2358c3dab6 (patch) | |
tree | 3ee57808029036a7edab750f4454aeb6c50f3df3 /Types.cpp |
Initial commit
Diffstat (limited to 'Types.cpp')
-rw-r--r-- | Types.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Types.cpp b/Types.cpp new file mode 100644 index 0000000..f51ad7c --- /dev/null +++ b/Types.cpp @@ -0,0 +1,31 @@ +#include "Types.hpp" + +#include <cassert> +#include <sstream> +#include <iomanip> + +using namespace OpenVic2; + +HasIdentifier::HasIdentifier(std::string const& new_identifier) : identifier{ new_identifier } { + assert(!identifier.empty()); +} + +std::string const& HasIdentifier::get_identifier() const { + return identifier; +} + +HasColour::HasColour(colour_t const new_colour) : colour(new_colour) { + assert(colour != NULL_COLOUR && colour <= MAX_COLOUR_RGB); +} + +colour_t HasColour::get_colour() const { return colour; } + +std::string OpenVic2::HasColour::colour_to_hex_string(colour_t const colour) { + std::ostringstream stream; + stream << std::hex << std::setfill('0') << std::setw(6) << colour; + return stream.str(); +} + +std::string HasColour::colour_to_hex_string() const { + return colour_to_hex_string(colour); +} |