renderd7/source/Toast.cpp

29 lines
903 B
C++
Raw Normal View History

2022-08-04 01:13:26 +02:00
#include <renderd7/Draw.hpp>
2022-11-12 23:19:41 +01:00
#include <renderd7/Toast.hpp>
2022-07-29 13:19:31 +02:00
2022-11-12 23:19:41 +01:00
RenderD7::Toast::Toast(std::string head, std::string msg) {
this->head = head;
this->msg = msg;
2022-07-29 13:19:31 +02:00
}
2022-11-12 23:19:41 +01:00
void RenderD7::Toast::Draw(void) const {
RenderD7::OnScreen(Top);
RenderD7::Draw::Rect(0, msgposy, 400, 70, RenderD7::Color::Hex("#111111"));
RenderD7::Draw::Rect(0, msgposy, 400, 25, RenderD7::Color::Hex("#222222"));
RenderD7::Draw::Text(2, msgposy + 3, 0.7f, RenderD7::Color::Hex("#ffffff"),
head);
RenderD7::Draw::Text(2, msgposy + 30, 0.6f, RenderD7::Color::Hex("#ffffff"),
msg);
2022-07-29 13:19:31 +02:00
}
2022-11-12 23:19:41 +01:00
void RenderD7::Toast::Logic() {
this->delay++ /*=1*(int)RenderD7::GetDeltaTime()*/;
if (msgposy > 170 && delay < 2 * 60)
msgposy-- /*=(int)RenderD7::GetDeltaTime()*/;
if (delay >= 5 * 60) {
msgposy++ /*=(int)RenderD7::GetDeltaTime*/;
if (msgposy > 400)
this->Kill();
}
2022-07-29 13:19:31 +02:00
}