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

Go to the source code of this file.

Data Structures

struct  DrawState
 

Functions

static void quit (int rc)
 
SDL_TextureLoadTexture (SDL_Renderer *renderer, const char *file, SDL_bool transparent)
 
void Draw (DrawState *s)
 
void loop ()
 
int main (int argc, char *argv[])
 

Variables

static SDLTest_CommonStatestate
 
DrawStatedrawstates
 
int done
 

Function Documentation

◆ Draw()

void Draw ( DrawState s)

Definition at line 98 of file testrendercopyex.c.

References DrawState::background, SDL_Rect::h, NULL, DrawState::renderer, DrawState::scale_direction, SDL_CreateTexture, SDL_DestroyTexture, SDL_PIXELFORMAT_ARGB8888, SDL_RenderCopy, SDL_RenderCopyEx, SDL_RenderGetViewport, SDL_RenderPresent, SDL_SetRenderTarget, SDL_TEXTUREACCESS_TARGET, DrawState::sprite, DrawState::sprite_rect, viewport, SDL_Rect::w, SDL_Rect::x, and SDL_Rect::y.

Referenced by loop().

99 {
102  SDL_Point *center=NULL;
103  SDL_Point origin = {0,0};
104 
105  SDL_RenderGetViewport(s->renderer, &viewport);
106 
108  SDL_SetRenderTarget(s->renderer, target);
109 
110  /* Draw the background */
112 
113  /* Scale and draw the sprite */
114  s->sprite_rect.w += s->scale_direction;
115  s->sprite_rect.h += s->scale_direction;
116  if (s->scale_direction > 0) {
117  center = &origin;
118  if (s->sprite_rect.w >= viewport.w || s->sprite_rect.h >= viewport.h) {
119  s->scale_direction = -1;
120  }
121  } else {
122  if (s->sprite_rect.w <= 1 || s->sprite_rect.h <= 1) {
123  s->scale_direction = 1;
124  }
125  }
126  s->sprite_rect.x = (viewport.w - s->sprite_rect.w) / 2;
127  s->sprite_rect.y = (viewport.h - s->sprite_rect.h) / 2;
128 
130 
132  SDL_RenderCopy(s->renderer, target, NULL, NULL);
133  SDL_DestroyTexture(target);
134 
135  /* Update the screen! */
137  /* SDL_Delay(10); */
138 }
#define SDL_CreateTexture
SDL_Renderer * renderer
SDL_Rect sprite_rect
#define SDL_SetRenderTarget
The structure that defines a point.
Definition: SDL_rect.h:48
#define SDL_RenderCopy
#define SDL_RenderGetViewport
int x
Definition: SDL_rect.h:66
int w
Definition: SDL_rect.h:67
SDL_RendererFlip
Flip constants for SDL_RenderCopyEx.
Definition: SDL_render.h:111
GLenum target
#define NULL
Definition: begin_code.h:164
#define SDL_DestroyTexture
int h
Definition: SDL_rect.h:67
SDL_Rect viewport
Definition: testviewport.c:28
SDL_Texture * sprite
#define SDL_RenderCopyEx
SDL_Texture * background
int y
Definition: SDL_rect.h:66
A rectangle, with the origin at the upper left.
Definition: SDL_rect.h:64
#define SDL_RenderPresent

◆ LoadTexture()

SDL_Texture* LoadTexture ( SDL_Renderer renderer,
const char *  file,
SDL_bool  transparent 
)

Definition at line 48 of file testrendercopyex.c.

References SDL_PixelFormat::BitsPerPixel, SDL_Surface::format, NULL, SDL_PixelFormat::palette, SDL_Surface::pixels, SDL_CreateTextureFromSurface, SDL_FreeSurface, SDL_GetError, SDL_LoadBMP, SDL_LOG_CATEGORY_APPLICATION, SDL_LogError, SDL_SetColorKey, and SDL_TRUE.

Referenced by main().

49 {
50  SDL_Surface *temp;
52 
53  /* Load the sprite image */
54  temp = SDL_LoadBMP(file);
55  if (temp == NULL) {
56  SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't load %s: %s", file, SDL_GetError());
57  return NULL;
58  }
59 
60  /* Set transparent pixel as the pixel at (0,0) */
61  if (transparent) {
62  if (temp->format->palette) {
63  SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
64  } else {
65  switch (temp->format->BitsPerPixel) {
66  case 15:
68  (*(Uint16 *) temp->pixels) & 0x00007FFF);
69  break;
70  case 16:
71  SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels);
72  break;
73  case 24:
75  (*(Uint32 *) temp->pixels) & 0x00FFFFFF);
76  break;
77  case 32:
78  SDL_SetColorKey(temp, SDL_TRUE, *(Uint32 *) temp->pixels);
79  break;
80  }
81  }
82  }
83 
84  /* Create textures from the image */
85  texture = SDL_CreateTextureFromSurface(renderer, temp);
86  if (!texture) {
87  SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create texture: %s\n", SDL_GetError());
88  SDL_FreeSurface(temp);
89  return NULL;
90  }
91  SDL_FreeSurface(temp);
92 
93  /* We're ready to roll. :) */
94  return texture;
95 }
#define SDL_GetError
#define SDL_LoadBMP(file)
Definition: SDL_surface.h:200
A collection of pixels used in software blitting.
Definition: SDL_surface.h:69
uint32_t Uint32
Definition: SDL_stdinc.h:181
#define SDL_LogError
GLenum GLenum GLuint texture
#define SDL_CreateTextureFromSurface
void * pixels
Definition: SDL_surface.h:75
#define SDL_FreeSurface
uint8_t Uint8
Definition: SDL_stdinc.h:157
Uint8 BitsPerPixel
Definition: SDL_pixels.h:319
#define SDL_SetColorKey
#define NULL
Definition: begin_code.h:164
SDL_PixelFormat * format
Definition: SDL_surface.h:72
uint16_t Uint16
Definition: SDL_stdinc.h:169
SDL_Palette * palette
Definition: SDL_pixels.h:318

◆ loop()

void loop ( )

Definition at line 140 of file testrendercopyex.c.

References done, Draw(), i, NULL, SDLTest_CommonState::num_windows, SDL_PollEvent, SDLTest_CommonEvent(), and SDLTest_CommonState::windows.

Referenced by main().

141 {
142  int i;
144 
145  /* Check for events */
146 
147  while (SDL_PollEvent(&event)) {
148  SDLTest_CommonEvent(state, &event, &done);
149  }
150  for (i = 0; i < state->num_windows; ++i) {
151  if (state->windows[i] == NULL)
152  continue;
153  Draw(&drawstates[i]);
154  }
155 #ifdef __EMSCRIPTEN__
156  if (done) {
157  emscripten_cancel_main_loop();
158  }
159 #endif
160 }
#define SDL_PollEvent
void Draw(DrawState *s)
DrawState * drawstates
int done
static SDLTest_CommonState * state
SDL_Window ** windows
void SDLTest_CommonEvent(SDLTest_CommonState *state, SDL_Event *event, int *done)
Common event handler for test windows.
struct _cl_event * event
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
#define NULL
Definition: begin_code.h:164
General event structure.
Definition: SDL_events.h:525

◆ main()

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

Definition at line 163 of file testrendercopyex.c.

References DrawState::background, done, SDL_Rect::h, i, LoadTexture(), loop(), NULL, SDLTest_CommonState::num_windows, quit(), DrawState::renderer, SDLTest_CommonState::renderers, DrawState::scale_direction, SDL_FALSE, SDL_GetTicks(), SDL_INIT_VIDEO, SDL_Log, SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, SDL_LogSetPriority, SDL_QueryTexture, SDL_stack_alloc, SDL_stack_free, SDL_TRUE, SDLTest_CommonArg(), SDLTest_CommonCreateState(), SDLTest_CommonInit(), SDLTest_CommonUsage(), DrawState::sprite, DrawState::sprite_rect, SDL_Rect::w, DrawState::window, and SDLTest_CommonState::windows.

164 {
165  int i;
166  int frames;
167  Uint32 then, now;
168 
169  /* Enable standard application logging */
171 
172  /* Initialize test framework */
174  if (!state) {
175  return 1;
176  }
177  for (i = 1; i < argc;) {
178  int consumed;
179 
180  consumed = SDLTest_CommonArg(state, i);
181  if (consumed == 0) {
182  SDL_Log("Usage: %s %s\n", argv[0], SDLTest_CommonUsage(state));
183  return 1;
184  }
185  i += consumed;
186  }
187  if (!SDLTest_CommonInit(state)) {
188  quit(2);
189  }
190 
192  for (i = 0; i < state->num_windows; ++i) {
193  DrawState *drawstate = &drawstates[i];
194 
195  drawstate->window = state->windows[i];
196  drawstate->renderer = state->renderers[i];
197  drawstate->sprite = LoadTexture(drawstate->renderer, "icon.bmp", SDL_TRUE);
198  drawstate->background = LoadTexture(drawstate->renderer, "sample.bmp", SDL_FALSE);
199  if (!drawstate->sprite || !drawstate->background) {
200  quit(2);
201  }
202  SDL_QueryTexture(drawstate->sprite, NULL, NULL,
203  &drawstate->sprite_rect.w, &drawstate->sprite_rect.h);
204  drawstate->scale_direction = 1;
205  }
206 
207  /* Main render loop */
208  frames = 0;
209  then = SDL_GetTicks();
210  done = 0;
211 
212 #ifdef __EMSCRIPTEN__
213  emscripten_set_main_loop(loop, 0, 1);
214 #else
215  while (!done) {
216  ++frames;
217  loop();
218  }
219 #endif
220  /* Print out some timing information */
221  now = SDL_GetTicks();
222  if (now > then) {
223  double fps = ((double) frames * 1000) / (now - then);
224  SDL_Log("%2.2f frames per second\n", fps);
225  }
226 
228 
229  quit(0);
230  return 0;
231 }
SDL_Renderer * renderer
static void quit(int rc)
SDL_Rect sprite_rect
SDL_Texture * LoadTexture(SDL_Renderer *renderer, const char *file, SDL_bool transparent)
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.
DrawState * drawstates
int done
uint32_t Uint32
Definition: SDL_stdinc.h:181
SDL_bool SDLTest_CommonInit(SDLTest_CommonState *state)
Open test window.
SDL_Window * window
static SDLTest_CommonState * state
SDL_Window ** windows
void loop()
#define SDL_Log
Uint32 SDL_GetTicks(void)
Get the number of milliseconds since the SDL library initialization.
#define SDL_stack_alloc(type, count)
Definition: SDL_stdinc.h:354
#define SDL_QueryTexture
const char * SDLTest_CommonUsage(SDLTest_CommonState *state)
Returns common usage information.
int w
Definition: SDL_rect.h:67
SDL_Renderer ** renderers
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
#define SDL_LogSetPriority
#define NULL
Definition: begin_code.h:164
int h
Definition: SDL_rect.h:67
SDL_Texture * sprite
SDL_Texture * background
#define SDL_stack_free(data)
Definition: SDL_stdinc.h:355
#define SDL_INIT_VIDEO
Definition: SDL.h:78

◆ quit()

static void quit ( int  rc)
static

Definition at line 41 of file testrendercopyex.c.

References SDLTest_CommonQuit().

Referenced by main().

42 {
44  exit(rc);
45 }
static SDLTest_CommonState * state
void SDLTest_CommonQuit(SDLTest_CommonState *state)
Close test window.

Variable Documentation

◆ done

int done

Definition at line 37 of file testrendercopyex.c.

Referenced by loop(), and main().

◆ drawstates

DrawState* drawstates

Definition at line 36 of file testrendercopyex.c.

◆ state

SDLTest_CommonState* state
static

Definition at line 25 of file testrendercopyex.c.