-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPieceTexture.cpp
53 lines (42 loc) · 1.34 KB
/
PieceTexture.cpp
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
#include "PieceTexture.h"
#include "Variables.h"
#include <SDL.h>
#include <SDL_image.h>
#include <iostream>
void PieceTexture::Render(int x,int y,SDL_Rect* rect){
//std :: cout << x << " " << y << std :: endl;
SDL_Rect auxRect;
auxRect.x = x;
auxRect.y = y;
auxRect.w = rect -> w;
auxRect.h = rect -> h;
//std :: cout << auxRect.w << " " << auxRect.h << std :: endl;
SDL_RenderCopy(renderer,m_texture,rect,&auxRect);
}
bool PieceTexture::LoadMedia(const char* src){
int flag = IMG_INIT_JPG;
if(!(IMG_Init(flag) & flag)){
std :: cout << "IMG nu a fost initializat:" << SDL_GetError();
return false;
}
else{
SDL_Surface* surface = IMG_Load(src);
if(surface == NULL){
std :: cout << "Suprafata nu a fost incarcata:" << SDL_GetError();
return false;
}
else{
m_texture = SDL_CreateTextureFromSurface(renderer,surface);
if(m_texture == NULL){
std :: cout << "Textura neinitializata:" << SDL_GetError();
return false;
}
else{
m_pieceWidth = surface -> w / 6;
m_pieceHeight = surface -> h / 2;
SDL_FreeSurface(surface);
}
}
}
return true;
}