os/graphics/windowing/windowserver/test/HANDANIM.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/HANDANIM.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,413 @@
     1.4 +// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Anim DLL to deal with handwriting
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "HANDANIM.H"
    1.22 +
    1.23 +#define DEFAUlT_LINE_WIDTH 4
    1.24 +#define DEFAUlT_MASK_WIDTH_FACTOR 3
    1.25 +#define DEFAUlT_END_POINT_FACTOR 2
    1.26 +#define BLACK TRgb::Gray2(0)
    1.27 +#define WHITE TRgb::Gray2(1)
    1.28 +
    1.29 +#define leavescan_needs_to_see_some_brackets_here	{	}
    1.30 +EXPORT_C CAnimDll *CreateCAnimDllL()
    1.31 +	{
    1.32 +	return(new(ELeave) CHandWritingAnimDll());
    1.33 +	}
    1.34 +
    1.35 +
    1.36 +/*CHandWritingAnimDll*/
    1.37 +
    1.38 +CAnim *CHandWritingAnimDll::CreateInstanceL(TInt /*aType*/)
    1.39 +	{
    1.40 +	return new(ELeave) CHandWritingAnim();
    1.41 +	}
    1.42 +
    1.43 +
    1.44 +/*CHandWritingAnim*/
    1.45 +
    1.46 +CHandWritingAnim::~CHandWritingAnim()
    1.47 +	{
    1.48 +	iFunctions->GetRawEvents(EFalse);
    1.49 +	delete iBitmapDevice;
    1.50 +	delete iMaskBitmapDevice;
    1.51 +	}
    1.52 +
    1.53 +void CHandWritingAnim::Activate()
    1.54 +	{
    1.55 +	if (iState==EHwStateDeactive)
    1.56 +		{
    1.57 +		iState=EHwStateInactive;
    1.58 +		iFunctions->GetRawEvents(ETrue);
    1.59 +		}
    1.60 +	}
    1.61 +
    1.62 +void CHandWritingAnim::Deactivate()
    1.63 +	{
    1.64 +	if (iState!=EHwStateDeactive)
    1.65 +		{
    1.66 +		iState=EHwStateDeactive;
    1.67 +		iFunctions->GetRawEvents(EFalse);
    1.68 +		iSpriteFunctions->Activate(EFalse);
    1.69 +		ClearSprite();
    1.70 +		}
    1.71 +	}
    1.72 +
    1.73 +void CHandWritingAnim::SpriteChangeL(TBool aUsingSeparateMask)
    1.74 +	{
    1.75 +	if (aUsingSeparateMask)
    1.76 +		{
    1.77 +		TSpriteMember *spriteMember=iSpriteFunctions->GetSpriteMember(0);
    1.78 +		iMaskBitmapDevice=CFbsBitmapDevice::NewL(spriteMember->iMaskBitmap);		//If this leaves the error value will be returned to the client side
    1.79 +		}
    1.80 +	else
    1.81 +		{
    1.82 +		delete iMaskBitmapDevice;
    1.83 +		iMaskBitmapDevice=NULL;
    1.84 +		iDrawData.iLineColor=BLACK;		//Must use black ink when there is no mask
    1.85 +		iDrawData.iInitialBitmapColor=WHITE;		//Must have white background when there is no mask
    1.86 +		}
    1.87 +	iIsMask=aUsingSeparateMask;
    1.88 +	}
    1.89 +
    1.90 +void CHandWritingAnim::SetDrawData(THandwritingDrawData *aDrawData)
    1.91 +	{
    1.92 +	iDrawData=*aDrawData;
    1.93 +	if (!iIsMask)
    1.94 +		{
    1.95 +		iDrawData.iLineColor=BLACK;		//Must use black ink when there is no mask
    1.96 +		iDrawData.iInitialBitmapColor=WHITE;		//Must have white background when there is no mask
    1.97 +		}
    1.98 +	}
    1.99 +
   1.100 +TBool CHandWritingAnim::HandlePointerDown(TPoint aPoint)
   1.101 +	{
   1.102 +	if (iState==EHwStateWaitingMove)
   1.103 +		return EFalse;
   1.104 +	iCurrentDrawPoint=aPoint;
   1.105 +	if (iState==EHwStateInactive)
   1.106 +		{
   1.107 +		iState=EHwStateWaitingMove;
   1.108 +		StartTimer();
   1.109 +		return ETrue;
   1.110 +		}
   1.111 +	iState=EHwStateDrawing;
   1.112 +	DrawPoint();
   1.113 +	UpdateSprite();
   1.114 +	return ETrue;
   1.115 +	}
   1.116 +
   1.117 +TBool CHandWritingAnim::HandlePointerMove(TPoint aPoint)
   1.118 +	{
   1.119 +	switch (iState)
   1.120 +		{
   1.121 +	case EHwStateWaitingMove:
   1.122 +		{
   1.123 +		TPoint moved=aPoint-iCurrentDrawPoint;
   1.124 +		if (Abs(moved.iX)<5 && Abs(moved.iY)<5)			//Need to do something with these constants
   1.125 +			return ETrue;
   1.126 +		iSpriteFunctions->Activate(ETrue);
   1.127 +		DrawPoint();
   1.128 +		iState=EHwStateDrawing;
   1.129 +		}
   1.130 +	case EHwStateDrawing:
   1.131 +		break;
   1.132 +	default:
   1.133 +		return EFalse;
   1.134 +		}
   1.135 +	DrawLine(aPoint);
   1.136 +	UpdateSprite();
   1.137 +	return ETrue;
   1.138 +	}
   1.139 +
   1.140 +TBool CHandWritingAnim::HandlePointerUp(TPoint aPoint)
   1.141 +	{
   1.142 +	if (iState==EHwStateInactive)
   1.143 +		return EFalse;
   1.144 +	else if (iState==EHwStateWaitingMove)
   1.145 +		{
   1.146 +		TPoint moved=aPoint-iCurrentDrawPoint;
   1.147 +		if (Abs(moved.iX)<5 && Abs(moved.iY)<5)			//Need to do something with these constants
   1.148 +			{
   1.149 +			SendEatenDownEvent();
   1.150 +			return EFalse;
   1.151 +			}
   1.152 +		iSpriteFunctions->Activate(ETrue);
   1.153 +		DrawPoint();
   1.154 +		}
   1.155 +	DrawLine(aPoint);
   1.156 +	DrawPoint();
   1.157 +	UpdateSprite();
   1.158 +	iState=EHwStateWaitingStroke;
   1.159 +	StartTimer();
   1.160 +	return ETrue;
   1.161 +	}
   1.162 +
   1.163 +void CHandWritingAnim::DrawPoint()
   1.164 +	{
   1.165 +	iSpriteGc->Activate(iBitmapDevice);
   1.166 +	iSpriteGc->SetPenSize(TSize(iDrawData.iEndPontWidth,iDrawData.iEndPontWidth));
   1.167 +	iSpriteGc->SetPenColor(iDrawData.iLineColor);
   1.168 +	iSpriteGc->Plot(iCurrentDrawPoint);
   1.169 +	if (iMaskBitmapDevice)
   1.170 +		{
   1.171 +		iSpriteGc->Activate(iMaskBitmapDevice);
   1.172 +		iSpriteGc->SetPenSize(TSize(iDrawData.iMaskLineWidth,iDrawData.iMaskLineWidth));
   1.173 +		iSpriteGc->SetPenColor(BLACK);		//Mask must be drawn in black
   1.174 +		iSpriteGc->Plot(iCurrentDrawPoint);
   1.175 +		}
   1.176 +	iPointStore->AddPoint(iCurrentDrawPoint);
   1.177 +	}
   1.178 +
   1.179 +void CHandWritingAnim::DrawLine(TPoint aEndPoint)
   1.180 +	{
   1.181 +	iSpriteGc->Activate(iBitmapDevice);
   1.182 +	iSpriteGc->SetPenSize(TSize(iDrawData.iLineWidth,iDrawData.iLineWidth));
   1.183 +	iSpriteGc->SetPenColor(iDrawData.iLineColor);
   1.184 +	iSpriteGc->MoveTo(iCurrentDrawPoint);
   1.185 +	iSpriteGc->DrawLineTo(aEndPoint);
   1.186 +	if (iMaskBitmapDevice)
   1.187 +		{
   1.188 +		iSpriteGc->Activate(iMaskBitmapDevice);
   1.189 +		iSpriteGc->SetPenSize(TSize(iDrawData.iMaskLineWidth,iDrawData.iMaskLineWidth));
   1.190 +		iSpriteGc->SetPenColor(BLACK);		//Mask must be drawn in black
   1.191 +		iSpriteGc->MoveTo(iCurrentDrawPoint);
   1.192 +		iSpriteGc->DrawLineTo(aEndPoint);
   1.193 +		}
   1.194 +	iCurrentDrawPoint=aEndPoint;
   1.195 +	iPointStore->AddPoint(aEndPoint);
   1.196 +	}
   1.197 +
   1.198 +void CHandWritingAnim::UpdateSprite()
   1.199 +	{
   1.200 +	TRect drawTo;
   1.201 +	iSpriteGc->RectDrawnTo(drawTo);
   1.202 +	iSpriteFunctions->UpdateMember(0,drawTo,EFalse);
   1.203 +	}
   1.204 +
   1.205 +void CHandWritingAnim::StartTimer()
   1.206 +	{
   1.207 +	iFunctions->SetNextInterval(2);
   1.208 +	}
   1.209 +
   1.210 +void CHandWritingAnim::SendEatenDownEvent()
   1.211 +	{
   1.212 +	TRawEvent rawEvent;
   1.213 +	rawEvent.Set(TRawEvent::EButton1Down,iCurrentDrawPoint.iX,iCurrentDrawPoint.iY);
   1.214 +	iFunctions->PostRawEvent(rawEvent);
   1.215 +	iState=EHwStateInactive;
   1.216 +	}
   1.217 +
   1.218 +void CHandWritingAnim::CharacterFinished()
   1.219 +	{		
   1.220 +	iState=EHwStateInactive;
   1.221 +	iLastGeneratedCharacter=iPointStore->GetChar();
   1.222 +	/*TRawEvent rawEvent;
   1.223 +	rawEvent.Set(TRawEvent::EKeyDown,iLastGeneratedCharacter);
   1.224 +	iFunctions->PostKeyEvent(rawEvent);*/
   1.225 +    TKeyEvent keyEvent;
   1.226 +    keyEvent.iCode=keyEvent.iScanCode=iLastGeneratedCharacter;
   1.227 +    keyEvent.iModifiers=keyEvent.iRepeats=0;
   1.228 +	iFunctions->PostKeyEvent(keyEvent);
   1.229 +	iPointStore->ClearPoints();
   1.230 +	iSpriteFunctions->Activate(EFalse);
   1.231 +	ClearSprite();
   1.232 +	}
   1.233 +
   1.234 +void CHandWritingAnim::ClearSprite()
   1.235 +	{
   1.236 +	iSpriteGc->Activate(iBitmapDevice);
   1.237 +	iSpriteGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.238 +	iSpriteGc->SetBrushColor(iDrawData.iInitialBitmapColor);
   1.239 +	iSpriteGc->Clear();
   1.240 +	if (iMaskBitmapDevice)
   1.241 +		{
   1.242 +		iSpriteGc->Activate(iMaskBitmapDevice);
   1.243 +		iSpriteGc->SetBrushColor(WHITE);		//Mask must be cleared in white
   1.244 +		iSpriteGc->Clear();
   1.245 +		}
   1.246 +    TRect drawnTo;
   1.247 +	iSpriteGc->RectDrawnTo(drawnTo);		//Clear the drawnTo rect.
   1.248 +	}
   1.249 +
   1.250 +TBool CHandWritingAnim::OfferRawEvent(const TRawEvent &aRawEvent)
   1.251 +	{
   1.252 +	if (iState==EHwStateDeactive)
   1.253 +		return EFalse;
   1.254 +	switch (aRawEvent.Type())
   1.255 +		{
   1.256 +	case TRawEvent::EButton1Down:
   1.257 +		{
   1.258 +		iDownTime.HomeTime();		
   1.259 +		return HandlePointerDown(aRawEvent.Pos());
   1.260 +		}
   1.261 +	case TRawEvent::EPointerMove:
   1.262 +		return HandlePointerMove(aRawEvent.Pos());
   1.263 +	case TRawEvent::EButton1Up:
   1.264 +		return HandlePointerUp(aRawEvent.Pos());
   1.265 +	default:
   1.266 +		return EFalse;
   1.267 +		}
   1.268 +	}
   1.269 +
   1.270 +void CHandWritingAnim::ConstructL(TAny *)
   1.271 +	{
   1.272 +	TSpriteMember *spriteMember=iSpriteFunctions->GetSpriteMember(0);
   1.273 +	iIsMask=(spriteMember->iBitmap->Handle() != spriteMember->iMaskBitmap->Handle());
   1.274 +	iBitmapDevice=CFbsBitmapDevice::NewL(spriteMember->iBitmap);
   1.275 +	if (iIsMask)
   1.276 +		iMaskBitmapDevice=CFbsBitmapDevice::NewL(spriteMember->iMaskBitmap);
   1.277 +	iState=EHwStateDeactive;
   1.278 +	iSpriteGc=CFbsBitGc::NewL();
   1.279 +	iSpriteGc->Reset();
   1.280 +	iDrawData.iLineColor=BLACK;
   1.281 +	iDrawData.iInitialBitmapColor=WHITE;
   1.282 +	iDrawData.iLineWidth=DEFAUlT_LINE_WIDTH;
   1.283 +	iDrawData.iMaskLineWidth=DEFAUlT_MASK_WIDTH_FACTOR*DEFAUlT_LINE_WIDTH;
   1.284 +	iDrawData.iEndPontWidth=DEFAUlT_END_POINT_FACTOR*DEFAUlT_LINE_WIDTH;
   1.285 +	iSpriteFunctions->SizeChangedL();
   1.286 +	iPointStore=new(ELeave) CPointStore();
   1.287 +	iPointStore->ConstructL();
   1.288 +	}
   1.289 +
   1.290 +void CHandWritingAnim::Animate(TDateTime* /*aDateTime*/)
   1.291 +	{
   1.292 +	iFunctions->SetInterval(0);
   1.293 +	if (iState==EHwStateWaitingMove)
   1.294 +		SendEatenDownEvent();
   1.295 +	else if (iState==EHwStateWaitingStroke)
   1.296 +		CharacterFinished();
   1.297 +	}
   1.298 +
   1.299 +void CHandWritingAnim::Redraw()
   1.300 +	{
   1.301 +	}
   1.302 +
   1.303 +void CHandWritingAnim::Command(TInt aOpcode,TAny *aParams)
   1.304 +	{
   1.305 +	switch (aOpcode)
   1.306 +		{
   1.307 +		case EHwOpActivate:
   1.308 +			Activate();
   1.309 +			break;
   1.310 +		case EHwOpDeactivate:
   1.311 +			Deactivate();
   1.312 +			break;
   1.313 +		case EHwOpSetDrawData:;
   1.314 +			SetDrawData(STATIC_CAST(THandwritingDrawData*,aParams));
   1.315 +			break;
   1.316 +		default:
   1.317 +			iFunctions->Panic();
   1.318 +		}
   1.319 +	}
   1.320 +
   1.321 +void CHandWritingAnim::FocusChanged(TBool )
   1.322 +	{
   1.323 +	}
   1.324 +
   1.325 +TInt CHandWritingAnim::CommandReplyL(TInt aOpcode,TAny *aParams)
   1.326 +	{
   1.327 +	switch (aOpcode)
   1.328 +		{
   1.329 +		case EHwOpSpriteMask:
   1.330 +			SpriteChangeL(*STATIC_CAST(TBool*,aParams));
   1.331 +			break;
   1.332 +		case EHwOpGetLastChar:
   1.333 +			return iLastGeneratedCharacter;
   1.334 +		default:
   1.335 +			iFunctions->Panic();
   1.336 +		}
   1.337 +	return KErrNone;
   1.338 +	}
   1.339 +
   1.340 +
   1.341 +/*CPointStore*/
   1.342 +
   1.343 +CPointStore::CPointStore()
   1.344 +	{}
   1.345 +
   1.346 +void CPointStore::ConstructL()
   1.347 +	{
   1.348 +	iPoints=new(ELeave) CArrayFixFlat<TPoint>(16);
   1.349 +	iPoints->ResizeL(256);
   1.350 +	}
   1.351 +
   1.352 +void CPointStore::AddPoint(TPoint aPoint)
   1.353 +	{
   1.354 +	if (iNumPoints<256)
   1.355 +		(*iPoints)[iNumPoints++]=aPoint;
   1.356 +	}
   1.357 +
   1.358 +TInt CPointStore::GetChar()
   1.359 +	{
   1.360 +	TPoint oldPoint=(*iPoints)[0];
   1.361 +	TPoint newPoint;
   1.362 +	TPoint totalPoint=oldPoint;
   1.363 +	TInt xInc=0,xDec=0,yInc=0,yDec=0;
   1.364 +	TInt yState=0,xState=0;
   1.365 +	TInt ii;
   1.366 +	for (ii=1;ii<iNumPoints;++ii)
   1.367 +		{
   1.368 +		newPoint=(*iPoints)[ii];
   1.369 +		totalPoint+=newPoint;
   1.370 +		if (newPoint.iX>oldPoint.iX)
   1.371 +			++xInc;
   1.372 +		if (newPoint.iX<oldPoint.iX)
   1.373 +			++xDec;
   1.374 +		if (newPoint.iY>oldPoint.iY)
   1.375 +			++yInc;
   1.376 +		if (newPoint.iY<oldPoint.iY)
   1.377 +			++yDec;
   1.378 +		oldPoint=newPoint;
   1.379 +		}
   1.380 +	newPoint-=(*iPoints)[0];
   1.381 +	if (10*yInc<yDec)
   1.382 +		yState=-1;
   1.383 +	else if (yInc>10*yDec)
   1.384 +		yState=1;
   1.385 +	if (10*xInc<xDec)
   1.386 +		xState=-1;
   1.387 +	else if (xInc>10*xDec)
   1.388 +		xState=1;
   1.389 +	if (xState!=0 && yState!=0)
   1.390 +		{
   1.391 +		if (Abs(newPoint.iY)<Abs(newPoint.iX))
   1.392 +			yState=0;
   1.393 +		else
   1.394 +			xState=0;
   1.395 +		}
   1.396 +	if (xState!=0)
   1.397 +		return xState>0 ? EKeyRightArrow:EKeyLeftArrow;
   1.398 +	if (yState!=0)
   1.399 +		return yState>0 ? EKeyDownArrow:EKeyUpArrow;
   1.400 +	TInt firstChar='a';
   1.401 +	TInt numChars=26;
   1.402 +	TInt type=(totalPoint.iY/10)%10;
   1.403 +	if (type>5)
   1.404 +		firstChar='A';
   1.405 +	else if (type==0)
   1.406 +		{
   1.407 +		firstChar='0';
   1.408 +		numChars=10;
   1.409 +		}
   1.410 +	return firstChar+((totalPoint.iX/10)%numChars);
   1.411 +	}
   1.412 +
   1.413 +void CPointStore::ClearPoints()
   1.414 +	{
   1.415 +	iNumPoints=0;
   1.416 +	}