Skip to content
Snippets Groups Projects
Unverified Commit b717f608 authored by Tom Fischer's avatar Tom Fischer Committed by GitHub
Browse files

Merge pull request #2536 from endJunction/CleanupAppLibColorFunctions

Cleanup AppLib Color functions
parents a68f7c96 2d802629
No related branches found
No related tags found
No related merge requests found
...@@ -14,20 +14,10 @@ ...@@ -14,20 +14,10 @@
#include "Color.h" #include "Color.h"
#include <fstream>
#include <sstream>
#include <logog/include/logog.hpp> #include <logog/include/logog.hpp>
#include "BaseLib/StringTools.h"
namespace DataHolderLib { namespace DataHolderLib {
Color createColor(unsigned char r, unsigned char g, unsigned char b)
{
return Color{{r,g,b,255}};
}
Color createColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a) Color createColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
{ {
return Color{{r,g,b,a}}; return Color{{r,g,b,a}};
...@@ -35,26 +25,22 @@ Color createColor(unsigned char r, unsigned char g, unsigned char b, unsigned ch ...@@ -35,26 +25,22 @@ Color createColor(unsigned char r, unsigned char g, unsigned char b, unsigned ch
Color getRandomColor() Color getRandomColor()
{ {
Color col; return createColor(static_cast<unsigned char>((rand() % 5) * 50),
col[0] = static_cast<unsigned char>((rand()%5)*50); static_cast<unsigned char>((rand() % 5) * 50),
col[1] = static_cast<unsigned char>((rand()%5)*50); static_cast<unsigned char>((rand() % 5) * 50));
col[2] = static_cast<unsigned char>((rand()%5)*50);
return col;
} }
Color const getColor(const std::string &id, std::map<std::string, Color> &colors) Color const getColor(const std::string &id, std::map<std::string, Color> &colors)
{ {
for (auto it = colors.begin(); it != colors.end(); ++it) auto it = colors.find(id);
if (it == end(colors))
{ {
if (id == it->first) WARN("Key '%s' not found in color lookup table.", id.c_str());
{ it = colors.insert({id, getRandomColor()}).first;
return it->second;
}
} }
WARN("Key '%s' not found in color lookup table.", id.c_str());
Color c = getRandomColor(); return it->second;
colors.insert(std::pair<std::string, Color>(id, c));
return c;
} }
} // namespace DataHolderLib } // namespace DataHolderLib
...@@ -23,17 +23,17 @@ namespace DataHolderLib ...@@ -23,17 +23,17 @@ namespace DataHolderLib
{ {
using Color = std::array<unsigned char, 4>; using Color = std::array<unsigned char, 4>;
Color createColor(unsigned char r, unsigned char g, unsigned char b); Color createColor(unsigned char r,
unsigned char g,
Color createColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a); unsigned char b,
unsigned char a = 255);
/// Returns a random RGB colour. /// Returns a random RGB colour.
Color getRandomColor(); Color getRandomColor();
/// Uses a color-lookup-table (in form of a map) to return a colour for a specified name. If the name is not /// Uses a color-lookup-table (in form of a map) to return a colour for a specified name. If the name is not
/// in the colortable a new entry is created with the new name and a random colour. /// in the colortable a new entry is created with the new name and a random colour.
Color const getColor(const std::string &id, std::map<std::string, DataHolderLib::Color> &colors); Color const getColor(const std::string& id,
std::map<std::string, DataHolderLib::Color>& colors);
/// Convenience function to use the getColor method with numbers as identifiers.
Color const getColor(double id, std::map<std::string, DataHolderLib::Color> &colors);
} // namespace DataHolderLib } // namespace DataHolderLib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment