First public contribution.
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 //so sue us; fixing a very nasty-to-track-down unsigned/signed conversion defect in code below
20 #define KSizeOfTInt (TInt)sizeof(TInt)
22 // TWsGraphicMsgBufParser \\\\\\\\\\\\\\\\\\\\\\\\
24 EXPORT_C TWsGraphicMsgBufParser::TWsGraphicMsgBufParser(const TDesC8& aData): iData(aData)
25 /** Initialise a parser for the specified message buffer */
29 EXPORT_C TInt TWsGraphicMsgBufParser::Verify() const
30 /** Verifies that the message buffer is properly formed
31 @return KErrNone if buffer is ok, else a system-wide error code */
33 const TInt length = iData.Length();
35 const TInt tmp = (length - sizeof(TInt));
38 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
47 EXPORT_C TInt TWsGraphicMsgBufParser::Count() const
48 /** Returns the number of elements in the buffer.
49 @return the count of elements.
52 const TInt length = iData.Length();
53 TInt ofs = 0, count = 0;
57 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
62 EXPORT_C TUid TWsGraphicMsgBufParser::Uid(TInt aIndex) const
63 /** Returns the UID if the message, or null UID if the buffer is empty.
64 @return KNullUid if the buffer is empty, otherwise the stored Uid
67 const TInt length = iData.Length();
68 TInt ofs = 0, count = 0;
73 return TUid::Uid(IntAt(ofs));
76 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
81 EXPORT_C TPtrC8 TWsGraphicMsgBufParser::Data(TInt aIndex) const
82 /**Returns the buffer contents at a perticular offset (aIndex).
83 @param aIndex - the index into of the buffer element required.
84 @return KNullDesC8 if index is more than the element count, otherwise, the element at index aIndex.
87 const TInt length = iData.Length();
88 TInt ofs = 0, count = 0;
93 return iData.Mid(ofs+(KSizeOfTInt*2),IntAt(ofs+KSizeOfTInt));
96 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
98 return TPtrC8(KNullDesC8());
101 EXPORT_C TInt TWsGraphicMsgBufParser::Find(TUid aUid,TInt aStartingFrom) const
102 /** Finds the element equal to the aUid, and returns the index of the element in the buffer.
103 @param aUid - the search item to be found in the buffer.
104 @param aStartingFrom - the starting index.
105 @return the position (index) of the found element, or KErrNotFound
108 const TInt length = iData.Length();
109 TInt ofs = 0, count = 0;
112 if((count >= aStartingFrom) && (aUid == TUid::Uid(IntAt(ofs))))
117 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
122 EXPORT_C TBool TWsGraphicMsgBufParser::LoadFixed(TUid aUid,TAny* aMsg,TInt aMsgSize,TInt aStartingFrom) const
123 /** Loads the buffer of aMsg with the contents of the buffer, based on the aUid and aMsgSize.
124 @param aUid - the Uid to match after which the loading is performed.
125 @param aMsg - the pointer to the output buffer.
126 @param aMsgSize - the size of the output buffer.
127 @param aStartingFrom - the starting position to be used in the search of the buffer.
128 @return ETrue if loaded, EFalse otherwise.
131 const TInt length = iData.Length();
132 TInt ofs = 0, count = 0;
135 if((count >= aStartingFrom) && (aUid == TUid::Uid(IntAt(ofs))))
137 // found it? return it
138 const TInt len = IntAt(ofs+KSizeOfTInt);
141 TPtr8 msg(reinterpret_cast<TUint8*>(aMsg),aMsgSize);
142 msg = iData.Mid(ofs+(KSizeOfTInt*2),len);
145 else // message was not the expected size!
151 ofs += IntAt(ofs+KSizeOfTInt) + (KSizeOfTInt*2);
156 TInt TWsGraphicMsgBufParser::IntAt(TInt aOfs) const
157 /** @internalComponent @released */
159 if((aOfs < 0) || ((aOfs+KSizeOfTInt) > iData.Length()))
164 memcpy(&ret,iData.Ptr()+aOfs,KSizeOfTInt);
168 // TWsGraphicMsgAnimation \\\\\\\\\\\\\\\\\\\\\\\\
170 EXPORT_C TWsGraphicMsgAnimation::TWsGraphicMsgAnimation(): iFlags(EStopped)
174 EXPORT_C TInt TWsGraphicMsgAnimation::Load(const TWsGraphicMsgBufParser& aData)
176 const TInt index = aData.Find(TUid::Uid(TWsGraphicAnimation::ETypeId));
179 return Load(aData,index);
184 EXPORT_C TInt TWsGraphicMsgAnimation::Load(const TWsGraphicMsgBufParser& aData,TInt aIndex)
186 if(aData.Uid(aIndex).iUid != TWsGraphicAnimation::ETypeId)
190 const TPtrC8 pckg = aData.Data(aIndex);
191 if(pckg.Size() != sizeof(TWsGraphicMsgAnimation))
195 memcpy(this,pckg.Ptr(),sizeof(TWsGraphicMsgAnimation));
199 EXPORT_C TTimeIntervalMicroSeconds TWsGraphicMsgAnimation::AnimationTime(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const
201 // an animation to time?
202 if(aAnimationLength <= 0LL)
206 switch(iFlags & EStateMask)
209 return ((iPauseOrStopping.Int64() - iPlay.Int64()) % aAnimationLength.Int64());
212 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
213 if(elapsed <= aAnimationLength.Int64())
215 return (elapsed % aAnimationLength.Int64());
223 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
224 if((iFlags & ELoop) || (elapsed <= aAnimationLength.Int64()))
226 return (elapsed % aAnimationLength.Int64());
235 EXPORT_C TBool TWsGraphicMsgAnimation::IsPlaying(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const
237 // an animation to time?
238 if(aAnimationLength <= 0LL)
242 switch(iFlags & EStateMask)
248 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
249 if(elapsed <= aAnimationLength.Int64())
259 const TInt64 elapsed = (aNow.Int64() - iPlay.Int64());
260 if((iFlags & ELoop) || (elapsed <= aAnimationLength.Int64()))