aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/Texture.cpp
blob: cd06439de6ee25e18960df9f149c2e9863ef7056 (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
29
30
#include "../util/dbg.h"
#include "../facade/SDLContext.h"
#include "../manager/Mediator.h"
#include "../types.h"
#include "../Resource.h"

#include "Texture.h"

using namespace crepe;
using namespace std;

Texture::Texture(const Asset & src, Mediator & mediator) : Resource(src, mediator) {
	dbg_trace();
	SDLContext & ctx = mediator.sdl_context;
	this->texture = ctx.texture_from_path(src.get_path());
	this->size = ctx.get_size(*this);
	this->aspect_ratio = static_cast<float>(this->size.x) / this->size.y;
}

Texture::~Texture() {
	dbg_trace();
	this->texture.reset();
}

const ivec2 & Texture::get_size() const noexcept { return this->size; }

const float & Texture::get_ratio() const noexcept { return this->aspect_ratio; }

SDL_Texture * Texture::get_img() const noexcept { return this->texture.get(); }