diff options
author | Alexander Tkachev | 2016-05-11 20:24:53 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:05:07 +0600 |
commit | ca2eeb221455e54505aaef7039cfc0b01b807179 (patch) | |
tree | 9e73268cc9a8a5a1ad805b4107d06e2e0b08cc29 /backends/platform/sdl | |
parent | 7446ffd73bd184610d550a354a8e252b0b7f334d (diff) | |
download | scummvm-rg350-ca2eeb221455e54505aaef7039cfc0b01b807179.tar.gz scummvm-rg350-ca2eeb221455e54505aaef7039cfc0b01b807179.tar.bz2 scummvm-rg350-ca2eeb221455e54505aaef7039cfc0b01b807179.zip |
CLOUD: Add Cloud::Manager and Cloud::Storage
This commit introduces Common::CloudManager, which can be accessed from
OSystem.
The backend for this manager is Cloud::Manager (defined in
backends/cloud/manager.h). It should load all users storages from
configs and provide access to current Storage instance. For now it just
creates a new one.
Cloud::Storage (backends/cloud/storage.h) provides an API to interact
with cloud storage, for example, create new directory or sync files.
Right now it's not ready and has only two dummy methods: listDirectory()
and syncSaves().
There is Cloud::Dropbox::DropboxStorage backend
(backends/cloud/dropbox/dropboxstorage.h) for Cloud::Storage. Right now
it implements both listDirectory() and syncSaves() with starting timer
task and handling it by printing out some JSON examples.
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 84aa5c8421..e743bdf829 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -33,7 +33,7 @@ #include "gui/EventRecorder.h" #include "common/taskbar.h" #include "common/textconsole.h" -#include "backends/cloud/cloudthread.h" +#include "backends/cloud/manager.h" #include "backends/saves/default/default-saves.h" @@ -162,7 +162,7 @@ void OSystem_SDL::init() { //TODO: define USE_CLOUD //#if defined(USE_CLOUD) if (_cloudThread == 0) - _cloudThread = new CloudThread(); + _cloudThread = new Cloud::Manager(); //#endif } |