aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.cpp
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-11 20:24:53 +0600
committerAlexander Tkachev2016-08-24 16:05:07 +0600
commitca2eeb221455e54505aaef7039cfc0b01b807179 (patch)
tree9e73268cc9a8a5a1ad805b4107d06e2e0b08cc29 /backends/platform/sdl/sdl.cpp
parent7446ffd73bd184610d550a354a8e252b0b7f334d (diff)
downloadscummvm-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/sdl.cpp')
-rw-r--r--backends/platform/sdl/sdl.cpp4
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
}