Add new silly guy; update some old ones
This commit is contained in:
44
package.json
44
package.json
@@ -417,6 +417,39 @@
|
|||||||
],
|
],
|
||||||
"type": "bitmap"
|
"type": "bitmap"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"file": "images/b017.png",
|
||||||
|
"memoryFormat": "Smallest",
|
||||||
|
"name": "B017",
|
||||||
|
"spaceOptimization": "storage",
|
||||||
|
"targetPlatforms": [
|
||||||
|
"emery",
|
||||||
|
"gabbro"
|
||||||
|
],
|
||||||
|
"type": "bitmap"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "images/b023.png",
|
||||||
|
"memoryFormat": "Smallest",
|
||||||
|
"name": "B023",
|
||||||
|
"spaceOptimization": "storage",
|
||||||
|
"targetPlatforms": [
|
||||||
|
"emery",
|
||||||
|
"gabbro"
|
||||||
|
],
|
||||||
|
"type": "bitmap"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "images/h023.png",
|
||||||
|
"memoryFormat": "Smallest",
|
||||||
|
"name": "H023",
|
||||||
|
"spaceOptimization": "storage",
|
||||||
|
"targetPlatforms": [
|
||||||
|
"emery",
|
||||||
|
"gabbro"
|
||||||
|
],
|
||||||
|
"type": "bitmap"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"file": "images/xb001.png",
|
"file": "images/xb001.png",
|
||||||
"memoryFormat": "Smallest",
|
"memoryFormat": "Smallest",
|
||||||
@@ -527,17 +560,6 @@
|
|||||||
],
|
],
|
||||||
"type": "bitmap"
|
"type": "bitmap"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"file": "images/b017.png",
|
|
||||||
"memoryFormat": "Smallest",
|
|
||||||
"name": "B017",
|
|
||||||
"spaceOptimization": "storage",
|
|
||||||
"targetPlatforms": [
|
|
||||||
"emery",
|
|
||||||
"gabbro"
|
|
||||||
],
|
|
||||||
"type": "bitmap"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"file": "fonts/RetroComputerTime.ttf",
|
"file": "fonts/RetroComputerTime.ttf",
|
||||||
"name": "FONT_RETRO_COMPUTER_32",
|
"name": "FONT_RETRO_COMPUTER_32",
|
||||||
|
|||||||
10
src/c/main.c
10
src/c/main.c
@@ -22,23 +22,23 @@ static GRect s_guy_butt_grect_on = GRect(PBL_IF_ROUND_ELSE(0, -30), PBL_IF_ROUND
|
|||||||
static GRect s_guy_butt_grect_off = GRect(PBL_IF_ROUND_ELSE(260, 170), PBL_IF_ROUND_ELSE(145, 129), 260, 115);
|
static GRect s_guy_butt_grect_off = GRect(PBL_IF_ROUND_ELSE(260, 170), PBL_IF_ROUND_ELSE(145, 129), 260, 115);
|
||||||
|
|
||||||
// declare lookup tables
|
// declare lookup tables
|
||||||
static const uint8_t s_head_count = 22;
|
static const uint8_t s_head_count = 23;
|
||||||
static const uint32_t s_random_heads[] = {
|
static const uint32_t s_random_heads[] = {
|
||||||
RESOURCE_ID_H001, RESOURCE_ID_H002, RESOURCE_ID_H003, RESOURCE_ID_H004,
|
RESOURCE_ID_H001, RESOURCE_ID_H002, RESOURCE_ID_H003, RESOURCE_ID_H004,
|
||||||
RESOURCE_ID_H005, RESOURCE_ID_H006, RESOURCE_ID_H007, RESOURCE_ID_H008,
|
RESOURCE_ID_H005, RESOURCE_ID_H006, RESOURCE_ID_H007, RESOURCE_ID_H008,
|
||||||
RESOURCE_ID_H009, RESOURCE_ID_H010, RESOURCE_ID_H011, RESOURCE_ID_H012,
|
RESOURCE_ID_H009, RESOURCE_ID_H010, RESOURCE_ID_H011, RESOURCE_ID_H012,
|
||||||
RESOURCE_ID_H013, RESOURCE_ID_H014, RESOURCE_ID_H015, RESOURCE_ID_H016,
|
RESOURCE_ID_H013, RESOURCE_ID_H014, RESOURCE_ID_H015, RESOURCE_ID_H016,
|
||||||
RESOURCE_ID_H017, RESOURCE_ID_H018, RESOURCE_ID_H019, RESOURCE_ID_H020,
|
RESOURCE_ID_H017, RESOURCE_ID_H018, RESOURCE_ID_H019, RESOURCE_ID_H020,
|
||||||
RESOURCE_ID_H021, RESOURCE_ID_H022};
|
RESOURCE_ID_H021, RESOURCE_ID_H022, RESOURCE_ID_H023};
|
||||||
static const uint8_t s_butt_count = 26;
|
static const uint8_t s_butt_count = 27;
|
||||||
static const uint32_t s_random_butts[] = {
|
static const uint32_t s_random_butts[] = {
|
||||||
RESOURCE_ID_B001, RESOURCE_ID_B002, RESOURCE_ID_B003, RESOURCE_ID_B004,
|
RESOURCE_ID_B001, RESOURCE_ID_B002, RESOURCE_ID_B003, RESOURCE_ID_B004,
|
||||||
RESOURCE_ID_B005, RESOURCE_ID_B006, RESOURCE_ID_B007, RESOURCE_ID_B008,
|
RESOURCE_ID_B005, RESOURCE_ID_B006, RESOURCE_ID_B007, RESOURCE_ID_B008,
|
||||||
RESOURCE_ID_B009, RESOURCE_ID_B010, RESOURCE_ID_B011, RESOURCE_ID_B012,
|
RESOURCE_ID_B009, RESOURCE_ID_B010, RESOURCE_ID_B011, RESOURCE_ID_B012,
|
||||||
RESOURCE_ID_B013, RESOURCE_ID_B014, RESOURCE_ID_B015, RESOURCE_ID_B016,
|
RESOURCE_ID_B013, RESOURCE_ID_B014, RESOURCE_ID_B015, RESOURCE_ID_B016,
|
||||||
RESOURCE_ID_B017, RESOURCE_ID_B018, RESOURCE_ID_B019, RESOURCE_ID_B020,
|
RESOURCE_ID_B017, RESOURCE_ID_B018, RESOURCE_ID_B019, RESOURCE_ID_B020,
|
||||||
RESOURCE_ID_B021, RESOURCE_ID_B022, RESOURCE_ID_XB001, RESOURCE_ID_XB002,
|
RESOURCE_ID_B021, RESOURCE_ID_B022, RESOURCE_ID_B023, RESOURCE_ID_XB001,
|
||||||
RESOURCE_ID_XB003, RESOURCE_ID_XB004};
|
RESOURCE_ID_XB002, RESOURCE_ID_XB003, RESOURCE_ID_XB004};
|
||||||
static const uint8_t s_color_count = 22;
|
static const uint8_t s_color_count = 22;
|
||||||
static const GColor8 s_dark_bg_colors[] = {
|
static const GColor8 s_dark_bg_colors[] = {
|
||||||
// Red
|
// Red
|
||||||
|
|||||||
Reference in New Issue
Block a user