Skip to content

Commit 724d4ef

Browse files
committed
Fix disabled node appearance.
1 parent 5eb9b81 commit 724d4ef

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

Sources/BuiltInNodes/BI_BuiltInFeatures.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void EnableDisableFeature::DrawInplace (NUIE::NodeUIDrawingEnvironment& env, con
157157
if (nodeEnabled) {
158158
drawer (env);
159159
} else {
160-
NUIE::ColorBlenderContextDecorator disabledContext (env.GetDrawingContext (), env.GetSkinParams ().GetBackgroundColor ());
160+
NUIE::ColorBlenderContextDecorator disabledContext (env.GetDrawingContext (), env.GetSkinParams ().GetBackgroundColor (), 1, 1);
161161
NUIE::NodeUIDrawingEnvironmentContextDecorator disabledEnv (env, disabledContext);
162162
drawer (disabledEnv);
163163
}

Sources/NodeUIEngine/NUIE_ContextDecorators.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -91,19 +91,21 @@ Pen ColorChangerContextDecorator::GetChangedPen (const Pen& origPen)
9191
return Pen (GetChangedColor (origPen.GetColor ()), origPen.GetThickness ());
9292
}
9393

94-
ColorBlenderContextDecorator::ColorBlenderContextDecorator (DrawingContext& decorated, const Color& blendColor) :
94+
ColorBlenderContextDecorator::ColorBlenderContextDecorator (DrawingContext& decorated, const Color& blendColor, unsigned int origRatio, unsigned int blendRatio) :
9595
ColorChangerContextDecorator (decorated),
96-
blendColor (blendColor)
96+
blendColor (blendColor),
97+
origRatio (origRatio),
98+
blendRatio (blendRatio)
9799
{
98100

99101
}
100102

101103
Color ColorBlenderContextDecorator::GetChangedColor (const Color& origColor)
102104
{
103105
return Color (
104-
(unsigned char) ((4 * origColor.GetR () + blendColor.GetR ()) / 5.0),
105-
(unsigned char) ((4 * origColor.GetG () + blendColor.GetG ()) / 5.0),
106-
(unsigned char) ((4 * origColor.GetB () + blendColor.GetB ()) / 5.0)
106+
(unsigned char) ((origRatio * (unsigned int) origColor.GetR () + blendRatio * (unsigned int) blendColor.GetR ()) / (origRatio + blendRatio)),
107+
(unsigned char) ((origRatio * (unsigned int) origColor.GetG () + blendRatio * (unsigned int) blendColor.GetG ()) / (origRatio + blendRatio)),
108+
(unsigned char) ((origRatio * (unsigned int) origColor.GetB () + blendRatio * (unsigned int) blendColor.GetB ()) / (origRatio + blendRatio))
107109
);
108110
}
109111

Sources/NodeUIEngine/NUIE_ContextDecorators.hpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,15 @@ class ColorChangerContextDecorator : public DrawingContextDecorator
4747
class ColorBlenderContextDecorator : public ColorChangerContextDecorator
4848
{
4949
public:
50-
ColorBlenderContextDecorator (DrawingContext& decorated, const Color& blendColor);
50+
ColorBlenderContextDecorator (DrawingContext& decorated, const Color& blendColor, unsigned int origRatio, unsigned int blendRatio);
5151

5252
private:
5353
virtual Color GetChangedColor (const Color& origColor) override;
5454

55-
Color blendColor;
55+
Color blendColor;
56+
unsigned int origRatio;
57+
unsigned int blendRatio;
58+
5659
};
5760

5861
class TextSkipperContextDecorator : public DrawingContextDecorator

Sources/NodeUIEngine/NUIE_NodeUIManagerDrawer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ void NodeUIManagerDrawer::DrawNode (NodeUIDrawingEnvironment& env, const UINode*
173173

174174
if (uiManager.GetSelectedNodes ().Contains (uiNode->GetId ())) {
175175
env.GetDrawingContext ().FillRect (selectionRect, env.GetSkinParams ().GetNodeSelectionRectPen ().GetColor ());
176-
ColorBlenderContextDecorator selectionContext (env.GetDrawingContext (), env.GetSkinParams ().GetSelectionBlendColor ());
176+
ColorBlenderContextDecorator selectionContext (env.GetDrawingContext (), env.GetSkinParams ().GetSelectionBlendColor (), 4, 1);
177177
NodeUIDrawingEnvironmentContextDecorator selectionEnv (env, selectionContext);
178178
uiNode->Draw (selectionEnv);
179179
} else {

0 commit comments

Comments
 (0)