[wpf]使用hlsl实现百叶窗动效-kb88凯时官网登录

来自:
时间:2024-01-31
阅读:

百叶窗动画是制作ppt时常用的动画之一,本文将通过实现百叶窗动画效果的例子介绍在wpf中如何使用shadereffect。shadereffect使用高级着色器语言(high level shading language,hlsl)事先制作好并且已经编译过的效果。先看下百叶窗动画实现效果:
[wpf]使用hlsl实现百叶窗动效

准备工作与实现

  • 编写和编译hlsl代码,创建shadereffect。由于hlsl有自己的,本文不做讨论。这里使用一个已有的的hlsl文件,也是后边将介绍的一个hlsl编辑器工具shazzam shader editor中的案例。
  • 定义像素着色器,在ui元素中使用像素着色器,并通过动画设置百叶窗动画。
    百叶窗效果的像素着色器代码中:
public class blindsshader : shadereffect
{
    public static readonly dependencyproperty inputproperty = shadereffect.registerpixelshadersamplerproperty("input", typeof(blindsshader), 0);
    public static readonly dependencyproperty progressproperty = dependencyproperty.register("progress", typeof(double), typeof(blindsshader), new uipropertymetadata(((double)(30d)), pixelshaderconstantcallback(0)));
    public static readonly dependencyproperty numberofblindsproperty = dependencyproperty.register("numberofblinds", typeof(double), typeof(blindsshader), new uipropertymetadata(((double)(5d)), pixelshaderconstantcallback(1)));
    public static readonly dependencyproperty texture2property = shadereffect.registerpixelshadersamplerproperty("texture2", typeof(blindsshader), 1);
    public blindsshader()
    {
        pixelshader pixelshader = new pixelshader();
        pixelshader.urisource = new uri("/wpftest;component/shader/shadersource/blindsshader.ps", urikind.relative);
        this.pixelshader = pixelshader;
        this.updateshadervalue(inputproperty);
        this.updateshadervalue(progressproperty);
        this.updateshadervalue(numberofblindsproperty);
        this.updateshadervalue(texture2property);
    }
    public brush input
    {
        get
        {
            return ((brush)(this.getvalue(inputproperty)));
        }
        set
        {
            this.setvalue(inputproperty, value);
        }
    }
    /// the amount(%) of the transition from first texture to the second texture. 
    public double progress
    {
        get
        {
            return ((double)(this.getvalue(progressproperty)));
        }
        set
        {
            this.setvalue(progressproperty, value);
        }
    }
    /// the number of blinds strips 
    public double numberofblinds
    {
        get
        {
            return ((double)(this.getvalue(numberofblindsproperty)));
        }
        set
        {
            this.setvalue(numberofblindsproperty, value);
        }
    }
    public brush texture2
    {
        get
        {
            return ((brush)(this.getvalue(texture2property)));
        }
        set
        {
            this.setvalue(texture2property, value);
        }
    }
}

blindsshader.ps是编译好的hlsl文件,progress表示百叶窗叶片打开的进度,numberofblinds是百叶窗叶片的数量,texture2是百叶窗叶片的纹理(通常使用一个纯色的图片)。

使用百叶窗效果时,只需在resources中添加着色器和动画,并对目标ui元素的effect设置为百叶窗动画。为了展示效果,本例用图片111.jpg作为grid的背景,用纯色图片blinds.jpg作为叶片纹理。在grid的加载时触发动画设置百叶窗叶片打开的进度。


    
    
    
    
        
        
            
        
    


    
        
            
        
    

shazzam shader editor

可以使用任何一款编辑器编写hlsl,然后使用fxc.exe命令行工具编译(visual studio 2022或者windows sdk for windows中含有该工具)。但是shazzam shader editor是一个免费的专门为 wpf 实现像素着色器而设计的一款编辑器,使用它来编写像素着色器,可以自动生成wpf中的shadereffect。

shazzam shader editor已经好久没有维护了,其d88尊龙官网手机app官网似乎也没了。原本开源在codeplex上,而 codeplex 已经关闭。但johanlarsson 将其 fork 到了 github 上,
也可以通过获取安装包。

打开shazzam shader editor,左侧显示着色器示例和全局设置(默认折叠)。选中具体的着色器后,右侧区域上方显示着色其效果,下方选项卡分别显示hlsl代码编辑窗口、预览调节窗口、生成的c#代码和生成的vb代码。
[wpf]使用hlsl实现百叶窗动效

hlsl代码编辑窗口

hlsl代码文件是以.fx作为后缀名。编译后的文件后缀名是.ps。编辑窗口中可以编辑修改代码,按下f5就可以编译你的hlsl代码,并在界面上方预览效果。编辑器中会高亮关键词和方法,双击不要松开鼠标会弹出相应的提示。如何编写hlsl代码可以查阅这本书,shazzam shader editor中左侧示例中的tutorial也是配合该书使用的。

预览调节窗口

在这里可以设置各种预览参数,预览hlsl代码的效果。
[wpf]使用hlsl实现百叶窗动效

生成的c#代码

这里是shazzam shader editor自动生成的用c#编写的shadereffect,本文前边提到的百叶窗效果的像素着色器代码也就是从这里直接拷贝过去的。这里的代码默认的命名空间是shazzam.shaders,代码缩进是用tab。可以在主窗体左侧的全局设置中修改。
[wpf]使用hlsl实现百叶窗动效

生成的vb代码

这里和生成c#代码一样,只是提供vb语言编写的shadereffect。

在wpf中使用用hlsl

shazzam shader editor编译hlsl后会生成xxx.psxxx.csxxx.vb三个文件,并保存在%localappdata%\shazzam\generatedshaders目录下的xxxeffect目录中。这里的xxx就是你定义的hlsl的名称。
在wpf中使用时,需把xxx.ps文件以resource的形式添加到工程中,然后把xxx.cs文件添加到工程,并根据项目结构,修改xxx.cs中引用xxx.ps文件的路径即可。

返回顶部
顶部
网站地图