The origin of a drawable should always be updated whenever the drawable is manipulated unless you can be sure that it doesn't need it for some reason. This is particularly important with texts that change string, fonts, styles, sizes etc..
Also remember that the centre of an actual visible bit of text, the origin should also take into account the position of the local bounds (as an sf::Text's bounds can be non-zero) so it's likely that you should use (presuming SFML 2.6+) something like:
text.setOrigin(text.getLocalBounds().getPosition() + (text.getLocalBounds().getSize() / 2.f));
If you are interested in using a library that calculates different parts of a drawable automatically (or understand how to calculate it for yourself), then please feel free to have a look at Plinth (https://github.com/Hapaxia/Plinth/wiki), in particular "SFML Anchor" (the code - similar to above - that calculates the centre, for example, is here (https://github.com/Hapaxia/Plinth/blob/main/Plinth/Sfml/Anchor.inl#L70-L71)). This also works with SFML pre-v2.6. Note that is still requires manually updating of the origin when needed; it just simplifies the code (and tends to make it more readable).
I cannot speak of SFML team. But you can easily add template that handles that for each Transformable.
#include <SFML/Graphics/Transformable.hpp>
#include <type_traits>
template <typename T>
concept SfTransformable = std::is_base_of_v<sf::Transformable, T>;
void setOriginToCenter (SfTransformable auto& sfTransformableObject)
{
sfTransformableObject.setOrigin(sfTransformableObject.getLocalBounds().getPosition()
+ (sfTransformableObject.getLocalBounds().getSize() / 2.f));
}
Now you can try if it works. It would even work for your graphical entities based on sf::Transformable.
#include <SFML/Graphics.hpp>
int main ()
{
sf::RectangleShape shape;
setOriginToCenter(shape);
sf::Text text;
setOriginToCenter(text);
int a;
//setOriginToCenter(a); // error - do not pass concept SfTransformable
sf::Vector2f vec2f;
//setOriginToCenter(vec2f) // error - do not pass concept SfTransformable
return 0;
}
The origin of a drawable should always be updated
I was proposing for SFML to handle this. Thus, when I set the origin of a text to its center, then update the string in the text, I wouldn't have to worry about updating the origin as well.
The problem with this is that the required result of this can be dependent on its use, especially with text.
For example, when you change a character in all lower case string to its capital, the text would move downwards. Most often, it's best to find the "best" centre for the text and then keep that when changing the string. Note that I'm, here, talking about the y value only; the x still needs updating. Also, this is more complicated for multi-line text.
My main point really is that sometimes you may want to allow it to move the text so that the true centre is where you position and sometimes you may want to text a centre based on a 'usual baseline' and centralise the x, meaning that, since that this decision is made by the user, the user should probably centre the text manually.
Of course, you can add simple functions to do this automatically in the specific way you want it, if required. For example:
void setTextString(sf::Text& text, const sf::String& string, const bool autoCenter = true)
{
text.setString(string);
if (autoCenter)
text.setOrigin( /* you know this bit ;) */ );
}
// ...
sf::Text text;
// set up the text including font and character size first!
setTextString(text, "Some string");