summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-07-25 07:41:00 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-07-25 07:41:00 +0000
commit4e6c79b42ee4e299f13d63552aa4145a0abf41fb (patch)
treeb62342ed61a4395c3f5d26c4fcb7d791d01d844c /apps/tagtree.c
parent52aaa75e83fc34524625dfa51dc0b7c1baacbac5 (diff)
Enabled playlist submenu for tagcache!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10315 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c83
1 files changed, 73 insertions, 10 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 7321e9df49..b92e4cb93c 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -81,6 +81,8 @@ static const char *strp;
static int current_offset;
static int current_entry_count;
+static struct tree_context *tc;
+
static int get_token_str(char *buf, int size)
{
/* Find the start. */
@@ -745,6 +747,7 @@ static int load_root(struct tree_context *c)
struct tagentry *dptr = (struct tagentry *)c->dircache;
int i;
+ tc = c;
c->currtable = root;
for (i = 0; i < si_count; i++)
{
@@ -924,23 +927,17 @@ int tagtree_get_filename(struct tree_context* c, char *buf, int buflen)
return 0;
}
-
-static int tagtree_play_folder(struct tree_context* c)
+
+bool insert_all_playlist(struct tree_context *c, int position, bool queue)
{
int i;
char buf[MAX_PATH];
- if (playlist_create(NULL, NULL) < 0)
- {
- logf("Failed creating playlist\n");
- return -1;
- }
-
cpu_boost(true);
if (!tagcache_search(&tcs, tag_filename))
{
gui_syncsplash(HZ, true, str(LANG_TAGCACHE_BUSY));
- return -1;
+ return false;
}
for (i=0; i < c->filesindir; i++)
@@ -954,11 +951,77 @@ static int tagtree_play_folder(struct tree_context* c)
continue;
}
- playlist_insert_track(NULL, buf, PLAYLIST_INSERT, false);
+ playlist_insert_track(NULL, buf, position, queue);
}
tagcache_search_finish(&tcs);
cpu_boost(false);
+ return true;
+}
+
+bool tagtree_insert_selection_playlist(int position, bool queue)
+{
+ struct tagentry *dptr;
+ int dirlevel = tc->dirlevel;
+
+ dptr = tagtree_get_entry(tc, tc->selected_item);
+
+ /* We need to set the table to allsubentries. */
+ if (dptr->newtable == navibrowse)
+ {
+ tagtree_enter(tc);
+ tagtree_load(tc);
+ dptr = tagtree_get_entry(tc, tc->selected_item);
+ }
+ else if (dptr->newtable != allsubentries)
+ {
+ logf("unsupported table: %d", dptr->newtable);
+ return false;
+ }
+
+ /* Now the current table should be allsubentries. */
+ if (dptr->newtable != playtrack)
+ {
+ tagtree_enter(tc);
+ tagtree_load(tc);
+ dptr = tagtree_get_entry(tc, tc->selected_item);
+
+ /* And now the newtable should be playtrack. */
+ if (dptr->newtable != playtrack)
+ {
+ logf("newtable: %d !!", dptr->newtable);
+ tc->dirlevel = dirlevel;
+ return false;
+ }
+ }
+
+ if (tc->filesindir <= 0)
+ gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
+ else
+ {
+ logf("insert_all_playlist");
+ insert_all_playlist(tc, position, queue);
+ }
+
+ /* Finally return the dirlevel to its original value. */
+ while (tc->dirlevel > dirlevel)
+ tagtree_exit(tc);
+ tagtree_load(tc);
+
+ return true;
+}
+
+static int tagtree_play_folder(struct tree_context* c)
+{
+ if (playlist_create(NULL, NULL) < 0)
+ {
+ logf("Failed creating playlist\n");
+ return -1;
+ }
+
+ if (!insert_all_playlist(c, PLAYLIST_INSERT, false))
+ return -2;
+
if (global_settings.playlist_shuffle)
c->selected_item = playlist_shuffle(current_tick, c->selected_item);
if (!global_settings.play_selected)