blob: c729f4cc1de024230ca01a993fc146b32de23801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "settings/lib/ISettingCallback.h"
#include "utils/InfoLoader.h"
#include <string>
#define WEATHER_LABEL_LOCATION 10
#define WEATHER_IMAGE_CURRENT_ICON 21
#define WEATHER_LABEL_CURRENT_COND 22
#define WEATHER_LABEL_CURRENT_TEMP 23
#define WEATHER_LABEL_CURRENT_FEEL 24
#define WEATHER_LABEL_CURRENT_UVID 25
#define WEATHER_LABEL_CURRENT_WIND 26
#define WEATHER_LABEL_CURRENT_DEWP 27
#define WEATHER_LABEL_CURRENT_HUMI 28
static const std::string ICON_ADDON_PATH = "resource://resource.images.weathericons.default";
struct ForecastDay
{
std::string m_icon;
std::string m_overview;
std::string m_day;
std::string m_high;
std::string m_low;
};
#define NUM_DAYS 7
class CWeatherInfo
{
public:
ForecastDay forecast[NUM_DAYS];
void Reset()
{
lastUpdateTime.clear();
currentIcon.clear();
currentConditions.clear();
currentTemperature.clear();
currentFeelsLike.clear();
currentWind.clear();
currentHumidity.clear();
currentUVIndex.clear();
currentDewPoint.clear();
for (ForecastDay& f : forecast)
{
f.m_icon.clear();
f.m_overview.clear();
f.m_day.clear();
f.m_high.clear();
f.m_low.clear();
}
};
std::string lastUpdateTime;
std::string location;
std::string currentIcon;
std::string currentConditions;
std::string currentTemperature;
std::string currentFeelsLike;
std::string currentUVIndex;
std::string currentWind;
std::string currentDewPoint;
std::string currentHumidity;
std::string busyString;
std::string naIcon;
};
class CWeatherManager
: public CInfoLoader, public ISettingCallback
{
public:
CWeatherManager(void);
~CWeatherManager(void) override;
static bool GetSearchResults(const std::string &strSearch, std::string &strResult);
std::string GetLocation(int iLocation);
const std::string& GetLastUpdateTime() const { return m_info.lastUpdateTime; }
const ForecastDay &GetForecast(int day) const;
bool IsFetched();
void Reset();
void SetArea(int iLocation);
int GetArea() const;
protected:
CJob *GetJob() const override;
std::string TranslateInfo(int info) const override;
std::string BusyInfo(int info) const override;
void OnJobComplete(unsigned int jobID, bool success, CJob *job) override;
void OnSettingChanged(const std::shared_ptr<const CSetting>& setting) override;
void OnSettingAction(const std::shared_ptr<const CSetting>& setting) override;
private:
CWeatherInfo m_info;
};
|