os/graphics/windowing/windowserver/nonnga/SERVER/SPRITE.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1999-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
// Sprite
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include "sprite.h"
sl@0
    20
#include "rootwin.h"
sl@0
    21
#include "windowgroup.h"
sl@0
    22
#include "ScrDev.H"
sl@0
    23
#include "wstop.h"
sl@0
    24
#include "ANIM.H"
sl@0
    25
#include "offscreenbitmap.h"
sl@0
    26
#include "panics.h"
sl@0
    27
#include "EVENT.H"
sl@0
    28
sl@0
    29
static const TInt64 KFlashHalfSecond(500000); //interval for flashing sprites
sl@0
    30
sl@0
    31
GLDEF_D CWsDeltaTimer *CWsSpriteBase::iDeltaTimer=NULL;
sl@0
    32
sl@0
    33
TInt TimerCallBack(TAny *aPtr)
sl@0
    34
	{
sl@0
    35
	((CWsSpriteBase *)aPtr)->TimerExpired();
sl@0
    36
	return(KErrNone);
sl@0
    37
	}
sl@0
    38
sl@0
    39
//
sl@0
    40
// CWsSpriteMember
sl@0
    41
//
sl@0
    42
sl@0
    43
CWsSpriteMember::CWsSpriteMember()
sl@0
    44
	{
sl@0
    45
	}
sl@0
    46
sl@0
    47
CWsSpriteMember::~CWsSpriteMember()
sl@0
    48
	{
sl@0
    49
	delete iBitmap;
sl@0
    50
	delete iMaskBitmap;
sl@0
    51
	}
sl@0
    52
sl@0
    53
TBool CWsSpriteMember::SetL(const TCmdSpriteMember &aCmdSpriteMember)
sl@0
    54
	{
sl@0
    55
	if (aCmdSpriteMember.iBitmap!=0)	// Null member of sequence, time is only valid field in member data
sl@0
    56
		{
sl@0
    57
		iBitmap=new(ELeave) CFbsBitmap();
sl@0
    58
		TInt ret = iBitmap->Duplicate(aCmdSpriteMember.iBitmap);
sl@0
    59
		if (ret == KErrNoMemory)
sl@0
    60
			{
sl@0
    61
			User::Leave(ret);
sl@0
    62
			}
sl@0
    63
		if (ret != KErrNone)
sl@0
    64
			return(ETrue);
sl@0
    65
sl@0
    66
		if (aCmdSpriteMember.iMaskBitmap)
sl@0
    67
			{
sl@0
    68
			iMaskBitmap=new(ELeave) CFbsBitmap();
sl@0
    69
			TInt ret = iMaskBitmap->Duplicate(aCmdSpriteMember.iMaskBitmap);
sl@0
    70
			if (ret == KErrNoMemory)
sl@0
    71
				{
sl@0
    72
				User::Leave(ret);
sl@0
    73
				}
sl@0
    74
			if (ret != KErrNone)
sl@0
    75
				return(ETrue);
sl@0
    76
			}
sl@0
    77
		iInvertMask=aCmdSpriteMember.iInvertMask;
sl@0
    78
		iDrawMode=aCmdSpriteMember.iDrawMode;
sl@0
    79
		iOffset=aCmdSpriteMember.iOffset;
sl@0
    80
		}
sl@0
    81
	iInterval=aCmdSpriteMember.iInterval;
sl@0
    82
	return(EFalse);
sl@0
    83
	}
sl@0
    84
sl@0
    85
//
sl@0
    86
// CWsSpriteBase
sl@0
    87
//
sl@0
    88
sl@0
    89
TBool CWsSpriteBase::UpdateMemberL(CWsSpriteMember *aMember, const TCmdSpriteMember &aCmdSpriteMember)
sl@0
    90
	{
sl@0
    91
	CFbsBitmap *old=aMember->iBitmap;
sl@0
    92
	CFbsBitmap *oldMask=aMember->iMaskBitmap;
sl@0
    93
	aMember->iBitmap=NULL;
sl@0
    94
	aMember->iMaskBitmap=NULL;
sl@0
    95
	TBool ret=EFalse;
sl@0
    96
	TRAPD(err,ret=aMember->SetL(aCmdSpriteMember));
sl@0
    97
	if (err!=KErrNone)
sl@0
    98
		{
sl@0
    99
um_error:
sl@0
   100
		delete aMember->iBitmap;
sl@0
   101
		delete aMember->iMaskBitmap;
sl@0
   102
		aMember->iBitmap=old;
sl@0
   103
		aMember->iMaskBitmap=oldMask;
sl@0
   104
		User::Leave(err);
sl@0
   105
		}
sl@0
   106
	TRAP(err,CheckSizesL());
sl@0
   107
	if (err!=KErrNone)
sl@0
   108
		goto um_error;
sl@0
   109
	SetMember(0);
sl@0
   110
	delete old;
sl@0
   111
	delete oldMask;
sl@0
   112
	return(ret);
sl@0
   113
	}
sl@0
   114
sl@0
   115
void CWsSpriteBase::InitStaticsL()
sl@0
   116
	{
sl@0
   117
	iDeltaTimer=CWsDeltaTimer::NewL(ESpriteAnimatePriority);
sl@0
   118
	}
sl@0
   119
sl@0
   120
void CWsSpriteBase::DeleteStatics()
sl@0
   121
	{
sl@0
   122
	delete iDeltaTimer;
sl@0
   123
	}
sl@0
   124
sl@0
   125
CWsSpriteBase::CWsSpriteBase(CWsClient *owner, WH_HANDLES aType) : CWsScreenObject(owner,aType,owner->Screen()), iClipSprite(EFalse)
sl@0
   126
	{
sl@0
   127
	}
sl@0
   128
sl@0
   129
CWsSpriteBase::~CWsSpriteBase()
sl@0
   130
	{
sl@0
   131
	Deactivate();
sl@0
   132
sl@0
   133
	//iDeltaTimer->Remove(iDeltaTimerEntry);
sl@0
   134
	if (iMembers)
sl@0
   135
		{
sl@0
   136
		iMembers->ResetAndDestroy();
sl@0
   137
		delete iMembers;
sl@0
   138
		}
sl@0
   139
	}
sl@0
   140
sl@0
   141
void CWsSpriteBase::ForceRedraw()
sl@0
   142
	{
sl@0
   143
    TRegionFix<1> region;
sl@0
   144
    region.AddRect(Rect());
sl@0
   145
    Screen()->AddRedrawRegion(region);
sl@0
   146
	}
sl@0
   147
sl@0
   148
void CWsSpriteBase::Deactivate()
sl@0
   149
	{
sl@0
   150
	//Disconnect from the sprite list and hide the sprite
sl@0
   151
	if (iFlags & ESpriteActive)
sl@0
   152
		{
sl@0
   153
		if(iWin)
sl@0
   154
			iWin->RemoveSprite(this);
sl@0
   155
		if (iMembers && iMembers->Count()>1)
sl@0
   156
			iDeltaTimer->Remove(iDeltaTimerEntry);
sl@0
   157
		iFlags&=~ESpriteActive;
sl@0
   158
		if (iFloating)
sl@0
   159
			{
sl@0
   160
			Screen()->SpriteManager()->RemoveFloatingSprite(this);
sl@0
   161
			ForceRedraw();
sl@0
   162
			}	
sl@0
   163
		}
sl@0
   164
	}
sl@0
   165
sl@0
   166
void CWsSpriteBase::CheckSizesL()
sl@0
   167
	{
sl@0
   168
	iMaxSize.SetSize(0,0);
sl@0
   169
	for(TInt index=0;index<iMembers->Count();index++)
sl@0
   170
		{
sl@0
   171
		CWsSpriteMember *wsm=(*iMembers)[index];
sl@0
   172
		if (wsm->iBitmap)
sl@0
   173
			{
sl@0
   174
			TSize size=wsm->iBitmap->SizeInPixels();
sl@0
   175
			if (wsm->iMaskBitmap)
sl@0
   176
				{
sl@0
   177
				TSize maskSize=wsm->iMaskBitmap->SizeInPixels();
sl@0
   178
				if (maskSize.iWidth<size.iWidth || maskSize.iHeight<size.iHeight)
sl@0
   179
					OwnerPanic(EWservPanicMaskSize);
sl@0
   180
				}
sl@0
   181
			if (size.iWidth>iMaxSize.iWidth)
sl@0
   182
				iMaxSize.iWidth=size.iWidth;
sl@0
   183
			if (size.iHeight>iMaxSize.iHeight)
sl@0
   184
				iMaxSize.iHeight=size.iHeight;
sl@0
   185
			}
sl@0
   186
		}
sl@0
   187
	}
sl@0
   188
sl@0
   189
void CWsSpriteBase::ConstructL(TUint aFlags, CWsWindow *aWindow)
sl@0
   190
	{
sl@0
   191
	// Common part of construct for both sprites and pointer cursors
sl@0
   192
	iFlags=aFlags;
sl@0
   193
/*
sl@0
   194
	if (iFlags&ESpriteNoChildClip)
sl@0
   195
		iLink.iPriority+=ENoChildPriorityBoost;
sl@0
   196
	if (iFlags&ESpritePointer)
sl@0
   197
		iLink.iPriority+=EPointerPriorityBoost;
sl@0
   198
*/
sl@0
   199
	iWin=aWindow;
sl@0
   200
	TCallBack callback(TimerCallBack,this);
sl@0
   201
	iDeltaTimerEntry.Set(callback);
sl@0
   202
	iMembers=new(ELeave) CArrayPtrFlat<CWsSpriteMember>(10);
sl@0
   203
	}
sl@0
   204
sl@0
   205
void CWsSpriteBase::AppendMemberL(const TCmdSpriteMember &aCmdSpriteMember)
sl@0
   206
	{
sl@0
   207
	CWsSpriteMember *&pwsm=iMembers->ExtendL();
sl@0
   208
	pwsm=NULL;	// In case new leaves
sl@0
   209
	pwsm=new(ELeave) CWsSpriteMember();
sl@0
   210
	if (pwsm->SetL(aCmdSpriteMember))
sl@0
   211
		OwnerPanic(EWservPanicBitmap);
sl@0
   212
	}
sl@0
   213
sl@0
   214
void CWsSpriteBase::CompleteL()
sl@0
   215
	{
sl@0
   216
	if (iMembers->Count() <= 0)
sl@0
   217
		{
sl@0
   218
		if(iWin)
sl@0
   219
			iWin->OwnerPanic(EWservPanicNoSpriteMember);
sl@0
   220
		//Not sure if this is a neccessary fall back if iWin is NULL.
sl@0
   221
		else if(iWin==NULL && iGroupWin)
sl@0
   222
			iGroupWin->OwnerPanic(EWservPanicNoSpriteMember);
sl@0
   223
		}
sl@0
   224
	else
sl@0
   225
		{
sl@0
   226
		iMembers->Compress();
sl@0
   227
		CheckSizesL();
sl@0
   228
		SetMember(0);
sl@0
   229
		}
sl@0
   230
	}
sl@0
   231
sl@0
   232
void CWsSpriteBase::Activate()
sl@0
   233
	{
sl@0
   234
	if (iFlags&ESpriteDisabled)
sl@0
   235
		{
sl@0
   236
		iFlags&=~ESpriteDisabled;
sl@0
   237
		}
sl@0
   238
	if (iMembers->Count()>1)
sl@0
   239
		{
sl@0
   240
		QueueDeltaTimer();
sl@0
   241
		iDeltaTimer->Activate();
sl@0
   242
		}
sl@0
   243
	iFlags|=ESpriteActive;
sl@0
   244
	if(iWin)	
sl@0
   245
		iWin->AddSprite(this);
sl@0
   246
	Screen()->SpriteManager()->Schedule(this);
sl@0
   247
	if(iFloating)
sl@0
   248
		{
sl@0
   249
		Screen()->SpriteManager()->AddFloatingSprite(this);
sl@0
   250
		ForceRedraw();
sl@0
   251
		}
sl@0
   252
	}
sl@0
   253
sl@0
   254
void CWsSpriteBase::SetMember(TInt aIndex)
sl@0
   255
	{
sl@0
   256
	iCurIndex=aIndex;
sl@0
   257
	iPos=iBasePos+(*iMembers)[iCurIndex]->iOffset;
sl@0
   258
	if ((*iMembers)[iCurIndex]->iBitmap)
sl@0
   259
		iSize=(*iMembers)[iCurIndex]->iBitmap->SizeInPixels();
sl@0
   260
	else
sl@0
   261
		iSize.SetSize(0,0);
sl@0
   262
sl@0
   263
	if (iSize.iWidth > iMaxSize.iWidth || iSize.iHeight > iMaxSize.iHeight)
sl@0
   264
		{
sl@0
   265
		WS_ASSERT_DEBUG(EFalse, EWsPanicSpriteBitmapSizeChange);
sl@0
   266
		CheckSizesL();
sl@0
   267
		}
sl@0
   268
	}
sl@0
   269
sl@0
   270
void CWsSpriteBase::SetPos(const TPoint &aPos)
sl@0
   271
	{
sl@0
   272
	//Non-floating anim whose window is destroyed 
sl@0
   273
	if (!iFloating && iWin==NULL) 
sl@0
   274
		{ 
sl@0
   275
		OwnerPanic(EWservPanicWindowDestroyed); 
sl@0
   276
		} 
sl@0
   277
sl@0
   278
	//Floating anim whose group window is destroyed 
sl@0
   279
	if (iFloating  && iGroupWin==NULL) 
sl@0
   280
		{ 
sl@0
   281
		OwnerPanic(EWservPanicWindowDestroyed); 
sl@0
   282
		}
sl@0
   283
		 
sl@0
   284
	iBasePos=aPos;
sl@0
   285
	TPoint newPos(iBasePos+(*iMembers)[iCurIndex]->iOffset);
sl@0
   286
	if (iPos!=newPos)
sl@0
   287
		{
sl@0
   288
		//Ensure the region covered by the sprite before as well as after the move gets scheduled for redraw
sl@0
   289
		Screen()->SpriteManager()->Schedule(this);
sl@0
   290
		iPos=newPos;
sl@0
   291
		Screen()->SpriteManager()->Schedule(this);
sl@0
   292
		}
sl@0
   293
	}
sl@0
   294
sl@0
   295
// Andy - replace delta timer with animation scheduling via screen
sl@0
   296
void CWsSpriteBase::QueueDeltaTimer()
sl@0
   297
	{
sl@0
   298
	iDeltaTimer->Queue((*iMembers)[iCurIndex]->iInterval,iDeltaTimerEntry);
sl@0
   299
	}
sl@0
   300
sl@0
   301
void CWsSpriteBase::TimerExpired()
sl@0
   302
	{
sl@0
   303
	Screen()->SpriteManager()->Schedule(this);
sl@0
   304
	SetMember((iCurIndex+1)==iMembers->Count() ? 0 : iCurIndex+1);
sl@0
   305
	Screen()->SpriteManager()->Schedule(this);
sl@0
   306
	QueueDeltaTimer();
sl@0
   307
	iScreen->Update();
sl@0
   308
	}
sl@0
   309
sl@0
   310
TPoint CWsSpriteBase::Pos() const
sl@0
   311
	{
sl@0
   312
	if (iGroupWin || iWin==NULL)
sl@0
   313
		{
sl@0
   314
		return(iPos);
sl@0
   315
		}
sl@0
   316
	return(iPos+iWin->Origin());
sl@0
   317
	}
sl@0
   318
sl@0
   319
TRect CWsSpriteBase::Rect() const
sl@0
   320
	{
sl@0
   321
	TRect rect;
sl@0
   322
	rect.iTl=Pos();
sl@0
   323
	rect.iBr=rect.iTl+iSize;
sl@0
   324
	return(rect);
sl@0
   325
	}
sl@0
   326
sl@0
   327
void CWsSpriteBase::CommandL(TInt aOpcode, const TAny *aCmdData)
sl@0
   328
	{
sl@0
   329
	TWsSpriteCmdUnion pData;
sl@0
   330
sl@0
   331
	pData.any=aCmdData;
sl@0
   332
	switch(aOpcode)
sl@0
   333
		{
sl@0
   334
		case EWsSpriteOpAppendMember:
sl@0
   335
			AppendMemberL(*pData.SpriteMember);
sl@0
   336
			break;
sl@0
   337
		case EWsSpriteOpActivate:
sl@0
   338
			if(!(iFlags&ESpriteActive))
sl@0
   339
				{
sl@0
   340
				CompleteL();
sl@0
   341
				}
sl@0
   342
			break;
sl@0
   343
		case EWsSpriteOpUpdateMember:
sl@0
   344
			if (pData.UpdateMember->index==iCurIndex)
sl@0
   345
				{
sl@0
   346
				TRect rect(Pos(), iMaxSize);
sl@0
   347
				Screen()->SpriteManager()->Schedule(this,&rect);
sl@0
   348
				}
sl@0
   349
			break;
sl@0
   350
		case EWsSpriteOpUpdateMember2:
sl@0
   351
			{
sl@0
   352
			Screen()->SpriteManager()->Schedule(this);
sl@0
   353
			if (pData.UpdateMember->index<0 || pData.UpdateMember->index>=iMembers->Count())
sl@0
   354
				User::Leave(KErrArgument);
sl@0
   355
			CWsSpriteMember *member=(*iMembers)[pData.UpdateMember->index];
sl@0
   356
			TBool ret=EFalse;
sl@0
   357
			TRAPD(err,ret=UpdateMemberL(member,pData.UpdateMember->data));
sl@0
   358
			if (err==KErrNone)
sl@0
   359
				{
sl@0
   360
				TRAP(err,CheckSizesL());
sl@0
   361
				SetMember(0);
sl@0
   362
				}
sl@0
   363
			Screen()->SpriteManager()->Schedule(this);
sl@0
   364
			User::LeaveIfError(err);
sl@0
   365
			if (ret)
sl@0
   366
				OwnerPanic(EWservPanicBitmap);
sl@0
   367
			}
sl@0
   368
			break;
sl@0
   369
		default:
sl@0
   370
			OwnerPanic(EWservPanicOpcode);
sl@0
   371
			break;
sl@0
   372
		}
sl@0
   373
	}
sl@0
   374
sl@0
   375
TBool CWsSpriteBase::CanBeSeen() const
sl@0
   376
	{
sl@0
   377
	if(iWin)
sl@0
   378
		return (!(iFlags&ESpriteDisabled)) && (!iWin->VisibleRegion().IsEmpty());
sl@0
   379
	else 
sl@0
   380
		return (!(iFlags&ESpriteDisabled));
sl@0
   381
	}
sl@0
   382
sl@0
   383
void CWsSpriteBase::Redraw(CFbsBitGc * aGc, const TRegion& aRegion)
sl@0
   384
	{
sl@0
   385
	TFlashState currentState=EFlashOn;
sl@0
   386
	if(IsFlashingEnabled())
sl@0
   387
		currentState=Screen()->SpriteManager()->CurrentSpriteFlashState(this);
sl@0
   388
	
sl@0
   389
	if(currentState==EFlashOn)
sl@0
   390
		{
sl@0
   391
		STACK_REGION region;
sl@0
   392
		region.Copy(aRegion);
sl@0
   393
		const TRegion * pr = &region;
sl@0
   394
		if (iClipSprite)
sl@0
   395
			{
sl@0
   396
			//PeterI iWin shouldn't be null as iClipSprite is currently only set by the text cursor (which is never floating)
sl@0
   397
			//but just in case make sure we don't derefernce if it is null.
sl@0
   398
			TPoint origin(0,0);
sl@0
   399
			if(iWin)
sl@0
   400
				origin = iWin->Origin();
sl@0
   401
			TRect rect(iBasePos + origin + iClipOffset, iClipSize);
sl@0
   402
			region.ClipRect(rect);
sl@0
   403
			}
sl@0
   404
		region.ClipRect(RootWindow()->Abs());
sl@0
   405
sl@0
   406
		// Only need to draw if the region being redrawn overlaps the sprite
sl@0
   407
		const TRect spriteRect(Pos(), iSize);
sl@0
   408
		STACK_REGION spriteRegion;
sl@0
   409
		spriteRegion.AddRect(spriteRect);
sl@0
   410
		region.Intersect(spriteRegion);
sl@0
   411
		spriteRegion.Close();
sl@0
   412
sl@0
   413
		if (pr->CheckError())
sl@0
   414
			{
sl@0
   415
			if(iWin)
sl@0
   416
				pr = &iWin->VisibleRegion();
sl@0
   417
			else
sl@0
   418
				pr = &RootWindow()->WindowArea();
sl@0
   419
			}
sl@0
   420
sl@0
   421
		if (!pr->IsEmpty())
sl@0
   422
			{
sl@0
   423
			CWsSpriteMember *member=(*iMembers)[iCurIndex];
sl@0
   424
			if (member->iBitmap)
sl@0
   425
				{
sl@0
   426
				aGc->SetClippingRegion(pr);
sl@0
   427
sl@0
   428
				// Calculate which piece (rect) of the bitmap needs to be drawn
sl@0
   429
				const TRect redrawRect = pr->BoundingRect();
sl@0
   430
				TRect bitmapRect(spriteRect); // sprite rect relative to screen
sl@0
   431
				bitmapRect.Intersection(redrawRect);
sl@0
   432
				bitmapRect.Move(-Pos()); // adjust relative to bitmap origin
sl@0
   433
sl@0
   434
				if (member->iMaskBitmap)
sl@0
   435
					aGc->BitBltMasked(Pos() + bitmapRect.iTl, member->iBitmap, bitmapRect, member->iMaskBitmap, member->iInvertMask);
sl@0
   436
				else
sl@0
   437
					{
sl@0
   438
					aGc->SetDrawMode(member->iDrawMode);
sl@0
   439
					aGc->BitBlt(Pos() + bitmapRect.iTl, member->iBitmap, bitmapRect);
sl@0
   440
					aGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
   441
					}
sl@0
   442
				aGc->SetClippingRegion(NULL);
sl@0
   443
				}
sl@0
   444
			}
sl@0
   445
		region.Close();
sl@0
   446
		}
sl@0
   447
	//flashing sprites need to reschedule themselves after drawing
sl@0
   448
	if(IsFlashingEnabled())
sl@0
   449
		Screen()->SpriteManager()->Schedule(this);
sl@0
   450
	}
sl@0
   451
sl@0
   452
TBool CWsSpriteBase::IsActivated() const
sl@0
   453
	{
sl@0
   454
	return (iFlags&ESpriteActive);
sl@0
   455
	}
sl@0
   456
sl@0
   457
//
sl@0
   458
// CWsSprite
sl@0
   459
//
sl@0
   460
sl@0
   461
CWsSprite::CWsSprite(CWsClient *owner) : CWsSpriteBase(owner,WS_HANDLE_SPRITE)
sl@0
   462
	{
sl@0
   463
	}
sl@0
   464
sl@0
   465
CWsSprite::~CWsSprite()
sl@0
   466
	{
sl@0
   467
    if (!iFloating && IsActivated() && iWin && iWin->IsVisible())
sl@0
   468
        ForceRedraw();
sl@0
   469
    
sl@0
   470
	if (iAnim)
sl@0
   471
		CWsAnim::CloseAnim(iAnim);
sl@0
   472
	}
sl@0
   473
sl@0
   474
void CWsSprite::ConstructL(const TWsClCmdCreateSprite &aParams)
sl@0
   475
	{
sl@0
   476
	NewObjL();
sl@0
   477
	CWsWindowBase *win;
sl@0
   478
	WsOwner()->HandleToWindow(aParams.window,&win);
sl@0
   479
	if (win->WinType()==EWinTypeGroup)
sl@0
   480
		{
sl@0
   481
		//If a sprite is attached to a group window it is floating. 
sl@0
   482
		//Floating sprite drawing is performed by the sprite manager.
sl@0
   483
		iGroupWin=(CWsWindowGroup *)win;
sl@0
   484
		win=NULL; //Floating sprites aren't associated with any particular window.
sl@0
   485
		iFloating=ETrue;
sl@0
   486
		}
sl@0
   487
	CWsSpriteBase::ConstructL(aParams.flags&ESpriteNonSystemFlags,(CWsWindow *)win);
sl@0
   488
	iBasePos=aParams.pos;
sl@0
   489
	}
sl@0
   490
sl@0
   491
void CWsSprite::CompleteL()
sl@0
   492
	{
sl@0
   493
	CWsSpriteBase::CompleteL();
sl@0
   494
	Activate();
sl@0
   495
	}
sl@0
   496
sl@0
   497
void CWsSprite::CommandL(TInt aOpcode, const TAny *aCmdData)
sl@0
   498
	{
sl@0
   499
	TWsSpriteCmdUnion pData;
sl@0
   500
	pData.any=aCmdData;
sl@0
   501
	switch(aOpcode)
sl@0
   502
		{
sl@0
   503
		case EWsSpriteOpSetPosition:
sl@0
   504
			SetPos(*pData.Point);
sl@0
   505
			break;
sl@0
   506
		case EWsSpriteOpFree:
sl@0
   507
			delete this;
sl@0
   508
			break;
sl@0
   509
		default:
sl@0
   510
			CWsSpriteBase::CommandL(aOpcode, aCmdData);
sl@0
   511
			break;
sl@0
   512
		}
sl@0
   513
	}
sl@0
   514
sl@0
   515
/**
sl@0
   516
@see MAnimSpriteFunctions::UpdateMember
sl@0
   517
@param aFullUpdate	Not used. Wserv2 always do full back to front rendering, so there is no distinction between changes needing aFullUpdate or not 
sl@0
   518
 */
sl@0
   519
void CWsSprite::Update(TInt aMember,TRect aRect,TBool /*aFullUpdate*/) 
sl@0
   520
	{
sl@0
   521
	if (iCurIndex!=aMember)
sl@0
   522
		return;
sl@0
   523
	aRect.Move(Pos());
sl@0
   524
	aRect.Intersection(iScreen->CurrentScreenSize());
sl@0
   525
	Screen()->SpriteManager()->Schedule(this, &aRect);
sl@0
   526
	}
sl@0
   527
sl@0
   528
//
sl@0
   529
// CWsPointerCursor
sl@0
   530
//
sl@0
   531
sl@0
   532
CWsPointerCursor::CWsPointerCursor(CWsClient *owner) : CWsSpriteBase(owner,WS_HANDLE_POINTER_CURSOR)
sl@0
   533
	{
sl@0
   534
	}
sl@0
   535
sl@0
   536
void CWsPointerCursor::CloseObject()
sl@0
   537
	{
sl@0
   538
	RemoveFromIndex();
sl@0
   539
	Close();
sl@0
   540
	}
sl@0
   541
sl@0
   542
void CWsPointerCursor::Close()
sl@0
   543
	{
sl@0
   544
	WS_ASSERT_DEBUG(iAccessCount>0, EWsPanicPointerCursorAccessCount);
sl@0
   545
	if (--iAccessCount==0)
sl@0
   546
		delete this;
sl@0
   547
	}
sl@0
   548
sl@0
   549
void CWsPointerCursor::Open()
sl@0
   550
	{
sl@0
   551
	iAccessCount++;
sl@0
   552
	}
sl@0
   553
sl@0
   554
CWsPointerCursor::~CWsPointerCursor()
sl@0
   555
	{
sl@0
   556
	WS_ASSERT_DEBUG(iAccessCount==0, EWsPanicPointerCursorAccessCount);
sl@0
   557
	}
sl@0
   558
sl@0
   559
void CWsPointerCursor::ConstructL(const TWsClCmdCreatePointerCursor &aParams)
sl@0
   560
	{
sl@0
   561
	NewObjL();
sl@0
   562
	CWsSpriteBase::ConstructL(ESpriteNoShadows|ESpriteNoChildClip|ESpritePointer|(aParams.flags&ESpriteNonSystemFlags),RootWindow());
sl@0
   563
	Open();
sl@0
   564
	}
sl@0
   565
sl@0
   566
void CWsPointerCursor::CommandL(TInt aOpcode, const TAny *aCmdData)
sl@0
   567
	{
sl@0
   568
	switch(aOpcode)
sl@0
   569
		{
sl@0
   570
		case EWsSpriteOpFree:
sl@0
   571
			CloseObject();
sl@0
   572
			break;
sl@0
   573
		default:
sl@0
   574
			CWsSpriteBase::CommandL(aOpcode, aCmdData);
sl@0
   575
			break;
sl@0
   576
		}
sl@0
   577
	}
sl@0
   578
sl@0
   579
//
sl@0
   580
// CWsCustomTextCursor
sl@0
   581
//
sl@0
   582
sl@0
   583
CWsCustomTextCursor::CWsCustomTextCursor (CWsClient *aOwner, RWsSession::TCustomTextCursorAlignment aAlignment) 
sl@0
   584
: CWsSpriteBase(aOwner, WS_HANDLE_TEXT_CURSOR), iAlignment(aAlignment)
sl@0
   585
	{
sl@0
   586
	}
sl@0
   587
sl@0
   588
CWsCustomTextCursor::~CWsCustomTextCursor()
sl@0
   589
	{
sl@0
   590
	}
sl@0
   591
sl@0
   592
void CWsCustomTextCursor::ConstructL(TInt aFlags)
sl@0
   593
	{
sl@0
   594
	NewObjL();
sl@0
   595
	CWsSpriteBase::ConstructL(ESpriteNoShadows|ESpriteNoChildClip|ESpritePointer|(aFlags&ESpriteNonSystemFlags), NULL);
sl@0
   596
	}
sl@0
   597
sl@0
   598
void CWsCustomTextCursor::CompleteL(CWsWindow *aWin, TBool aFlash, TBool aClipSprite, const TPoint& aClipOffset, const TSize& aClipSize)
sl@0
   599
	{
sl@0
   600
	iWin = aWin;
sl@0
   601
	iFlags = aFlash ? iFlags | ESpriteFlash : iFlags & ~ESpriteFlash;
sl@0
   602
	iClipSprite = aClipSprite;
sl@0
   603
	iClipOffset = aClipOffset;
sl@0
   604
	iClipSize = aClipSize;
sl@0
   605
	CWsSpriteBase::CompleteL();
sl@0
   606
	}
sl@0
   607
sl@0
   608
// Use SetPositionNoRedraw instead of SetPos when you just want to update
sl@0
   609
// the custom text cursor position without redrawing it
sl@0
   610
void CWsCustomTextCursor::SetPositionNoRedraw(const TPoint& aPos)
sl@0
   611
	{
sl@0
   612
	iBasePos = aPos;
sl@0
   613
	TPoint newPos(iBasePos+(*iMembers)[iCurIndex]->iOffset);
sl@0
   614
	iPos=newPos;
sl@0
   615
	}
sl@0
   616
sl@0
   617
void CWsCustomTextCursor::CommandL(TInt aOpcode, const TAny *aCmdData)
sl@0
   618
	{
sl@0
   619
	switch(aOpcode)
sl@0
   620
		{
sl@0
   621
		case EWsSpriteOpFree:
sl@0
   622
			// CWsCustomTextCursor objects are owned by the text cursor list.
sl@0
   623
			// They are not deleted when the client closes it's R class.
sl@0
   624
			RemoveFromIndex();
sl@0
   625
			break;
sl@0
   626
		default:
sl@0
   627
			CWsSpriteBase::CommandL(aOpcode, aCmdData);
sl@0
   628
			break;
sl@0
   629
		}
sl@0
   630
	}
sl@0
   631
sl@0
   632
//
sl@0
   633
// CWsDeltaTimer, nicked from CDeltaTimer and tweaked so it doesn't re-activate			//
sl@0
   634
// the timers until RunL has finished running all ready timers.							//
sl@0
   635
//																						//
sl@0
   636
// This is to stop a problem in Wserv where sprites could hog 100% CPU if the time		//
sl@0
   637
// it took to process them was longer than the time of the timer queued when the first	//
sl@0
   638
// sprite was updated																	//
sl@0
   639
//
sl@0
   640
sl@0
   641
CWsDeltaTimer* CWsDeltaTimer::NewL(TInt aPriority)
sl@0
   642
	{
sl@0
   643
	CWsDeltaTimer* wsdt=new(ELeave) CWsDeltaTimer(aPriority);
sl@0
   644
	CleanupStack::PushL(wsdt);
sl@0
   645
	User::LeaveIfError(wsdt->iTimer.CreateLocal());
sl@0
   646
	CActiveScheduler::Add(wsdt);
sl@0
   647
	CleanupStack::Pop(wsdt);
sl@0
   648
	return(wsdt);
sl@0
   649
	}
sl@0
   650
sl@0
   651
CWsDeltaTimer::CWsDeltaTimer(TInt aPriority) : CActive(aPriority),iQueue(_FOFF(TWsDeltaTimerEntry,iLink))
sl@0
   652
	{
sl@0
   653
	}
sl@0
   654
sl@0
   655
CWsDeltaTimer::~CWsDeltaTimer()
sl@0
   656
	{
sl@0
   657
	Cancel();
sl@0
   658
	while(iQueue.RemoveFirst()!=NULL)
sl@0
   659
		{}
sl@0
   660
	}
sl@0
   661
sl@0
   662
void CWsDeltaTimer::Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TWsDeltaTimerEntry& anEntry)
sl@0
   663
	{
sl@0
   664
	TInt intervals=aTimeInMicroSeconds.Int()/CWsDeltaTimerGranularity;
sl@0
   665
	if (intervals==0)
sl@0
   666
		intervals=1;
sl@0
   667
	iQueue.Add(anEntry,intervals);
sl@0
   668
	}
sl@0
   669
sl@0
   670
void CWsDeltaTimer::Activate()
sl@0
   671
	{
sl@0
   672
	// Queue a request on the timer.
sl@0
   673
	// The timer runs every tenth of a second and decremented the delta of the head of the queue.
sl@0
   674
	if (IsActive())
sl@0
   675
		return;
sl@0
   676
	if (!iQueue.IsEmpty())
sl@0
   677
		{
sl@0
   678
		SetActive();
sl@0
   679
		iTimer.After(iStatus,CWsDeltaTimerGranularity-1); // -1 to compensate for +1 in kernel!
sl@0
   680
		}
sl@0
   681
	}
sl@0
   682
sl@0
   683
void CWsDeltaTimer::RunL()
sl@0
   684
	{
sl@0
   685
	// Call all zero delta callbacks
sl@0
   686
	iQueue.CountDown();
sl@0
   687
	TWsDeltaTimerEntry* ent=iQueue.RemoveFirst();
sl@0
   688
	while (ent)
sl@0
   689
		{       
sl@0
   690
		ent->iCallBack.CallBack();
sl@0
   691
		ent=iQueue.RemoveFirst();
sl@0
   692
		}
sl@0
   693
	Activate();
sl@0
   694
	}
sl@0
   695
sl@0
   696
void CWsDeltaTimer::DoCancel()
sl@0
   697
	{
sl@0
   698
	iTimer.Cancel();
sl@0
   699
	}
sl@0
   700
sl@0
   701
void CWsDeltaTimer::Remove(TWsDeltaTimerEntry& anEntry)
sl@0
   702
	{
sl@0
   703
	if (anEntry.IsPending())
sl@0
   704
		{
sl@0
   705
		iQueue.Remove(anEntry);
sl@0
   706
		Activate();
sl@0
   707
		}
sl@0
   708
	}
sl@0
   709
sl@0
   710
sl@0
   711
//
sl@0
   712
// CWsSpriteManager -handles floating and flashing sprites including flashing custom text cursors. i.e. cursors
sl@0
   713
//					that have an associated sprite.
sl@0
   714
sl@0
   715
sl@0
   716
CWsSpriteManager::CWsSpriteManager()
sl@0
   717
	{
sl@0
   718
	}
sl@0
   719
	
sl@0
   720
CWsSpriteManager::~CWsSpriteManager()
sl@0
   721
	{
sl@0
   722
	iFloatingSprites.ResetAndDestroy();
sl@0
   723
	}
sl@0
   724
		
sl@0
   725
CWsSpriteManager* CWsSpriteManager::NewL()
sl@0
   726
	{
sl@0
   727
	CWsSpriteManager* self = new (ELeave) CWsSpriteManager();
sl@0
   728
	CleanupStack::PushL(self);
sl@0
   729
	self->ConstructL();
sl@0
   730
	CleanupStack::Pop(self);
sl@0
   731
	return self;	
sl@0
   732
	}
sl@0
   733
	
sl@0
   734
void CWsSpriteManager::ConstructL()
sl@0
   735
	{
sl@0
   736
	}
sl@0
   737
sl@0
   738
void CWsSpriteManager::AddFloatingSprite(CWsSpriteBase* aSprite)
sl@0
   739
	{
sl@0
   740
	iFloatingSprites.Append(aSprite);
sl@0
   741
	}
sl@0
   742
	
sl@0
   743
void CWsSpriteManager::RemoveFloatingSprite(CWsSpriteBase* aSprite)
sl@0
   744
	{
sl@0
   745
	for (TInt i=0 ; i<iFloatingSprites.Count() ; i++)
sl@0
   746
		{
sl@0
   747
		if(iFloatingSprites[i]==aSprite)
sl@0
   748
			{
sl@0
   749
			//Just remove the sprite don't delete it. the manager doesn't have ownership
sl@0
   750
			iFloatingSprites.Remove(i); 
sl@0
   751
			break;
sl@0
   752
			}
sl@0
   753
		}
sl@0
   754
	}
sl@0
   755
	
sl@0
   756
void CWsSpriteManager::DrawFloatingSprites(CFbsBitGc* aGc,const TRegion& aRegion)
sl@0
   757
	{
sl@0
   758
	for (TInt i=0 ; i<iFloatingSprites.Count() ; i++)
sl@0
   759
		{
sl@0
   760
		aGc->Reset();
sl@0
   761
		iFloatingSprites[i]->Redraw(aGc, aRegion);
sl@0
   762
		}
sl@0
   763
	}
sl@0
   764
	
sl@0
   765
void CWsSpriteManager::Schedule(CWsSpriteBase* aSprite, TRect* aRect)
sl@0
   766
	{
sl@0
   767
	if (aRect != NULL && aRect->IsEmpty())
sl@0
   768
		return;
sl@0
   769
sl@0
   770
	TRect rect = aSprite->Rect();
sl@0
   771
	if (aRect)
sl@0
   772
		rect.Intersection(*aRect);
sl@0
   773
		
sl@0
   774
	if(aSprite->IsFlashingEnabled())
sl@0
   775
		{
sl@0
   776
		aSprite->Screen()->ScheduleAnimation(rect,NextSpriteFlashStateChange(aSprite),0,0);
sl@0
   777
		}
sl@0
   778
	else
sl@0
   779
		{
sl@0
   780
		//Scheduling an animation "now" means it will take place at next animation which might 
sl@0
   781
		//be the full animation grace period into the future (see KAnimationGrace in server.cpp)
sl@0
   782
		aSprite->Screen()->ScheduleAnimation(rect,0,0,0);
sl@0
   783
		}
sl@0
   784
	}	
sl@0
   785
sl@0
   786
// Sprite flashing is clamped to half second intervals in relation to the global time.
sl@0
   787
// For the first half of each second all sprites have the EFlashOn state (visible)
sl@0
   788
// For the second half of each second all sprites have the EFlashOff state (not visible) 
sl@0
   789
TTimeIntervalMicroSeconds CWsSpriteManager::NextSpriteFlashStateChange(const CWsSpriteBase* aSprite) const
sl@0
   790
	{
sl@0
   791
	const TTimeIntervalMicroSeconds remainder = aSprite->Screen()->Now().DateTime().MicroSecond();
sl@0
   792
	return CalculateTimeToNextFlash(remainder);
sl@0
   793
	}
sl@0
   794
sl@0
   795
TTimeIntervalMicroSeconds CWsSpriteManager::NextCursorFlashStateChange() const
sl@0
   796
	{
sl@0
   797
	const TTimeIntervalMicroSeconds remainder = CWsTop::CurrentFocusScreen()->Now().DateTime().MicroSecond();
sl@0
   798
	return CalculateTimeToNextFlash(remainder);
sl@0
   799
	}
sl@0
   800
sl@0
   801
TTimeIntervalMicroSeconds CWsSpriteManager::CalculateTimeToNextFlash(TTimeIntervalMicroSeconds aTime) const
sl@0
   802
	{
sl@0
   803
	TInt64 nextStateChange;
sl@0
   804
	if(aTime<KFlashHalfSecond)
sl@0
   805
		nextStateChange=KFlashHalfSecond-aTime.Int64();
sl@0
   806
	else
sl@0
   807
		nextStateChange=KFlashHalfSecond - (aTime.Int64() - KFlashHalfSecond);
sl@0
   808
	return TTimeIntervalMicroSeconds(nextStateChange);
sl@0
   809
	}	
sl@0
   810
	
sl@0
   811
TFlashState CWsSpriteManager::CurrentSpriteFlashState(const CWsSpriteBase* aSprite) const
sl@0
   812
	{
sl@0
   813
	return (aSprite->Screen()->Now().DateTime().MicroSecond()<KFlashHalfSecond)?EFlashOn:EFlashOff;
sl@0
   814
	}
sl@0
   815
	
sl@0
   816
TFlashState CWsSpriteManager::CurrentCursorFlashState() const
sl@0
   817
	{
sl@0
   818
	return (CWsTop::CurrentFocusScreen()->Now().DateTime().MicroSecond()<KFlashHalfSecond)?EFlashOn:EFlashOff;
sl@0
   819
	}
sl@0
   820
sl@0
   821
void CWsSpriteManager::CalcFloatingSpriteRgn( TRegion& aResultRgn, const TRect& aDefaultRect )
sl@0
   822
	{
sl@0
   823
	aResultRgn.Clear();
sl@0
   824
	for (TInt i=0 ; i<iFloatingSprites.Count() && !aResultRgn.CheckError(); i++)
sl@0
   825
		{
sl@0
   826
		CWsSpriteBase* sprite = iFloatingSprites[i]; 
sl@0
   827
		if ( sprite->CanBeSeen() && ( sprite->IsActive() || sprite->IsActivated() ) )
sl@0
   828
			{
sl@0
   829
			aResultRgn.AddRect( sprite->Rect() );
sl@0
   830
			}
sl@0
   831
		}
sl@0
   832
	aResultRgn.Tidy();
sl@0
   833
	if ( aResultRgn.CheckError() && iFloatingSprites.Count() > 0 )
sl@0
   834
		{
sl@0
   835
		aResultRgn.Clear();
sl@0
   836
		aResultRgn.AddRect( aDefaultRect );
sl@0
   837
		}
sl@0
   838
	}