[gnome-games] dreamcast: Provide MIME types and URI game factories
- From: Adrien Plazas <aplazas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games] dreamcast: Provide MIME types and URI game factories
- Date: Thu, 4 May 2017 19:20:14 +0000 (UTC)
commit 6af17c95552d8bad53079aad19b40a3641060bc7
Author: Adrien Plazas <kekun plazas laposte net>
Date: Thu May 4 15:36:38 2017 +0200
dreamcast: 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.
https://bugzilla.gnome.org/show_bug.cgi?id=781334
plugins/dreamcast/configure.ac | 1 -
plugins/dreamcast/src/dreamcast-plugin.vala | 13 +++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/plugins/dreamcast/configure.ac b/plugins/dreamcast/configure.ac
index a955e6f..6d0d343 100644
--- a/plugins/dreamcast/configure.ac
+++ b/plugins/dreamcast/configure.ac
@@ -3,7 +3,6 @@ PKG_CHECK_MODULES(DREAMCAST_PLUGIN, [
glib-2.0 >= $GLIB_MIN_VERSION
gtk+-3.0
retro-gtk-0.10
- tracker-sparql-1.0
], [enable_dreamcast_plugin=yes], [enable_dreamcast_plugin=no])
AM_CONDITIONAL(ENABLE_DREAMCAST_PLUGIN, test x$enable_dreamcast_plugin != xno)
diff --git a/plugins/dreamcast/src/dreamcast-plugin.vala b/plugins/dreamcast/src/dreamcast-plugin.vala
index 972f891..d825e38 100644
--- a/plugins/dreamcast/src/dreamcast-plugin.vala
+++ b/plugins/dreamcast/src/dreamcast-plugin.vala
@@ -4,15 +4,16 @@ private class Games.DreamcastPlugin : Object, Plugin {
private const string MIME_TYPE = "application/x-dc-rom";
private const string PLATFORM = "Dreamcast";
- 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]