This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
patterns/observer/delivery/currentconditionsdisplay.d

32 lines
775 B
D
Raw Permalink Normal View History

2022-11-11 09:54:25 +00:00
module observer.delivery.currentconditionsdisplay;
2022-11-11 07:56:59 +00:00
2022-11-11 09:54:25 +00:00
import observer.delivery.displayelement;
import observer.delivery.observer;
import observer.delivery.weatherdata;
2022-11-11 00:03:18 +00:00
import std.stdio : writeln;
import std.format : format;
class CurrentConditionsDisplay : Observer, DisplayElement
{
private:
float temperature;
float humidity;
public:
this(WeatherData weatherData)
{
weatherData.registerObserver(this);
}
2022-11-11 09:54:25 +00:00
override void update(float temperature, float humidity, float pressure)
2022-11-11 00:03:18 +00:00
{
2022-11-11 09:54:25 +00:00
this.temperature = temperature;
this.humidity = humidity;
2022-11-11 00:03:18 +00:00
display();
}
override void display()
{
writeln("Current conditions: %3.1f".format(temperature), "F degrees and %3.1f%% humidity".format(humidity));
}
}