-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTextManager.h
67 lines (58 loc) · 1.8 KB
/
TextManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#pragma once
#include "singletonBase.h"
#define FLOATINGTEXT_MAX 10
class TextManager : public singletonBase<TextManager>
{
private:
struct tagFloatingText {
int x, y;
string str;
int count;
COLORREF color;
COLORREF bgColor;
bool isAppear;
};
struct tagFloatingFieldItem {
string imgKey;
string itemName;
int num;
int count;
};
private:
int _count;
int _timer;
int _size;
bool _isAppearNotify;
int _notifyCount;
int _notifyMaxCount;
POINT _notifyPtPos;
string _notifyMessage;
int _notifySize;
int _notifyInterval;
COLORREF _notifyFontColor;
COLORREF _notifyFontShadow;
void updateFloatingText();
void updateItemText();
void updateNotify();
void renderFloatingText(HDC hdc);
void renderItemText(HDC hdc);
void renderNotify(HDC hdc);
tagFloatingText _floatingTexts[FLOATINGTEXT_MAX];
vector<tagFloatingFieldItem> _vFieldItemText;
public:
void init();
void release();
void update();
void render(HDC hdc);
// str : 출력할 텍스트 (디폴트 Test)
// ptPos : 출력할 위치 (디폴트 10, 10)
// size : 폰트 사이즈 (디폴드 15)
// align = 0 : 왼쪽 정렬, 1 : 가운데 정렬, 2 : 오른쪽 정렬 (디폴트 0)
// color : 폰트 색상 (디폴트 흰색)
// isBoundary : 텍스트 그림자 활성화 (선명도 강조) (디폴트 꺼짐)
// colorBoundary : 그림자 색상 (디폴트 검은색)
void ShowText(HDC hdc, bool isRelative, string str = "Test", POINT ptPos = { 10, 10 }, int size = 15, int align = 0, COLORREF color = RGB(255, 255, 255), bool isBoundary = false, COLORREF colorBoundary = RGB(0, 0, 0), int interval = 3);
void ShowFloatingText(string str, POINT ptPos, COLORREF color = RGB(255, 255, 255), COLORREF bgColor = RGB(0, 0, 0));
void ShowNotifyText(string str, POINT ptPos, int size = 50, COLORREF color = RGB(255, 255, 255), COLORREF bgColor = RGB(0, 0, 0), int interval = 1);
void AppearItemText(string pImgKey);
};