/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-25 01:31:43 UTC
  • Revision ID: tim@ed.am-20120225013143-9fet2y2d3fjlrwez
added ulibc

Show diffs side-by-side

added added

removed removed

1
 
/*
2
 
 * analogue_clock.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.h"
 
1
#include "analogue_clock_mode.h"
24
2
#include "config.h"
25
 
#include "Arduino.h"
26
3
#include "time.h"
27
 
#include "common.h"
28
 
 
29
 
 
30
 
// the segment that the hour hand should be at
31
 
static int _hour_segment;
32
 
 
33
 
// the segment that the minute hand should be at
34
 
static int _minute_segment;
35
 
 
36
 
// the segment that the second hand should be at
37
 
static int _second_segment;
38
 
 
39
 
// the flavour
40
 
int _flavour = 0;
41
 
 
42
 
 
43
 
void analogue_clock_press()
 
4
 
 
5
 
 
6
AnalogueClockMode::AnalogueClockMode()
 
7
    :
 
8
    MinorMode( 1 )
44
9
{
45
 
        if( ++_flavour >= 2 )
46
 
                _flavour = 0;
47
10
}
48
11
 
49
12
 
50
 
void analogue_clock_draw( int segment )
 
13
void AnalogueClockMode::draw( int segment )
51
14
{
52
 
        bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
53
 
                segment == 1 || segment == NUM_SEGMENTS - 1 );
54
 
        bool draw_hour = segment == _hour_segment;
55
 
        bool draw_hour_side = 2 >=
56
 
                ( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
57
 
        bool draw_minute = segment == _minute_segment;
58
 
        bool draw_minute_side = 1 >=
59
 
                ( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
60
 
 
61
 
        bool draw_second = segment == _second_segment;
 
15
        Time &time = Time::get_instance();
 
16
 
 
17
        int second = segment / NUM_SECOND_SEGMENTS;
 
18
        int second_segment = segment % NUM_SECOND_SEGMENTS;
 
19
 
 
20
        // what needs to be drawn?
 
21
        bool draw_tick = ( !second_segment && second % 5 == 0 && second ) ||
 
22
                ( second == 0 && second_segment == 1 ) ||
 
23
                ( second == 59 && second_segment == NUM_SECOND_SEGMENTS - 1 );
 
24
        bool draw_second = !second_segment && second == time.get_seconds();
 
25
        bool draw_minute = !second_segment && second == time.get_minutes();
 
26
        bool draw_hour = segment == time.get_hours() * 5 * NUM_SECOND_SEGMENTS +
 
27
                ( 5 * NUM_SECOND_SEGMENTS * time.get_minutes() / 60 );
62
28
 
63
29
        // set the LEDs
64
 
        led( 9, _flavour == 0 );
65
 
        led( 8, draw_tick || draw_second );
66
 
        led( 7, draw_minute || draw_second );
67
 
        led( 6, draw_minute || draw_minute_side || draw_second );
68
 
        led( 5, draw_minute || draw_minute_side ||
69
 
                                  draw_second || draw_hour );
70
 
        for( int a = 0; a <= 4; a++ )
71
 
                led( a, draw_minute || draw_minute_side ||
72
 
                                          draw_second || draw_hour || draw_hour_side );
73
 
}
74
 
 
75
 
 
76
 
void analogue_clock_draw_reset()
77
 
{
78
 
        // calculate hand locations
79
 
        _hour_segment = ( Time::get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS +
80
 
                ( 5 * NUM_SECOND_SEGMENTS * Time::get_minutes() / 60 );
81
 
        _minute_segment = Time::get_minutes() * NUM_SECOND_SEGMENTS +
82
 
                ( NUM_SECOND_SEGMENTS * Time::get_seconds() / 60 );
83
 
        _second_segment = Time::get_seconds() * NUM_SECOND_SEGMENTS;
84
 
}
85
 
 
86
 
 
87
 
void analogue_clock_activate()
88
 
{
89
 
        _flavour = 0;
 
30
        led_on( 9, true );
 
31
        led_on( 8, draw_tick || draw_second );
 
32
        for( int a = 6; a <= 7; a++ )
 
33
                led_on( a, draw_minute || draw_second );
 
34
        for( int a = 0; a <= 5; a++ )
 
35
                led_on( a, draw_minute || draw_second || draw_hour );
90
36
}