Add MMP files to build libOpenVG_sw.lib which uses LINKAS to redirect to libOpenVG.dll (and
the same for libEGL_sw.lib and libOpenVGU_sw.lib).
Only the libEGL_sw.lib redirection isn't activated - this can't happen until there is a merged
libEGL.dll which supports the OpenWF synchronisation and also implements the graphical support functions.
The overall aim is to eliminate the *_sw.dll implementations, at least as a compile-time way of choosing
a software-only implementation.The correct way to choose is to put the right set of libraries into a ROM
with suitable renaming, and in the emulator to use the "switching DLL" technique to pick the right set.
As the Symbian Foundation doesn't have any alternative implementations, we don't need the switching DLLs
and we can build directly to the correct name.
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//
/**
@file
@test
@internalComponent - Internal Symbian test code
*/
#include "tspriteanimdll.h"
EXPORT_C CAnimDll *CreateCAnimDllL()
{
return(new(ELeave) CTAnimDll());
}
CAnim* CTAnimDll::CreateInstanceL(TInt aType)
{
CAnim *anim=NULL;
switch(aType)
{
case ESpriteAnimType:
anim=new(ELeave) CTSpriteAnim();
break;
}
return anim;
}
// CTSpriteAnim test sprite access //
void CTSpriteAnim::ConstructL(TAny* /*aParam*/)
{
User::LeaveIfNull(iSpriteFunctions);
iSpriteFunctions->SizeChangedL();
iSpriteFunctions->Activate(ETrue);
}
void CTSpriteAnim::Animate(TDateTime*)
{
}
void CTSpriteAnim::Command(TInt aOpcode, TAny* /*aArgs*/)
{
switch (aOpcode)
{
case EADllDraw1:
case EADllDraw2:
case EADllDraw3:
case EADllDrawBlank:
TRAPD(err,DrawL(aOpcode));
if (err)
{
RDebug::Print(_L("CTSpriteAnim::Command - DrawL error: %d"), err);
}
break;
default:;
}
}
TInt CTSpriteAnim::CommandReplyL(TInt /*aOpcode*/,TAny* /*aParam*/)
{
return(KErrNone);
}
TBool CTSpriteAnim::OfferRawEvent(const TRawEvent& /*aRawEvent*/)
{
return EFalse;
}
void CTSpriteAnim::DrawL(TInt aOpcode)
{
TSpriteMember *spriteMember = iSpriteFunctions->GetSpriteMember(0);
User::LeaveIfNull(spriteMember);
CFbsBitmap *bitmap=spriteMember->iBitmap;
CFbsBitmapDevice *device=CFbsBitmapDevice::NewL(bitmap);
CleanupStack::PushL(device);
CFbsBitGc *gc;
User::LeaveIfError(device->CreateContext(gc));
CleanupStack::PushL(gc);
gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
gc->SetPenSize(TSize());
TSize bitmapSize=bitmap->SizeInPixels();
TSize size= bitmapSize;
size.SetSize(size.iWidth/2,size.iHeight/2);
TPoint point=size.AsPoint();
// according to the opcode used, a quarter of the sprite bitmap is drawn to a different colour
switch(aOpcode)
{
case EADllDraw1:
{
gc->SetBrushColor(TRgb(255,0,0));
gc->DrawRect(TRect(TPoint(),size));
break;
}
case EADllDraw2:
{
gc->SetBrushColor(TRgb(0,255,0));
gc->DrawRect(TRect(TPoint(point.iX,0),size));
break;
}
case EADllDraw3:
{
gc->SetBrushColor(TRgb(0,0,255));
gc->DrawRect(TRect(TPoint(0,point.iY),size));
break;
}
case EADllDrawBlank:
{//the whole sprite bitmap is set to blank
gc->SetBrushColor(TRgb(255,255,255));
gc->DrawRect(TRect(TPoint(),bitmapSize));
break;
}
default:;
}
iSpriteFunctions->UpdateMember(0,TRect(bitmap->SizeInPixels()),ETrue);
CleanupStack::PopAndDestroy(2); //gc and device
}