Otclient  14/8/2020
animatedtext.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef ANIMATEDTEXT_H
24 #define ANIMATEDTEXT_H
25 
26 #include "thing.h"
28 #include <framework/core/timer.h>
30 
31 // @bindclass
32 class AnimatedText : public Thing
33 {
34 public:
35  AnimatedText();
36 
37  void drawText(const Point& dest, const Rect& visibleRect);
38 
39  void setColor(int color);
40  void setText(const std::string& text);
41  void setOffset(const Point& offset) { m_offset = offset; }
42 
43  Color getColor() { return m_color; }
44  const CachedText& getCachedText() const { return m_cachedText; }
45  Point getOffset() { return m_offset; }
46  Timer getTimer() { return m_animationTimer; }
47 
48  bool merge(const AnimatedTextPtr& other);
49 
50  AnimatedTextPtr asAnimatedText() { return static_self_cast<AnimatedText>(); }
51  bool isAnimatedText() { return true; }
52 
53 protected:
54  virtual void onAppear();
55 
56 private:
57  Color m_color;
58  Timer m_animationTimer;
59  CachedText m_cachedText;
60  Point m_offset;
61 };
62 
63 #endif
AnimatedText::AnimatedText
AnimatedText()
Definition: animatedtext.cpp:30
AnimatedText::getCachedText
const CachedText & getCachedText() const
Definition: animatedtext.h:44
Color
Definition: color.h:32
AnimatedText::merge
bool merge(const AnimatedTextPtr &other)
Definition: animatedtext.cpp:87
AnimatedText::isAnimatedText
bool isAnimatedText()
Definition: animatedtext.h:51
AnimatedText::setOffset
void setOffset(const Point &offset)
Definition: animatedtext.h:41
AnimatedText::setText
void setText(const std::string &text)
Definition: animatedtext.cpp:82
TRect< int >
CachedText
Definition: cachedtext.h:29
cachedtext.h
AnimatedText::getOffset
Point getOffset()
Definition: animatedtext.h:45
Thing
Definition: thing.h:33
AnimatedText::getColor
Color getColor()
Definition: animatedtext.h:43
AnimatedText::getTimer
Timer getTimer()
Definition: animatedtext.h:46
AnimatedText::onAppear
virtual void onAppear()
Definition: animatedtext.cpp:68
timer.h
AnimatedText::setColor
void setColor(int color)
Definition: animatedtext.cpp:77
fontmanager.h
stdext::shared_object_ptr
Definition: shared_object.h:39
AnimatedText
Definition: animatedtext.h:32
Timer
Definition: timer.h:28
thing.h
TPoint< int >
AnimatedText::asAnimatedText
AnimatedTextPtr asAnimatedText()
Definition: animatedtext.h:50
AnimatedText::drawText
void drawText(const Point &dest, const Rect &visibleRect)
Definition: animatedtext.cpp:36