forked from scarsty/kys-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHead.cpp
More file actions
187 lines (180 loc) · 6.64 KB
/
Head.cpp
File metadata and controls
187 lines (180 loc) · 6.64 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#include "Head.h"
#include "Font.h"
#include "GameUtil.h"
#include "Save.h"
#include "TextureManager.h"
Head::Head(Role* r)
{
role_ = r;
setTextPosition(20, 65);
setFontSize(20);
setTextColor({ 255, 255, 255, 255 });
setHaveBox(false);
}
Head::~Head()
{
}
void Head::setRole(Role* r)
{
role_ = r;
if (r)
{
HP_ = r->HP;
MP_ = r->MP;
PhysicalPower_ = r->PhysicalPower;
}
else
{
HP_ = 0;
MP_ = 0;
PhysicalPower_ = 0;
}
}
void Head::backRun()
{
}
void Head::draw()
{
w_ = 250;
h_ = 90;
if (role_ == nullptr) { return; }
Color color = { 255, 255, 255, 255 }, white = { 255, 255, 255, 255 };
auto font = Font::getInstance();
if (state_ == NodeNormal)
{
color = { 128, 128, 128, 255 };
}
if (always_light_)
{
color = { 255, 255, 255, 255 };
}
if (style_ == 0)
{
TextureManager::getInstance()->renderTexture("title", 102, x_, y_, color);
}
if (role_->HP <= 0)
{
color.r /= 4;
color.g /= 4;
color.b /= 4;
}
//中毒时突出绿色
color.r -= 2 * role_->Poison;
color.b -= 2 * role_->Poison;
//下面都是画血条等
if (style_ == 0)
{
uint8_t alpha_text = 255;
uint8_t alpha_ribbon = 192;
if (state_ == NodeNormal && !always_light_)
{
alpha_text = 128;
alpha_ribbon = 96;
}
TextureManager::getInstance()->renderTexture("head", role_->HeadID, x_ + 10, y_, color, 255, 0.5, 0.5);
TextBox::draw();
font->draw(role_->Name, 16, x_ + 117, y_ + 9, white, alpha_text);
Rect r1 = { 0, 0, 0, 0 };
font->draw(std::format("{}", role_->Level), 16, x_ + 99 - 4 * GameUtil::digit(role_->Level), y_ + 5, { 250, 200, 50, 255 }, alpha_text);
Color c, c_text;
if (role_->MaxHP > 0)
{
r1 = { x_ + 96, y_ + 32, 138 * role_->HP / role_->MaxHP, 9 };
}
else
{
r1 = { 0, 0, 0, 0 };
}
c = { 196, 25, 16, 255 };
Engine::getInstance()->renderSquareTexture(&r1, c, alpha_ribbon);
font->draw(std::format("{:3}/{:3}", role_->HP, role_->MaxHP), 16, x_ + 138, y_ + 28, { 250, 200, 50, 255 }, alpha_text);
if (role_->MaxMP > 0)
{
r1 = { x_ + 96, y_ + 48, 138 * role_->MP / role_->MaxMP, 9 };
}
else
{
r1 = { 0, 0, 0, 0 };
}
c = { 200, 200, 200, 255 };
c_text = white;
if (role_->MPType == 0)
{
c = { 112, 12, 112, 255 };
c_text = { 240, 150, 240, 255 };
}
else if (role_->MPType == 1)
{
c = { 224, 180, 32, 255 };
c_text = { 250, 200, 50, 255 };
}
Engine::getInstance()->renderSquareTexture(&r1, c, alpha_ribbon);
font->draw(std::format("{:3}/{:3}", role_->MP, role_->MaxMP), 16, x_ + 138, y_ + 44, c_text, alpha_text);
r1 = { x_ + 115, y_ + 65, 83 * role_->PhysicalPower / 100, 9 };
c = { 128, 128, 255, 255 };
Engine::getInstance()->renderSquareTexture(&r1, c, alpha_ribbon);
font->draw(std::format("{}", role_->PhysicalPower), 16, x_ + 154 - 4 * GameUtil::digit(role_->PhysicalPower), y_ + 61, { 250, 200, 50, 255 }, alpha_text);
}
else if (style_ == 1)
{
//boss的血条,黑帝斯专用
//TextureManager::getInstance()->renderTexture("head", role_->HeadID, x_ - 10, y_ - 10, { 255, 255, 255, 255 }, 255, 0.15, 0.15);
Rect r1 = { x_ + 0, y_ + 0, width_, 11 }, r2;
Color c, c_text;
Engine::getInstance()->fillColor({ 0, 0, 0, 168 }, r1.x, r1.y, r1.w, r1.h);
int w = (width_ - 2) * role_->HP / role_->MaxHP;
if (role_->MaxHP > 0)
{
r2 = { x_ + 1 + w, y_ + 1, (width_ - 2) * (HP_ - role_->HP) / role_->MaxHP, 9 };
r1 = { x_ + 1, y_ + 1, w, 9 };
}
c = { 0xff, 0xb7, 0x4d, 255 };
Engine::getInstance()->renderSquareTexture(&r2, c, 144);
c = { 196, 25, 16, 255 };
Engine::getInstance()->renderSquareTexture(&r1, c, 192);
font->draw(role_->Name, 20, x_ - 10 - font->getTextDrawSize(role_->Name) * 10, y_ - 4, white);
font->draw(std::format("{}/{}", role_->HP, role_->MaxHP), 16, x_ + width_ + 10, y_ - 2, white);
}
else if (style_ == 2)
{
//boss和自己的血条,sekiro模式专用
//TextureManager::getInstance()->renderTexture("head", role_->HeadID, x_ - 10, y_ - 10, { 255, 255, 255, 255 }, 255, 0.15, 0.15);
width_ = 350.0 / 999 * role_->MaxHP;
Rect r1 = { x_ + 0, y_ + 25, width_, 11 }, r2;
Color c, c_text;
Engine::getInstance()->fillColor({ 0, 0, 0, 168 }, r1.x, r1.y, r1.w, r1.h);
int w = (width_ - 2) * role_->HP / role_->MaxHP;
if (role_->MaxHP > 0)
{
r2 = { x_ + 1 + w, y_ + 26, (width_ - 2) * (HP_ - role_->HP) / role_->MaxHP, 9 };
r1 = { x_ + 1, y_ + 26, w, 9 };
}
c = { 0xff, 0xb7, 0x4d, 255 };
Engine::getInstance()->renderSquareTexture(&r2, c, 144);
c = { 196, 25, 16, 255 };
Engine::getInstance()->renderSquareTexture(&r1, c, 192);
font->draw(role_->Name, 20, x_ + 10, y_, white);
auto m = Save::getInstance()->getMagic(role_->EquipMagic[0]);
if (m)
{
font->draw(m->Name, 15, x_ + Font::getTextDrawSize(role_->Name) * 10 + 30, y_ + 5, white);
}
font->draw(std::format("{}/{}", role_->HP, role_->MaxHP), 12, x_ + width_ + 10, y_ + 25, white);
int length = std::max(0.0, role_->Posture * 5);
int w_tex = TextureManager::getInstance()->getTexture("title", 203)->w;
int h_tex = TextureManager::getInstance()->getTexture("title", 203)->h;
double zoomb_x = 1.0 * 450 / w_tex;
double zoomb_y = 3.0 * 450 / w_tex;
TextureManager::getInstance()->renderTexture("title", 203, Engine::getInstance()->getUIWidth() / 2 - 450 / 2 + 20, y_ - 10, { 255, 128, 128, 255 }, 255, zoomb_x, zoomb_y);
double zoom_x = 1.0 * length / w_tex;
double zoom_y = 3.0 * length / w_tex;
TextureManager::getInstance()->renderTexture("title", 203, Engine::getInstance()->getUIWidth() / 2 - length / 2 + 20, y_ - 10 - h_tex * (zoom_y / 2 - zoomb_y / 2), { 255, 255, 255, 255 }, 255, zoom_x, zoom_y);
if (role_->Team == 0 && role_->Auto)
{
font->draw("自動", 15, x_ + 10, y_ + 40, white);
}
}
HP_ = std::max(HP_ - 1 - role_->MaxHP / 1000, role_->HP);
MP_ = std::max(MP_ - 1 - role_->MaxMP / 1000, role_->MP);
PhysicalPower_ = std::max(PhysicalPower_ - 1, role_->PhysicalPower);
}