Mercurial > minori
annotate include/core/date.h @ 337:a7d4e5107531
dep/animone: REFACTOR ALL THE THINGS
1: animone now has its own syntax divergent from anisthesia,
making different platforms actually have their own sections
2: process names in animone are now called `comm' (this will
probably break things). this is what its called in bsd/linux
so I'm just going to use it everywhere
3: the X11 code now checks for the existence of a UTF-8 window title
and passes it if available
4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK!
I still actually need to test the bsd code. to be honest I'm probably
going to move all of the bsds into separate files because they're
all essentially different operating systems at this point
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 19 Jun 2024 12:51:15 -0400 |
parents | b5d6c27c308f |
children |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_CORE_DATE_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_CORE_DATE_H_ |
85 | 3 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
4 #include "json/json_fwd.hpp" |
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
5 |
319
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
6 #include "core/time.h" |
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
7 |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
8 #include <optional> |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
9 #include <string> |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
10 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
11 class QDate; |
85 | 12 |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
13 /* TODO: refactor constructors, as they aren't meant |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
14 * to be used in this way and may cause problems down |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
15 * the line */ |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
16 |
9 | 17 class Date { |
258 | 18 public: |
19 using Year = unsigned int; | |
20 using Day = unsigned char; | |
21 enum class Month { | |
22 Jan = 0, | |
23 Feb, | |
24 Mar, | |
25 Apr, | |
26 May, | |
27 Jun, | |
28 Jul, | |
29 Aug, | |
30 Sep, | |
31 Oct, | |
32 Nov, | |
33 Dec | |
34 }; | |
9 | 35 |
258 | 36 Date(); |
37 Date(Year y); | |
38 Date(Year y, Month m, Day d); | |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
39 Date(const std::string& str); |
258 | 40 Date(const QDate& date); |
41 Date(const nlohmann::json& json); | |
319
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
42 Date(Time::Timestamp timestamp); |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
43 |
258 | 44 bool IsValid() const; |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
45 |
258 | 46 void SetYear(Year y); |
47 void SetMonth(Month m); | |
48 void SetDay(Day d); | |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
49 |
258 | 50 void VoidYear(); |
51 void VoidMonth(); | |
52 void VoidDay(); | |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
53 |
258 | 54 std::optional<Year> GetYear() const; |
55 std::optional<Month> GetMonth() const; | |
56 std::optional<Day> GetDay() const; | |
57 QDate GetAsQDate() const; | |
58 nlohmann::json GetAsAniListJson() const; | |
59 | |
60 private: | |
61 std::optional<Year> year; | |
62 std::optional<Month> month; | |
63 std::optional<Day> day; | |
9 | 64 }; |
85 | 65 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
66 #endif // MINORI_CORE_DATE_H_ |