-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_title.cpp
64 lines (55 loc) · 2.31 KB
/
state_title.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* state_title.cpp
*
* Created on: Mar 31, 2018
* Author: MisterCavespider
*/
#include "state_title.h"
#define IMG_IBE_MED_WIDTH 64
#define IMG_IBE_MED_HEIGHT 34
static const uint8_t img_ibe_med[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x3f, 0xfc,
0xff, 0x03, 0xfc, 0xff, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0x03, 0xfc, 0xff,
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x3f, 0xfc, 0xff, 0x0f, 0xfc, 0xff,
0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0x0f, 0xfc, 0xff, 0x0f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc0, 0x0f, 0xf0, 0xc3, 0x0f, 0xf0, 0x03, 0x00, 0xc0, 0x0f, 0xf0,
0xc3, 0x0f, 0xf0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0xf0,
0xff, 0x03, 0xf0, 0xff, 0x03, 0xc0, 0x0f, 0xf0, 0xff, 0x03, 0xf0, 0xff,
0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0xf0, 0xff, 0x03, 0xf0, 0xff,
0x03, 0xc0, 0x0f, 0xf0, 0xff, 0x03, 0xf0, 0xff, 0x03, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc0, 0x0f, 0xf0, 0xc3, 0x0f, 0xf0, 0x03, 0x00, 0xc0, 0x0f, 0xf0,
0xc3, 0x0f, 0xf0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x3f, 0xfc,
0xff, 0x0f, 0xfc, 0xff, 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0x0f, 0xfc, 0xff,
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x3f, 0xfc, 0xff, 0x03, 0xfc, 0xff,
0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0x03, 0xfc, 0xff, 0x0f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00
};
#define TITLE "-==[ModBox]==-"
void TitleState::setup() {this->isetup();}
void TitleState::loop() {this->iloop();}
void TitleState::isetup()
{
disp->drawXBMP(32, 8, IMG_IBE_MED_WIDTH, IMG_IBE_MED_HEIGHT, img_ibe_med);
uint8_t w = disp->getStrWidth(TITLE);
disp->setCursor((128-(w+1))/2, 50);
disp->print(TITLE);
}
void TitleState::iloop()
{
//TODO: something?
}
result_t TitleState::onAnything()
{
mgr->setCurrentState(1);
return EVENT_CONSUMED;
}
TitleState::~TitleState() {
}