[gnome-games/wip/aplazas/781334-refactor-game-source: 25/37] neo-geo-pocket: Provide MIME types and URI game factories
- From: Adrien Plazas <aplazas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/aplazas/781334-refactor-game-source: 25/37] neo-geo-pocket: Provide MIME types and URI game factories
- Date: Sat, 6 May 2017 21:43:01 +0000 (UTC)
commit b1fdcd25f4939f17ff3370638b7b066a1184840e
Author: Adrien Plazas <kekun plazas laposte net>
Date: Thu May 4 15:38:08 2017 +0200
neo-geo-pocket: 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/neo-geo-pocket/configure.ac | 1 -
.../neo-geo-pocket/src/neo-geo-pocket-plugin.vala | 13 +++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/plugins/neo-geo-pocket/configure.ac b/plugins/neo-geo-pocket/configure.ac
index 7402b5e..63905eb 100644
--- a/plugins/neo-geo-pocket/configure.ac
+++ b/plugins/neo-geo-pocket/configure.ac
@@ -3,7 +3,6 @@ PKG_CHECK_MODULES(NEO_GEO_POCKET_PLUGIN, [
glib-2.0 >= $GLIB_MIN_VERSION
gtk+-3.0
retro-gtk-0.10
- tracker-sparql-1.0
], [enable_neo_geo_pocket_plugin=yes], [enable_neo_geo_pocket_plugin=no])
AM_CONDITIONAL(ENABLE_NEO_GEO_POCKET_PLUGIN, test x$enable_neo_geo_pocket_plugin != xno)
diff --git a/plugins/neo-geo-pocket/src/neo-geo-pocket-plugin.vala
b/plugins/neo-geo-pocket/src/neo-geo-pocket-plugin.vala
index 74429ca..28bc170 100644
--- a/plugins/neo-geo-pocket/src/neo-geo-pocket-plugin.vala
+++ b/plugins/neo-geo-pocket/src/neo-geo-pocket-plugin.vala
@@ -5,15 +5,16 @@ private class Games.NeoGeoPocketPlugin : Object, Plugin {
private const string MIME_TYPE = "application/x-neo-geo-pocket-rom";
private const string PLATFORM = "NeoGeoPocket";
- 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]