Last active
December 30, 2015 09:49
-
-
Save matthewtole/7811460 to your computer and use it in GitHub Desktop.
Font Loader
This file contains hidden or 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
/*** | |
* Font Loader | |
* Copyright © 2013 Matthew Tole | |
* | |
* 1.0.0 | |
***/ | |
#include <pebble.h> | |
#include "font-loader.h" | |
typedef struct AppFont AppFont; | |
struct AppFont { | |
GFont font; | |
char* name; | |
AppFont* next; | |
}; | |
AppFont* get_tail(void); | |
AppFont* get_by_name(char* name); | |
static AppFont* fonts = NULL; | |
void fonts_init() { | |
fonts_cleanup(); | |
fonts = NULL; | |
} | |
bool fonts_assign(char* name, uint32_t res_id) { | |
AppFont* font = malloc(sizeof(AppFont)); | |
font->name = malloc(strlen(name) + 1); | |
strcpy(font->name, name); | |
font->font = fonts_load_custom_font(resource_get_handle(res_id)); | |
font->next = NULL; | |
AppFont* last = get_tail(); | |
if (last == NULL) { | |
fonts = font; | |
} | |
else { | |
last->next = font; | |
} | |
return true; | |
} | |
GFont fonts_get(char* name) { | |
AppFont* font = get_by_name(name); | |
return font == NULL ? NULL : font->font; | |
} | |
void fonts_cleanup(void) { | |
AppFont* current = fonts; | |
while (current != NULL) { | |
fonts_unload_custom_font(current->font); | |
free(current->name); | |
AppFont* tmp = current; | |
current = tmp->next; | |
free(current); | |
} | |
} | |
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // | |
AppFont* get_tail(void) { | |
AppFont* current = fonts; | |
while (current != NULL) { | |
if (current->next == NULL) { | |
return current; | |
} | |
current = current->next; | |
} | |
return NULL; | |
} | |
AppFont* get_by_name(char* name) { | |
AppFont* current = fonts; | |
while (current != NULL) { | |
if (strcmp(current->name, name) == 0) { | |
return current; | |
} | |
current = current->next; | |
} | |
return NULL; | |
} |
This file contains hidden or 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
/*** | |
* Font Loader | |
* Copyright © 2013 Matthew Tole | |
* | |
* 1.0.0 | |
***/ | |
#pragma once | |
#include <pebble.h> | |
void fonts_init(void); | |
bool fonts_assign(char* name, uint32_t res_id); | |
GFont fonts_get(char* name); | |
void fonts_cleanup(void); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment