Rename DebugVisual to WireframeVisual
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / wireframe / wireframe-visual.cpp
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18
19 // CLASS HEADER
20 #include "wireframe-visual.h"
21
22 // INTERNAL INCLUDES
23 #include <dali-toolkit/public-api/visuals/visual-properties.h>
24 #include <dali-toolkit/internal/visuals/visual-factory-impl.h>
25 #include <dali-toolkit/internal/visuals/visual-factory-cache.h>
26 #include <dali-toolkit/internal/visuals/visual-string-constants.h>
27 #include <dali-toolkit/internal/visuals/visual-base-data-impl.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 namespace Internal
36 {
37
38 namespace
39 {
40 const char * const POSITION_ATTRIBUTE_NAME("aPosition");
41 const char * const INDEX_NAME("indices");
42
43 const char* VERTEX_SHADER = DALI_COMPOSE_SHADER(
44 attribute mediump vec2  aPosition;\n
45 uniform   mediump mat4  uMvpMatrix;\n
46 uniform   mediump vec3  uSize;\n
47 \n
48 void main()\n
49 {\n
50   mediump vec4 vertexPosition = vec4(aPosition, 0.0, 1.0);\n
51   vertexPosition.xyz *= uSize;\n
52   gl_Position = uMvpMatrix * vertexPosition;\n
53 }\n
54 );
55
56 const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER(\n
57 uniform lowp vec4 uColor;\n
58 \n
59 void main()\n
60 {\n
61   gl_FragColor = uColor;\n
62 }\n
63 );
64
65 }
66
67
68 WireframeVisual::WireframeVisual( VisualFactoryCache& factoryCache )
69 : Visual::Base( factoryCache )
70 {
71 }
72
73 WireframeVisual::~WireframeVisual()
74 {}
75
76 void WireframeVisual::DoSetOnStage( Actor& actor )
77 {
78   InitializeRenderer();
79 }
80
81 void WireframeVisual::DoCreatePropertyMap( Property::Map& map ) const
82 {
83   map.Clear();
84   map.Insert( Toolkit::Visual::Property::TYPE, Toolkit::Visual::WIREFRAME );
85 }
86
87 void WireframeVisual::InitializeRenderer()
88 {
89   mImpl->mRenderer = mFactoryCache.GetWireframeRenderer();
90   if( !mImpl->mRenderer )
91   {
92     Geometry geometry = CreateQuadWireframeGeometry();
93     Shader shader = Shader::New( VERTEX_SHADER, FRAGMENT_SHADER );
94
95     mImpl->mRenderer = Renderer::New( geometry, shader);
96     mFactoryCache.CacheWireframeRenderer( mImpl->mRenderer );
97   }
98 }
99
100 Geometry WireframeVisual::CreateQuadWireframeGeometry()
101 {
102   const float halfWidth = 0.5f;
103   const float halfHeight = 0.5f;
104   struct QuadVertex { Vector2 position;};
105   QuadVertex quadVertexData[4] =
106   {
107       { Vector2(-halfWidth, -halfHeight) },
108       { Vector2( halfWidth, -halfHeight) },
109       { Vector2( halfWidth,  halfHeight) },
110       { Vector2(-halfWidth,  halfHeight) }
111   };
112
113   Property::Map quadVertexFormat;
114   quadVertexFormat[POSITION_ATTRIBUTE_NAME] = Property::VECTOR2;
115   PropertyBuffer quadVertices = PropertyBuffer::New( quadVertexFormat );
116   quadVertices.SetData( quadVertexData, 4 );
117
118   // Create indices
119   unsigned short indexData[10] = { 0, 1, 1, 2, 2, 3, 3, 0 };
120
121   // Create the geometry object
122   Geometry geometry = Geometry::New();
123   geometry.AddVertexBuffer( quadVertices );
124   geometry.SetIndexBuffer( indexData, sizeof(indexData)/sizeof(indexData[0]) );
125   geometry.SetType( Geometry::LINES );
126
127   return geometry;
128 }
129
130 } // namespace Internal
131
132 } // namespace Toolkit
133
134 } // namespace Dali