2018-11-07 22:36:51 +01:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
import "utils.js" as Utils
|
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
Loader {
|
2018-11-07 22:36:51 +01:00
|
|
|
id: burnInEffect
|
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
property ShaderEffectSource source: item ? item.source : null
|
2018-11-07 22:36:51 +01:00
|
|
|
|
|
|
|
property real lastUpdate: 0
|
|
|
|
property real prevLastUpdate: 0
|
|
|
|
|
|
|
|
property real delay: (1.0 / appSettings.fps) * 1000
|
|
|
|
property real burnIn: appSettings.burnIn
|
|
|
|
property real burnInFadeTime: 1 / Utils.lint(_minBurnInFadeTime, _maxBurnInFadeTime, burnIn)
|
|
|
|
property real _minBurnInFadeTime: 160
|
|
|
|
property real _maxBurnInFadeTime: 1600
|
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
active: appSettings.burnIn !== 0
|
|
|
|
|
2018-11-07 22:36:51 +01:00
|
|
|
function completelyUpdate() {
|
|
|
|
prevLastUpdate = lastUpdate;
|
|
|
|
lastUpdate = timeManager.time;
|
2018-11-08 18:21:33 +01:00
|
|
|
item.source.scheduleUpdate();
|
2018-11-07 22:36:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function restartBlurSource(){
|
|
|
|
prevLastUpdate = 0;
|
|
|
|
lastUpdate = 0;
|
|
|
|
completelyUpdate()
|
|
|
|
}
|
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
sourceComponent: Item {
|
|
|
|
property alias source: burnInEffectSource
|
2018-11-07 22:36:51 +01:00
|
|
|
|
|
|
|
property int burnInScaling: scaleTexture * appSettings.burnInQuality
|
|
|
|
|
|
|
|
width: appSettings.lowResolutionFont
|
|
|
|
? kterminal.width * Math.max(1, burnInScaling)
|
|
|
|
: kterminal.width * scaleTexture * appSettings.burnInQuality
|
|
|
|
|
|
|
|
height: appSettings.lowResolutionFont
|
|
|
|
? kterminal.height * Math.max(1, burnInScaling)
|
|
|
|
: kterminal.height * scaleTexture * appSettings.burnInQuality
|
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
ShaderEffectSource {
|
|
|
|
id: burnInEffectSource
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
sourceItem: burnInShaderEffect
|
|
|
|
live: false
|
|
|
|
recursive: true
|
|
|
|
hideSource: true
|
|
|
|
wrapMode: kterminalSource.wrapMode
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
format: ShaderEffectSource.RGBA
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
visible: false
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
Connections {
|
|
|
|
target: kterminal
|
|
|
|
onImagePainted: completelyUpdate()
|
|
|
|
}
|
|
|
|
// Restart blurred source settings change.
|
|
|
|
Connections{
|
|
|
|
target: appSettings
|
|
|
|
onBurnInChanged: burnInEffect.restartBlurSource();
|
|
|
|
onTerminalFontChanged: burnInEffect.restartBlurSource();
|
|
|
|
onRasterizationChanged: burnInEffect.restartBlurSource();
|
|
|
|
onBurnInQualityChanged: burnInEffect.restartBlurSource();
|
|
|
|
}
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
Connections {
|
|
|
|
target: kterminalScrollbar
|
|
|
|
onOpacityChanged: burnInEffect.restartBlurSource()
|
|
|
|
}
|
|
|
|
}
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
ShaderEffect {
|
|
|
|
id: burnInShaderEffect
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
property variant txt_source: kterminalSource
|
|
|
|
property variant burnInSource: burnInEffectSource
|
|
|
|
property real burnInTime: burnInFadeTime
|
|
|
|
property real lastUpdate: burnInEffect.lastUpdate
|
|
|
|
property real prevLastUpdate: burnInEffect.prevLastUpdate
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
anchors.fill: parent
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
blending: false
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
fragmentShader:
|
|
|
|
"#ifdef GL_ES
|
|
|
|
precision mediump float;
|
|
|
|
#endif\n" +
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
"uniform lowp float qt_Opacity;" +
|
|
|
|
"uniform lowp sampler2D txt_source;" +
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
"varying highp vec2 qt_TexCoord0;
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
uniform lowp sampler2D burnInSource;
|
|
|
|
uniform highp float burnInTime;
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
uniform highp float lastUpdate;
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:21:33 +01:00
|
|
|
uniform highp float prevLastUpdate;" +
|
|
|
|
|
|
|
|
"float max3(vec3 v) {
|
|
|
|
return max (max (v.x, v.y), v.z);
|
|
|
|
}" +
|
|
|
|
|
|
|
|
"void main() {
|
|
|
|
vec2 coords = qt_TexCoord0;
|
2018-11-07 22:36:51 +01:00
|
|
|
|
2018-11-08 18:26:27 +01:00
|
|
|
vec3 txtColor = texture2D(txt_source, coords).rgb;
|
2018-11-08 18:21:33 +01:00
|
|
|
vec4 accColor = texture2D(burnInSource, coords);
|
|
|
|
|
|
|
|
float prevMask = accColor.a;
|
|
|
|
float currMask = 1.0 - max3(txtColor);
|
|
|
|
|
|
|
|
highp float blurDecay = prevMask * clamp((lastUpdate - prevLastUpdate) * burnInTime, 0.0, 1.0);
|
|
|
|
vec3 blurColor = accColor.rgb - vec3(blurDecay);
|
|
|
|
|
|
|
|
blurColor = clamp(blurColor, vec3(0.0), vec3(1.0));
|
2018-11-08 18:26:27 +01:00
|
|
|
vec3 color = max(blurColor, txtColor * 0.5);
|
2018-11-08 18:21:33 +01:00
|
|
|
|
|
|
|
gl_FragColor = vec4(color, currMask);
|
|
|
|
}
|
|
|
|
"
|
|
|
|
|
|
|
|
onStatusChanged: if (log) console.log(log) //Print warning messages
|
|
|
|
}
|
2018-11-07 22:36:51 +01:00
|
|
|
}
|
|
|
|
}
|