-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTable.cpp
126 lines (99 loc) · 3.09 KB
/
Table.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#include "Table.h"
#include "Variables.h"
#include <SDL_image.h>
#include <SDL.h>
#include <SDL_ttf.h>
#include <iostream>
Table::Table(){}
Table::Table(int x){
m_width = 0;
m_height = 0;
m_cellWidth = 0;
m_cellHeight = 0;
m_colNumber = x;
m_rowNumber = x;
}
Table::~Table(){
SDL_DestroyTexture(m_tableTexture);
}
void Table::Render(int x,int y,SDL_Rect* rect){
SDL_Rect auxRect;
auxRect.x = x;
auxRect.y = y;
auxRect.w = rect -> w;
auxRect.h = rect -> h;
SDL_RenderCopy(renderer,m_tableTexture,rect,&auxRect);
}
bool Table::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_tableTexture = SDL_CreateTextureFromSurface(renderer,surface);
if(m_tableTexture == NULL){
std :: cout << "Textura neinitializata:" << SDL_GetError();
return false;
}
else{
m_width = surface -> w;
m_height = surface -> h;
m_cellWidth = m_width / m_colNumber;
m_cellHeight = (m_height - 30) / m_rowNumber;
SDL_FreeSurface(surface);
}
}
}
return true;
}
bool Table::Init(){
if((SDL_Init(SDL_INIT_VIDEO) || SDL_Init(SDL_INIT_EVENTS) || SDL_Init(SDL_INIT_AUDIO))){
std :: cout << "SDL Video sau SDL Audio sau SDL Event neinitializat:" << SDL_GetError();
return false;
}
else
window = SDL_CreateWindow("Chess Game",SDL_WINDOWPOS_CENTERED,SDL_WINDOWPOS_CENTERED,
SCREEN_WIDTH,SCREEN_HEIGHT,SDL_WINDOW_SHOWN);
if(window == NULL){
std :: cout << "Fereastra nu a fost initializata:" << SDL_GetError();
return false;
}
if(!SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY,"1")){
std :: cout << "Linear texture neinitializat:" << SDL_GetError();
return false;
}
else
renderer = SDL_CreateRenderer(window,-1,SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
if(renderer == NULL){
std :: cout << "Rendererul nu a fost initializat:" << SDL_GetError();
return false;
}
else
SDL_SetRenderDrawColor(renderer,0,0,0xFF,0xFF);
int flag = IMG_INIT_JPG;
if(!(IMG_Init(flag) & flag)){
std :: cout << "IMG nu a fost initializat:" << SDL_GetError();
return false;
}
if(TTF_Init()){
std :: cout << "TTF nu a fost initializat:" << SDL_GetError();
return 0;
}
return true;
}
void Table::Close(){
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(window);
renderer = NULL;
window = NULL;
SDL_Quit();
IMG_Quit();
TTF_Quit();
}