/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/modes/info_mode.cc

  • Committer: Tim Marston
  • Date: 2012-05-18 18:29:50 UTC
  • Revision ID: tim@ed.am-20120518182950-t85bn9a21n72uzm8
text messages are now individually enabled and draw()n automatically

Show diffs side-by-side

added added

removed removed

27
27
#include "Arduino.h"
28
28
 
29
29
 
30
 
// display flavour
31
 
static int _flavour = 0;
32
 
 
33
 
 
34
 
static void reset_messages()
 
30
 
 
31
void InfoMode::draw_reset()
35
32
{
36
33
        switch( _flavour )
37
34
        {
38
 
        case 0:
39
 
                Text::reset_message( 0, Text::MODE_TOP | Text::MODE_THREEQUARTERS );
 
35
        case 0: {
 
36
                        PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 4 );
 
37
                        str0.begin();
 
38
                        str0.format(
 
39
                                        "Propeller Clock mk.1   ...   "
 
40
                                        "Created by Tim and Dan Marston in 2012   ...   "
 
41
                                        "http://ed.am/dev/elec/propeller-clock" );
 
42
                        Text::set_message_text( 0, str0 );
 
43
                }
40
44
                break;
41
 
        case 1:
42
 
                Text::reset_message( 0, Text::MODE_TOP | Text::MODE_HALF );
43
 
                Text::reset_message( 1, Text::MODE_BOTTOM | Text::MODE_HALF );
 
45
        case 1: {
 
46
                        PString str0( Text::_messages[ 0 ], MESSAGE_LEN );
 
47
                        PString str1( Text::_messages[ 1 ], MESSAGE_LEN );
 
48
                        str0.begin();
 
49
                        str1.begin();
 
50
                        str0.format( "RPM" );
 
51
                        unsigned long millis = ::millis();
 
52
                        str1.format( "%ld",
 
53
                                        (unsigned long)60 * 1000 / ( millis - _millis_last ) );
 
54
                        _millis_last = millis;
 
55
                        Text::set_message_text( 0, str0 );
 
56
                        Text::set_message_text( 1, str1 );
 
57
                }
44
58
                break;
45
59
        }
46
60
}
47
61
 
48
62
 
49
 
void info_mode_press()
 
63
void InfoMode::activate()
 
64
{
 
65
        _flavour = 0;
 
66
        _millis_last = ::millis();
 
67
 
 
68
        reset_messages();
 
69
}
 
70
 
 
71
 
 
72
void InfoMode::press()
50
73
{
51
74
        if( ++_flavour >= 2 )
52
75
                _flavour = 0;
53
76
 
54
 
        // reset messages
55
77
        reset_messages();
56
78
}
57
79
 
58
80
 
59
 
void info_mode_draw( int segment )
60
 
{
61
 
        Text::draw( 0, segment );
62
 
        if( _flavour == 1 )
63
 
                Text::draw( 1, segment );
64
 
}
65
 
 
66
 
 
67
 
void info_mode_draw_reset()
68
 
{
69
 
        PString str0( Text::_messages[ 0 ], MESSAGE_LEN );
70
 
        PString str1( Text::_messages[ 1 ], MESSAGE_LEN );
71
 
        str0.begin();
72
 
        str1.begin();
 
81
void InfoMode::reset_messages()
 
82
{
 
83
        Text::reset();
73
84
 
74
85
        switch( _flavour )
75
86
        {
76
87
        case 0:
77
 
                str0.format(
78
 
                        "Propeller Clock mk.1   ...   "
79
 
                        "Created by Tim and Dan Marston in 2011   ...   "
80
 
                        "http://ed.am/dev/elec/propeller-clock" );
 
88
                Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_THREEQUARTERS |
 
89
                                Text::MODE_HSCROLL, Text::SCALE_SMALL );
81
90
                break;
82
91
        case 1:
83
 
                str0.format( "RPM" );
84
 
                str1.format( "%d", 123 );
 
92
                Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_HALF,
 
93
                                Text::SCALE_FAT );
 
94
                Text::set_up_message( 1, Text::MODE_BOTTOM | Text::MODE_HALF,
 
95
                                Text::SCALE_FAT );
85
96
                break;
86
97
        }
87
 
 
88
 
        Text::set_message( 0, str0 );
89
 
        Text::set_message( 1, str1 );
90
 
}
91
 
 
92
 
 
93
 
void info_mode_activate()
94
 
{
95
 
        _flavour = 0;
96
 
 
97
 
        // reset messages
98
 
        reset_messages();
99
98
}