/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-05-09 20:36:07 UTC
  • Revision ID: tim@ed.am-20120509203607-5sh14qikxjmm6p3y
updated arduino.mk

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_reset()
 
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()
44
99
{
45
100
        bool flash = ( ::millis() % 1000 ) > 600;
46
101
        PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 2 );
95
150
                break;
96
151
        }
97
152
 
98
 
        Text::set_message_text( 0, str0 );
 
153
        Text::set_message( 0, str0 );
99
154
}
100
155
 
101
156
 
102
 
void SettingsMajorMode::activate()
 
157
void settings_mode_activate()
103
158
{
104
159
        _item = _part = 0;
105
160
 
106
 
        reset_messages();
107
 
 
108
 
        _button.set_press_mode( false );
109
 
}
110
 
 
111
 
 
112
 
void SettingsMajorMode::deactivate()
113
 
{
114
 
        _button.set_press_mode( true );
115
 
 
116
 
        // save time
117
 
 
118
 
}
119
 
 
120
 
 
121
 
void SettingsMajorMode::press()
122
 
{
123
 
        switch( _item )
124
 
        {
125
 
        case TIME_SET_IDX:
126
 
                switch( _part ) {
127
 
                case 0: Time::inc_hours(); break;
128
 
                case 1: Time::inc_minutes(); break;
129
 
                case 2: Time::reset_seconds(); break;
130
 
                }
131
 
                break;
132
 
        case DATE_SET_IDX:
133
 
                switch( _part ) {
134
 
                case 0: Time::inc_year(); break;
135
 
                case 1: Time::inc_month(); break;
136
 
                case 2: Time::inc_day(); break;
137
 
                }
138
 
                break;
139
 
        case FONT_SET_IDX:
140
 
                TextRenderer::inc_font();
141
 
                break;
142
 
        }
143
 
}
144
 
 
145
 
 
146
 
void SettingsMajorMode::long_press()
147
 
{
148
 
        // how many parts does this item have?
149
 
        int max = 1;
150
 
        switch( _item ) {
151
 
        case DATE_SET_IDX: // fall through
152
 
        case TIME_SET_IDX: max = 3; break;
153
 
        }
154
 
 
155
 
        // inc part and item
156
 
        if( ++_part >= max ) {
157
 
                _part = 0;
158
 
                if( ++_item >= 3 )
159
 
                        _item = 0;
160
 
        }
161
 
 
162
 
        reset_messages();
163
 
}
164
 
 
165
 
 
166
 
void SettingsMajorMode::reset_messages()
167
 
{
168
 
        Text::reset();
169
 
 
170
 
        Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_ALL );
 
161
        // reset messages
 
162
        reset_messages();
171
163
}