-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphics.cpp
188 lines (136 loc) · 5.13 KB
/
Graphics.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//---------------------------------------------------------------------//
// Graphics.cpp //
// Singleton //
// Handles the initialization of the graphics related SDL libraries //
// and their release //
// Also handles texture and text loading //
// //
// By: Ather Omar //
//---------------------------------------------------------------------//
#include "Graphics.h"
//-------------------------------------------------------------
// QuickSDL
//-------------------------------------------------------------
namespace QuickSDL {
//Initializing to NULL
Graphics* Graphics::sInstance = NULL;
//Initializing to false
bool Graphics::sInitialized = false;
Graphics* Graphics::Instance() {
//Create a new instance if no instance was created before
if(sInstance == NULL)
sInstance = new Graphics();
return sInstance;
}
void Graphics::Release() {
delete sInstance;
sInstance = NULL;
sInitialized = false;
}
bool Graphics::Initialized() {
return sInitialized;
}
Graphics::Graphics() {
sInitialized = Init();
}
Graphics::~Graphics() {
SDL_DestroyWindow(mWindow);
mWindow = NULL;
SDL_DestroyRenderer(mRenderer);
mRenderer = NULL;
//Closing all open SDL graphic libraries
TTF_Quit();
IMG_Quit();
SDL_Quit();
}
bool Graphics::Init() {
//Initialize SDL Video and Audio and handling initialization errors
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) {
printf("SDL Initialization Error: %s\n", SDL_GetError());
return false;
}
//Creating the window
mWindow = SDL_CreateWindow(WINDOW_TITLE, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
//Handling with window creation errors
if(mWindow == NULL) {
printf("Window Creation Error: %s\n", SDL_GetError());
return false;
}
//Creating the renderer
mRenderer = SDL_CreateRenderer(mWindow, -1, SDL_RENDERER_ACCELERATED);
//Handling with the renderer creation errors
if(mRenderer == NULL) {
printf("Renderer Creation Error: %s\n", SDL_GetError());
return false;
}
//Setting the renderer's clear color to white
SDL_SetRenderDrawColor(mRenderer, 0x00, 0x00, 0x00, 0xFF);
//Initializing the SDL_image library and handling initialization errors
int flags = IMG_INIT_PNG;
if(!(IMG_Init(flags) & flags)) {
printf("IMG Initialization Error: %s\n", IMG_GetError());
return false;
}
//Initializing the SDL_ttf library and handling initialization errors
if(TTF_Init() == -1) {
printf("TTF Initialization Error: %s\n", TTF_GetError());
return false;
}
//return true if no errors occurred during initialization
return true;
}
SDL_Texture* Graphics::LoadTexture(std::string path) {
SDL_Texture* tex = NULL;
//load the image onto a surface
SDL_Surface* surface = IMG_Load(path.c_str());
//Handling image loading errors
if(surface == NULL) {
printf("Image Load Error: Path(%s) - Error(%s)\n", path.c_str(), IMG_GetError());
return tex;
}
//Converting the surface into a texture to be able to render it using the renderer
tex = SDL_CreateTextureFromSurface(mRenderer, surface);
//Handling texture creation errors
if(tex == NULL) {
printf("Create Texture Error: %s\n", SDL_GetError());
return tex;
}
//free the surface since only the texture is needed
SDL_FreeSurface(surface);
return tex;
}
SDL_Texture* Graphics::CreateTextTexture(TTF_Font* font, std::string text, SDL_Color color) {
//Render the text onto a surface using the provided font and color
SDL_Surface* surface = TTF_RenderText_Solid(font, text.c_str(), color);
//Handling font rendering errors
if(surface == NULL) {
printf("Text Render Error: %s\n", TTF_GetError());
return NULL;
}
//Converting the surface into a texture to be able to render it using the renderer
SDL_Texture* tex = SDL_CreateTextureFromSurface(mRenderer, surface);
//Handle texture creation errors
if(tex == NULL) {
printf("Text Texture Creation Error: %s\n", SDL_GetError());
return NULL;
}
//free the surface since only the texture is needed
SDL_FreeSurface(surface);
return tex;
}
void Graphics::ClearBackBuffer() {
SDL_RenderClear(mRenderer);
}
void Graphics::DrawTexture(SDL_Texture* tex, SDL_Rect* clip, SDL_Rect* rend, float angle, SDL_RendererFlip flip) {
SDL_RenderCopyEx(mRenderer, tex, clip, rend, angle, NULL, flip);
}
void Graphics::DrawLine(float startX, float startY, float endX, float endY)
{
SDL_SetRenderDrawColor(mRenderer, 255, 255, 255, SDL_ALPHA_OPAQUE);
SDL_RenderDrawLine(mRenderer, startX, startY, endX, endY);
SDL_SetRenderDrawColor(mRenderer, 0, 0, 0, SDL_ALPHA_OPAQUE);
}
void Graphics::Render() {
SDL_RenderPresent(mRenderer);
}
}