2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
|
2023-02-01 16:21:53 -07:00
|
|
|
This file is created by : Nitin Jain (nitin.j4\samsung.com)
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Sample program: Draw a Chess Board by using SDL_CreateSoftwareRenderer API */
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static SDL_Window *window;
|
|
|
|
static SDL_Renderer *renderer;
|
|
|
|
static SDL_Surface *surface;
|
|
|
|
static int done;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
|
|
|
|
static void DrawChessBoard(void)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2022-11-30 13:51:59 -07:00
|
|
|
int row = 0, column = 0, x = 0;
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_FRect rect;
|
|
|
|
SDL_Rect darea;
|
2015-11-25 13:39:28 -07:00
|
|
|
|
|
|
|
/* Get the Size of drawing surface */
|
2022-12-27 07:21:13 -07:00
|
|
|
SDL_GetRenderViewport(renderer, &darea);
|
2015-11-25 13:39:28 -07:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
for (; row < 8; row++) {
|
|
|
|
column = row % 2;
|
2015-11-25 13:39:28 -07:00
|
|
|
x = column;
|
2022-11-30 13:51:59 -07:00
|
|
|
for (; column < 4 + (row % 2); column++) {
|
2015-11-25 13:39:28 -07:00
|
|
|
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0xFF);
|
|
|
|
|
2022-12-31 12:19:32 -07:00
|
|
|
rect.w = (float)(darea.w / 8);
|
|
|
|
rect.h = (float)(darea.h / 8);
|
|
|
|
rect.x = (float)(x * rect.w);
|
|
|
|
rect.y = (float)(row * rect.h);
|
2015-11-25 13:39:28 -07:00
|
|
|
x = x + 2;
|
|
|
|
SDL_RenderFillRect(renderer, &rect);
|
2023-01-12 00:17:58 -07:00
|
|
|
|
|
|
|
/* Draw a red diagonal line through the upper left rectangle */
|
|
|
|
if (column == 0 && row == 0) {
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xFF, 0, 0, 0xFF);
|
|
|
|
SDL_RenderLine(renderer, 0, 0, rect.w, rect.h);
|
|
|
|
}
|
2015-11-25 13:39:28 -07:00
|
|
|
}
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void loop(void)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_Event e;
|
|
|
|
while (SDL_PollEvent(&e)) {
|
Fixed bug 3605 - Software renderer no longer renders after Android screen orientation change
Sylvain
This still happens with the current trunk version. (software renderer of testdrawchessboard.c)
When there is a rotation, the window size changed and the internal surface is marked as "surface_valid == SDL_FALSE".
And all further call fails.
SDL_video.c :
2478 void
2479 SDL_OnWindowResized(SDL_Window * window)
2480 {
2481 window->surface_valid = SDL_FALSE;
2482 SDL_SendWindowEvent(window, SDL_WINDOWEVENT_SIZE_CHANGED, window->w, window->h);
2483 }
some error set to :
2233 return SDL_SetError("Window surface is invalid, please call SDL_GetWindowSurface() to get a new surface");
So, this seems to be the behavior of the API ...
In the loop() function of testdrawchessboard.c, we can recreate the surface/renderer :
65 if (e.type == SDL_WINDOWEVENT)
66 {
67 if (e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED)
68 {
69 surface = SDL_GetWindowSurface(window);
70 renderer = SDL_CreateSoftwareRenderer(surface);
71 }
72 /* Clear the rendering surface with the specified color */
73 SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0xFF);
74 SDL_RenderClear(renderer);
75 }
And it displays correctly.
2017-08-13 22:12:14 -06:00
|
|
|
|
2023-01-28 16:22:16 -07:00
|
|
|
/* Re-create when window surface has been resized */
|
|
|
|
if (e.type == SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED) {
|
Fixed bug 3605 - Software renderer no longer renders after Android screen orientation change
Sylvain
This still happens with the current trunk version. (software renderer of testdrawchessboard.c)
When there is a rotation, the window size changed and the internal surface is marked as "surface_valid == SDL_FALSE".
And all further call fails.
SDL_video.c :
2478 void
2479 SDL_OnWindowResized(SDL_Window * window)
2480 {
2481 window->surface_valid = SDL_FALSE;
2482 SDL_SendWindowEvent(window, SDL_WINDOWEVENT_SIZE_CHANGED, window->w, window->h);
2483 }
some error set to :
2233 return SDL_SetError("Window surface is invalid, please call SDL_GetWindowSurface() to get a new surface");
So, this seems to be the behavior of the API ...
In the loop() function of testdrawchessboard.c, we can recreate the surface/renderer :
65 if (e.type == SDL_WINDOWEVENT)
66 {
67 if (e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED)
68 {
69 surface = SDL_GetWindowSurface(window);
70 renderer = SDL_CreateSoftwareRenderer(surface);
71 }
72 /* Clear the rendering surface with the specified color */
73 SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0xFF);
74 SDL_RenderClear(renderer);
75 }
And it displays correctly.
2017-08-13 22:12:14 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_DestroyRenderer(renderer);
|
Fixed bug 3605 - Software renderer no longer renders after Android screen orientation change
Sylvain
This still happens with the current trunk version. (software renderer of testdrawchessboard.c)
When there is a rotation, the window size changed and the internal surface is marked as "surface_valid == SDL_FALSE".
And all further call fails.
SDL_video.c :
2478 void
2479 SDL_OnWindowResized(SDL_Window * window)
2480 {
2481 window->surface_valid = SDL_FALSE;
2482 SDL_SendWindowEvent(window, SDL_WINDOWEVENT_SIZE_CHANGED, window->w, window->h);
2483 }
some error set to :
2233 return SDL_SetError("Window surface is invalid, please call SDL_GetWindowSurface() to get a new surface");
So, this seems to be the behavior of the API ...
In the loop() function of testdrawchessboard.c, we can recreate the surface/renderer :
65 if (e.type == SDL_WINDOWEVENT)
66 {
67 if (e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED)
68 {
69 surface = SDL_GetWindowSurface(window);
70 renderer = SDL_CreateSoftwareRenderer(surface);
71 }
72 /* Clear the rendering surface with the specified color */
73 SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0xFF);
74 SDL_RenderClear(renderer);
75 }
And it displays correctly.
2017-08-13 22:12:14 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
surface = SDL_GetWindowSurface(window);
|
|
|
|
renderer = SDL_CreateSoftwareRenderer(surface);
|
|
|
|
/* Clear the rendering surface with the specified color */
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0xFF);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
}
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
if (e.type == SDL_EVENT_QUIT) {
|
2015-11-25 13:39:28 -07:00
|
|
|
done = 1;
|
2015-06-21 09:33:46 -06:00
|
|
|
#ifdef __EMSCRIPTEN__
|
2015-11-25 13:39:28 -07:00
|
|
|
emscripten_cancel_main_loop();
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
2015-11-25 13:39:28 -07:00
|
|
|
return;
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
if ((e.type == SDL_EVENT_KEY_DOWN) && (e.key.keysym.sym == SDLK_ESCAPE)) {
|
2015-11-25 13:39:28 -07:00
|
|
|
done = 1;
|
2015-06-21 09:33:46 -06:00
|
|
|
#ifdef __EMSCRIPTEN__
|
2015-11-25 13:39:28 -07:00
|
|
|
emscripten_cancel_main_loop();
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
2015-11-25 13:39:28 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-26 16:52:30 -06:00
|
|
|
DrawChessBoard();
|
2015-11-25 13:39:28 -07:00
|
|
|
|
|
|
|
/* Got everything on rendering surface,
|
|
|
|
now Update the drawing image on window screen */
|
|
|
|
SDL_UpdateWindowSurface(window);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
|
|
|
|
2015-11-25 13:39:28 -07:00
|
|
|
/* Initialize SDL */
|
2022-11-27 09:38:43 -07:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
|
2015-11-25 13:39:28 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init fail : %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create window and renderer for given surface */
|
2023-03-05 15:44:38 -07:00
|
|
|
window = SDL_CreateWindow("Chess Board", 640, 480, SDL_WINDOW_RESIZABLE);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (window == NULL) {
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Window creation fail : %s\n", SDL_GetError());
|
2015-11-25 13:39:28 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
surface = SDL_GetWindowSurface(window);
|
|
|
|
renderer = SDL_CreateSoftwareRenderer(surface);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (renderer == NULL) {
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Render creation for surface fail : %s\n", SDL_GetError());
|
2015-11-25 13:39:28 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear the rendering surface with the specified color */
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0xFF);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
|
|
|
|
/* Draw the Image on rendering surface */
|
|
|
|
done = 0;
|
2015-06-21 09:33:46 -06:00
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
emscripten_set_main_loop(loop, 0, 1);
|
|
|
|
#else
|
|
|
|
while (!done) {
|
|
|
|
loop();
|
2015-11-25 13:39:28 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
|
|
|
|
2015-08-09 12:01:01 -06:00
|
|
|
SDL_Quit();
|
2015-11-25 13:39:28 -07:00
|
|
|
return 0;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|