-
Notifications
You must be signed in to change notification settings - Fork 189
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
Improve sector naming #1628
Improve sector naming #1628
Conversation
Fixes daid#514 "Sectors A0 to A99 appear two times in a same row just one after the other" * Use negative numbers immediately when headed West instead of counting down from 99 first * Standardizes the double-letter notation both North (lowercase same as existing behavior on master) and South (uppercase) which results in a much more usable play area * I've reviewed all of the stock scenarios for any impact * Sector name in "Birth of the Atlantis" was the wrong case * As far as I can tell there are no other changes required * Most scenarios only use the unambiguous, non-glitched areas of the map See the issue for more information.
I have added another commit that contains a lua utility function call sectorToXY() which returns x,y coordinates for a named sector following the improved scheme laid out in this PR. Here is a test case with some screenshots:
|
However, this only works if font_bold is set to the new default (or another mixed-case font for that matter), as the old standard font is Uppercase only. |
Also, while I agree that the negative numberings seems logical, it is a bit inconsistent that the letters don't follow the same direction. |
I like the idea. Will the new release default to an upper and lower case font? |
It works on the current master branch. Is there a way to change the font from the default? I don't see it exposed in the options menu.
I'm not looking to raise any questions at all, this is not an aesthetic change, it's a bug fix. The negative numbers are already there, you just have to travel through duplicate-named sectors before reaching them. I'm not trying to add symmetry or enhance the style or feel of the game; heck, having a janky sector system that evolved over time and is "weird" can just be part of the lore AFAIC. This patch improves upon an obvious and highly limiting bug by changing as few things as possible and without introducing any new concepts whatsoever. I think adding a center sector and redefining the origin would be a large change for little benefit in comparison. If the core team is motivated to re-vamp the sector system that's fine, but it's not my place to make that sort of creative change. In the meantime, it would help our scenario development plans to have a map that isn't bugged right near the start position. |
Currently the the master branch has upper/lowercase as shown in my screenshots. I'm hoping this patch will merge before someone decides to switch it back to uppercase-only :) |
To give you some new ideas, this is the sector system made by Amir and used in our larp fork of EE. I didn't maintain version up to date, but I think that this feature could be added without a lot of work 99410891_975529672877934_3621388352357400576_n.mp4By the way, I like your PR, sector name looks easier to read. |
#1628 512 |
@amir-arad I read PR 512 and 518 before starting my work and I think they are really cool. I am trying to specifically address @daid 's objections to that work by limiting complexity and just focusing on the game-breaking problem itself. |
it is the font_bold option in options.ini in this case, and font_regular for the mosts parts of the text.
Fair enough. I was more like thinking aloud, like "if we do a potentially breaking change, we might consider if we want to change other things as well while we're at it." But thanks to getSectorName(), it's probably not that much of a breaking change anyways. |
@aBlueShadow Thanks for the explanation of the font preferences. I hadn't noticed options.ini before.
That is indeed a bit of a problem. All told, such users would STILL be in a better situation than before, with a much larger unambiguous play area, but it's certainly not ideal to have this option change the grid behavior. In the old code, there are actually 4 instances of the "F5" sector, and for those stuck in upper-case land, now there would only be two of each overlapping sector ("FF5" and friends in this case) :) I hope this change is entirely non-breaking, and simply improves the situation without any visible change for players who have not already noticed the problems. |
I know I've been silent, but I'm still alive ;-) Let me first comment on a few basic things. The original sector labeling code never was made with "large scale maps" in mind. It was just a "it's good enough for now" kind of solution. So, addressing this is a really good thing! Thanks for putting in the effort. About #963, I find that way too overcomplicated. It has a lot of customizable moving parts that need to be "just right" for things not to break in subtile ways, so that's why I never approved of it. On this pull request. I think I rather see the |
Thanks for the feedback, @daid . I'll take a shot at porting sectorToXY into the engine! I think the consistency problem (notably the sticky linux default) can probably be taken care of with a release note. It may also intersect with this PR [https://github.com//pull/1437] if they merge during the same release, so it requires a bit of care. Luckily, the upper/lower equivalent sectors are actually very far apart from each other, so practically speaking it's unlikely to matter (and is still an improvement on the existing situation). I thought about it and decided to consider it a minor extra challenge when dealing with huge distances, but am certainly open to a better proposal should anyone else have one to add. I also think that if there is a change to be made there, it could come as a separate PR since it isn't this change that alters the font defaults. (ie. I didn't decide to use upper/lower, or even "reveal" the existing upper/lower with this PR, it happened elsewhere). |
Excellent points :) I'm just merging this now, as it definitely makes things better. |
Thanks for the merge! I do have the port of sectorToXY() into C++ mostly complete, just need to finish up the equivalent testing and then I'll post it as a separate PR, coming soon! |
* Improve sector naming Fixes daid#514 "Sectors A0 to A99 appear two times in a same row just one after the other" * Use negative numbers immediately when headed West instead of counting down from 99 first * Standardizes the double-letter notation both North (lowercase same as existing behavior on master) and South (uppercase) which results in a much more usable play area * I've reviewed all of the stock scenarios for any impact * Sector name in "Birth of the Atlantis" was the wrong case * As far as I can tell there are no other changes required * Most scenarios only use the unambiguous, non-glitched areas of the map See the issue for more information. * Lua Utility Funtion SectorToXY * Correcting variable scope in sectorToXY
Fixes #514
"Sectors A0 to A99 appear two times in a same row just one after the other"
from 99 first
existing behavior on master) and South (uppercase) which results in a much
more usable play area
See the issue for more information.