os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappopenglanimation.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "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
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_pseudoappopenglanimation.h"
sl@0
    23
sl@0
    24
/** Vertex co-ordinates for a cube */
sl@0
    25
const GLfloat KVertexArray[] = {	-10.0f,  10.0f,  10.0f,
sl@0
    26
									 10.0f,  10.0f,  10.0f,
sl@0
    27
									-10.0f, -10.0f,  10.0f,
sl@0
    28
									 10.0f, -10.0f,  10.0f,
sl@0
    29
									-10.0f,  10.0f, -10.0f,
sl@0
    30
									 10.0f,  10.0f, -10.0f,
sl@0
    31
									-10.0f, -10.0f, -10.0f,
sl@0
    32
									 10.0f, -10.0f, -10.0f };
sl@0
    33
sl@0
    34
/** Left, near, top co-ordinate index */
sl@0
    35
const GLubyte LNT = 0;
sl@0
    36
/** Right, near, top co-ordinate index */
sl@0
    37
const GLubyte RNT = 1;
sl@0
    38
/** Left, far, top co-ordinate index */
sl@0
    39
const GLubyte LFT = 2;
sl@0
    40
/** Right, far, top co-ordinate index */
sl@0
    41
const GLubyte RFT = 3;
sl@0
    42
/** Left, near, bottom co-ordinate index */
sl@0
    43
const GLubyte LNB = 4;
sl@0
    44
/** Right, near, bottom co-ordinate index */
sl@0
    45
const GLubyte RNB = 5;
sl@0
    46
/** Left, far, bottom co-ordinate index */
sl@0
    47
const GLubyte LFB = 6;
sl@0
    48
/** Right, far, bottom co-ordinate index */
sl@0
    49
const GLubyte RFB = 7;
sl@0
    50
/** Number of indicies per face */
sl@0
    51
const TInt KNumFaceIndices = 6;
sl@0
    52
sl@0
    53
/** Array of indicies into vertex array to define a cube */
sl@0
    54
const GLubyte KIndexArray[] = {	RNB, LNB, LFB, RNB, LFB, RFB,
sl@0
    55
								RNB, RFB, RFT, RNB, RFT, RNT,
sl@0
    56
								LNB, RNB, RNT, LNB, RNT, LNT,
sl@0
    57
								LFB, LNB, LNT, LFB, LNT, LFT,
sl@0
    58
								RFB, LFB, LFT, RFB, LFT, RFT,
sl@0
    59
								LNT, RNT, RFT, LNT, RFT, LFT };
sl@0
    60
sl@0
    61
sl@0
    62
COpenGLAnimation* COpenGLAnimation::NewL(RWindow* aWin, const TDisplayMode& aMode, const TSize& aSurfaceSize,
sl@0
    63
																		  const TInt aHorizontalRate,
sl@0
    64
																		  const TInt aVerticalRate)
sl@0
    65
	{
sl@0
    66
	RDebug::Print(_L("Creating COpenGLAnimation class\n"));
sl@0
    67
    COpenGLAnimation* self = new (ELeave) COpenGLAnimation(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate);
sl@0
    68
    CleanupStack::PushL(self);
sl@0
    69
    self->ConstructL(aWin);
sl@0
    70
    CleanupStack::Pop(); // self;
sl@0
    71
    return self;
sl@0
    72
	}
sl@0
    73
sl@0
    74
COpenGLAnimation::COpenGLAnimation(const TDisplayMode& aMode, const TSize& aSurfaceSize, const TInt aHorizontalRate, const TInt aVerticalRate)
sl@0
    75
: CEglBase(aMode,aSurfaceSize,aHorizontalRate,aVerticalRate)
sl@0
    76
	{
sl@0
    77
	}
sl@0
    78
sl@0
    79
void COpenGLAnimation::ConstructL(RWindow* aWin)
sl@0
    80
	{
sl@0
    81
	BaseConstructL(aWin);
sl@0
    82
sl@0
    83
	// eglBindAPI
sl@0
    84
	TInt ret = eglBindAPI(EGL_OPENGL_ES_API);
sl@0
    85
	TestL(ret, _L("eglBindAPI failed"));
sl@0
    86
sl@0
    87
	__ASSERT_DEBUG(iUseConfig>0, User::Panic(_L("COpenGLAnimation"), KErrArgument));
sl@0
    88
sl@0
    89
	// eglCreateContext
sl@0
    90
	iContext = eglCreateContext(iDisplay, iUseConfig, EGL_NO_CONTEXT, NULL);
sl@0
    91
	TestL(iContext!=EGL_NO_CONTEXT, _L("eglCreateContext failed"));
sl@0
    92
sl@0
    93
	// Make surface and context current on the display object
sl@0
    94
	ret = eglMakeCurrent(iDisplay, iSurface, iSurface, iContext);
sl@0
    95
	TestL(ret, _L("eglMakeCurrent failed"));
sl@0
    96
sl@0
    97
	CheckGlErrorL(_L("GL_Problems creating second surface"));
sl@0
    98
	}
sl@0
    99
sl@0
   100
COpenGLAnimation::~COpenGLAnimation()
sl@0
   101
	{
sl@0
   102
	}
sl@0
   103
sl@0
   104
/** Draws a cube using OpenGLES commands */
sl@0
   105
void COpenGLAnimation::DrawToEglL()
sl@0
   106
	{
sl@0
   107
	// Increment rotation variable
sl@0
   108
	iRotAngle += 15;
sl@0
   109
sl@0
   110
	// Set half-transparent drawing value
sl@0
   111
	const GLfloat KAlphaValue = 0.5f;
sl@0
   112
sl@0
   113
	// Remove hidden faces
sl@0
   114
	glEnable(GL_CULL_FACE);
sl@0
   115
	glCullFace(GL_FRONT);
sl@0
   116
sl@0
   117
	// Use a flat shading model
sl@0
   118
	glShadeModel(GL_FLAT);
sl@0
   119
sl@0
   120
	// Set the projection parameters
sl@0
   121
	glMatrixMode(GL_PROJECTION);
sl@0
   122
	glLoadIdentity();
sl@0
   123
	glFrustumf(-0.154f, 0.154f, -0.0577f, 0.0577f, 0.1f, 100.0f);
sl@0
   124
sl@0
   125
	// Set the cube position
sl@0
   126
	glMatrixMode(GL_MODELVIEW);
sl@0
   127
	glLoadIdentity();
sl@0
   128
	// Move position away from viewpoitn
sl@0
   129
	glTranslatef(iX+=iHorizontalRate, 0.0f, -50.0f);
sl@0
   130
sl@0
   131
	// Rotate 45 degrees about the z-axis
sl@0
   132
	glRotatef(45.0f, 0.0f, 0.0f, 1.0f);
sl@0
   133
	// Rotate iX degrees about the y- and z-axes
sl@0
   134
	glRotatef(iRotAngle, 0.0f, 1.0f, 1.0f);
sl@0
   135
sl@0
   136
	// Clear the buffer
sl@0
   137
	glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
sl@0
   138
	glClear(GL_COLOR_BUFFER_BIT);
sl@0
   139
sl@0
   140
	// Enable vertex processing
sl@0
   141
	glEnableClientState(GL_VERTEX_ARRAY);
sl@0
   142
sl@0
   143
	// Set the vertex array to use
sl@0
   144
	glVertexPointer(3, GL_FLOAT, 0, KVertexArray);
sl@0
   145
sl@0
   146
	const GLubyte* faceIndex = KIndexArray;
sl@0
   147
sl@0
   148
	// Process cube faces
sl@0
   149
	for (TInt face = 1; face <= 6; face++)
sl@0
   150
		{
sl@0
   151
		const GLfloat red = (face < 2 || face > 4) ? 1.0f : 0;
sl@0
   152
		const GLfloat green = (face > 0 && face < 4) ? 1.0f : 0;
sl@0
   153
		const GLfloat blue = (face > 2) ? 1.0f : 0;
sl@0
   154
		// Set colour to draw in
sl@0
   155
		glColor4f(red, green, blue, KAlphaValue);
sl@0
   156
		// Draw the vertices that make up each face as two triangles
sl@0
   157
		glDrawElements(GL_TRIANGLES, KNumFaceIndices, GL_UNSIGNED_BYTE, faceIndex);
sl@0
   158
		faceIndex += KNumFaceIndices;
sl@0
   159
		}
sl@0
   160
sl@0
   161
	// Flush colour buffer to the window surface
sl@0
   162
	eglSwapBuffers(iDisplay, iSurface);
sl@0
   163
	}
sl@0
   164
sl@0
   165
void COpenGLAnimation::DrawL(CTestSurfaceRasterizer*  /*aSurfaceRasterizer*/, SurfaceDetails& /*aSurfDetails*/)
sl@0
   166
	{
sl@0
   167
	DrawToEglL();
sl@0
   168
	}
sl@0
   169
sl@0
   170
void COpenGLAnimation::CheckGlErrorL(const TDesC& aMessage)
sl@0
   171
	{
sl@0
   172
	GLenum err=glGetError();
sl@0
   173
	if ( err != GL_NO_ERROR )
sl@0
   174
		{
sl@0
   175
		RDebug::Print(_L("Error:0x%x - %S"),err,&aMessage);
sl@0
   176
		User::Leave(KErrUnknown);
sl@0
   177
		}
sl@0
   178
	}