-
-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start getting base module ready for SDL3 #3171
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ static int pg_is_init = 0; | |
static int pg_sdl_was_init = 0; | ||
SDL_Window *pg_default_window = NULL; | ||
pgSurfaceObject *pg_default_screen = NULL; | ||
static char *pg_env_blend_alpha_SDL2 = NULL; | ||
static int pg_env_blend_alpha_SDL2 = 0; | ||
|
||
static void | ||
pg_install_parachute(void); | ||
|
@@ -170,7 +170,7 @@ static pgSurfaceObject * | |
pg_GetDefaultWindowSurface(void); | ||
static void | ||
pg_SetDefaultWindowSurface(pgSurfaceObject *); | ||
static char * | ||
static int | ||
pg_EnvShouldBlendAlphaSDL2(void); | ||
|
||
/* compare compiled to linked, raise python error on incompatibility */ | ||
|
@@ -341,13 +341,13 @@ pg_init(PyObject *self, PyObject *_null) | |
|
||
/*nice to initialize timer, so startup time will reflec pg_init() time*/ | ||
#if defined(WITH_THREAD) && !defined(MS_WIN32) && defined(SDL_INIT_EVENTTHREAD) | ||
pg_sdl_was_init = SDL_Init(SDL_INIT_EVENTTHREAD | SDL_INIT_TIMER | | ||
pg_sdl_was_init = SDL_Init(SDL_INIT_EVENTTHREAD | PG_INIT_TIMER | | ||
PG_INIT_NOPARACHUTE) == 0; | ||
#else | ||
pg_sdl_was_init = SDL_Init(SDL_INIT_TIMER | PG_INIT_NOPARACHUTE) == 0; | ||
pg_sdl_was_init = SDL_Init(PG_INIT_TIMER | PG_INIT_NOPARACHUTE) == 0; | ||
#endif | ||
|
||
pg_env_blend_alpha_SDL2 = SDL_getenv("PYGAME_BLEND_ALPHA_SDL2"); | ||
pg_env_blend_alpha_SDL2 = SDL_getenv("PYGAME_BLEND_ALPHA_SDL2") != NULL; | ||
|
||
/* initialize all pygame modules */ | ||
for (i = 0; modnames[i]; i++) { | ||
|
@@ -2075,28 +2075,28 @@ pg_SetDefaultWindowSurface(pgSurfaceObject *screen) | |
pg_default_screen = screen; | ||
} | ||
|
||
SDL_PixelFormat *pg_default_convert_format = NULL; | ||
PG_PixelFormatEnum pg_default_convert_format = 0; | ||
|
||
static SDL_PixelFormat * | ||
static PG_PixelFormatEnum | ||
pg_GetDefaultConvertFormat(void) | ||
{ | ||
if (pg_default_screen) { | ||
#if SDL_VERSION_ATLEAST(3, 0, 0) | ||
return pg_default_screen->surf->format; | ||
#else | ||
return pg_default_screen->surf->format->format; | ||
#endif | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This whole block of code can be |
||
} | ||
return pg_default_convert_format; | ||
} | ||
|
||
static SDL_PixelFormat * | ||
pg_SetDefaultConvertFormat(Uint32 format) | ||
static void | ||
pg_SetDefaultConvertFormat(PG_PixelFormatEnum format) | ||
{ | ||
if (pg_default_convert_format != NULL) { | ||
SDL_FreeFormat(pg_default_convert_format); | ||
} | ||
pg_default_convert_format = SDL_AllocFormat(format); | ||
return pg_default_convert_format; // returns for NULL error checking | ||
pg_default_convert_format = format; | ||
} | ||
|
||
static char * | ||
static int | ||
pg_EnvShouldBlendAlphaSDL2(void) | ||
{ | ||
return pg_env_blend_alpha_SDL2; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1582,66 +1582,54 @@ surf_convert(pgSurfaceObject *self, PyObject *args) | |
static SDL_Surface * | ||
pg_DisplayFormat(SDL_Surface *surface) | ||
{ | ||
SDL_PixelFormat *default_format = pg_GetDefaultConvertFormat(); | ||
PG_PixelFormatEnum default_format = pg_GetDefaultConvertFormat(); | ||
if (!default_format) { | ||
SDL_SetError( | ||
"No convert format has been set, try display.set_mode()" | ||
" or Window.get_surface()."); | ||
return NULL; | ||
} | ||
return PG_ConvertSurface(surface, default_format); | ||
return PG_ConvertSurfaceFormat(surface, default_format); | ||
} | ||
|
||
static SDL_Surface * | ||
pg_DisplayFormatAlpha(SDL_Surface *surface) | ||
{ | ||
SDL_PixelFormat *dformat; | ||
Uint32 pfe; | ||
Uint32 amask = 0xff000000; | ||
Uint32 rmask = 0x00ff0000; | ||
Uint32 gmask = 0x0000ff00; | ||
Uint32 bmask = 0x000000ff; | ||
|
||
dformat = pg_GetDefaultConvertFormat(); | ||
PG_PixelFormatEnum pfe = SDL_PIXELFORMAT_ARGB8888; | ||
PG_PixelFormatEnum dformat = pg_GetDefaultConvertFormat(); | ||
if (!dformat) { | ||
SDL_SetError( | ||
"No convert format has been set, try display.set_mode()" | ||
" or Window.get_surface()."); | ||
return NULL; | ||
} | ||
|
||
switch (PG_FORMAT_BytesPerPixel(dformat)) { | ||
case 2: | ||
/* same behavior as SDL1 */ | ||
if ((dformat->Rmask == 0x1f) && | ||
(dformat->Bmask == 0xf800 || dformat->Bmask == 0x7c00)) { | ||
rmask = 0xff; | ||
bmask = 0xff0000; | ||
} | ||
switch (dformat) { | ||
#if SDL_VERSION_ATLEAST(3, 0, 0) | ||
case SDL_PIXELFORMAT_XBGR1555: | ||
#else | ||
case SDL_PIXELFORMAT_BGR555: | ||
#endif | ||
case SDL_PIXELFORMAT_ABGR1555: | ||
case SDL_PIXELFORMAT_BGR565: | ||
case PG_PIXELFORMAT_XBGR8888: | ||
case SDL_PIXELFORMAT_ABGR8888: | ||
pfe = SDL_PIXELFORMAT_ABGR8888; | ||
break; | ||
case 3: | ||
case 4: | ||
/* keep the format if the high bits are free */ | ||
if ((dformat->Rmask == 0xff) && (dformat->Bmask == 0xff0000)) { | ||
rmask = 0xff; | ||
bmask = 0xff0000; | ||
} | ||
else if (dformat->Rmask == 0xff00 && | ||
(dformat->Bmask == 0xff000000)) { | ||
amask = 0x000000ff; | ||
rmask = 0x0000ff00; | ||
gmask = 0x00ff0000; | ||
bmask = 0xff000000; | ||
} | ||
|
||
case SDL_PIXELFORMAT_BGRX8888: | ||
case SDL_PIXELFORMAT_BGRA8888: | ||
#if SDL_BYTEORDER == SDL_BIG_ENDIAN | ||
case SDL_PIXELFORMAT_BGR24: | ||
#else | ||
case SDL_PIXELFORMAT_RGB24: | ||
#endif | ||
pfe = SDL_PIXELFORMAT_BGRA8888; | ||
break; | ||
default: /* ARGB8888 */ | ||
|
||
default: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like the explanative diagram, with that I can see the equivalence of this code with the old code. Now that we are moving to pixelformats here, we could probably further improve this logic to be simpler and more correct, by dealing with the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I figured my comment was not clear, and I got the itch to work on it now. So what I'm essentially proposing is: static SDL_Surface *
pg_DisplayFormatAlpha(SDL_Surface *surface)
{
PG_PixelFormatEnum pfe = SDL_PIXELFORMAT_ARGB8888;
PG_PixelFormatEnum dformat = pg_GetDefaultConvertFormat();
if (!dformat) {
SDL_SetError(
"No convert format has been set, try display.set_mode()"
" or Window.get_surface().");
return NULL;
}
if (SDL_ISPIXELFORMAT_ALPHA(dformat)) {
/* Display surface already has alpha, use the exact same format */
pfe = dformat;
}
else if (SDL_ISPIXELFORMAT_ARRAY(dformat)) {
/* In SDL2 this path is only triggered for
* SDL_PIXELFORMAT_RGB24/SDL_PIXELFORMAT_BGR24 */
switch (SDL_PIXELORDER(dformat)) {
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
case SDL_ARRAYORDER_RGB:
pfe = SDL_PIXELFORMAT_ARGB8888;
break;
case SDL_ARRAYORDER_BGR:
pfe = SDL_PIXELFORMAT_BGRA8888;
break;
#else
case SDL_ARRAYORDER_RGB:
pfe = SDL_PIXELFORMAT_BGRA8888;
break;
case SDL_ARRAYORDER_BGR:
pfe = SDL_PIXELFORMAT_ARGB8888;
break;
#endif
default:
break;
}
}
else if (SDL_ISPIXELFORMAT_PACKED(dformat)) {
switch (SDL_PIXELORDER(dformat)) {
case SDL_PACKEDORDER_XRGB:
pfe = SDL_PIXELFORMAT_ARGB8888;
break;
case SDL_PACKEDORDER_RGBX:
pfe = SDL_PIXELFORMAT_RGBA8888;
break;
case SDL_PACKEDORDER_XBGR:
pfe = SDL_PIXELFORMAT_ABGR8888;
break;
case SDL_PACKEDORDER_BGRX:
pfe = SDL_PIXELFORMAT_BGRA8888;
break;
default:
break;
}
}
return PG_ConvertSurfaceFormat(surface, pfe);
} Still gonna PR it later so it can be independently reviewed |
||
break; | ||
} | ||
pfe = SDL_MasksToPixelFormatEnum(32, rmask, gmask, bmask, amask); | ||
if (pfe == SDL_PIXELFORMAT_UNKNOWN) { | ||
SDL_SetError("unknown pixel format"); | ||
return NULL; | ||
} | ||
return PG_ConvertSurfaceFormat(surface, pfe); | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -157,12 +157,8 @@ window_get_surface(pgWindowObject *self, PyObject *_null) | |||||
return RAISE(pgExc_SDLError, SDL_GetError()); | ||||||
} | ||||||
|
||||||
if (pg_GetDefaultConvertFormat() == NULL) { | ||||||
if (pg_SetDefaultConvertFormat(_surf->format->format) == NULL) { | ||||||
/* This is very unlikely, I think only would happen if SDL runs | ||||||
* out of memory when allocating the format. */ | ||||||
return RAISE(pgExc_SDLError, SDL_GetError()); | ||||||
} | ||||||
if (pg_GetDefaultConvertFormat() == 0) { | ||||||
pg_SetDefaultConvertFormat(_surf->format->format); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this PR is ready, except that this minor issue has not been addressed yet. Adding the abstraction would fix this code for the SDL3 case, now it would error. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well in my defense this PR is to port base, not window. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fair, we can deal with it later then. Anyways it is an issue that a compiler can catch, so it won't go unnoticed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah when you left your comment I stared at the line and was like how did the compiler not catch that. It took me a sec to realize the compiler isn't catching it because Window.c is not being compiled. |
||||||
} | ||||||
|
||||||
if (self->surf == NULL) { | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the addition of this macro. I believe defining another macro like
would also be useful
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to wait a bit on that, see what abstractions evolve out of porting other modules for that case. My preliminary work has shown a big challenge in getting colorkey data and keeping it with the format, so maybe the bare format enum will be a rarity.