2016-10-19 15:03:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "nwz_lib.h"
|
2016-10-31 16:50:16 +00:00
|
|
|
#include "nwz_plattools.h"
|
2016-10-19 15:03:52 +00:00
|
|
|
|
2016-10-31 16:50:16 +00:00
|
|
|
int NWZ_TOOL_MAIN(test_display)(int argc, char **argv)
|
2016-10-19 15:03:52 +00:00
|
|
|
{
|
|
|
|
/* clear screen and display welcome message */
|
2016-11-11 15:01:14 +00:00
|
|
|
nwz_display_clear(NWZ_COLOR(128, 128, 0));
|
|
|
|
nwz_display_text(0, 0, true, NWZ_COLOR(255, 0, 0), NWZ_COLOR(0, 0, 255), 0,
|
|
|
|
"Hello");
|
|
|
|
nwz_display_text(0, 30, false, NWZ_COLOR(255, 0, 0), NWZ_COLOR(0, 0, 255), 128,
|
|
|
|
"BACK: quit");
|
|
|
|
nwz_display_text(0, 50, false, NWZ_COLOR(255, 0, 0), NWZ_COLOR(0, 0, 255), 255,
|
|
|
|
"BACK: quit");
|
|
|
|
/* display /contents/display.bmp if any */
|
|
|
|
const char *bmp_fname = "/contents/display.bmp";
|
|
|
|
if(access(bmp_fname, R_OK) != -1)
|
|
|
|
{
|
|
|
|
nwz_display_bitmap(10, 70, bmp_fname, 0, 0, 200, 200, NWZ_COLOR_NO_KEY, 255);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nwz_display_text(0, 70, false, NWZ_COLOR(255, 0, 0), NWZ_COLOR(0, 0, 0), 0,
|
|
|
|
"Cannot find display.bmp");
|
|
|
|
}
|
2016-11-05 23:12:04 +00:00
|
|
|
/* wait for key */
|
|
|
|
int input_fd = nwz_key_open();
|
|
|
|
if(input_fd < 0)
|
|
|
|
{
|
|
|
|
sleep(2);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
/* wait for event */
|
|
|
|
int ret = nwz_key_wait_event(input_fd, 1000000);
|
|
|
|
if(ret != 1)
|
|
|
|
continue;
|
|
|
|
struct input_event evt;
|
|
|
|
if(nwz_key_read_event(input_fd, &evt) != 1)
|
|
|
|
continue;
|
|
|
|
/* handle quit */
|
|
|
|
if(nwz_key_event_get_keycode(&evt) == NWZ_KEY_BACK && !nwz_key_event_is_press(&evt))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nwz_key_close(input_fd);
|
2016-10-19 15:03:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|