[gnome-games/wip/aplazas/781334-refactor-game-source: 3/26] atari-7800: Provide MIME types and URI game factories



commit d9afb887d0ccb7d765bd3c474ac8118968a75b66
Author: Adrien Plazas <kekun plazas laposte net>
Date:   Thu May 4 15:36:19 2017 +0200

    atari-7800: Provide MIME types and URI game factories
    
    Also stop providing a GameSource.
    
    This helps splitting the conerns of looking for game resources and
    building games from them.

 plugins/atari-7800/configure.ac               |    1 -
 plugins/atari-7800/src/atari-7800-plugin.vala |   13 +++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/plugins/atari-7800/configure.ac b/plugins/atari-7800/configure.ac
index 5325b28..d109f68 100644
--- a/plugins/atari-7800/configure.ac
+++ b/plugins/atari-7800/configure.ac
@@ -3,7 +3,6 @@ PKG_CHECK_MODULES(ATARI_7800_PLUGIN, [
        glib-2.0 >= $GLIB_MIN_VERSION
        gtk+-3.0
        retro-gtk-0.10
-       tracker-sparql-1.0
 ], [enable_atari_7800_plugin=yes], [enable_atari_7800_plugin=no])
 
 AM_CONDITIONAL(ENABLE_ATARI_7800_PLUGIN, test x$enable_atari_7800_plugin != xno)
diff --git a/plugins/atari-7800/src/atari-7800-plugin.vala b/plugins/atari-7800/src/atari-7800-plugin.vala
index 4aea697..a6337a1 100644
--- a/plugins/atari-7800/src/atari-7800-plugin.vala
+++ b/plugins/atari-7800/src/atari-7800-plugin.vala
@@ -5,15 +5,16 @@ private class Games.Atari7800 : Object, Plugin {
        private const string MIME_TYPE = "application/x-atari-7800-rom";
        private const string PLATFORM = "Atari7800";
 
-       public GameSource? get_game_source () throws Error {
+       public string[] get_mime_types () {
+               return { MIME_TYPE };
+       }
+
+       public UriGameFactory[] get_uri_game_factories () {
                var game_uri_adapter = new GenericSyncGameUriAdapter (game_for_uri);
                var factory = new GenericUriGameFactory (game_uri_adapter);
-               var query = new MimeTypeTrackerQuery (MIME_TYPE, factory);
-               var connection = Tracker.Sparql.Connection.@get ();
-               var source = new TrackerGameSource (connection);
-               source.add_query (query);
+               factory.add_mime_type (MIME_TYPE);
 
-               return source;
+               return { factory };
        }
 
        private static Game game_for_uri (string uri) throws Error {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]