forked from len0rd/rockbox
		
	HAVE_LCD_BITMAP is now redundant. lcd_bitmap is always-on in features.txt so manual and lang strings don't have to change Change-Id: I08eeb20de48099ffc2dc23782711af368c2ec794
		
			
				
	
	
		
			81 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /***************************************************************************
 | |
|  *             __________               __   ___.
 | |
|  *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 | |
|  *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 | |
|  *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 | |
|  *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 | |
|  *                     \/            \/     \/    \/            \/
 | |
|  * $Id$
 | |
|  *
 | |
|  * Copyright (C) 2002 by Linus Nielsen Feltzing
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License
 | |
|  * as published by the Free Software Foundation; either version 2
 | |
|  * of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 | |
|  * KIND, either express or implied.
 | |
|  *
 | |
|  ****************************************************************************/
 | |
| #include <string.h>
 | |
| #include <stdbool.h>
 | |
| #include "config.h"
 | |
| #include "status.h"
 | |
| #include "audio.h"
 | |
| #if CONFIG_TUNER
 | |
| #include "radio.h"
 | |
| #endif
 | |
| 
 | |
| static enum playmode ff_mode = 0;
 | |
| 
 | |
| void status_set_ffmode(enum playmode mode)
 | |
| {
 | |
|     ff_mode = mode; /* Either STATUS_FASTFORWARD or STATUS_FASTBACKWARD */
 | |
| }
 | |
| 
 | |
| enum playmode status_get_ffmode(void)
 | |
| {
 | |
|     /* only use this function for STATUS_FASTFORWARD or STATUS_FASTBACKWARD */
 | |
|     /* use audio_status() for other modes */
 | |
|     return ff_mode;
 | |
| }
 | |
| 
 | |
| int current_playmode(void)
 | |
| {
 | |
|     int audio_stat = audio_status();
 | |
| 
 | |
|     /* ff_mode can be either STATUS_FASTFORWARD or STATUS_FASTBACKWARD
 | |
|        and that supercedes the other modes */
 | |
|     if(ff_mode)
 | |
|         return ff_mode;
 | |
|     
 | |
|     if(audio_stat & AUDIO_STATUS_PLAY)
 | |
|     {
 | |
|         if(audio_stat & AUDIO_STATUS_PAUSE)
 | |
|             return STATUS_PAUSE;
 | |
|         else
 | |
|             return STATUS_PLAY;
 | |
|     }
 | |
| 
 | |
| #ifdef HAVE_RECORDING
 | |
|     if(audio_stat & AUDIO_STATUS_RECORD)
 | |
|     {
 | |
|         if(audio_stat & AUDIO_STATUS_PAUSE)
 | |
|             return STATUS_RECORD_PAUSE;
 | |
|         else
 | |
|             return STATUS_RECORD;
 | |
|     }
 | |
| #endif
 | |
| 
 | |
| #if CONFIG_TUNER
 | |
|     audio_stat = get_radio_status();
 | |
|     if(audio_stat & FMRADIO_PLAYING)
 | |
|        return STATUS_RADIO;
 | |
| 
 | |
|     if(audio_stat & FMRADIO_PAUSED)
 | |
|        return STATUS_RADIO_PAUSE;
 | |
| #endif
 | |
|     
 | |
|     return STATUS_STOP;
 | |
| }
 |