Welcome to mirror list, hosted at ThFree Co, Russian Federation.

animviz_mpath_lines_vert.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 276f4004fb672cc792107b776700d1db4d6a3972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

uniform mat4 ViewMatrix;
uniform mat4 ViewProjectionMatrix;
uniform vec2 viewportSize;

uniform int frameCurrent;
uniform int frameStart;
uniform int frameEnd;
uniform int cacheStart;
uniform bool selected;
uniform bool useCustomColor;
uniform vec3 customColor;

in vec3 pos;

out vec2 ssPos;
out vec4 finalColor_geom;

/* project to screen space */
vec2 proj(vec4 pos)
{
	return (0.5 * (pos.xy / pos.w) + 0.5) * viewportSize;
}

#define SET_INTENSITY(A, B, C, min, max) (((1.0 - (float(C - B) / float(C - A))) * (max - min)) + min)

void main()
{
	gl_Position = ViewProjectionMatrix * vec4(pos, 1.0);

	ssPos = proj(gl_Position);

	int frame = gl_VertexID + cacheStart;

	float intensity;  /* how faint */

	vec3 blend_base = (abs(frame - frameCurrent) == 1) ? colorCurrentFrame.rgb : colorBackground.rgb; /* "bleed" cframe color to ease color blending */

	/* TODO: We might want something more consistent with custom color and standard colors. */
	if (frame < frameCurrent) {
		if (useCustomColor) {
			/* Custom color: previous frames color is darker than current frame */
			finalColor_geom.rgb = customColor * 0.25;
		}
		else {
			/* black - before frameCurrent */
			if (selected) {
				intensity = SET_INTENSITY(frameStart, frame, frameCurrent, 0.25, 0.75);
			}
			else {
				intensity = SET_INTENSITY(frameStart, frame, frameCurrent, 0.68, 0.92);
			}
			finalColor_geom.rgb = mix(colorWire.rgb, blend_base, intensity);
		}
	}
	else if (frame > frameCurrent) {
		if (useCustomColor) {
			/* Custom color: next frames color is equal to user selected color */
			finalColor_geom.rgb = customColor;
		}
		else {
			/* blue - after frameCurrent */
			if (selected) {
				intensity = SET_INTENSITY(frameCurrent, frame, frameEnd, 0.25, 0.75);
			}
			else {
				intensity = SET_INTENSITY(frameCurrent, frame, frameEnd, 0.68, 0.92);
			}

			finalColor_geom.rgb = mix(colorBonePose.rgb, blend_base, intensity);
		}
	}
	else {
		if (useCustomColor) {
			/* Custom color: current frame color is slightly darker than user selected color */
			finalColor_geom.rgb = customColor * 0.5;
		}
		else {
			/* green - on frameCurrent */
			if (selected) {
				intensity = 0.5f;
			}
			else {
				intensity = 0.99f;
			}
			finalColor_geom.rgb = clamp(mix(colorCurrentFrame.rgb, colorBackground.rgb, intensity) - 0.1, 0.0, 0.1);
		}
	}

	finalColor_geom.a = 1.0;
}