mirror of
https://gitlab.com/klmp200/LO41.git
synced 2025-07-15 22:29:24 +00:00
Quick and dirty, surtout dirty…
This commit is contained in:
@ -25,6 +25,8 @@ void * runnable_Visitor(void * void_this){
|
||||
printf("Visiteur %s : J'apelle à l'interphone\nVisiteur %s : J'apprends que %s habite à l'étage %d\n", this->name, this->name, this->contact_name, (this->destination = data->use_call_box(data, this->contact_name)));
|
||||
if (this->destination == this->position)
|
||||
printf("Visiteur %s : pas besoin de prendre l'ascenseur pour cet étage, je vais y aller à pied\n", this->name);
|
||||
else if (this->destination == -1)
|
||||
printf("Visiteur %s : Je me suis trompé de bâtiment, %s n'habite pas ici.\n", this->name, this->contact_name);
|
||||
else
|
||||
data->main_building->go_to_floor(data->main_building, this->position, this->destination, passenger);
|
||||
|
||||
|
Reference in New Issue
Block a user