polybar-dwm/src/drawtypes/animation.cpp

64 lines
1.5 KiB
C++
Raw Normal View History

2016-11-02 19:22:45 +00:00
#include "drawtypes/animation.hpp"
2016-11-02 19:22:45 +00:00
#include "drawtypes/label.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-02 19:22:45 +00:00
namespace drawtypes {
void animation::add(label_t&& frame) {
2016-11-02 19:22:45 +00:00
m_frames.emplace_back(forward<decltype(frame)>(frame));
m_framecount = m_frames.size();
2019-03-09 05:14:39 +00:00
m_frame = m_framecount - 1;
2016-11-02 19:22:45 +00:00
}
2019-03-09 05:14:39 +00:00
label_t animation::get() const {
2016-11-02 19:22:45 +00:00
return m_frames[m_frame];
}
2019-03-09 05:14:39 +00:00
unsigned int animation::framerate() const {
2016-11-02 19:22:45 +00:00
return m_framerate_ms;
}
2019-03-09 05:14:39 +00:00
animation::operator bool() const {
2016-11-02 19:22:45 +00:00
return !m_frames.empty();
}
2019-03-09 05:14:39 +00:00
void animation::increment() {
auto tmp = m_frame.load();
++tmp;
tmp %= m_framecount;
2016-11-02 19:22:45 +00:00
2019-03-09 05:14:39 +00:00
m_frame = tmp;
2016-11-02 19:22:45 +00:00
}
/**
* Create an animation by loading values
* from the configuration
*/
2016-11-25 12:55:15 +00:00
animation_t load_animation(const config& conf, const string& section, string name, bool required) {
vector<label_t> vec;
2016-11-02 19:22:45 +00:00
vector<string> frames;
name = string_util::ltrim(string_util::rtrim(move(name), '>'), '<');
2016-11-02 19:22:45 +00:00
auto anim_defaults = load_optional_label(conf, section, name);
2016-11-25 12:55:15 +00:00
if (required) {
frames = conf.get_list(section, name);
2016-11-25 12:55:15 +00:00
} else {
frames = conf.get_list(section, name, {});
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
for (size_t i = 0; i < frames.size(); i++) {
vec.emplace_back(forward<label_t>(load_optional_label(conf, section, name + "-" + to_string(i), frames[i])));
vec.back()->copy_undefined(anim_defaults);
}
2016-11-02 19:22:45 +00:00
auto framerate = conf.get(section, name + "-framerate", 1000);
2016-11-02 19:22:45 +00:00
return std::make_shared<animation>(move(vec), framerate);
2016-11-02 19:22:45 +00:00
}
2019-03-09 05:14:39 +00:00
} // namespace drawtypes
2016-11-02 19:22:45 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END