#c #sdl #sdl-2
Вопрос:
Я пытался запустить программу с помощью SDL2, но каждый раз, когда я пытаюсь запустить ее, SDL_Rect выдает мне предупреждение:
The enum type 'SDL_bool' is unscoped. Prefer 'enum class' over 'enum'(Enum.3)
У меня есть новейшая версия SDL2 2.0.14 для Visual Studio C , кажется, все работает, кроме этого заголовка.
Вот код:
#ifndef SDL_rect_h_
#define SDL_rect_h_
#include "SDL_stdinc.h"
#include "SDL_error.h"
#include "SDL_pixels.h"
#include "SDL_rwops.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C */
#ifdef __cplusplus
extern "C" {
#endif
/**
* brief The structure that defines a point (integer)
*
* sa SDL_EnclosePoints
* sa SDL_PointInRect
*/
typedef struct SDL_Point
{
int x;
int y;
} SDL_Point;
/**
* brief The structure that defines a point (floating point)
*
* sa SDL_EnclosePoints
* sa SDL_PointInRect
*/
typedef struct SDL_FPoint
{
float x;
float y;
} SDL_FPoint;
/**
* brief A rectangle, with the origin at the upper left (integer).
*
* sa SDL_RectEmpty
* sa SDL_RectEquals
* sa SDL_HasIntersection
* sa SDL_IntersectRect
* sa SDL_UnionRect
* sa SDL_EnclosePoints
*/
typedef struct SDL_Rect
{
int x, y;
int w, h;
} SDL_Rect;
/**
* brief A rectangle, with the origin at the upper left (floating point).
*/
typedef struct SDL_FRect
{
float x;
float y;
float w;
float h;
} SDL_FRect;
/**
* brief Returns true if point resides inside a rectangle.
*/
SDL_FORCE_INLINE SDL_bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r)
{
return ( (p->x >= r->x) amp;amp; (p->x < (r->x r->w)) amp;amp;
(p->y >= r->y) amp;amp; (p->y < (r->y r->h)) ) ? SDL_TRUE : SDL_FALSE;
}
/**
* brief Returns true if the rectangle has no area.
*/
SDL_FORCE_INLINE SDL_bool SDL_RectEmpty(const SDL_Rect *r)
{
return ((!r) || (r->w <= 0) || (r->h <= 0)) ? SDL_TRUE : SDL_FALSE;
}
/**
* brief Returns true if the two rectangles are equal.
*/
SDL_FORCE_INLINE SDL_bool SDL_RectEquals(const SDL_Rect *a, const SDL_Rect *b)
{
return (a amp;amp; b amp;amp; (a->x == b->x) amp;amp; (a->y == b->y) amp;amp;
(a->w == b->w) amp;amp; (a->h == b->h)) ? SDL_TRUE : SDL_FALSE;
}
/**
* brief Determine whether two rectangles intersect.
*
* return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
*/
extern DECLSPEC SDL_bool SDLCALL SDL_HasIntersection(const SDL_Rect * A,
const SDL_Rect * B);
/**
* brief Calculate the intersection of two rectangles.
*
* return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
*/
extern DECLSPEC SDL_bool SDLCALL SDL_IntersectRect(const SDL_Rect * A,
const SDL_Rect * B,
SDL_Rect * result);
/**
* brief Calculate the union of two rectangles.
*/
extern DECLSPEC void SDLCALL SDL_UnionRect(const SDL_Rect * A,
const SDL_Rect * B,
SDL_Rect * result);
/**
* brief Calculate a minimal rectangle enclosing a set of points
*
* return SDL_TRUE if any points were within the clipping rect
*/
extern DECLSPEC SDL_bool SDLCALL SDL_EnclosePoints(const SDL_Point * points,
int count,
const SDL_Rect * clip,
SDL_Rect * result);
/**
* brief Calculate the intersection of a rectangle and line segment.
*
* return SDL_TRUE if there is an intersection, SDL_FALSE otherwise.
*/
extern DECLSPEC SDL_bool SDLCALL SDL_IntersectRectAndLine(const SDL_Rect *
rect, int *X1,
int *Y1, int *X2,
int *Y2);
/* Ends C function definitions when using C */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif /* SDL_rect_h_ */
Комментарии:
1. Это безобидное предупреждение. Отключите его (прочитайте комментарии «исправлено» в нижней части поста).
2. Есть два варианта: 1) Переписать SDL для использования
bool
enum class
или 2) проигнорировать предложение и отключить предупреждение . Я предлагаю последнее, потому что первое будет довольно сложным делом.3. Спасибо, я как раз это читал. Хотя я немного туповат, лол.. Куда бы я поместил эту часть кода? Это только одно место вверху или в каждой строке, в которой есть SDL_Rect?
4. Отключение на самом деле усугубляет ситуацию, так как теперь я получаю предупреждения от программы, которую я хотел создать. Например, «Используя неинициализированный x» и все еще получая ошибку bool по какой-то странной причине..
5. Похоже, ты совершил ошибку. Ссылка, которую я дал, показывает, как отключить предупреждение — если у вас достаточно новая версия MSVC — и вы делаете это в том месте, где вы #включаете файлы заголовков SDL.