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.
|
|
|
|
*/
|
|
|
|
/* Simple program: Move N sprites around on the screen as fast as possible */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#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>
|
2022-04-12 06:07:18 -06:00
|
|
|
#include "testutils.h"
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
#define WINDOW_WIDTH 640
|
|
|
|
#define WINDOW_HEIGHT 480
|
|
|
|
#define NUM_SPRITES 100
|
|
|
|
#define MAX_SPEED 1
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
static SDL_Texture *sprite;
|
2022-12-31 12:19:32 -07:00
|
|
|
static SDL_FRect positions[NUM_SPRITES];
|
|
|
|
static SDL_FRect velocities[NUM_SPRITES];
|
2015-06-21 09:33:46 -06:00
|
|
|
static int sprite_w, sprite_h;
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static SDL_Renderer *renderer;
|
|
|
|
static int done;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
|
|
|
|
static void
|
|
|
|
quit(int rc)
|
|
|
|
{
|
2020-06-26 19:35:54 -06:00
|
|
|
SDL_Quit();
|
2015-06-21 09:33:46 -06:00
|
|
|
exit(rc);
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void MoveSprites(void)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int window_w = WINDOW_WIDTH;
|
|
|
|
int window_h = WINDOW_HEIGHT;
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_FRect *position, *velocity;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Draw a gray background */
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
|
|
|
|
/* Move the sprite, bounce at the wall, and draw */
|
|
|
|
for (i = 0; i < NUM_SPRITES; ++i) {
|
|
|
|
position = &positions[i];
|
|
|
|
velocity = &velocities[i];
|
|
|
|
position->x += velocity->x;
|
|
|
|
if ((position->x < 0) || (position->x >= (window_w - sprite_w))) {
|
|
|
|
velocity->x = -velocity->x;
|
|
|
|
position->x += velocity->x;
|
|
|
|
}
|
|
|
|
position->y += velocity->y;
|
|
|
|
if ((position->y < 0) || (position->y >= (window_h - sprite_h))) {
|
|
|
|
velocity->y = -velocity->y;
|
|
|
|
position->y += velocity->y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Blit the sprite onto the screen */
|
2022-12-27 07:21:13 -07:00
|
|
|
SDL_RenderTexture(renderer, sprite, NULL, position);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the screen! */
|
|
|
|
SDL_RenderPresent(renderer);
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void loop(void)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
|
|
|
|
/* Check for events */
|
|
|
|
while (SDL_PollEvent(&event)) {
|
2023-01-23 18:54:09 -07:00
|
|
|
if (event.type == SDL_EVENT_QUIT || event.type == SDL_EVENT_KEY_DOWN) {
|
2015-06-21 09:33:46 -06:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 16:52:30 -06:00
|
|
|
MoveSprites();
|
2015-06-21 09:33:46 -06:00
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
if (done) {
|
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_Window *window;
|
|
|
|
int i;
|
|
|
|
|
2015-11-25 13:39:28 -07:00
|
|
|
/* Enable standard application logging */
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
|
|
|
|
|
|
|
if (SDL_CreateWindowAndRenderer(WINDOW_WIDTH, WINDOW_HEIGHT, 0, &window, &renderer) < 0) {
|
|
|
|
quit(2);
|
|
|
|
}
|
|
|
|
|
2022-04-12 06:07:18 -06:00
|
|
|
sprite = LoadTexture(renderer, "icon.bmp", SDL_TRUE, &sprite_w, &sprite_h);
|
|
|
|
|
|
|
|
if (sprite == NULL) {
|
2015-06-21 09:33:46 -06:00
|
|
|
quit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the sprite positions */
|
2022-10-05 17:02:17 -06:00
|
|
|
srand((unsigned int)time(NULL));
|
2015-06-21 09:33:46 -06:00
|
|
|
for (i = 0; i < NUM_SPRITES; ++i) {
|
2022-12-31 12:19:32 -07:00
|
|
|
positions[i].x = (float)(rand() % (WINDOW_WIDTH - sprite_w));
|
|
|
|
positions[i].y = (float)(rand() % (WINDOW_HEIGHT - sprite_h));
|
|
|
|
positions[i].w = (float)sprite_w;
|
|
|
|
positions[i].h = (float)sprite_h;
|
|
|
|
velocities[i].x = 0.0f;
|
|
|
|
velocities[i].y = 0.0f;
|
2015-06-21 09:33:46 -06:00
|
|
|
while (!velocities[i].x && !velocities[i].y) {
|
2022-12-31 12:19:32 -07:00
|
|
|
velocities[i].x = (float)((rand() % (MAX_SPEED * 2 + 1)) - MAX_SPEED);
|
|
|
|
velocities[i].y = (float)((rand() % (MAX_SPEED * 2 + 1)) - MAX_SPEED);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main render loop */
|
|
|
|
done = 0;
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
emscripten_set_main_loop(loop, 0, 1);
|
|
|
|
#else
|
|
|
|
while (!done) {
|
|
|
|
loop();
|
2015-12-24 07:11:05 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
|
|
|
quit(0);
|
|
|
|
|
|
|
|
return 0; /* to prevent compiler warning */
|
|
|
|
}
|