-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from Guillem96/develop
Ready for 1.0-alpha release
- Loading branch information
Showing
288 changed files
with
61,291 additions
and
2,414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,8 @@ | |
# Build files | ||
build/ | ||
output/ | ||
logo_bmp.h | ||
logo_bmp.h | ||
|
||
# Cli files | ||
venv/ | ||
scripts/sd-files/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef _ARGON_CTXT_H_ | ||
#define _ARGON_CTXT_H_ | ||
|
||
#include "minerva/minerva.h" | ||
#include "menu/gui/gui_menu_pool.h" | ||
|
||
typedef struct | ||
{ | ||
/* Screen settings */ | ||
u32* vdb; | ||
bool is_display_init; | ||
|
||
/* Keep a reference to all menu objects */ | ||
gui_menu_pool_t* pool; | ||
|
||
/* Minerva configuration */ | ||
mtc_config_t* mtc_conf; | ||
} argon_ctxt_t; | ||
|
||
void argon_ctxt_init(argon_ctxt_t* argon_ctxt); | ||
void argon_ctxt_destroy(argon_ctxt_t* argon_ctxt); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#ifndef _ARGON_RESOURCES_H_ | ||
#define _ARGON_RESOURCES_H_ | ||
|
||
#define ARGON_RES_ADDR 0xEE000000 | ||
|
||
// Montserrat 12 font | ||
#define MONTSERRAT_12_GLYPH_BMP 0x0 | ||
#define MONTSERRAT_12_KERN_PAIR_GLYPH 0x9FE | ||
#define MONTSERRAT_12_KERN_PAIR_VALUE 0xFF6 | ||
|
||
// Montserrat 40 font | ||
#define MONTSERRAT_40_GLYPH_BMP 0x12F2 | ||
#define MONTSERRAT_40_KERN_PAIR_GLYPH 0xE587 | ||
#define MONTSERRAT_40_KERN_PAIR_VALUE 0xEB7F | ||
|
||
// Montserrat Alternate 80 font | ||
#define MONTSERRAT_ALT_80_GLYPH_BMP 0xEE7B | ||
#define MONTSERRAT_ALT_80_KERN_PAIR_GLYPH 0x42822 | ||
#define MONTSERRAT_ALT_80_KERN_PAIR_VALUE 0x429C6 | ||
|
||
// Montserrat Alternate 20 font | ||
#define MONTSERRAT_ALT_20_GLYPH_BMP 0x42A98 | ||
#define MONTSERRAT_ALT_20_KERN_PAIR_GLYPH 0x46213 | ||
#define MONTSERRAT_ALT_20_KERN_PAIR_VALUE 0x463B7 | ||
|
||
// Montserrat Alternate 30 font | ||
#define MONTSERRAT_ALT_30_GLYPH_BMP 0x46489 | ||
#define MONTSERRAT_ALT_30_KERN_PAIR_GLYPH 0x4DE14 | ||
#define MONTSERRAT_ALT_30_KERN_PAIR_VALUE 0x4DFB8 | ||
|
||
// Montserrat Alternate 110 font | ||
#define MONTSERRAT_ALT_110_GLYPH_BMP 0x4E08A | ||
#define MONTSERRAT_ALT_110_KERN_LEFT_MAP 0x7B294 | ||
#define MONTSERRAT_ALT_110_KERN_RIGHT_MAP 0x7B2F6 | ||
#define MONTSERRAT_ALT_110_KERN_CLASS_VALUE 0x7B358 | ||
|
||
void argon_resources_init(); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.