/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/analogue_clock_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

 
1
/*
 
2
 * analogue_clock_mode.cc
 
3
 *
 
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
 
5
 *
 
6
 * This file is part of propeller-clock (hereafter referred to as "this
 
7
 * program"). See http://ed.am/dev/software/arduino/propeller-clock for more
 
8
 * information.
 
9
 *
 
10
 * This program is free software: you can redistribute it and/or modify
 
11
 * it under the terms of the GNU Lesser General Public License as published
 
12
 * by the Free Software Foundation, either version 3 of the License, or
 
13
 * (at your option) any later version.
 
14
 *
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU Lesser General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU Lesser General Public License
 
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
 */
 
23
#include "analogue_clock_mode.h"
 
24
#include "config.h"
 
25
#include "Arduino.h"
 
26
#include "time.h"
 
27
#include "common.h"
 
28
#include "text.h"
 
29
 
 
30
 
 
31
void AnalogueClockMode::draw( int segment )
 
32
{
 
33
        bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
 
34
                segment == 1 || segment == NUM_SEGMENTS - 1 );
 
35
        bool draw_hour = segment == _hour_segment;
 
36
        bool draw_hour_side = 2 >=
 
37
                ( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
 
38
        bool draw_minute = segment == _minute_segment;
 
39
        bool draw_minute_side = 1 >=
 
40
                ( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
 
41
 
 
42
        bool draw_second = segment == _second_segment;
 
43
 
 
44
        // set the LEDs
 
45
        led( 9, _flavour == 0 );
 
46
        led( 8, draw_tick || draw_second );
 
47
        led( 7, draw_minute || draw_second );
 
48
        led( 6, draw_minute || draw_minute_side || draw_second );
 
49
        led( 5, draw_minute || draw_minute_side ||
 
50
                                  draw_second || draw_hour );
 
51
        for( int a = 0; a <= 4; a++ )
 
52
                led( a, draw_minute || draw_minute_side ||
 
53
                                          draw_second || draw_hour || draw_hour_side );
 
54
}
 
55
 
 
56
 
 
57
void AnalogueClockMode::draw_reset()
 
58
{
 
59
        // calculate hand locations
 
60
        _hour_segment = ( Time::get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS +
 
61
                ( 5 * NUM_SECOND_SEGMENTS * Time::get_minutes() / 60 );
 
62
        _minute_segment = Time::get_minutes() * NUM_SECOND_SEGMENTS +
 
63
                ( NUM_SECOND_SEGMENTS * Time::get_seconds() / 60 );
 
64
        _second_segment = Time::get_seconds() * NUM_SECOND_SEGMENTS;
 
65
}
 
66
 
 
67
 
 
68
void AnalogueClockMode::activate()
 
69
{
 
70
        _flavour = 0;
 
71
 
 
72
        Text::reset();
 
73
}
 
74
 
 
75
 
 
76
void AnalogueClockMode::press()
 
77
{
 
78
        if( ++_flavour >= 2 )
 
79
                _flavour = 0;
 
80
}