Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "Graphics/WSGRAPHICMSGBUF.H"
17 #include "W32STDGRAPHIC.H"
19 #define KSizeOfTInt (TInt)sizeof(TInt)
21 // TWsGraphicMsgBufParser \\\\\\\\\\\\\\\\\\\\\\\\
23 EXPORT_C TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(const TDesC8& aData): iData(aData)
24 /** Initialise a parser for the specified message buffer */
28 EXPORT_C TInt TWsGraphicMsgBufParser::Verify() const
29 /** Verifies that the message buffer is properly formed
30 @return KErrNone if buffer is ok, else a system-wide error code */
32 const TInt length = iData.Length();
34 const TInt tmp = (length - sizeof(TInt));
37 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
46 EXPORT_C TInt TWsGraphicMsgBufParser::Count() const
47 /** Returns the number of elements in the buffer.
48 @return the count of elements.
51 const TInt length = iData.Length();
52 TInt ofs = 0, count = 0;
56 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
61 EXPORT_C TUid TWsGraphicMsgBufParser::Uid(TInt aIndex) const
62 /** Returns the UID if the message, or null UID if the buffer is empty.
63 @return KNullUid if the buffer is empty, otherwise the stored Uid
66 const TInt length = iData.Length();
67 TInt ofs = 0, count = 0;
72 return TUid::Uid(IntAt(ofs));
75 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
80 EXPORT_C TPtrC8 TWsGraphicMsgBufParser::Data(TInt aIndex) const
81 /**Returns the buffer contents at a perticular offset (aIndex).
82 @param aIndex - the index into of the buffer element required.
83 @return KNullDesC8 if index is more than the element count, otherwise, the element at index aIndex.
86 const TInt length = iData.Length();
87 TInt ofs = 0, count = 0;
92 return iData.Mid(ofs+(KSizeOfTInt*2),IntAt(ofs+KSizeOfTInt));
95 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
97 return TPtrC8(KNullDesC8());
100 EXPORT_C TInt TWsGraphicMsgBufParser::Find(TUid aUid,TInt aStartingFrom) const
101 /** Finds the element equal to the aUid, and returns the index of the element in the buffer.
102 @param aUid - the search item to be found in the buffer.
103 @param aStartingFrom - the starting index.
104 @return the position (index) of the found element, or KErrNotFound
107 const TInt length = iData.Length();
108 TInt ofs = 0, count = 0;
111 if((count >= aStartingFrom) && (aUid == TUid::Uid(IntAt(ofs))))
116 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
121 EXPORT_C TBool TWsGraphicMsgBufParser::LoadFixed(TUid aUid,TAny* aMsg,TInt aMsgSize,TInt aStartingFrom) const
122 /** Loads the buffer of aMsg with the contents of the buffer, based on the aUid and aMsgSize.
123 @param aUid - the Uid to match after which the loading is performed.
124 @param aMsg - the pointer to the output buffer.
125 @param aMsgSize - the size of the output buffer.
126 @param aStartingFrom - the starting position to be used in the search of the buffer.
127 @return ETrue if loaded, EFalse otherwise.
130 const TInt length = iData.Length();
131 TInt ofs = 0, count = 0;
134 if((count >= aStartingFrom) && (aUid == TUid::Uid(IntAt(ofs))))
136 // found it? return it
137 const TInt len = IntAt(ofs+KSizeOfTInt);
140 TPtr8 msg(reinterpret_cast<TUint8*>(aMsg),aMsgSize);
141 msg = iData.Mid(ofs+(KSizeOfTInt*2),len);
144 else // message was not the expected size!
150 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
155 TInt TWsGraphicMsgBufParser::IntAt(TInt aOfs) const
156 /** @internalComponent @released */
158 if((aOfs < 0) || ((aOfs+KSizeOfTInt) > iData.Length()))
163 memcpy(&ret,iData.Ptr()+aOfs,KSizeOfTInt);
167 // TWsGraphicMsgAnimation \\\\\\\\\\\\\\\\\\\\\\\\
169 EXPORT_C TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(): iFlags(EStopped)
173 EXPORT_C TInt TWsGraphicMsgAnimation::Load(const TWsGraphicMsgBufParser& aData)
175 const TInt index = aData.Find(TUid::Uid(TWsGraphicAnimation::ETypeId));
178 return Load(aData,index);
183 EXPORT_C TInt TWsGraphicMsgAnimation::Load(const TWsGraphicMsgBufParser& aData,TInt aIndex)
185 if(aData.Uid(aIndex).iUid != TWsGraphicAnimation::ETypeId)
189 const TPtrC8 pckg = aData.Data(aIndex);
190 if(pckg.Size() != sizeof(TWsGraphicMsgAnimation))
194 memcpy(this,pckg.Ptr(),sizeof(TWsGraphicMsgAnimation));
198 EXPORT_C TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const
200 // an animation to time?
201 if(aAnimationLength <= 0LL)
205 switch(iFlags & EStateMask)
208 return ((iPauseOrStopping.Int64() - iPlay.Int64()) % aAnimationLength.Int64());
211 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
212 if(elapsed <= aAnimationLength.Int64())
214 return (elapsed % aAnimationLength.Int64());
222 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
223 if((iFlags & ELoop) || (elapsed <= aAnimationLength.Int64()))
225 return (elapsed % aAnimationLength.Int64());
234 EXPORT_C TBool TWsGraphicMsgAnimation::IsPlaying(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const
236 // an animation to time?
237 if(aAnimationLength <= 0LL)
241 switch(iFlags & EStateMask)
247 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
248 if(elapsed <= aAnimationLength.Int64())
258 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
259 if((iFlags & ELoop) || (elapsed <= aAnimationLength.Int64()))