Skip to content
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

Remove empty record types #135

Conversation

suve
Copy link
Collaborator

@suve suve commented May 24, 2024

SDL's API contains a lot of opaque data types, where the user is given a pointer and is expected to never dereference it. Until now, we used empty records to denote such types, and then defined pointer types to said empty records. This commit removes all(*) the opaque types and instead declares pointer types using the type Pointer notation. This makes it clear that the user is expected not to use the "raw" types, only pointer types, while maintaining type safety.

Check the discussion in issue #63 for more details about the rationale behind this change.

(*) units/sdl2_net.pas still contains some empty records. However, that file is very messy right now and needs a proper rewrite.

SDL's API contains a lot of opaque data types, where the user is given
a pointer and is expected to never dereference it. Until now, we used
empty records to denote such types, and then defined pointer types to
said empty records. This commit removes all(*) the opaque types and
instead declares pointer types using the "type Pointer" notation.
This makes it clear that the user is expected not to use the "raw"
types, only pointer types, while maintaining type safety.

Check the discussion in the link below for more details
about the rationale behind this change.
PascalGameDevelopment#63

(*) units/sdl2_net.pas still contains some empty records.
However, that file is very messy right now and needs a proper rewrite.
@Free-Pascal-meets-SDL-Website
Copy link
Collaborator

Hi, thanks for this update.

Could you update this file, please:
https://github.com/PascalGameDevelopment/SDL2-for-Pascal/blob/master/CHEATSHEET.md
Chapter "Opaque structs":
"Preferred" needs an update, as there is an error in it: TType = type Pointer needs to be fixed; and just change "Alternatively" to "DO NOT do this")

Best regards

This change reflects the recent change in favour of using "type Pointer"
instead of empty record types when dealing with opaque structs.
@suve suve force-pushed the remove-empty-record-types branch from 334bbe8 to 89ac010 Compare June 2, 2024 11:34
@Free-Pascal-meets-SDL-Website
Copy link
Collaborator

Thanks, I like the details in the cheat sheet now!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants