2022-12-24 10:59:04 -05:00
|
|
|
import colors
|
|
|
|
|
2022-12-24 12:10:46 -05:00
|
|
|
|
2022-12-24 10:59:04 -05:00
|
|
|
class WeatherDisplay:
|
2022-12-25 11:01:48 -05:00
|
|
|
def __init__(self, characterDisplay, topRow):
|
2022-12-24 10:59:04 -05:00
|
|
|
self.characterDisplay = characterDisplay
|
|
|
|
self.topRow = topRow
|
2022-12-25 14:23:31 -05:00
|
|
|
self.twoDigitStartColumn = 9
|
|
|
|
self.oneDigitStartColumn = 13
|
2022-12-24 10:59:04 -05:00
|
|
|
self.currentTemperature = [9, 9]
|
2022-12-25 14:23:31 -05:00
|
|
|
self.color = colors.GREEN
|
2022-12-25 11:01:48 -05:00
|
|
|
self.weatherFile = 'weather.txt'
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def showWeather(self):
|
2022-12-25 12:33:06 -05:00
|
|
|
temperature = self.getTemperature()
|
|
|
|
|
|
|
|
if self.isTemperatureMissing(temperature):
|
2022-12-24 19:10:15 -05:00
|
|
|
self.characterDisplay.clearRow(self.topRow)
|
2022-12-25 12:33:06 -05:00
|
|
|
else:
|
|
|
|
self.showTemperature(list(temperature))
|
|
|
|
|
|
|
|
def getTemperature(self):
|
|
|
|
try:
|
|
|
|
with open(self.weatherFile) as file:
|
|
|
|
return file.readline().strip()
|
|
|
|
except Exception as e:
|
|
|
|
print(e, flush=True)
|
|
|
|
return 'error'
|
|
|
|
|
|
|
|
def isTemperatureMissing(self, temperature):
|
|
|
|
return temperature == 'error' or temperature == 'init' or temperature == 'halted'
|
2022-12-24 10:59:04 -05:00
|
|
|
|
|
|
|
def showTemperature(self, temperature):
|
2022-12-24 19:10:15 -05:00
|
|
|
if temperature != self.currentTemperature:
|
|
|
|
self.characterDisplay.clearRow(self.topRow)
|
2022-12-24 10:59:04 -05:00
|
|
|
|
2022-12-25 14:23:31 -05:00
|
|
|
start = self.oneDigitStartColumn if (
|
|
|
|
self.isOneDigit(temperature)
|
|
|
|
) else self.twoDigitStartColumn
|
2022-12-24 19:10:15 -05:00
|
|
|
|
|
|
|
for c in temperature:
|
|
|
|
if c == '-':
|
|
|
|
self.characterDisplay.displayNegative(
|
|
|
|
start-3, self.topRow, self.color)
|
|
|
|
else:
|
|
|
|
self.characterDisplay.displayDigit(
|
|
|
|
start, self.topRow, c, self.color)
|
|
|
|
start = start + 4
|
|
|
|
|
|
|
|
self.currentTemperature = temperature
|
2022-12-25 14:23:31 -05:00
|
|
|
|
|
|
|
def isOneDigit(self, temperature):
|
|
|
|
return (len(temperature) == 2 and temperature[0] == '-') or len(temperature) == 1
|