]> Pileus Git - lackey/blob - cals/dummy.c
Add flag for dummy events
[lackey] / cals / dummy.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdlib.h>
19
20 #include "util.h"
21 #include "date.h"
22 #include "cal.h"
23
24 /* Test data */
25 static cal_t cal = {
26         .name  = "dummy",
27         .desc  = "dummy calendar",
28         .data  = NULL,
29 };
30
31 static event_t event = {
32         .cal   = &cal,
33         .start = {2012, OCT, 0, 12, 0},
34         .end   = {2012, OCT, 0, 13, 0},
35         .name  = "dummy event",
36         .desc  = "this event is random and does not exist",
37 };
38
39 static todo_t todo = {
40         .cal     = &cal,
41         .name    = "dummy todo",
42         .desc    = "this todo is random and does not exist",
43         .due     = {2012, OCT, 0, 13, 0},
44         .status  = 50,
45 };
46
47 static int     enable;
48 static event_t events[8];
49 static todo_t  todos[6];
50
51 /* Event functions */
52 event_t *dummy_events(cal_t *cal, year_t year, month_t month, day_t day, int days)
53 {
54         for (int i = 0; i < N_ELEMENTS(events); i++) {
55                 date_t *s = &events[i].start;
56                 date_t *e = &events[i].end;
57                 events[i] = event;
58                 add_days(&s->year, &s->month, &s->day, 7*i);
59                 add_days(&e->year, &e->month, &e->day, 7*i);
60                 if (i+1 < N_ELEMENTS(events))
61                         events[i].next = &events[i+1];
62         }
63         return enable ? &events[0] : 0;
64 }
65
66 /* Todo functions */
67 todo_t *dummy_todos(cal_t *cal, year_t year, month_t month, day_t day, int days)
68 {
69         for (int i = 0; i < N_ELEMENTS(todos); i++) {
70                 todos[i] = todo;
71                 todos[i].status = i*20;
72                 if (i+1 < N_ELEMENTS(todos))
73                         todos[i].next = &todos[i+1];
74         }
75         return enable ? &todos[0] : 0;
76 }