/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/analogue_clock_mode.cc

  • Committer: edam
  • Date: 2012-02-16 00:13:13 UTC
  • Revision ID: edam@waxworlds.org-20120216001313-5w52cnns4cqofb6e
updated arduino.mk

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 "display.h"
28
 
 
29
 
 
30
 
AnalogueClockMode::AnalogueClockMode()
31
 
        :
32
 
    MinorMode( 2 )
33
 
{
34
 
}
35
 
 
36
 
 
37
 
void AnalogueClockMode::draw( int segment )
38
 
{
39
 
        bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
40
 
                segment == 1 || segment == NUM_SEGMENTS - 1 );
41
 
        bool draw_hour = segment == _hour_segment;
42
 
        bool draw_hour_side = 2 >=
43
 
                ( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
44
 
                
45
 
//              ( segment == ( _hour_segment + 1 ) % NUM_SEGMENTS ) ||
46
 
//              ( segment == ( _hour_segment + NUM_SEGMENTS - 1 ) % NUM_SEGMENTS );
47
 
        bool draw_minute = segment == _minute_segment;
48
 
        bool draw_minute_side = 1 >=
49
 
                ( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
50
 
 
51
 
        bool draw_second = segment == _second_segment;
52
 
 
53
 
        // set the LEDs
54
 
        Display::led( 9, get_flavour() == 0 );
55
 
        Display::led( 8, draw_tick || draw_second );
56
 
        Display::led( 7, draw_minute || draw_second );
57
 
        Display::led( 6, draw_minute || draw_minute_side || draw_second );
58
 
        Display::led( 5, draw_minute || draw_minute_side ||
59
 
                                  draw_second || draw_hour );
60
 
        for( int a = 0; a <= 4; a++ )
61
 
                Display::led( a, draw_minute || draw_minute_side ||
62
 
                                          draw_second || draw_hour || draw_hour_side );
63
 
}
64
 
 
65
 
 
66
 
void AnalogueClockMode::draw_reset()
67
 
{
68
 
        Time &time = Time::get_instance();
69
 
 
70
 
        // calculate hand locations
71
 
        _hour_segment = ( time.get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS +
72
 
                ( 5 * NUM_SECOND_SEGMENTS * time.get_minutes() / 60 );
73
 
        _minute_segment = time.get_minutes() * NUM_SECOND_SEGMENTS +
74
 
                ( NUM_SECOND_SEGMENTS * time.get_seconds() / 60 );
75
 
        _second_segment = time.get_seconds() * NUM_SECOND_SEGMENTS;
76
 
}