2006-12-14 Francisco Javier F. Serrador <serrador@openshine.com>
[rhythmbox.git] / shell / rb-play-order-random-by-rating.c
blob65f1e83154a0b6c5562e380f2fc3d6e587cc6685
1 /*
2 * arch-tag: Implementation of random play order weighted by rating
4 * Copyright (C) 2003 Jeffrey Yasskin <jyasskin@mail.utexas.edu>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "rb-play-order-random-by-rating.h"
24 #include "rhythmdb.h"
25 #include <time.h>
26 #include <math.h>
28 static void rb_random_play_order_by_rating_class_init (RBRandomPlayOrderByRatingClass *klass);
30 static double rb_random_by_rating_get_entry_weight (RBRandomPlayOrder *rorder,
31 RhythmDB *db, RhythmDBEntry *entry);
33 G_DEFINE_TYPE (RBRandomPlayOrderByRating, rb_random_play_order_by_rating, RB_TYPE_RANDOM_PLAY_ORDER)
35 static void
36 rb_random_play_order_by_rating_class_init (RBRandomPlayOrderByRatingClass *klass)
38 RBRandomPlayOrderClass *rorder;
40 rorder = RB_RANDOM_PLAY_ORDER_CLASS (klass);
41 rorder->get_entry_weight = rb_random_by_rating_get_entry_weight;
44 RBPlayOrder *
45 rb_random_play_order_by_rating_new (RBShellPlayer *player)
47 RBRandomPlayOrderByRating *rorder;
49 rorder = g_object_new (RB_TYPE_RANDOM_PLAY_ORDER_BY_RATING,
50 "player", player,
51 NULL);
53 return RB_PLAY_ORDER (rorder);
56 static void
57 rb_random_play_order_by_rating_init (RBRandomPlayOrderByRating *porder)
61 static double
62 rb_random_by_rating_get_entry_weight (RBRandomPlayOrder *rorder, RhythmDB *db, RhythmDBEntry *entry)
64 double rating;
66 rating = rhythmdb_entry_get_double (entry, RHYTHMDB_PROP_RATING);
67 if (rating < 0.01)
68 rating = 2.5;
70 return rating;