-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Port GUI rendering improvements from JGRPP #8279
Conversation
fee5ac9
to
1cde9d6
Compare
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.
Quick analysis of the 1476 Warnings and 587 Errors in the win64 build log.
src/core/math_func.hpp
Outdated
{ | ||
if (unlikely(b >= std::numeric_limits<int>::max())) return 0; |
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.
warning C4018: '>=': signed/unsigned mismatch (MSVC warning)
src/core/math_func.hpp
Outdated
{ | ||
const int _b = static_cast<int>(b); | ||
if (unlikely(b >= std::numeric_limits<int>::max())) return signum(a); |
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.
warning C4018: '>=': signed/unsigned mismatch (MSVC warning)
src/core/math_func.hpp
Outdated
*/ | ||
static inline int DivTowardsNegativeInf(const int a, const uint b) | ||
{ | ||
if (unlikely(b >= std::numeric_limits<int>::max())) return min(0, signum(a)); |
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.
warning C4018: '>=': signed/unsigned mismatch (MSVC warning)
src/core/math_func.hpp
Outdated
*/ | ||
static inline int DivTowardsPositiveInf(const int a, const uint b) | ||
{ | ||
if (unlikely(b >= std::numeric_limits<int>::max())) return max(0, signum(a)); |
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.
warning C4018: '>=': signed/unsigned mismatch (MSVC warning)
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.
What is the compiler actually complaining about here? Should std::numeric_limits<int>::max()
be typecast to uint
?
Thanks for the review. |
4981e53
to
f1fc54c
Compare
f1fc54c
to
ed34f55
Compare
* This whole mechanism is controlled by an rectangle defined in #_invalid_rect. This | ||
* This whole mechanism was controlled by an rectangle defined in #_invalid_rect. This |
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.
Once I completely understand how the new system works, this documentation will be rewritten to reflect the current state of affairs.
extern void ViewportDrawChk(const Viewport *vp, int left, int top, int right, int bottom); | ||
ViewportDrawChk(_dirty_viewport, left, top, right, bottom); |
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 have a hunch that this may not be strictly necessary; or, at the very least, there may be a better way to refactor it. The public interface appears to be Window::DrawViewport
.
int abs_top = w->top + this->pos_y; | ||
SetDirtyBlocks(abs_left, abs_top, abs_left + this->current_x, abs_top + this->current_y); | ||
this->is_dirty = true; | ||
w->flags |= WF_DIRTY; |
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.
Do we need to be marking the entire window dirty here, or should it be WF_WIDGETS_DIRTY
; or have I misunderstood the situation completely?
/** | ||
* Mark entire window as dirty (in need of re-paint) | ||
* @ingroup dirty | ||
*/ | ||
void Window::SetDirty() const | ||
void Window::SetDirtyAsBlocks() |
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.
It seems like lots of things around here could use better names; this is probably one of them. I intend to deal with them all in a later commit; once I figure out what those names should be.
ed34f55
to
efef7ab
Compare
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.
5ba08b2
to
af2d5b9
Compare
Fix: Test division denominator against signed limits
This reverts commit 8652a4d. This is necessary to aid in the cherry-picking of commits from JGRPP.
…w list. This is to speed up marking all viewports dirty, which is done very frequently. Fix: Use new/delete for Viewport info struct Fix: Clip dirty region to be within viewport in MarkViewportDirty
Track dirty viewport areas seperately form general screen redraws. Maintain a dirty block grid per viewport, with a smaller block size. Use even smaller block size in viewport map mode. Use a rectangle array for general screen redraws instead of a block grid. Add a dirty bit to windows and widgets, to simplify the common case of repainting a whole window or widget, without catching neighbouring windows or viewports. Fix: Window re-rendering when ReInit() called within OnPaint/draw handler Fix: [Viewport] Updates being applied to shaded windows Fix: Wrong viewport virtual size in InitializeWindowViewport
AddDirtyBlocks is an internal implementation detail of SetDirtyBlocks, and its name should reflect that.
Doc: Improve documentation of dirty block system Partially re-applies 8652a4d, which was reverted to allow commits to be more easily cherry-picked from JGRPP. Doc: Further documentation improvements for dirty block system
DrawOverlappedWindow caches the value of _cur_dpi and then uses it to modify the structure. This commit removes that level of indirection in order to make operations on the global variable more obvious.
af2d5b9
to
10f4fd1
Compare
This PR is nearly a year out of date at this point, and there have been lots of changes in the general area of rendering in that time. Is there anything in here that's still relevant? |
All of the additional functionality in here is still in my branch, and I at least consider it beneficial. I was not planning on taking over this PR, so if the original author does not want to resurrect it then closing it seems sensible. |
Original author here. While I am still interested in seeing OpenTTD progress forward, there just hasn't been any time for me to work on it since gaining employment. If anybody else wants to take my work and run with it, they are more than welcome to do so. I agree that, at this point, it is likely not worth pursuing this PR (or any others that might be outstanding) in its present state. |
This branch aims to take the improved dirty block tracking that @JGRennison developed for JGRPP earlier this year and patch it into master so that everyone can benefit from it.
This is, essentially, a rehash of #8217 addressing many of the issues that were raised there; and is intended to follow up #8260.
The remaining issues raised in #8217 will be addressed in this PR, then the original will be closed.