Merge "Add some constants that show the version of the library" into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / shader-effects / shader-effect.h
1 #ifndef __DALI_SHADER_EFFECT_H__
2 #define __DALI_SHADER_EFFECT_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/animation/active-constraint-declarations.h>
23 #include <dali/public-api/object/constrainable.h>
24
25 namespace Dali DALI_IMPORT_API
26 {
27
28 /**
29  * @brief DALI_COMPOSE_SHADER macro provides a convenient way to write shader source code.
30  *
31  * We normally use double quotation marks to write a string such as "Hello World".
32  * However many symbols are needed to add multiple lines of string.
33  * We don't need to write quotation marks using this macro at every line.
34  *
35  * [An example of double quotation marks usage]
36  * const string FRAGMENT_SHADER_SOURCE = \
37  * "  void main()\n"
38  * "  {\n"
39  * "    gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;\n"
40  * "  }\n";
41  *
42  * [An example of DALI_COMPOSE_SHADER usage]
43  * const string FRAGMENT_SHADER_SOURCE = DALI_COMPOSE_SHADER (
44  *   void main()
45  *   {
46  *     gl_Position = uProjection * uModelView * vec4(aPosition, 1.0);
47  *     vTexCoord = aTexCoord;
48  *   }
49  * );
50  */
51 #define DALI_COMPOSE_SHADER(STR) #STR
52
53 class Constraint;
54 class Image;
55 struct Vector2;
56 struct Vector3;
57 struct Vector4;
58
59 namespace Internal DALI_INTERNAL
60 {
61 class ShaderEffect;
62 }
63
64 /**
65  * @brief GeometryType determines how geometry is shaped.
66  */
67 enum GeometryType
68 {
69   GEOMETRY_TYPE_IMAGE = 0x01,         ///< image, with flat color or texture
70   GEOMETRY_TYPE_TEXT = 0x02,          ///< text, with flat color or texture
71   GEOMETRY_TYPE_MESH = 0x04,          ///< Complex meshes, with flat color
72   GEOMETRY_TYPE_TEXTURED_MESH = 0x08, ///< Complex meshes, with texture
73   GEOMETRY_TYPE_LAST = 0x10
74 };
75
76 /**
77  * @brief Shader effects provide a visual effect for actors.
78  *
79  * For a Custom shader you can provide the vertex and fragment shader code as strings.
80  * These shader snippets get concatenated with the default attributes and uniforms.
81  * For a vertex shader this part contains the following code:
82  * <pre>
83  * precision highp float;
84  * attribute vec3  aPosition;
85  * attribute vec2  aTexCoord;
86  * uniform   mat4  uMvpMatrix;
87  * uniform   mat4  uModelMatrix;
88  * uniform   mat4  uViewMatrix;
89  * uniform   mat4  uModelView;
90  * uniform   mat3  uNormalMatrix;
91  * uniform   mat4  uProjection;
92  * uniform   vec4  uColor;
93  * varying   vec2  vTexCoord;
94  * </pre>
95  * The custom shader part is expected to output the vertex position and texture coordinate.
96  * A basic custom vertex shader would contain the following code:
97  * <pre>
98  * void main()
99  * {
100  *   gl_Position = uProjection * uModelView * vec4(aPosition, 1.0);
101  *   vTexCoord = aTexCoord;
102  * }
103  * </pre>
104  * For fragment shader the default part for images contains the following code:
105  * <pre>
106  * precision mediump float;
107  * uniform   sampler2D sTexture;
108  * uniform   sampler2D sEffect;
109  * uniform   vec4      uColor;
110  * varying   vec2      vTexCoord;
111  * </pre>
112  * and for text:
113  * <pre>
114  * \#extension GL_OES_standard_derivatives : enable
115  * uniform   mediump sampler2D sTexture;
116  * uniform   lowp    vec4      uColor;
117  * uniform   lowp    vec4      uTextColor;
118  * uniform   mediump float     uSmoothing;
119  * varying   mediump vec2      vTexCoord;
120  * </pre>
121  * and the custom shader is expected to output the fragment color.
122  * The basic fragment shader for images would contain:
123  * <pre>
124  * void main()
125  * {
126  *   gl_FragColor = texture2D( sTexture, vTexCoord ) * uColor;
127  * }
128  * </pre>
129  * and for text::
130  * <pre>
131  *  void main()
132  *  {
133  *    // sample distance field
134  *    mediump float distance = texture2D(sTexture, vTexCoord).a;
135  *    mediump float smoothWidth = fwidth(distance);
136  *    // set fragment color
137  *    lowp vec4 color = uTextColor;
138  *    // adjust alpha by sampled distance
139  *    color.a *= smoothstep(uSmoothing - smoothWidth, uSmoothing + smoothWidth, distance);
140  *    // fragment color multiplied with uColor.
141  *    glFragColor = color * uColor;
142  *  }
143  * </pre>
144  * <BR>
145  * <B>
146  * Note: In order for fade and color animations to work, the fragment shader needs to multiply the fragment color
147  * with the uniform color "uColor" of the node
148  * </B>
149  */
150 class ShaderEffect : public Constrainable
151 {
152 public:
153   /**
154    * @brief The Extension class is a base class for objects that can be attached to the
155    * ShaderEffects as extensions.
156    *
157    * Extensions are useful to create pimpled implementations of custom shaders.
158    * The shader effect will hold an intrusive pointer to the extension.
159    */
160   class Extension : public RefObject
161   {
162   protected:
163     /**
164      * @brief Disable default constructor. This a base class is not meant to be initialised on its own.
165      */
166     Extension();
167
168     /**
169      * @brief Virtual destructor.
170      */
171     virtual ~Extension();
172   };
173
174   // Default Properties
175   /* Grid Density defines the spacing of vertex coordinates in world units.
176    * ie a larger actor will have more grids at the same spacing.
177    *
178    *  +---+---+         +---+---+---+
179    *  |   |   |         |   |   |   |
180    *  +---+---+         +---+---+---+
181    *  |   |   |         |   |   |   |
182    *  +---+---+         +---+---+---+
183    *                    |   |   |   |
184    *                    +---+---+---+
185    */
186   static const Property::Index GRID_DENSITY;       ///< name "grid-density",   type FLOAT
187   static const Property::Index IMAGE;              ///< name "image",          type MAP; {"filename":"", "load-policy":...}
188   static const Property::Index PROGRAM;            ///< name "program",        type MAP; {"vertex-filename":"",...}
189   static const Property::Index GEOMETRY_HINTS;     ///< name "geometry-hints", type INT (bitfield)
190
191   static const float DEFAULT_GRID_DENSITY;         ///< The default density is 40 pixels
192
193   /**
194    * @brief Hints for rendering/subdividing geometry.
195    */
196   enum GeometryHints
197   {
198     HINT_NONE           = 0x00,   ///< no hints
199     HINT_GRID_X         = 0x01,   ///< Geometry must be subdivided in X
200     HINT_GRID_Y         = 0x02,   ///< Geometry must be subdivided in Y
201     HINT_GRID           = (HINT_GRID_X | HINT_GRID_Y),
202     HINT_DEPTH_BUFFER   = 0x04,   ///< Needs depth buffering turned on
203     HINT_BLENDING       = 0x08,   ///< Notifies the actor to use blending even if it's fully opaque. Needs actor's blending set to BlendingMode::AUTO
204     HINT_DOESNT_MODIFY_GEOMETRY = 0x10 ///< Notifies that the vertex shader will not change geometry (enables bounding box culling)
205   };
206
207   /**
208    * @brief Coordinate type of the shader uniform.
209    *
210    * Viewport coordinate types will convert from viewport to view space.
211    * Use this coordinate type if your are doing a transformation in view space.
212    * The texture coordinate type converts a value in actor local space to texture coodinates.
213    * This is useful for pixel shaders and accounts for texture atlas.
214    */
215   enum UniformCoordinateType
216   {
217     COORDINATE_TYPE_DEFAULT,            ///< Default, No transformation to be applied
218     COORDINATE_TYPE_VIEWPORT_POSITION,  ///< The uniform is a position vector in viewport coordinates that needs to be converted to GL view space coordinates.
219     COORDINATE_TYPE_VIEWPORT_DIRECTION, ///< The uniform is a directional vector in viewport coordinates that needs to be converted to GL view space coordinates.
220     COORDINATE_TYPE_TEXTURE_POSITION    ///< The uniform is a position in texture coordinates.
221   };
222
223   /**
224    * @brief Create an empty ShaderEffect.
225    *
226    * This can be initialised with ShaderEffect::New(...)
227    */
228   ShaderEffect();
229
230   /**
231    * @brief Create ShaderEffect.
232    *
233    * @param vertexShader code for the effect. If you pass in an empty string, the default version will be used
234    * @param fragmentShader code for the effect. If you pass in an empty string, the default version will be used
235    * @param type GeometryType to define the shape of the geometry
236    * @param hints GeometryHints to define the geometry of the rendered object
237    * @return A handle to a shader effect
238    */
239   static ShaderEffect New( const std::string& vertexShader,
240                            const std::string& fragmentShader,
241                            GeometryType type = GeometryType(GEOMETRY_TYPE_IMAGE),
242                            GeometryHints hints = GeometryHints(HINT_NONE) );
243
244   /**
245    * @brief Create ShaderEffect.
246    * @param vertexShaderPrefix code for the effect. It will be inserted before the default uniforms (ideal for \#defines)
247    * @param vertexShader code for the effect. If you pass in an empty string, the default version will be used
248    * @param fragmentShaderPrefix code for the effect. It will be inserted before the default uniforms (ideal for \#defines)
249    * @param fragmentShader code for the effect. If you pass in an empty string, the default version will be used
250    * @param type GeometryType to define the shape of the geometry
251    * @param hints GeometryHints to define the geometry of the rendered object
252    * @return A handle to a shader effect
253    */
254   static ShaderEffect NewWithPrefix(const std::string& vertexShaderPrefix,
255                                     const std::string& vertexShader,
256                                     const std::string& fragmentShaderPrefix,
257                                     const std::string& fragmentShader,
258                                     GeometryType type = GeometryType(GEOMETRY_TYPE_IMAGE),
259                                     GeometryHints hints = GeometryHints(HINT_NONE) );
260
261   /**
262    * @brief Create ShaderEffect.
263    * @param imageVertexShader code for the effect. If you pass in an empty string, the default version will be used
264    * @param imageFragmentShader code for the effect. If you pass in an empty string, the default version will be used
265    * @param textVertexShader code for the effect. If you pass in an empty string, the default version will be used
266    * @param textFragmentShader code for the effect. If you pass in an empty string, the default version will be used
267    * @param hints GeometryHints to define the geometry of the rendered object
268    * @return A handle to a shader effect
269    */
270   static ShaderEffect New( const std::string& imageVertexShader,
271                            const std::string& imageFragmentShader,
272                            const std::string& textVertexShader,
273                            const std::string& textFragmentShader,
274                            GeometryHints hints = GeometryHints(HINT_NONE) );
275
276   /**
277    * @brief Create ShaderEffect.
278    * @param imageVertexShader code for the effect. If you pass in an empty string, the default version will be used
279    * @param imageFragmentShader code for the effect. If you pass in an empty string, the default version will be used
280    * @param textVertexShader code for the effect. If you pass in an empty string, the default version will be used
281    * @param textFragmentShader code for the effect. If you pass in an empty string, the default version will be used
282    * @param texturedMeshVertexShader code for the effect. If you pass in an empty string, the default version will be used
283    * @param texturedMeshFragmentShader code for the effect. If you pass in an empty string, the default version will be used
284    * @param meshVertexShader code for the effect. If you pass in an empty string, the default version will be used
285    * @param meshFragmentShader code for the effect. If you pass in an empty string, the default version will be used
286    * @param hints GeometryHints to define the geometry of the rendered object
287    * @return A handle to a shader effect
288    */
289   static ShaderEffect New( const std::string& imageVertexShader,
290                            const std::string& imageFragmentShader,
291                            const std::string& textVertexShader,
292                            const std::string& textFragmentShader,
293                            const std::string& texturedMeshVertexShader,
294                            const std::string& texturedMeshFragmentShader,
295                            const std::string& meshVertexShader,
296                            const std::string& meshFragmentShader,
297                            GeometryHints hints = GeometryHints(HINT_NONE) );
298
299   /**
300    * @brief Downcast an Object handle to ShaderEffect.
301    *
302    * If handle points to a ShaderEffect the downcast produces valid
303    * handle. If not the returned handle is left uninitialized.
304    *
305    * @param[in] handle to An object
306    * @return handle to a ShaderEffect object or an uninitialized handle
307    */
308   static ShaderEffect DownCast( BaseHandle handle );
309
310   /**
311    * @brief Destructor
312    *
313    * This is non-virtual since derived Handle types must not contain data or virtual methods.
314    */
315   ~ShaderEffect();
316
317   /**
318    * @brief Copy constructor
319    *
320    * @param object A reference to a ShaderEffect object
321    */
322   ShaderEffect(const ShaderEffect& object);
323
324   /**
325    * @copydoc Dali::BaseHandle::operator=
326    */
327   using BaseHandle::operator=;
328
329   /**
330    * @brief Sets image for using as effect texture.
331    *
332    * This image texture will be bound to the "sEffectTexture" sampler
333    * so it can be used in fragment shader for effects
334    *
335    * @param[in] image to use as effect texture
336    */
337   void SetEffectImage( Image image );
338
339   /**
340    * @brief Set a uniform value.
341    * This will register a property of type Property::FLOAT; see Object::RegisterProperty() for more details.
342    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
343    * @pre Either the property name is not in use, or a property exists with the correct name & type.
344    * @param name The name of the uniform.
345    * @param value The value to to set.
346    * @param uniformCoordinateType The coordinate type of the uniform.
347    */
348   void SetUniform( const std::string& name,
349                    float value,
350                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
351
352   /**
353    * @brief Set a uniform value.
354    *
355    * This will register a property of type Property::VECTOR2; see Object::RegisterProperty() for more details.
356    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
357    * @pre Either the property name is not in use, or a property exists with the correct name & type.
358    * @param name The name of the uniform.
359    * @param value The value to to set.
360    * @param uniformCoordinateType The coordinate type of the uniform.
361    */
362   void SetUniform( const std::string& name,
363                    Vector2 value,
364                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
365
366   /**
367    * @brief Set a uniform value.
368    *
369    * This will register a property of type Property::VECTOR3; see Object::RegisterProperty() for more details.
370    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
371    * @pre Either the property name is not in use, or a property exists with the correct name & type.
372    * @param name The name of the uniform.
373    * @param value The value to to set.
374    * @param uniformCoordinateType The coordinate type of the uniform.
375    */
376   void SetUniform( const std::string& name,
377                    Vector3 value,
378                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
379
380   /**
381    * @brief Set a uniform value.
382    *
383    * This will register a property of type Property::VECTOR4; see Object::RegisterProperty() for more details.
384    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
385    * @pre Either the property name is not in use, or a property exists with the correct name & type.
386    * @param name The name of the uniform.
387    * @param value The value to to set.
388    * @param uniformCoordinateType The coordinate type of the uniform.
389    */
390   void SetUniform( const std::string& name,
391                    Vector4 value,
392                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
393
394   /**
395    * @brief Set a uniform value.
396    *
397    * This will register a property of type Property::MATRIX; see Object::RegisterProperty() for more details.
398    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
399    * @pre Either the property name is not in use, or a property exists with the correct name & type.
400    * @param name The name of the uniform.
401    * @param value The value to to set.
402    * @param uniformCoordinateType The coordinate type of the uniform.
403    */
404   void SetUniform( const std::string& name,
405                    const Matrix& value,
406                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
407
408   /**
409    * @brief Set a uniform value.
410    *
411    * This will register a property of type Property::MATRIX3; see Object::RegisterProperty() for more details.
412    * If name matches a uniform in the shader source, this value will be uploaded when rendering.
413    * @pre Either the property name is not in use, or a property exists with the correct name & type.
414    * @param name The name of the uniform.
415    * @param value The value to to set.
416    * @param uniformCoordinateType The coordinate type of the uniform.
417    */
418   void SetUniform( const std::string& name,
419                    const Matrix3& value,
420                    UniformCoordinateType uniformCoordinateType = UniformCoordinateType(COORDINATE_TYPE_DEFAULT) );
421
422   /**
423    * @brief Attach an extension object.
424    *
425    * This object is reference counted and will be automatically deleted.
426    * This object can be retrieved back with the GetExtension function.
427    * @param object Pointer to a Extension.
428    * @pre extension is not NULL
429    */
430   void AttachExtension( Extension *object );
431
432   /**
433    * @brief Retrieve the attached extension object.
434    *
435    * This object can be set with the AttachExtension function.
436    * @return implementation Pointer to a Extension.
437    * @pre An extension needs to be attached previously.
438    */
439   Extension& GetExtension();
440
441   /**
442    * @brief Retrieve the attached extension object.
443    *
444    * This object can be set with the AttachExtension function.
445    * @return implementation Pointer to a Extension.
446    * @pre An extension needs to be attached previously.
447    */
448   const Extension& GetExtension() const;
449
450
451 public: // Not intended for application developers
452
453   /**
454    * @brief This constructor is used by Dali New() methods.
455    * @param [in] effect A pointer to a newly allocated Dali resource.
456    */
457   explicit DALI_INTERNAL ShaderEffect(Internal::ShaderEffect* effect);
458 };
459
460 } // namespace Dali
461
462 #endif // __DALI_SHADER_EFFECT_H__