Codechange: Add and use Rect WithX/WithY methods.#14669
Merged
PeterN merged 2 commits intoOpenTTD:masterfrom Sep 27, 2025
Merged
Codechange: Add and use Rect WithX/WithY methods.#14669PeterN merged 2 commits intoOpenTTD:masterfrom
PeterN merged 2 commits intoOpenTTD:masterfrom
Conversation
LordAro
reviewed
Sep 27, 2025
Member
LordAro
left a comment
There was a problem hiding this comment.
(warning, bike shedding) how about WithX ? Set implies it modifies the original object
Member
Author
Good call, that's why (some of) the current methods are I did also consider |
This simplifies creating a new Rect with specific horizontal or vertical coordinates.
rubidium42
approved these changes
Sep 27, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation / Problem
Often we have a
Rectbut need to set the left and right, or top and button, coordinates directly. This requires decomposing theRectinto a new one, making sure that parameters are the correct signed type.Sometimes they are set based on another existing
Rect.Description
Add
WithX()andWithY()methods toSetX()andSetY()Rect, in two forms: one takes two coordinates to replace left and right or top and bottom as appropriate, the other takes anotherRect, and does the same.Update some places that deconstruct
Rectto useWithX()orWithY(). Unlikely to be exhaustive.SetX()orSetY()Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.