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

Move getDirection from tools to items.cpp #4553

Merged
merged 1 commit into from
Oct 8, 2023

Conversation

ranisalt
Copy link
Member

@ranisalt ranisalt commented Oct 8, 2023

Pull Request Prelude

Changes Proposed

This function is only used in one location, therefore it does not need to be visible in other compilation units. Additionally, changed it from a sequence of branches to a (kind of) jump table to reduce complexity.

if (auto it = DirectionsMap.find(string); it != DirectionsMap.end()) {
return it->second;
}
fmt::print("[Warning - getDirection] Invalid direction: {}\n", string);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously it would just silently fail if the value is invalid

Copy link
Contributor

@MillhioreBT MillhioreBT left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ranisalt ranisalt merged commit c84904e into otland:master Oct 8, 2023
19 checks passed
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.

None yet

3 participants