2021-09-09 14:33:35 -06:00
|
|
|
/*
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2021-09-09 14:33:35 -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.
|
|
|
|
*/
|
|
|
|
|
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>
|
2023-03-16 17:25:39 -06:00
|
|
|
#include <SDL3/SDL_test.h>
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2021-11-13 11:29:50 -07:00
|
|
|
#include <stdlib.h> /* exit() */
|
|
|
|
|
2022-11-25 17:00:06 -07:00
|
|
|
#ifdef __IOS__
|
2022-11-30 13:51:59 -07:00
|
|
|
#define SCREEN_WIDTH 320
|
|
|
|
#define SCREEN_HEIGHT 480
|
2021-09-09 14:33:35 -06:00
|
|
|
#else
|
2022-11-30 13:51:59 -07:00
|
|
|
#define SCREEN_WIDTH 640
|
|
|
|
#define SCREEN_HEIGHT 480
|
2021-09-09 14:33:35 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static SDL_Window *window;
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
typedef struct _Object
|
|
|
|
{
|
2022-09-05 09:27:25 -06:00
|
|
|
struct _Object *next;
|
2021-09-09 14:33:35 -06:00
|
|
|
|
2022-12-29 20:31:12 -07:00
|
|
|
float x1, y1, x2, y2;
|
2021-09-09 14:33:35 -06:00
|
|
|
Uint8 r, g, b;
|
|
|
|
|
2022-09-05 09:27:25 -06:00
|
|
|
SDL_bool isRect;
|
|
|
|
} Object;
|
|
|
|
|
|
|
|
static Object *active = NULL;
|
|
|
|
static Object *objects = NULL;
|
2021-09-09 14:33:35 -06:00
|
|
|
static int buttons = 0;
|
2022-09-05 09:27:25 -06:00
|
|
|
static SDL_bool isRect = SDL_FALSE;
|
2021-09-09 14:33:35 -06:00
|
|
|
|
2022-04-02 15:28:56 -06:00
|
|
|
static SDL_bool wheel_x_active = SDL_FALSE;
|
|
|
|
static SDL_bool wheel_y_active = SDL_FALSE;
|
|
|
|
static float wheel_x = SCREEN_WIDTH * 0.5f;
|
|
|
|
static float wheel_y = SCREEN_HEIGHT * 0.5f;
|
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
struct mouse_loop_data {
|
|
|
|
SDL_bool done;
|
|
|
|
SDL_Renderer *renderer;
|
|
|
|
};
|
2021-09-09 14:33:35 -06:00
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void DrawObject(SDL_Renderer *renderer, Object *object)
|
2021-09-09 14:33:35 -06:00
|
|
|
{
|
2022-09-05 09:27:25 -06:00
|
|
|
SDL_SetRenderDrawColor(renderer, object->r, object->g, object->b, 255);
|
|
|
|
|
|
|
|
if (object->isRect) {
|
2022-12-29 20:31:12 -07:00
|
|
|
SDL_FRect rect;
|
2022-09-05 09:27:25 -06:00
|
|
|
|
|
|
|
if (object->x1 > object->x2) {
|
|
|
|
rect.x = object->x2;
|
|
|
|
rect.w = object->x1 - object->x2;
|
|
|
|
} else {
|
|
|
|
rect.x = object->x1;
|
|
|
|
rect.w = object->x2 - object->x1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (object->y1 > object->y2) {
|
|
|
|
rect.y = object->y2;
|
|
|
|
rect.h = object->y1 - object->y2;
|
|
|
|
} else {
|
|
|
|
rect.y = object->y1;
|
|
|
|
rect.h = object->y2 - object->y1;
|
|
|
|
}
|
|
|
|
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderFillRect(renderer, &rect);
|
2022-09-05 09:27:25 -06:00
|
|
|
} else {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, object->x1, object->y1, object->x2, object->y2);
|
2022-09-05 09:27:25 -06:00
|
|
|
}
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void DrawObjects(SDL_Renderer *renderer)
|
2021-09-09 14:33:35 -06:00
|
|
|
{
|
2022-09-05 09:27:25 -06:00
|
|
|
Object *next = objects;
|
2023-11-09 14:29:15 -07:00
|
|
|
while (next) {
|
2022-09-05 09:27:25 -06:00
|
|
|
DrawObject(renderer, next);
|
2021-09-09 14:33:35 -06:00
|
|
|
next = next->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void AppendObject(Object *object)
|
2021-09-09 14:33:35 -06:00
|
|
|
{
|
2022-09-05 09:27:25 -06:00
|
|
|
if (objects) {
|
|
|
|
Object *next = objects;
|
2023-11-09 14:29:15 -07:00
|
|
|
while (next->next) {
|
2021-09-09 14:33:35 -06:00
|
|
|
next = next->next;
|
|
|
|
}
|
2022-09-05 09:27:25 -06:00
|
|
|
next->next = object;
|
2021-09-09 14:33:35 -06:00
|
|
|
} else {
|
2022-09-05 09:27:25 -06:00
|
|
|
objects = object;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void loop(void *arg)
|
2021-09-09 14:33:35 -06:00
|
|
|
{
|
2023-03-16 17:25:39 -06:00
|
|
|
struct mouse_loop_data *loop_data = (struct mouse_loop_data *)arg;
|
2021-09-09 14:33:35 -06:00
|
|
|
SDL_Event event;
|
2023-03-16 17:25:39 -06:00
|
|
|
SDL_Renderer *renderer = loop_data->renderer;
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
/* Check for events */
|
|
|
|
while (SDL_PollEvent(&event)) {
|
|
|
|
switch (event.type) {
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_MOUSE_WHEEL:
|
2022-11-30 13:51:59 -07:00
|
|
|
if (event.wheel.direction == SDL_MOUSEWHEEL_FLIPPED) {
|
|
|
|
event.wheel.x *= -1;
|
|
|
|
event.wheel.y *= -1;
|
|
|
|
}
|
2022-12-29 20:31:12 -07:00
|
|
|
if (event.wheel.x != 0.0f) {
|
2022-11-30 13:51:59 -07:00
|
|
|
wheel_x_active = SDL_TRUE;
|
|
|
|
/* "positive to the right and negative to the left" */
|
2022-12-29 20:31:12 -07:00
|
|
|
wheel_x += event.wheel.x * 10.0f;
|
2022-11-30 13:51:59 -07:00
|
|
|
}
|
2022-12-29 20:31:12 -07:00
|
|
|
if (event.wheel.x != 0.0f) {
|
2022-11-30 13:51:59 -07:00
|
|
|
wheel_y_active = SDL_TRUE;
|
|
|
|
/* "positive away from the user and negative towards the user" */
|
2022-12-29 20:31:12 -07:00
|
|
|
wheel_y -= event.wheel.x * 10.0f;
|
2022-11-30 13:51:59 -07:00
|
|
|
}
|
|
|
|
break;
|
2022-04-02 15:28:56 -06:00
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_MOUSE_MOTION:
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!active) {
|
2021-09-09 14:33:35 -06:00
|
|
|
break;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
active->x2 = event.motion.x;
|
|
|
|
active->y2 = event.motion.y;
|
|
|
|
break;
|
|
|
|
|
2023-01-29 20:06:08 -07:00
|
|
|
case SDL_EVENT_MOUSE_BUTTON_DOWN:
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!active) {
|
2021-09-09 14:33:35 -06:00
|
|
|
active = SDL_calloc(1, sizeof(*active));
|
|
|
|
active->x1 = active->x2 = event.button.x;
|
|
|
|
active->y1 = active->y2 = event.button.y;
|
2022-09-05 09:27:25 -06:00
|
|
|
active->isRect = isRect;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (event.button.button) {
|
2022-11-30 13:51:59 -07:00
|
|
|
case SDL_BUTTON_LEFT:
|
|
|
|
active->r = 255;
|
|
|
|
buttons |= SDL_BUTTON_LMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_MIDDLE:
|
|
|
|
active->g = 255;
|
|
|
|
buttons |= SDL_BUTTON_MMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_RIGHT:
|
|
|
|
active->b = 255;
|
|
|
|
buttons |= SDL_BUTTON_RMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_X1:
|
|
|
|
active->r = 255;
|
|
|
|
active->b = 255;
|
|
|
|
buttons |= SDL_BUTTON_X1MASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_X2:
|
|
|
|
active->g = 255;
|
|
|
|
active->b = 255;
|
|
|
|
buttons |= SDL_BUTTON_X2MASK;
|
|
|
|
break;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
break;
|
2022-09-05 09:27:25 -06:00
|
|
|
|
2023-01-29 20:06:08 -07:00
|
|
|
case SDL_EVENT_MOUSE_BUTTON_UP:
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!active) {
|
2021-09-09 14:33:35 -06:00
|
|
|
break;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
switch (event.button.button) {
|
2022-11-30 13:51:59 -07:00
|
|
|
case SDL_BUTTON_LEFT:
|
|
|
|
buttons &= ~SDL_BUTTON_LMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_MIDDLE:
|
|
|
|
buttons &= ~SDL_BUTTON_MMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_RIGHT:
|
|
|
|
buttons &= ~SDL_BUTTON_RMASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_X1:
|
|
|
|
buttons &= ~SDL_BUTTON_X1MASK;
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_X2:
|
|
|
|
buttons &= ~SDL_BUTTON_X2MASK;
|
|
|
|
break;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buttons == 0) {
|
2022-09-05 09:27:25 -06:00
|
|
|
AppendObject(active);
|
2021-09-09 14:33:35 -06:00
|
|
|
active = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_KEY_DOWN:
|
|
|
|
case SDL_EVENT_KEY_UP:
|
2022-09-05 09:27:25 -06:00
|
|
|
switch (event.key.keysym.sym) {
|
|
|
|
case SDLK_LSHIFT:
|
|
|
|
isRect = (event.key.state == SDL_PRESSED);
|
|
|
|
if (active) {
|
|
|
|
active->isRect = isRect;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_QUIT:
|
2023-03-16 17:25:39 -06:00
|
|
|
loop_data->done = SDL_TRUE;
|
2021-09-09 14:33:35 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
|
2022-04-02 15:28:56 -06:00
|
|
|
/* Mouse wheel */
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0, 255, 128, 255);
|
|
|
|
if (wheel_x_active) {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, wheel_x, 0.0f, wheel_x, (float)SCREEN_HEIGHT);
|
2022-04-02 15:28:56 -06:00
|
|
|
}
|
|
|
|
if (wheel_y_active) {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, 0.0f, wheel_y, (float)SCREEN_WIDTH, wheel_y);
|
2022-04-02 15:28:56 -06:00
|
|
|
}
|
|
|
|
|
2022-09-05 09:27:25 -06:00
|
|
|
/* Objects from mouse clicks */
|
|
|
|
DrawObjects(renderer);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (active) {
|
2022-09-05 09:27:25 -06:00
|
|
|
DrawObject(renderer, active);
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
SDL_RenderPresent(renderer);
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2023-03-16 17:25:39 -06:00
|
|
|
if (loop_data->done) {
|
2021-09-09 14:33:35 -06:00
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2021-09-09 14:33:35 -06:00
|
|
|
{
|
2023-03-16 17:25:39 -06:00
|
|
|
struct mouse_loop_data loop_data;
|
|
|
|
SDLTest_CommonState *state;
|
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
2023-11-09 14:29:15 -07:00
|
|
|
if (!state) {
|
2023-03-16 17:25:39 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2021-11-23 04:01:10 -07:00
|
|
|
|
2021-09-09 14:33:35 -06:00
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
/* Parse commandline */
|
|
|
|
if (!SDLTest_CommonDefaultArgs(state, argc, argv)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-09-09 14:33:35 -06:00
|
|
|
/* Initialize SDL (Note: video is required to start event loop) */
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a window to display joystick axis position */
|
2023-03-05 15:44:38 -07:00
|
|
|
window = SDL_CreateWindow("Mouse Test", SCREEN_WIDTH, SCREEN_HEIGHT, 0);
|
2023-03-16 17:25:39 -06:00
|
|
|
if (!window) {
|
2021-09-09 14:33:35 -06:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create window: %s\n", SDL_GetError());
|
2023-03-16 17:25:39 -06:00
|
|
|
return 0;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
loop_data.done = SDL_FALSE;
|
|
|
|
|
|
|
|
loop_data.renderer = SDL_CreateRenderer(window, NULL, 0);
|
|
|
|
if (!loop_data.renderer) {
|
2021-09-09 14:33:35 -06:00
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create renderer: %s\n", SDL_GetError());
|
|
|
|
SDL_DestroyWindow(window);
|
2023-03-16 17:25:39 -06:00
|
|
|
return 0;
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Main render loop */
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2023-03-16 17:25:39 -06:00
|
|
|
emscripten_set_main_loop_arg(loop, &loop_data, 0, 1);
|
2021-09-09 14:33:35 -06:00
|
|
|
#else
|
2023-03-16 17:25:39 -06:00
|
|
|
while (loop_data.done == SDL_FALSE) {
|
|
|
|
loop(&loop_data);
|
2021-09-09 14:33:35 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-03-16 17:25:39 -06:00
|
|
|
SDL_DestroyRenderer(loop_data.renderer);
|
2021-09-09 14:33:35 -06:00
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
|
|
|
|
SDL_Quit();
|
2023-03-16 17:25:39 -06:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2021-09-09 14:33:35 -06:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|