Meilleur affichage de l'entête

This commit is contained in:
Mylloon 2022-04-10 15:18:36 +02:00
parent 28aeb92c65
commit 7ef27412ad
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -21,8 +21,8 @@ void Evenement::arreterSimulation(Univers * univers) {
void Evenement::affichage(Univers * univers, const bool traits) noexcept {
// Entête (la taille de la ligne séparatrice s'adapte en fonction du texte à afficher)
std::cout <<
std::string(37 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') <<
std::endl << "Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour <<
std::string(39 + std::to_string(univers->ID).size() + std::to_string(univers->m_tour).size(), '-') <<
std::endl << " Affichage de l'univers n°" << univers->ID << " au tour n°" << univers->m_tour <<
"." <<
std::endl;