summaryrefslogtreecommitdiffstats
path: root/firmware/settings.c
blob: d2f72e759f5c9a0b463b5b64e1a8b5d505be5ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 by wavey@wavey.org
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include <stdio.h>
#include "config.h"
#include "settings.h"
#include "disk.h"
#include "panic.h"
#include "debug.h"

/*
 * persist all runtime user settings to disk
 */
int persist_all_settings( void )
{
    if( ! persist_volume_setting() )
    {
        panicf( "failed to persist volume setting" );
    }
    
    if( ! persist_balance_setting() )
    {
        panicf( "failed to persist balance setting" );
    }
    
    if( ! persist_bass_setting() )
    {
        panicf( "failed to persist bass setting" );
    }
    
    if( ! persist_treble_setting() )
    {
        panicf( "failed to persist treble setting" );
    }
    
    if( ! persist_loudness_setting() )
    {
        panicf( "failed to persist loudness setting" );
    }
    
    if( ! persist_bass_boost_setting() )
    {
        panicf( "failed to persist bass boost setting" );
    }
    
    if( ! persist_contrast_setting() )
    {
        panicf( "failed to persist contrast setting" );
    }
    
    if( ! persist_poweroff_setting() )
    {
        panicf( "failed to persist poweroff setting" );
    }
    
    if( ! persist_backlight_setting() )
    {
        panicf( "failed to persist backlight setting" );
    }
    
    if( ! persist_poweroff_setting() )
    {
        panicf( "failed to persist poweroff setting" );
    }
    
    if( ! persist_resume_setting() )
    {
        panicf( "failed to persist resume setting" );
    }
    
    /* by getting here, we had no problems */
    
    return 1;
}

/*
 * persist all the playlist information to disk
 */
int persist_all_playlist_info( void )
{
    if( ! persist_playlist_filename() )
    {
        panicf( "failed to persist playlist filename" );
    }
    
    if( ! persist_playlist_indices() )
    {
        panicf( "failed to persist playlist indices" );
    }
    
    if( ! persist_playlist_index() )
    {
        panicf( "failed to persist playlist index" );
    }
    
    if( ! persist_resume_track_time() )
    {
        panicf( "failed to persist resume track time" );
    }

    /* by getting here, we had no problems */
    
    return 1;
}

/*
 * load settings from disk
 */
void reload_all_settings( user_settings_t *settings )
{
    DEBUGF( "reload_all_settings()\n" );

    /* this is a TEMP stub version */
    
    /* populate settings with default values */
    
    reset_settings( settings );
}

/*
 * reset all settings to their default value 
 */
void reset_settings( user_settings_t *settings ) {
        
    DEBUGF( "reset_settings()\n" );

    settings->volume     = DEFAULT_VOLUME_SETTING;
    settings->balance    = DEFAULT_BALANCE_SETTING;
    settings->bass       = DEFAULT_BASS_SETTING;
    settings->treble     = DEFAULT_TREBLE_SETTING;
    settings->loudness   = DEFAULT_LOUDNESS_SETTING;
    settings->bass_boost = DEFAULT_BASS_BOOST_SETTING;
    settings->contrast   = DEFAULT_CONTRAST_SETTING;
    settings->poweroff   = DEFAULT_POWEROFF_SETTING;
    settings->backlight  = DEFAULT_BACKLIGHT_SETTING;
}

/*
 * dump the list of current settings
 */
void display_current_settings( user_settings_t *settings )
{
    DEBUGF( "\ndisplay_current_settings()\n" );

    DEBUGF( "\nvolume:\t\t%d\nbalance:\t%d\nbass:\t\t%d\ntreble:\t\t%d\nloudness:\t%d\nbass boost:\t%d\n",
            settings->volume,
            settings->balance,
            settings->bass,
            settings->treble,
            settings->loudness,
            settings->bass_boost );

    DEBUGF( "contrast:\t%d\npoweroff:\t%d\nbacklight:\t%d\n",
            settings->contrast,
            settings->poweroff,
            settings->backlight );
}