2016-06-03 18:04:48 +06:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BACKENDS_NETWORKING_CURL_CLOUDICON_H
|
|
|
|
#define BACKENDS_NETWORKING_CURL_CLOUDICON_H
|
|
|
|
|
2016-06-04 16:02:20 +06:00
|
|
|
#include "graphics/transparent_surface.h"
|
|
|
|
|
2016-06-03 18:04:48 +06:00
|
|
|
namespace Networking {
|
|
|
|
|
2016-06-04 20:18:32 +06:00
|
|
|
class CloudIcon {
|
2016-06-04 19:14:54 +06:00
|
|
|
static const float ALPHA_STEP, ALPHA_MAX, ALPHA_MIN;
|
|
|
|
|
2016-06-05 15:44:05 +06:00
|
|
|
bool _wasVisible, _iconsInited, _showingDisabled;
|
|
|
|
Graphics::TransparentSurface _icon, _disabledIcon, _alphaIcon;
|
2016-06-04 19:14:54 +06:00
|
|
|
float _currentAlpha;
|
|
|
|
bool _alphaRising;
|
2016-06-05 15:44:05 +06:00
|
|
|
int _disabledFrames;
|
2016-06-04 16:02:20 +06:00
|
|
|
|
|
|
|
void initIcons();
|
2016-06-18 13:17:36 +06:00
|
|
|
void loadIcon(Graphics::TransparentSurface &icon, byte *data, uint32 size);
|
2016-06-05 15:44:05 +06:00
|
|
|
void makeAlphaIcon(Graphics::TransparentSurface &icon, float alpha);
|
2016-06-03 18:04:48 +06:00
|
|
|
|
|
|
|
public:
|
|
|
|
CloudIcon();
|
|
|
|
~CloudIcon();
|
|
|
|
|
2016-06-04 20:37:47 +06:00
|
|
|
/**
|
|
|
|
* This method is called from ConnectionManager every time
|
|
|
|
* its own timer calls the handle() method. The primary
|
|
|
|
* responsibility of this draw() method is to draw cloud icon
|
|
|
|
* on ScummVM's OSD when current cloud Storage is working.
|
|
|
|
*
|
|
|
|
* As we don't want ConnectionManager to work when no
|
|
|
|
* Requests are running, we'd like to stop the timer. But then
|
|
|
|
* this icon wouldn't have time to disappear smoothly. So,
|
|
|
|
* in order to do that, ConnectionManager stop its timer
|
|
|
|
* only when this draw() method returns true, indicating that
|
|
|
|
* the CloudIcon has disappeared and the timer could be stopped.
|
|
|
|
*
|
|
|
|
* @return true if ConnMan's timer could be stopped.
|
|
|
|
*/
|
2016-06-04 20:18:32 +06:00
|
|
|
bool draw();
|
2016-06-05 15:44:05 +06:00
|
|
|
|
|
|
|
/** Draw a "cloud disabled" icon instead of "cloud syncing" one. */
|
|
|
|
void showDisabled();
|
2016-06-03 18:04:48 +06:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Networking
|
|
|
|
|
|
|
|
#endif
|