Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
b717f608
Unverified
Commit
b717f608
authored
5 years ago
by
Tom Fischer
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2536 from endJunction/CleanupAppLibColorFunctions
Cleanup AppLib Color functions
parents
a68f7c96
2d802629
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Applications/DataHolderLib/Color.cpp
+10
-24
10 additions, 24 deletions
Applications/DataHolderLib/Color.cpp
Applications/DataHolderLib/Color.h
+6
-6
6 additions, 6 deletions
Applications/DataHolderLib/Color.h
with
16 additions
and
30 deletions
Applications/DataHolderLib/Color.cpp
+
10
−
24
View file @
b717f608
...
@@ -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
This diff is collapsed.
Click to expand it.
Applications/DataHolderLib/Color.h
+
6
−
6
View file @
b717f608
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment