SDL 2.0
testdraw2.c File Reference
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "SDL_test_common.h"
+ Include dependency graph for testdraw2.c:

Go to the source code of this file.

Macros

#define NUM_OBJECTS   100
 

Functions

void DrawPoints (SDL_Renderer *renderer)
 
void DrawLines (SDL_Renderer *renderer)
 
void DrawRects (SDL_Renderer *renderer)
 
void loop ()
 
int main (int argc, char *argv[])
 

Variables

static SDLTest_CommonStatestate
 
static int num_objects
 
static SDL_bool cycle_color
 
static SDL_bool cycle_alpha
 
static int cycle_direction = 1
 
static int current_alpha = 255
 
static int current_color = 255
 
static SDL_BlendMode blendMode = SDL_BLENDMODE_NONE
 
int done
 

Macro Definition Documentation

◆ NUM_OBJECTS

#define NUM_OBJECTS   100

Definition at line 25 of file testdraw2.c.

Function Documentation

◆ DrawLines()

void DrawLines ( SDL_Renderer renderer)

Definition at line 82 of file testdraw2.c.

83{
84 int i;
85 int x1, y1, x2, y2;
87
88 /* Query the sizes */
90
91 for (i = 0; i < num_objects; ++i) {
92 /* Cycle the color and alpha, if desired */
93 if (cycle_color) {
95 if (current_color < 0) {
96 current_color = 0;
98 }
99 if (current_color > 255) {
100 current_color = 255;
102 }
103 }
104 if (cycle_alpha) {
106 if (current_alpha < 0) {
107 current_alpha = 0;
109 }
110 if (current_alpha > 255) {
111 current_alpha = 255;
113 }
114 }
117
118 if (i == 0) {
123 } else {
124 x1 = (rand() % (viewport.w*2)) - viewport.w;
125 x2 = (rand() % (viewport.w*2)) - viewport.w;
126 y1 = (rand() % (viewport.h*2)) - viewport.h;
127 y2 = (rand() % (viewport.h*2)) - viewport.h;
129 }
130 }
131}
#define SDL_RenderGetViewport
#define SDL_SetRenderDrawColor
#define SDL_RenderDrawLine
GLfixed GLfixed GLfixed y2
GLfixed y1
GLuint GLfloat GLfloat GLfloat x1
GLfixed GLfixed x2
uint8_t Uint8
Definition: SDL_stdinc.h:179
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
Definition: SDL_x11sym.h:50
A rectangle, with the origin at the upper left (integer).
Definition: SDL_rect.h:78
int h
Definition: SDL_rect.h:80
int w
Definition: SDL_rect.h:80
static SDL_Renderer * renderer
static int current_color
Definition: testdraw2.c:33
static int current_alpha
Definition: testdraw2.c:32
static int cycle_direction
Definition: testdraw2.c:31
static SDL_bool cycle_alpha
Definition: testdraw2.c:30
static SDL_bool cycle_color
Definition: testdraw2.c:29
static int num_objects
Definition: testdraw2.c:28
SDL_Rect viewport
Definition: testviewport.c:28

References current_alpha, current_color, cycle_alpha, cycle_color, cycle_direction, SDL_Rect::h, i, num_objects, renderer, SDL_RenderDrawLine, SDL_RenderGetViewport, SDL_SetRenderDrawColor, viewport, and SDL_Rect::w.

Referenced by loop().

◆ DrawPoints()

void DrawPoints ( SDL_Renderer renderer)

Definition at line 39 of file testdraw2.c.

40{
41 int i;
42 int x, y;
44
45 /* Query the sizes */
47
48 for (i = 0; i < num_objects * 4; ++i) {
49 /* Cycle the color and alpha, if desired */
50 if (cycle_color) {
52 if (current_color < 0) {
53 current_color = 0;
55 }
56 if (current_color > 255) {
57 current_color = 255;
59 }
60 }
61 if (cycle_alpha) {
63 if (current_alpha < 0) {
64 current_alpha = 0;
66 }
67 if (current_alpha > 255) {
68 current_alpha = 255;
70 }
71 }
74
75 x = rand() % viewport.w;
76 y = rand() % viewport.h;
78 }
79}
#define SDL_RenderDrawPoint
GLint GLint GLint GLint GLint GLint y
Definition: SDL_opengl.h:1574
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574

References current_alpha, current_color, cycle_alpha, cycle_color, cycle_direction, SDL_Rect::h, i, num_objects, renderer, SDL_RenderDrawPoint, SDL_RenderGetViewport, SDL_SetRenderDrawColor, viewport, and SDL_Rect::w.

Referenced by loop().

◆ DrawRects()

void DrawRects ( SDL_Renderer renderer)

Definition at line 134 of file testdraw2.c.

135{
136 int i;
139
140 /* Query the sizes */
142
143 for (i = 0; i < num_objects / 4; ++i) {
144 /* Cycle the color and alpha, if desired */
145 if (cycle_color) {
147 if (current_color < 0) {
148 current_color = 0;
150 }
151 if (current_color > 255) {
152 current_color = 255;
154 }
155 }
156 if (cycle_alpha) {
158 if (current_alpha < 0) {
159 current_alpha = 0;
161 }
162 if (current_alpha > 255) {
163 current_alpha = 255;
165 }
166 }
169
170 rect.w = rand() % (viewport.h / 2);
171 rect.h = rand() % (viewport.h / 2);
172 rect.x = (rand() % (viewport.w*2) - viewport.w) - (rect.w / 2);
173 rect.y = (rand() % (viewport.h*2) - viewport.h) - (rect.h / 2);
175 }
176}
#define SDL_RenderFillRect
int y
Definition: SDL_rect.h:79
int x
Definition: SDL_rect.h:79
SDL_Rect rect
Definition: testrelative.c:27

References current_alpha, current_color, cycle_alpha, cycle_color, cycle_direction, SDL_Rect::h, i, num_objects, rect, renderer, SDL_RenderFillRect, SDL_RenderGetViewport, SDL_SetRenderDrawColor, viewport, SDL_Rect::w, SDL_Rect::x, and SDL_Rect::y.

Referenced by loop().

◆ loop()

void loop ( void  )

Definition at line 179 of file testdraw2.c.

180{
181 int i;
183
184 /* Check for events */
185 while (SDL_PollEvent(&event)) {
187 }
188 for (i = 0; i < state->num_windows; ++i) {
190 if (state->windows[i] == NULL)
191 continue;
192 SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
194
198
200 }
201#ifdef __EMSCRIPTEN__
202 if (done) {
203 emscripten_cancel_main_loop();
204 }
205#endif
206}
#define SDL_RenderPresent
#define SDL_PollEvent
#define SDL_RenderClear
struct _cl_event * event
void SDLTest_CommonEvent(SDLTest_CommonState *state, SDL_Event *event, int *done)
Common event handler for test windows.
#define NULL
Definition: begin_code.h:167
SDL_Window ** windows
SDL_Renderer ** renderers
void DrawRects(SDL_Renderer *renderer)
Definition: testdraw2.c:134
int done
Definition: testdraw2.c:36
void DrawLines(SDL_Renderer *renderer)
Definition: testdraw2.c:82
static SDLTest_CommonState * state
Definition: testdraw2.c:27
void DrawPoints(SDL_Renderer *renderer)
Definition: testdraw2.c:39
General event structure.
Definition: SDL_events.h:558

References done, DrawLines(), DrawPoints(), DrawRects(), i, NULL, SDLTest_CommonState::num_windows, renderer, SDLTest_CommonState::renderers, SDL_PollEvent, SDL_RenderClear, SDL_RenderPresent, SDL_SetRenderDrawColor, SDLTest_CommonEvent(), state, and SDLTest_CommonState::windows.

Referenced by main().

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 209 of file testdraw2.c.

210{
211 int i;
212 Uint32 then, now, frames;
213
214 /* Enable standard application logging */
216
217 /* Initialize parameters */
219
220 /* Initialize test framework */
222 if (!state) {
223 return 1;
224 }
225 for (i = 1; i < argc;) {
226 int consumed;
227
228 consumed = SDLTest_CommonArg(state, i);
229 if (consumed == 0) {
230 consumed = -1;
231 if (SDL_strcasecmp(argv[i], "--blend") == 0) {
232 if (argv[i + 1]) {
233 if (SDL_strcasecmp(argv[i + 1], "none") == 0) {
235 consumed = 2;
236 } else if (SDL_strcasecmp(argv[i + 1], "blend") == 0) {
238 consumed = 2;
239 } else if (SDL_strcasecmp(argv[i + 1], "add") == 0) {
241 consumed = 2;
242 } else if (SDL_strcasecmp(argv[i + 1], "mod") == 0) {
244 consumed = 2;
245 }
246 }
247 } else if (SDL_strcasecmp(argv[i], "--cyclecolor") == 0) {
249 consumed = 1;
250 } else if (SDL_strcasecmp(argv[i], "--cyclealpha") == 0) {
252 consumed = 1;
253 } else if (SDL_isdigit(*argv[i])) {
254 num_objects = SDL_atoi(argv[i]);
255 consumed = 1;
256 }
257 }
258 if (consumed < 0) {
259 static const char *options[] = { "[--blend none|blend|add|mod]", "[--cyclecolor]", "[--cyclealpha]", NULL };
260 SDLTest_CommonLogUsage(state, argv[0], options);
261 return 1;
262 }
263 i += consumed;
264 }
266 return 2;
267 }
268
269 /* Create the windows and initialize the renderers */
270 for (i = 0; i < state->num_windows; ++i) {
273 SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
275 }
276
277 srand((unsigned int)time(NULL));
278
279 /* Main render loop */
280 frames = 0;
281 then = SDL_GetTicks();
282 done = 0;
283
284#ifdef __EMSCRIPTEN__
285 emscripten_set_main_loop(loop, 0, 1);
286#else
287 while (!done) {
288 ++frames;
289 loop();
290 }
291#endif
292
293
295
296 /* Print out some timing information */
297 now = SDL_GetTicks();
298 if (now > then) {
299 double fps = ((double) frames * 1000) / (now - then);
300 SDL_Log("%2.2f frames per second\n", fps);
301 }
302 return 0;
303}
#define SDL_INIT_VIDEO
Definition: SDL.h:79
@ SDL_BLENDMODE_NONE
Definition: SDL_blendmode.h:42
@ SDL_BLENDMODE_ADD
Definition: SDL_blendmode.h:47
@ SDL_BLENDMODE_BLEND
Definition: SDL_blendmode.h:44
@ SDL_BLENDMODE_MOD
Definition: SDL_blendmode.h:50
#define SDL_isdigit
#define SDL_SetRenderDrawBlendMode
#define SDL_strcasecmp
#define SDL_LogSetPriority
#define SDL_atoi
#define SDL_Log
@ SDL_LOG_PRIORITY_INFO
Definition: SDL_log.h:106
@ SDL_LOG_CATEGORY_APPLICATION
Definition: SDL_log.h:66
@ SDL_TRUE
Definition: SDL_stdinc.h:164
uint32_t Uint32
Definition: SDL_stdinc.h:203
void SDLTest_CommonQuit(SDLTest_CommonState *state)
Close test window.
SDLTest_CommonState * SDLTest_CommonCreateState(char **argv, Uint32 flags)
Parse command line parameters and create common state.
int SDLTest_CommonArg(SDLTest_CommonState *state, int index)
Process one common argument.
SDL_bool SDLTest_CommonInit(SDLTest_CommonState *state)
Open test window.
void SDLTest_CommonLogUsage(SDLTest_CommonState *state, const char *argv0, const char **options)
Logs command line usage info.
Uint32 SDL_GetTicks(void)
Get the number of milliseconds since the SDL library initialization.
EGLSurface EGLnsecsANDROID time
Definition: eglext.h:518
#define NUM_OBJECTS
Definition: testdraw2.c:25
static SDL_BlendMode blendMode
Definition: testdraw2.c:34
void loop()
Definition: testdraw2.c:179
static Uint32 frames
Definition: testsprite2.c:40

References blendMode, cycle_alpha, cycle_color, done, frames, i, loop(), NULL, NUM_OBJECTS, num_objects, SDLTest_CommonState::num_windows, renderer, SDLTest_CommonState::renderers, SDL_atoi, SDL_BLENDMODE_ADD, SDL_BLENDMODE_BLEND, SDL_BLENDMODE_MOD, SDL_BLENDMODE_NONE, SDL_GetTicks(), SDL_INIT_VIDEO, SDL_isdigit, SDL_Log, SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, SDL_LogSetPriority, SDL_RenderClear, SDL_SetRenderDrawBlendMode, SDL_SetRenderDrawColor, SDL_strcasecmp, SDL_TRUE, SDLTest_CommonArg(), SDLTest_CommonCreateState(), SDLTest_CommonInit(), SDLTest_CommonLogUsage(), SDLTest_CommonQuit(), and state.

Variable Documentation

◆ blendMode

◆ current_alpha

int current_alpha = 255
static

Definition at line 32 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), and DrawRects().

◆ current_color

int current_color = 255
static

Definition at line 33 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), and DrawRects().

◆ cycle_alpha

SDL_bool cycle_alpha
static

Definition at line 30 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), DrawRects(), and main().

◆ cycle_color

SDL_bool cycle_color
static

Definition at line 29 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), DrawRects(), and main().

◆ cycle_direction

int cycle_direction = 1
static

Definition at line 31 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), and DrawRects().

◆ done

int done

Definition at line 36 of file testdraw2.c.

Referenced by loop(), and main().

◆ num_objects

int num_objects
static

Definition at line 28 of file testdraw2.c.

Referenced by DrawLines(), DrawPoints(), DrawRects(), and main().

◆ state

SDLTest_CommonState* state
static

Definition at line 27 of file testdraw2.c.

Referenced by loop(), and main().