-
Notifications
You must be signed in to change notification settings - Fork 217
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
fix initialization of icontransition. #5387
Open
amnykon
wants to merge
1
commit into
ZeroK-RTS:master
Choose a base branch
from
amnykon:fixInitailizationOfIconTransition
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ local renderAtPos = {} | |
|
||
-- Forward function declarations | ||
local GotHotkeypress = function() end | ||
local UpdateDynamic = function() end | ||
local UpdateDynamic = function(shouldInit) end | ||
|
||
-- Localized Spring functions | ||
local echo = Spring.Echo | ||
|
@@ -178,7 +178,7 @@ function GotHotkeypress() | |
target_mode = nil | ||
kp_timer = nil | ||
current_mode = "Dynamic" | ||
UpdateDynamic() | ||
UpdateDynamic(true) | ||
else | ||
waiting_on_double = true | ||
kp_timer = spGetTimer() | ||
|
@@ -194,7 +194,7 @@ function GotHotkeypress() | |
end | ||
end | ||
|
||
function UpdateDynamic() | ||
function UpdateDynamic(shouldInit) | ||
local cs = spGetCameraState() | ||
local gy = spGetGroundHeight(cs.px, cs.pz) | ||
testHeight = cs.py - gy | ||
|
@@ -208,12 +208,12 @@ function UpdateDynamic() | |
if showing_icons and drawIcons then | ||
drawIcons = false | ||
end | ||
if showing_icons and testHeight < options.icontransitiontop.value - tolerance then | ||
|
||
if (shouldInit or showing_icons) and testHeight < options.icontransitiontop.value - tolerance then | ||
spSendCommands("disticon " .. 100000) | ||
showing_icons = false | ||
drawIcons = true | ||
elseif not showing_icons and testHeight > options.icontransitiontop.value + tolerance then | ||
elseif (shouldInit or not showing_icons) and testHeight >= options.icontransitiontop.value + tolerance then | ||
spSendCommands("disticon " .. 0) | ||
showing_icons = true | ||
end | ||
|
@@ -369,7 +369,7 @@ function widget:Initialize() | |
target_mode = nil | ||
kp_timer = nil | ||
current_mode = "Dynamic" | ||
UpdateDynamic() | ||
UpdateDynamic(true) | ||
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. IMO instead of adding the bool param, do a manual check here without the tolerance bound. |
||
|
||
local allUnits = spGetAllUnits() | ||
for _,unitID in pairs (allUnits) do | ||
|
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.
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.
Note that here it's
+tolerance
and in the one above it's-tolerance
so this will still fail to apply anything iftestHeight
happens to be within the tolerance boundThere 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.
The problem I have is sowing_icons is false (after switching from "Off" mode to "Dynamic") or nil (on initial widget load after
/luaUI reload
) and I have options.icontransitiontop maxed out. Since this code is written to toggle based on zoom height, the code never triggers for me once one of those two conditions is meet.I have not had issues with the tolerances, thought I can see that could be a problem. I see 2 fixes for it.
which approach do you prefer?
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.
setModeToDynamic
function sounds good.