Skip to content

Commit 426cdaa

Browse files
Add 'src/' from commit '93111695b4e50adc8fad3b04f1358696249a651d'
git-subtree-dir: src git-subtree-mainline: dc4f522 git-subtree-split: 9311169
2 parents dc4f522 + 9311169 commit 426cdaa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+7059
-0
lines changed

src/.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Object files
2+
*.o
3+
4+
# Libraries
5+
*.lib
6+
*.a
7+
8+
# Shared objects (inc. Windows DLLs)
9+
*.dll
10+
*.so
11+
*.so.*
12+
*.dylib
13+
14+
# Executables
15+
*.exe
16+
*.out
17+
*.app

src/Draw/Draw.c

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include "Draw/Draw.h"
2+
#include <string.h>
3+
4+
static xDraw_t * _HDL;
5+
6+
#ifndef EM_GUI_OVERRIDE_DEFAULT_PICS
7+
8+
static uint16_t usGetPictureW(xPicture pusPic) {
9+
return pusPic[1];
10+
}
11+
12+
static uint16_t usGetPictureH(xPicture pusPic) {
13+
return pusPic[0];
14+
}
15+
16+
#endif // !EM_GUI_OVERRIDE_DEFAULT_PICS
17+
18+
19+
20+
void vDrawSetHandler(xDraw_t * hdl) {
21+
_HDL = hdl;
22+
}
23+
24+
xDraw_t * pxDrawHDL() {
25+
return _HDL;
26+
}
27+
28+
void vDrawHandlerInit(xDraw_t * hdl) {
29+
memset(hdl, 0, sizeof(xDraw_t));
30+
#ifndef EM_GUI_OVERRIDE_DEFAULT_PICS
31+
hdl->usGetPictureH = &usGetPictureH;
32+
hdl->usGetPictureW = &usGetPictureW;
33+
#endif
34+
}

src/Draw/Draw.h

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#ifndef EMGUI_DRAW_H
2+
#define EMGUI_DRAW_H
3+
4+
#include <stdint.h>
5+
#include <stdbool.h>
6+
#include "Fonts/Font.h"
7+
#include "options/opts.h"
8+
9+
#ifdef __cplusplus
10+
extern "C" {
11+
#endif // __cplusplus
12+
13+
typedef struct {
14+
void(*vRectangle)(uint16_t usX0, uint16_t usY0, uint16_t usX1, uint16_t usY1, uint16_t usColor, bool bFill);
15+
void(*vPutChar)(uint16_t usX, uint16_t usY, char ASCI, xFont pubFont, uint16_t usColor, uint16_t usBackground, bool bFillBg);
16+
void(*vHLine)(uint16_t usX0, uint16_t usY0, uint16_t usY1, uint16_t usColor);
17+
void(*vVLine)(uint16_t usX0, uint16_t usY0, uint16_t usX1, uint16_t usColor);
18+
void(*bPicture)(int16_t sX0, int16_t sY0, xPicture pusPicture);
19+
uint16_t(*usGetPictureH)(xPicture pusPic);
20+
uint16_t(*usGetPictureW)(xPicture pusPic);
21+
}xDraw_t;
22+
23+
void vDrawSetHandler(xDraw_t * hdl);
24+
xDraw_t * pxDrawHDL();
25+
void vDrawHandlerInit(xDraw_t * hdl);
26+
27+
#ifdef __cplusplus
28+
}
29+
#endif // __cplusplus
30+
31+
#endif // !EMGUI_DRAW_H

src/Fonts/Font.c

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#ifndef __FONT_C
2+
#define __FONT_C
3+
4+
#include "Fonts/Font.h"
5+
6+
uint16_t usFontGetStrW(char const * pcStr, xFont pubFont) {
7+
uint16_t usWidth = 0;
8+
9+
while (*pcStr) {
10+
usWidth += ucFontGetCharW(*pcStr, pubFont);
11+
pcStr++;
12+
}
13+
return usWidth;
14+
}
15+
16+
uint16_t usFontGetStrH(const char * pcStr, xFont pubFont) {
17+
//uint16_t usHeight = 0;
18+
19+
//TODO: implement multistring height.
20+
/*while (*pcStr) {
21+
usWidth += ucFontGetCharW(*pcStr);
22+
pcStr++;
23+
}
24+
return usWidth;*/
25+
26+
return *(unsigned char *)pubFont[0];
27+
}
28+
29+
#endif //__FONT_C

src/Fonts/Font.h

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#ifndef __FONT_H
2+
#define __FONT_H
3+
4+
#include <stdint.h>
5+
6+
#ifdef __cplusplus
7+
extern "C" {
8+
#endif // __cplusplus
9+
10+
extern unsigned char const* const FONT_ASCII_8_X[];
11+
extern unsigned char const* const FONT_ASCII_16_X[];
12+
13+
typedef unsigned char const * const * xFont;
14+
15+
uint16_t usFontGetStrW(const char * pcStr, xFont pubFont);
16+
17+
inline char ucFontGetCharW(char cChar, xFont pubFont) {
18+
return *(unsigned char *)pubFont[(unsigned int)cChar];
19+
}
20+
21+
inline uint16_t usFontGetH(xFont pubFont) {
22+
//uint16_t usHeight = 0;
23+
24+
//TODO: implement multistring height.
25+
/*while (*pcStr) {
26+
usWidth += *(unsigned char *) pubFont[*pcStr];
27+
pcStr++;
28+
}
29+
return usWidth;*/
30+
31+
return *(unsigned char *)pubFont[0];
32+
}
33+
uint16_t usFontGetStrH(const char * pcStr, xFont pubFont);
34+
35+
#ifdef __cplusplus
36+
}
37+
#endif // __cplusplus
38+
39+
#endif //__FONT_H

0 commit comments

Comments
 (0)