summaryrefslogtreecommitdiff
path: root/src/gui/guiAnimatedImage.h
blob: f8e6a506e800b5044c88b4da045ea3c55c30afd7 (plain)
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
#pragma once

#include "irrlichttypes_extrabloated.h"
#include <string>

class ISimpleTextureSource;

class GUIAnimatedImage : public gui::IGUIElement {
public:
	GUIAnimatedImage(gui::IGUIEnvironment *env, gui::IGUIElement *parent,
		s32 id, const core::rect<s32> &rectangle, const std::string &texture_name,
		s32 frame_count, s32 frame_duration, ISimpleTextureSource *tsrc);

	virtual void draw() override;

	void setFrameIndex(s32 frame);
	s32 getFrameIndex() const { return m_frame_idx; };

private:
	ISimpleTextureSource *m_tsrc;

	video::ITexture *m_texture = nullptr;
	u64 m_global_time = 0;
	s32 m_frame_idx = 0;
	s32 m_frame_count = 1;
	u64 m_frame_duration = 1;
	u64 m_frame_time = 0;
};