/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/settings_mode.cc

  • Committer: Tim Marston
  • Date: 2012-04-29 15:27:19 UTC
  • Revision ID: tim@ed.am-20120429152719-4cu2t9lx7bxpbml1
added adjustable text scaling factor

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * settings_major_mode.cc
 
2
 * settings_mode.cc
3
3
 *
4
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
5
5
 *
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
#include "Arduino.h"
24
 
#include "settings_major_mode.h"
 
24
#include "settings_mode.h"
25
25
#include "text.h"
26
26
#include "text_renderer.h"
27
27
#include "time.h"
28
28
#include "common.h"
29
29
 
30
30
 
31
 
#define FONT_SET_IDX 0
32
 
#define TIME_SET_IDX 1
33
 
#define DATE_SET_IDX 2
34
 
 
35
 
 
36
 
SettingsMajorMode::SettingsMajorMode( Button &button )
37
 
        :
38
 
        _button( button )
39
 
{
40
 
}
41
 
 
42
 
 
43
 
void SettingsMajorMode::draw( int segment )
44
 
{
45
 
        // check button state for unpress
46
 
        if( _press_state == 1 && !_button.get_state() )
47
 
                _press_state = 2;
48
 
}
49
 
 
50
 
 
51
 
void SettingsMajorMode::draw_reset()
52
 
{
53
 
        // do a short button press?
54
 
        if( _press_state == 2 ) {
55
 
                _press_state = 0;
56
 
                switch( _item )
57
 
                {
58
 
                case TIME_SET_IDX:
59
 
                        switch( _part ) {
60
 
                        case 0: Time::inc_hours(); break;
61
 
                        case 1: Time::inc_minutes(); break;
62
 
                        case 2: Time::reset_seconds(); break;
63
 
                        }
64
 
                        break;
65
 
                case DATE_SET_IDX:
66
 
                        switch( _part ) {
67
 
                        case 0: Time::inc_year(); break;
68
 
                        case 1: Time::inc_month(); break;
69
 
                        case 2: Time::inc_day(); break;
70
 
                        }
71
 
                        break;
72
 
                case FONT_SET_IDX:
73
 
                        TextRenderer::inc_font();
74
 
                        break;
75
 
                }
76
 
        }
77
 
 
 
31
#define TIME_SET_IDX 0
 
32
#define DATE_SET_IDX 1
 
33
#define FONT_SET_IDX 2
 
34
 
 
35
 
 
36
// item we're setting
 
37
static int _item;
 
38
static int _part;
 
39
 
 
40
 
 
41
void settings_mode_press()
 
42
{
 
43
        switch( _item )
 
44
        {
 
45
        case TIME_SET_IDX:
 
46
                switch( _part ) {
 
47
                case 0: Time::inc_hours(); break;
 
48
                case 1: Time::inc_minutes(); break;
 
49
                case 2: Time::reset_seconds(); break;
 
50
                }
 
51
                break;
 
52
        case DATE_SET_IDX:
 
53
                switch( _part ) {
 
54
                case 0: Time::inc_year(); break;
 
55
                case 1: Time::inc_month(); break;
 
56
                case 2: Time::inc_day(); break;
 
57
                }
 
58
                break;
 
59
        case FONT_SET_IDX:
 
60
                TextRenderer::inc_font();
 
61
                break;
 
62
        }
 
63
}
 
64
 
 
65
static void reset_messages()
 
66
{
 
67
        Text::reset_message( 0, Text::MODE_TOP | Text::MODE_ALL );
 
68
}
 
69
 
 
70
 
 
71
void settings_mode_long_press()
 
72
{
 
73
        // how many parts does this item have?
 
74
        int max = 1;
 
75
        switch( _item ) {
 
76
        case DATE_SET_IDX: // fall through
 
77
        case TIME_SET_IDX: max = 3; break;
 
78
        }
 
79
 
 
80
        // inc part and item
 
81
        if( ++_part >= max ) {
 
82
                _part = 0;
 
83
                if( ++_item >= 3 )
 
84
                        _item = 0;
 
85
        }
 
86
 
 
87
        // reset messages
 
88
        reset_messages();
 
89
}
 
90
 
 
91
 
 
92
void settings_mode_draw( int segment )
 
93
{
 
94
        Text::draw( 0, segment );
 
95
}
 
96
 
 
97
 
 
98
void settings_mode_draw_reset()
 
99
{
78
100
        bool flash = ( ::millis() % 1000 ) > 600;
79
101
        PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 2 );
 
102
        str0.begin();
80
103
 
81
104
        switch( _item ) {
82
105
        case TIME_SET_IDX:
127
150
                break;
128
151
        }
129
152
 
130
 
        Text::set_message_text( 0, str0 );
 
153
        Text::set_message( 0, str0 );
131
154
}
132
155
 
133
156
 
134
 
void SettingsMajorMode::activate()
 
157
void settings_mode_activate()
135
158
{
136
159
        _item = _part = 0;
137
 
        _press_state = 0;
138
 
 
139
 
        reset_messages();
140
 
}
141
 
 
142
 
 
143
 
void SettingsMajorMode::deactivate()
144
 
{
145
 
        // save time
146
 
        Time::save_time();
147
 
}
148
 
 
149
 
 
150
 
void SettingsMajorMode::press()
151
 
{
152
 
        _press_state = 1;
153
 
}
154
 
 
155
 
 
156
 
void SettingsMajorMode::long_press()
157
 
{
158
 
        _press_state = 0;
159
 
 
160
 
        // how many parts does this item have?
161
 
        int max = 1;
162
 
        switch( _item ) {
163
 
        case DATE_SET_IDX: // fall through
164
 
        case TIME_SET_IDX: max = 3; break;
165
 
        }
166
 
 
167
 
        // inc part and item
168
 
        if( ++_part >= max ) {
169
 
                _part = 0;
170
 
                if( ++_item >= 3 )
171
 
                        _item = 0;
172
 
        }
173
 
 
174
 
        reset_messages();
175
 
}
176
 
 
177
 
 
178
 
void SettingsMajorMode::reset_messages()
179
 
{
180
 
        Text::reset();
181
 
        Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_ALL );
 
160
 
 
161
        // reset messages
 
162
        reset_messages();
182
163
}