Skip to content

Latest commit

 

History

History
135 lines (109 loc) · 3.18 KB

testdrawchessboard.c

File metadata and controls

135 lines (109 loc) · 3.18 KB
 
Jan 2, 2017
Jan 2, 2017
2
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
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
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.
This file is created by : Nitin Jain (nitin.j4@samsung.com)
*/
/* Sample program: Draw a Chess Board by using SDL_CreateSoftwareRenderer API */
#include <stdlib.h>
#include <stdio.h>
#ifdef __EMSCRIPTEN__
#include <emscripten/emscripten.h>
#endif
#include "SDL.h"
SDL_Window *window;
SDL_Renderer *renderer;
int done;
void
DrawChessBoard(SDL_Renderer * renderer)
{
Nov 25, 2015
Nov 25, 2015
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
int row = 0,column = 0,x = 0;
SDL_Rect rect, darea;
/* Get the Size of drawing surface */
SDL_RenderGetViewport(renderer, &darea);
for( ; row < 8; row++)
{
column = row%2;
x = column;
for( ; column < 4+(row%2); column++)
{
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0xFF);
rect.w = darea.w/8;
rect.h = darea.h/8;
rect.x = x * rect.w;
rect.y = row * rect.h;
x = x + 2;
SDL_RenderFillRect(renderer, &rect);
}
}
55
56
57
58
59
60
61
}
void
loop()
{
SDL_Event e;
while (SDL_PollEvent(&e)) {
Nov 25, 2015
Nov 25, 2015
62
63
if (e.type == SDL_QUIT) {
done = 1;
64
#ifdef __EMSCRIPTEN__
Nov 25, 2015
Nov 25, 2015
65
emscripten_cancel_main_loop();
Nov 25, 2015
Nov 25, 2015
67
68
return;
}
Nov 25, 2015
Nov 25, 2015
70
71
if ((e.type == SDL_KEYDOWN) && (e.key.keysym.sym == SDLK_ESCAPE)) {
done = 1;
72
#ifdef __EMSCRIPTEN__
Nov 25, 2015
Nov 25, 2015
73
emscripten_cancel_main_loop();
Nov 25, 2015
Nov 25, 2015
75
76
77
78
79
80
81
82
83
return;
}
}
DrawChessBoard(renderer);
/* Got everything on rendering surface,
now Update the drawing image on window screen */
SDL_UpdateWindowSurface(window);
84
85
86
87
88
}
int
main(int argc, char *argv[])
{
Nov 25, 2015
Nov 25, 2015
89
SDL_Surface *surface;
90
91
92
93
/* Enable standard application logging */
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
Nov 25, 2015
Nov 25, 2015
94
95
96
97
98
99
100
101
102
/* Initialize SDL */
if(SDL_Init(SDL_INIT_VIDEO) != 0)
{
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init fail : %s\n", SDL_GetError());
return 1;
}
/* Create window and renderer for given surface */
Mar 28, 2016
Mar 28, 2016
103
window = SDL_CreateWindow("Chess Board", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, 0);
Nov 25, 2015
Nov 25, 2015
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
if(!window)
{
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Window creation fail : %s\n",SDL_GetError());
return 1;
}
surface = SDL_GetWindowSurface(window);
renderer = SDL_CreateSoftwareRenderer(surface);
if(!renderer)
{
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Render creation for surface fail : %s\n",SDL_GetError());
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;
124
125
126
127
128
#ifdef __EMSCRIPTEN__
emscripten_set_main_loop(loop, 0, 1);
#else
while (!done) {
loop();
Nov 25, 2015
Nov 25, 2015
129
}
Aug 9, 2015
Aug 9, 2015
132
SDL_Quit();
Nov 25, 2015
Nov 25, 2015
133
return 0;