sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Symbian Foundation Ltd
|
sl@0
|
3 |
* This component and the accompanying materials are made available
|
sl@0
|
4 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
* which accompanies this distribution, and is available
|
sl@0
|
6 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Initial Contributors:
|
sl@0
|
9 |
* Symbian Foundation Ltd - initial contribution.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Contributors:
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Description:
|
sl@0
|
14 |
* CTiger class declaration to render OpenVG tiger image
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef TIGER_H
|
sl@0
|
18 |
#define TIGER_H
|
sl@0
|
19 |
|
sl@0
|
20 |
// INCLUDES
|
sl@0
|
21 |
#include <e32base.h> // for CBase definition
|
sl@0
|
22 |
#include <egl.h>
|
sl@0
|
23 |
#include <openvg.h>
|
sl@0
|
24 |
//#include <vgu.h>
|
sl@0
|
25 |
#include <eglosnativewindowtype.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
////////////////////////////////////////////
|
sl@0
|
28 |
//Copied from ri_package_11\samples\tiger\tiger.h
|
sl@0
|
29 |
extern const int KtigerCommandCount;
|
sl@0
|
30 |
extern const char KtigerCommands[];
|
sl@0
|
31 |
extern const float KtigerMinX;
|
sl@0
|
32 |
extern const float KtigerMaxX;
|
sl@0
|
33 |
extern const float KtigerMinY;
|
sl@0
|
34 |
extern const float KtigerMaxY;
|
sl@0
|
35 |
extern const int KtigerPointCount;
|
sl@0
|
36 |
extern const float KtigerPoints[];
|
sl@0
|
37 |
|
sl@0
|
38 |
// CLASS DECLARATION
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* Class that does the actual OpenGL ES rendering.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
typedef struct
|
sl@0
|
44 |
{
|
sl@0
|
45 |
VGFillRule m_fillRule;
|
sl@0
|
46 |
VGPaintMode m_paintMode;
|
sl@0
|
47 |
VGCapStyle m_capStyle;
|
sl@0
|
48 |
VGJoinStyle m_joinStyle;
|
sl@0
|
49 |
float m_miterLimit;
|
sl@0
|
50 |
float m_strokeWidth;
|
sl@0
|
51 |
VGPaint m_fillPaint;
|
sl@0
|
52 |
VGPaint m_strokePaint;
|
sl@0
|
53 |
VGPath m_path;
|
sl@0
|
54 |
} PathData;
|
sl@0
|
55 |
|
sl@0
|
56 |
typedef struct
|
sl@0
|
57 |
{
|
sl@0
|
58 |
PathData* m_paths;
|
sl@0
|
59 |
int m_numPaths;
|
sl@0
|
60 |
} PS;
|
sl@0
|
61 |
|
sl@0
|
62 |
/////////////////////////////////////////////////////////////
|
sl@0
|
63 |
|
sl@0
|
64 |
class RWindow;
|
sl@0
|
65 |
|
sl@0
|
66 |
class CTiger : public CBase
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public: // Constructors and destructor
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
* Factory method for creating a new CTiger object.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
static CTiger* NewL( TUint aWidth, TUint aHeight);
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* Destructor. Does nothing.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
virtual ~CTiger();
|
sl@0
|
79 |
|
sl@0
|
80 |
public: // New functions
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
* Initializes OpenGL ES, sets the vertex and color
|
sl@0
|
84 |
* arrays and pointers. Also selects the shading mode.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
void AppInit( RWindow& aWindow, CFbsBitmap* aBitmapToDraw=NULL );
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
* Called upon application exit. Does nothing.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
void AppExit( void );
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
* Notifies that the screen size has dynamically changed during execution of
|
sl@0
|
95 |
* this program. Resets the viewport to this new size.
|
sl@0
|
96 |
* @param aWidth New width of the screen.
|
sl@0
|
97 |
* @param aHeight New height of the screen.
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
void SetScreenSize( TUint aWidth, TUint aHeight );
|
sl@0
|
100 |
|
sl@0
|
101 |
void AppRender( const TRect& aRect, CFbsBitmap* aDst=NULL);
|
sl@0
|
102 |
|
sl@0
|
103 |
protected: // New functions
|
sl@0
|
104 |
|
sl@0
|
105 |
/**
|
sl@0
|
106 |
* Standard constructor that must never Leave.
|
sl@0
|
107 |
* Stores the given screen width and height.
|
sl@0
|
108 |
* @param aWidth Width of the screen.
|
sl@0
|
109 |
* @param aHeight Height of the screen.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
CTiger(TUint aWidth, TUint aHeight);
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
* Second phase contructor. Does nothing.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
void ConstructL( void );
|
sl@0
|
117 |
|
sl@0
|
118 |
//fucntions copied from ri_package_11\samples\tiger\main.c - no attempt to Symbianise!!
|
sl@0
|
119 |
void PS_destruct(PS* ps);
|
sl@0
|
120 |
void render(int w, int h);
|
sl@0
|
121 |
void PS_render(PS* ps);
|
sl@0
|
122 |
PS* PS_construct(const char* commands, int commandCount, const float* points, int pointCount);
|
sl@0
|
123 |
void init(NativeWindowType window, CFbsBitmap* aBitmapToDraw=NULL);
|
sl@0
|
124 |
void CreateImage(CFbsBitmap* aBitmapToDraw);
|
sl@0
|
125 |
void renderFromBitmap(int w, int h);
|
sl@0
|
126 |
|
sl@0
|
127 |
|
sl@0
|
128 |
private: // Data
|
sl@0
|
129 |
|
sl@0
|
130 |
/** Width of the screen */
|
sl@0
|
131 |
TUint iScreenWidth;
|
sl@0
|
132 |
|
sl@0
|
133 |
/** Height of the screen */
|
sl@0
|
134 |
TUint iScreenHeight;
|
sl@0
|
135 |
|
sl@0
|
136 |
private: //OpenVG structures
|
sl@0
|
137 |
|
sl@0
|
138 |
//copied from ri_package_11\samples\tiger\main.c - no attempt to symbianise
|
sl@0
|
139 |
PS* iTiger;
|
sl@0
|
140 |
int iRenderWidth;
|
sl@0
|
141 |
int iRenderHeight;
|
sl@0
|
142 |
EGLDisplay iEgldisplay;
|
sl@0
|
143 |
EGLConfig iEglconfig;
|
sl@0
|
144 |
EGLSurface iEglsurface;
|
sl@0
|
145 |
EGLContext iEglcontext;
|
sl@0
|
146 |
TNativeWindowType iNativeWindowType;
|
sl@0
|
147 |
VGImage iImage;
|
sl@0
|
148 |
CFbsBitmap* iBitmapToDraw;
|
sl@0
|
149 |
|
sl@0
|
150 |
};
|
sl@0
|
151 |
#endif // TIGER_H
|
sl@0
|
152 |
|
sl@0
|
153 |
// End of File
|