You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
352 lines
10 KiB
352 lines
10 KiB
/*==LICENSE==* |
|
|
|
CyanWorlds.com Engine - MMOG client, server and tools |
|
Copyright (C) 2011 Cyan Worlds, Inc. |
|
|
|
This program is free software: you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation, either version 3 of the License, or |
|
(at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
Additional permissions under GNU GPL version 3 section 7 |
|
|
|
If you modify this Program, or any covered work, by linking or |
|
combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK, |
|
NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent |
|
JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK |
|
(or a modified version of those libraries), |
|
containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA, |
|
PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG |
|
JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the |
|
licensors of this Program grant you additional |
|
permission to convey the resulting work. Corresponding Source for a |
|
non-source form of such a combination shall include the source code for |
|
the parts of OpenSSL and IJG JPEG Library used as well as that of the covered |
|
work. |
|
|
|
You can contact Cyan Worlds, Inc. by email legal@cyan.com |
|
or by snail mail at: |
|
Cyan Worlds, Inc. |
|
14617 N Newport Hwy |
|
Mead, WA 99021 |
|
|
|
*==LICENSE==*/ |
|
////////////////////////////////////////////////////////////////////////////// |
|
// // |
|
// plDynamicTextMsg // |
|
// Message wrapper for commands to plDynamicTextMap. // |
|
// // |
|
////////////////////////////////////////////////////////////////////////////// |
|
|
|
#include "HeadSpin.h" |
|
#include "hsBitVector.h" |
|
#include "hsResMgr.h" |
|
#pragma hdrstop |
|
|
|
#include "plDynamicTextMsg.h" |
|
|
|
void plDynamicTextMsg::SetTextColor( hsColorRGBA &c, bool blockRGB ) |
|
{ |
|
hsAssert( ( fCmd & kColorCmds ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~kColorCmds; |
|
fCmd |= kSetTextColor; |
|
fColor = c; |
|
fBlockRGB = blockRGB; |
|
} |
|
|
|
void plDynamicTextMsg::SetFont( const char *face, int16_t size, bool isBold ) |
|
{ |
|
hsAssert( ( fCmd & ( kPosCmds | kStringCmds | kFlagCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kPosCmds | kStringCmds | kFlagCmds ); |
|
fCmd |= kSetFont; |
|
fString = face; |
|
fX = size; |
|
fFlags = (uint32_t)isBold; |
|
} |
|
|
|
void plDynamicTextMsg::SetLineSpacing( int16_t spacing ) |
|
{ |
|
fCmd |= kSetLineSpacing; |
|
fLineSpacing = spacing; |
|
} |
|
|
|
void plDynamicTextMsg::SetJustify( uint8_t justifyFlags ) |
|
{ |
|
hsAssert( ( fCmd & ( kFlagCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kFlagCmds ); |
|
fCmd |= kSetJustify; |
|
fFlags = (uint32_t)justifyFlags; |
|
} |
|
|
|
void plDynamicTextMsg::FillRect( uint16_t left, uint16_t top, uint16_t right, uint16_t bottom, hsColorRGBA &c ) |
|
{ |
|
hsAssert( ( fCmd & ( kRectCmds | kColorCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kRectCmds | kColorCmds ); |
|
fCmd |= kFillRect; |
|
|
|
fLeft = left; |
|
fTop = top; |
|
fRight = right; |
|
fBottom = bottom; |
|
fColor = c; |
|
} |
|
|
|
void plDynamicTextMsg::FrameRect( uint16_t left, uint16_t top, uint16_t right, uint16_t bottom, hsColorRGBA &c ) |
|
{ |
|
hsAssert( ( fCmd & ( kRectCmds | kColorCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kRectCmds | kColorCmds ); |
|
fCmd |= kFrameRect; |
|
|
|
fLeft = left; |
|
fTop = top; |
|
fRight = right; |
|
fBottom = bottom; |
|
fColor = c; |
|
} |
|
|
|
void plDynamicTextMsg::DrawString( int16_t x, int16_t y, const plString& text ) |
|
{ |
|
hsAssert( ( fCmd & ( kStringCmds | kPosCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kStringCmds | kPosCmds ); |
|
fCmd |= kDrawString; |
|
|
|
fString = text; |
|
fX = x; |
|
fY = y; |
|
} |
|
|
|
void plDynamicTextMsg::DrawClippedString( int16_t x, int16_t y, uint16_t clipLeft, uint16_t clipTop, uint16_t clipRight, uint16_t clipBottom, const plString& text ) |
|
{ |
|
hsAssert( ( fCmd & ( kStringCmds | kPosCmds | kRectCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kStringCmds | kPosCmds | kRectCmds ); |
|
fCmd |= kDrawClippedString; |
|
|
|
fString = text; |
|
fX = x; |
|
fY = y; |
|
|
|
fLeft = clipLeft; |
|
fTop = clipTop; |
|
fRight = clipRight; |
|
fBottom = clipBottom; |
|
} |
|
|
|
void plDynamicTextMsg::DrawWrappedString( int16_t x, int16_t y, uint16_t wrapWidth, uint16_t wrapHeight, const plString& text ) |
|
{ |
|
hsAssert( ( fCmd & ( kStringCmds | kPosCmds | kRectCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kStringCmds | kPosCmds | kRectCmds ); |
|
fCmd |= kDrawWrappedString; |
|
|
|
fString = text; |
|
fX = x; |
|
fY = y; |
|
|
|
fRight = wrapWidth; |
|
fBottom = wrapHeight; |
|
} |
|
|
|
void plDynamicTextMsg::DrawImage( int16_t x, int16_t y, plKey &image, bool respectAlpha ) |
|
{ |
|
hsAssert( ( fCmd & ( kPosCmds | kFlagCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kPosCmds | kFlagCmds ); |
|
fCmd |= kDrawImage; |
|
|
|
fImageKey = image; |
|
fX = x; |
|
fY = y; |
|
fFlags = (uint32_t)respectAlpha; |
|
} |
|
|
|
void plDynamicTextMsg::DrawClippedImage( int16_t x, int16_t y, plKey &image, uint16_t clipX, uint16_t clipY, uint16_t clipWidth, uint16_t clipHeight, bool respectAlpha ) |
|
{ |
|
hsAssert( ( fCmd & ( kPosCmds | kFlagCmds | kRectCmds ) ) == 0, "Attempting to issue conflicting drawText commands" ); |
|
fCmd &= ~( kPosCmds | kFlagCmds | kRectCmds ); |
|
fCmd |= kDrawClippedImage; |
|
|
|
fImageKey = image; |
|
fX = x; |
|
fY = y; |
|
fLeft = clipX; |
|
fTop = clipY; |
|
fRight = clipWidth; |
|
fBottom = clipHeight; |
|
fFlags = (uint32_t)respectAlpha; |
|
} |
|
|
|
void plDynamicTextMsg::Read( hsStream *s, hsResMgr *mgr ) |
|
{ |
|
plMessage::IMsgRead( s, mgr ); |
|
|
|
s->ReadLE( &fCmd ); |
|
s->ReadLE( &fX ); |
|
s->ReadLE( &fY ); |
|
|
|
s->ReadLE( &fLeft ); |
|
s->ReadLE( &fTop ); |
|
s->ReadLE( &fRight ); |
|
s->ReadLE( &fBottom ); |
|
|
|
fClearColor.Read( s ); |
|
fColor.Read( s ); |
|
|
|
fString = s->ReadSafeWString(); |
|
fImageKey = mgr->ReadKey( s ); |
|
|
|
s->ReadLE( &fFlags ); |
|
|
|
fBlockRGB = s->ReadBOOL(); |
|
s->ReadLE( &fLineSpacing ); |
|
} |
|
void plDynamicTextMsg::Write( hsStream *s, hsResMgr *mgr ) |
|
{ |
|
plMessage::IMsgWrite( s, mgr ); |
|
|
|
#ifdef HS_DEBUGGING |
|
if (fCmd & (kDrawImage | kDrawClippedImage)) |
|
{ |
|
hsAssert(fImageKey != nil, "plDynamicTextMsg::Write: Must set imageKey for draw operation"); |
|
} |
|
#endif |
|
|
|
s->WriteLE( fCmd ); |
|
s->WriteLE( fX ); |
|
s->WriteLE( fY ); |
|
|
|
s->WriteLE( fLeft ); |
|
s->WriteLE( fTop ); |
|
s->WriteLE( fRight ); |
|
s->WriteLE( fBottom ); |
|
|
|
fClearColor.Write( s ); |
|
fColor.Write( s ); |
|
|
|
s->WriteSafeWString(fString); |
|
|
|
mgr->WriteKey( s, fImageKey ); |
|
|
|
s->WriteLE( fFlags ); |
|
|
|
s->WriteBOOL(fBlockRGB); |
|
s->WriteLE( fLineSpacing ); |
|
} |
|
|
|
enum DynamicTextMsgFlags |
|
{ |
|
kDynTextMsgCmd, |
|
kDynTextMsgX, |
|
kDynTextMsgY, |
|
kDynTextMsgLeft, |
|
kDynTextMsgTop, |
|
kDynTextMsgRight, |
|
kDynTextMsgBottom, |
|
kDynTextMsgClearColor, |
|
kDynTextMsgColor, |
|
kDynTextMsgString, |
|
kDynTextMsgImageKey, |
|
kDynTextMsgFlags, |
|
kDynTextMsgBlockRGB, |
|
kDynTextMsgLineSpacing, |
|
}; |
|
|
|
void plDynamicTextMsg::ReadVersion(hsStream* s, hsResMgr* mgr) |
|
{ |
|
plMessage::IMsgReadVersion(s, mgr); |
|
|
|
hsBitVector contentFlags; |
|
contentFlags.Read(s); |
|
|
|
if (contentFlags.IsBitSet(kDynTextMsgCmd)) |
|
s->ReadLE( &fCmd ); |
|
if (contentFlags.IsBitSet(kDynTextMsgX)) |
|
s->ReadLE( &fX ); |
|
if (contentFlags.IsBitSet(kDynTextMsgY)) |
|
s->ReadLE( &fY ); |
|
if (contentFlags.IsBitSet(kDynTextMsgLeft)) |
|
s->ReadLE( &fLeft ); |
|
if (contentFlags.IsBitSet(kDynTextMsgTop)) |
|
s->ReadLE( &fTop ); |
|
if (contentFlags.IsBitSet(kDynTextMsgRight)) |
|
s->ReadLE( &fRight ); |
|
if (contentFlags.IsBitSet(kDynTextMsgBottom)) |
|
s->ReadLE( &fBottom ); |
|
if (contentFlags.IsBitSet(kDynTextMsgClearColor)) |
|
fClearColor.Read( s ); |
|
if (contentFlags.IsBitSet(kDynTextMsgColor)) |
|
fColor.Read( s ); |
|
if (contentFlags.IsBitSet(kDynTextMsgString)) |
|
fString = s->ReadSafeWString(); |
|
if (contentFlags.IsBitSet(kDynTextMsgImageKey)) |
|
fImageKey = mgr->ReadKey( s ); |
|
if (contentFlags.IsBitSet(kDynTextMsgFlags)) |
|
s->ReadLE( &fFlags ); |
|
if (contentFlags.IsBitSet(kDynTextMsgBlockRGB)) |
|
fBlockRGB = s->ReadBOOL(); |
|
if (contentFlags.IsBitSet(kDynTextMsgLineSpacing)) |
|
s->ReadLE( &fLineSpacing ); |
|
} |
|
|
|
void plDynamicTextMsg::WriteVersion(hsStream* s, hsResMgr* mgr) |
|
{ |
|
plMessage::IMsgWriteVersion(s, mgr); |
|
|
|
hsBitVector contentFlags; |
|
contentFlags.SetBit(kDynTextMsgCmd); |
|
contentFlags.SetBit(kDynTextMsgX); |
|
contentFlags.SetBit(kDynTextMsgY); |
|
contentFlags.SetBit(kDynTextMsgLeft); |
|
contentFlags.SetBit(kDynTextMsgTop); |
|
contentFlags.SetBit(kDynTextMsgRight); |
|
contentFlags.SetBit(kDynTextMsgBottom); |
|
contentFlags.SetBit(kDynTextMsgClearColor); |
|
contentFlags.SetBit(kDynTextMsgColor); |
|
contentFlags.SetBit(kDynTextMsgString); |
|
contentFlags.SetBit(kDynTextMsgImageKey); |
|
contentFlags.SetBit(kDynTextMsgFlags); |
|
contentFlags.SetBit(kDynTextMsgBlockRGB); |
|
contentFlags.SetBit(kDynTextMsgLineSpacing); |
|
contentFlags.Write(s); |
|
|
|
// kDynTextMsgCmd |
|
s->WriteLE( fCmd ); |
|
// kDynTextMsgX |
|
s->WriteLE( fX ); |
|
// kDynTextMsgY |
|
s->WriteLE( fY ); |
|
|
|
// kDynTextMsgLeft |
|
s->WriteLE( fLeft ); |
|
// kDynTextMsgTop |
|
s->WriteLE( fTop ); |
|
// kDynTextMsgRight |
|
s->WriteLE( fRight ); |
|
// kDynTextMsgBottom |
|
s->WriteLE( fBottom ); |
|
|
|
// kDynTextMsgClearColor |
|
fClearColor.Write( s ); |
|
// kDynTextMsgColor |
|
fColor.Write( s ); |
|
|
|
// kDynTextMsgString |
|
s->WriteSafeWString( fString ); |
|
// kDynTextMsgImageKey |
|
mgr->WriteKey( s, fImageKey ); |
|
|
|
// kDynTextMsgFlags |
|
s->WriteLE( fFlags ); |
|
|
|
// kDynTextMsgBlockRGB |
|
s->WriteBOOL( fBlockRGB ); |
|
// kDynTextMsgLineSpacing |
|
s->WriteLE( fLineSpacing ); |
|
|
|
} |
|
|
|
|