Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bliss
bliss
Commits
beeca1c4
Commit
beeca1c4
authored
May 27, 2021
by
Valentin Valls
Browse files
Add strategy to color many scans + many items
parent
1d95074f
Changes
1
Hide whitespace changes
Inline
Side-by-side
bliss/flint/helper/style_helper.py
View file @
beeca1c4
...
...
@@ -119,37 +119,90 @@ class DefaultStyleStrategy(plot_model.StyleStrategy):
self
.
cacheStyle
(
scatter
,
None
,
style
)
def
computeItemStyleFromCurvePlot
(
self
,
plot
,
scans
):
i
=
0
countBase
=
0
if
len
(
scans
)
==
1
:
countBase
=
0
for
item
in
plot
.
items
():
if
not
isinstance
(
item
,
plot_model
.
ComputableMixIn
):
countBase
+=
1
for
item
in
plot
.
items
():
if
isinstance
(
item
,
plot_item_model
.
ScanItem
):
pass
elif
isinstance
(
item
,
plot_model
.
ComputableMixIn
):
pass
else
:
# That's a main item
countBase
+=
1
if
len
(
scans
)
<=
1
:
if
countBase
<=
1
:
self
.
computeItemStyleFromCurvePlot_eachItemsColored
(
plot
,
scans
)
else
:
self
.
computeItemStyleFromCurvePlot_firstScanColored
(
plot
,
scans
)
else
:
if
countBase
>
1
:
self
.
computeItemStyleFromCurvePlot_firstScanColored
(
plot
,
scans
)
else
:
self
.
computeItemStyleFromCurvePlot_eachScanColored
(
plot
,
scans
)
def
computeItemStyleFromCurvePlot_eachItemsColored
(
self
,
plot
,
scans
):
i
=
0
for
scan
in
scans
:
for
item
in
plot
.
items
():
if
isinstance
(
item
,
plot_item_model
.
ScanItem
):
continue
if
isinstance
(
item
,
plot_model
.
ComputableMixIn
):
if
countBase
==
1
:
# Allocate a new color for everything
# Allocate a new color for everything
color
=
self
.
pickColor
(
i
)
i
+=
1
if
isinstance
(
item
,
plot_state_model
.
CurveStatisticItem
):
style
=
plot_model
.
Style
(
lineStyle
=
":"
,
lineColor
=
color
)
else
:
style
=
plot_model
.
Style
(
lineStyle
=
"-."
,
lineColor
=
color
)
else
:
color
=
self
.
pickColor
(
i
)
style
=
plot_model
.
Style
(
lineStyle
=
"-"
,
lineColor
=
color
)
i
+=
1
self
.
cacheStyle
(
item
,
scan
,
style
)
def
computeItemStyleFromCurvePlot_firstScanColored
(
self
,
plot
,
scans
):
i
=
0
for
scanId
,
scan
in
enumerate
(
scans
):
for
item
in
plot
.
items
():
if
isinstance
(
item
,
plot_item_model
.
ScanItem
):
continue
if
isinstance
(
item
,
plot_model
.
ComputableMixIn
):
# Reuse the parent color
source
=
item
.
source
()
baseStyle
=
self
.
getStyleFromItem
(
source
,
scan
)
color
=
baseStyle
.
lineColor
if
isinstance
(
item
,
plot_state_model
.
CurveStatisticItem
):
style
=
plot_model
.
Style
(
lineStyle
=
":"
,
lineColor
=
color
)
else
:
style
=
plot_model
.
Style
(
lineStyle
=
"-."
,
lineColor
=
color
)
else
:
if
scanId
==
0
:
color
=
self
.
pickColor
(
i
)
i
+=
1
else
:
# Reuse the color
source
=
item
.
source
()
baseStyle
=
self
.
getStyleFromItem
(
source
,
scan
)
color
=
baseStyle
.
lineColor
# Grayed
color
=
(
0x80
,
0x80
,
0x80
)
style
=
plot_model
.
Style
(
lineStyle
=
"-"
,
lineColor
=
color
)
self
.
cacheStyle
(
item
,
scan
,
style
)
def
computeItemStyleFromCurvePlot_eachScanColored
(
self
,
plot
,
scans
):
for
scanId
,
scan
in
enumerate
(
scans
):
for
item
in
plot
.
items
():
if
isinstance
(
item
,
plot_item_model
.
ScanItem
):
continue
if
isinstance
(
item
,
plot_model
.
ComputableMixIn
):
# Reuse the parent color
source
=
item
.
source
()
baseStyle
=
self
.
getStyleFromItem
(
source
,
scan
)
color
=
baseStyle
.
lineColor
if
isinstance
(
item
,
plot_state_model
.
CurveStatisticItem
):
style
=
plot_model
.
Style
(
lineStyle
=
":"
,
lineColor
=
color
)
else
:
style
=
plot_model
.
Style
(
lineStyle
=
"-."
,
lineColor
=
color
)
else
:
color
=
self
.
pickColor
(
i
)
color
=
self
.
pickColor
(
scanId
)
style
=
plot_model
.
Style
(
lineStyle
=
"-"
,
lineColor
=
color
)
i
+=
1
self
.
cacheStyle
(
item
,
scan
,
style
)
def
computeItemStyleFromPlot
(
self
):
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment