bzr branch
http://bzr.ed.am/elec/propeller-clock
58
by edam
removed Bounce library and updated/fixed new code |
1 |
/* |
87
by edam
switched back to using classes for modes |
2 |
* analogue_clock_mode.cc |
58
by edam
removed Bounce library and updated/fixed new code |
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 |
*/ |
|
87
by edam
switched back to using classes for modes |
23 |
#include "analogue_clock_mode.h" |
56
by edam
updated software to include drawing abstraction infrastructure |
24 |
#include "config.h" |
59
by edam
removed ulibc, fixed button, added text rendering |
25 |
#include "Arduino.h" |
56
by edam
updated software to include drawing abstraction infrastructure |
26 |
#include "time.h" |
65
by Tim Marston
removed most OOP/inheritance crap, saved loads of space! |
27 |
#include "common.h" |
28 |
||
29 |
||
87
by edam
switched back to using classes for modes |
30 |
void AnalogueClockMode::draw( int segment ) |
56
by edam
updated software to include drawing abstraction infrastructure |
31 |
{ |
58
by edam
removed Bounce library and updated/fixed new code |
32 |
bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 || |
33 |
segment == 1 || segment == NUM_SEGMENTS - 1 ); |
|
34 |
bool draw_hour = segment == _hour_segment; |
|
63
by edam
widenned clock hands, tweaked scales, got top & bottom text modes working |
35 |
bool draw_hour_side = 2 >= |
59
by edam
removed ulibc, fixed button, added text rendering |
36 |
( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS; |
58
by edam
removed Bounce library and updated/fixed new code |
37 |
bool draw_minute = segment == _minute_segment; |
63
by edam
widenned clock hands, tweaked scales, got top & bottom text modes working |
38 |
bool draw_minute_side = 1 >= |
39 |
( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS; |
|
40 |
||
58
by edam
removed Bounce library and updated/fixed new code |
41 |
bool draw_second = segment == _second_segment; |
56
by edam
updated software to include drawing abstraction infrastructure |
42 |
|
43 |
// set the LEDs |
|
65
by Tim Marston
removed most OOP/inheritance crap, saved loads of space! |
44 |
led( 9, _flavour == 0 ); |
45 |
led( 8, draw_tick || draw_second ); |
|
46 |
led( 7, draw_minute || draw_second ); |
|
47 |
led( 6, draw_minute || draw_minute_side || draw_second ); |
|
48 |
led( 5, draw_minute || draw_minute_side || |
|
63
by edam
widenned clock hands, tweaked scales, got top & bottom text modes working |
49 |
draw_second || draw_hour ); |
58
by edam
removed Bounce library and updated/fixed new code |
50 |
for( int a = 0; a <= 4; a++ ) |
65
by Tim Marston
removed most OOP/inheritance crap, saved loads of space! |
51 |
led( a, draw_minute || draw_minute_side || |
63
by edam
widenned clock hands, tweaked scales, got top & bottom text modes working |
52 |
draw_second || draw_hour || draw_hour_side ); |
58
by edam
removed Bounce library and updated/fixed new code |
53 |
} |
54 |
||
55 |
||
87
by edam
switched back to using classes for modes |
56 |
void AnalogueClockMode::draw_reset() |
58
by edam
removed Bounce library and updated/fixed new code |
57 |
{ |
58 |
// calculate hand locations |
|
66
by Tim Marston
removed time singleton, not cause it saved much space, but cause i don't want singletons in this project! |
59 |
_hour_segment = ( Time::get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS + |
60 |
( 5 * NUM_SECOND_SEGMENTS * Time::get_minutes() / 60 ); |
|
61 |
_minute_segment = Time::get_minutes() * NUM_SECOND_SEGMENTS + |
|
62 |
( NUM_SECOND_SEGMENTS * Time::get_seconds() / 60 ); |
|
63 |
_second_segment = Time::get_seconds() * NUM_SECOND_SEGMENTS; |
|
56
by edam
updated software to include drawing abstraction infrastructure |
64 |
} |
68
by Tim Marston
added frame reset code and inited minor mode flavours on mode activation |
65 |
|
66 |
||
87
by edam
switched back to using classes for modes |
67 |
void AnalogueClockMode::activate() |
68
by Tim Marston
added frame reset code and inited minor mode flavours on mode activation |
68 |
{ |
69 |
_flavour = 0; |
|
70 |
} |
|
87
by edam
switched back to using classes for modes |
71 |
|
72 |
||
73 |
void AnalogueClockMode::press() |
|
74 |
{ |
|
75 |
if( ++_flavour >= 2 ) |
|
76 |
_flavour = 0; |
|
77 |
} |