FS#8961 - Anti-Aliased Fonts.
[kugel-rb.git] / apps / plugins / test_greylib_bitmap_scale.c
blob7b226d4f967ce24e7ffe55b50f700d962d8d06f8
1 /*****************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// __ \_/ ___\| |/ /| __ \ / __ \ \/ /
5 * Jukebox | | ( (__) ) \___| ( | \_\ ( (__) ) (
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2008 Andrew Mahone
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "plugin.h"
23 #include "lib/grey.h"
24 #include "lib/pluginlib_bmp.h"
26 #if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
27 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
28 #define GBS_QUIT BUTTON_MENU
29 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
30 #define GBS_QUIT BUTTON_RC_REC
31 #elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
32 #define GBS_QUIT BUTTON_PLAY
33 #elif defined(BUTTON_OFF)
34 #define GBS_QUIT BUTTON_OFF
35 #else
36 #define GBS_QUIT BUTTON_POWER
37 #endif
39 #if LCD_DEPTH == 1
40 #define BMP_LOAD read_bmp_file
41 #else
42 #define BMP_LOAD rb->read_bmp_file
43 #endif
45 PLUGIN_HEADER
46 GREY_INFO_STRUCT
47 static unsigned char grey_bm_buf[LCD_WIDTH * LCD_HEIGHT +
48 BM_SCALED_SIZE(LCD_WIDTH,0,FORMAT_NATIVE,0)];
50 /* this is the plugin entry point */
51 enum plugin_status plugin_start(const void* parameter)
53 void * plugin_buf;
54 size_t plugin_buf_len;
55 static char filename[MAX_PATH];
56 struct bitmap grey_bm = {
57 .width = LCD_WIDTH,
58 .height = LCD_HEIGHT,
59 .data = grey_bm_buf
61 int ret, x, y;
63 if(!parameter) return PLUGIN_ERROR;
65 rb->strcpy(filename, parameter);
67 ret = BMP_LOAD(filename, &grey_bm, sizeof(grey_bm_buf),
68 FORMAT_NATIVE|FORMAT_RESIZE|FORMAT_KEEP_ASPECT,
69 &format_grey);
71 if(ret < 1)
73 rb->splash(HZ*2, "failed to load bitmap");
74 return PLUGIN_ERROR;
77 plugin_buf = rb->plugin_get_buffer(&plugin_buf_len);
78 if(!grey_init(plugin_buf, plugin_buf_len, 0, LCD_WIDTH, LCD_HEIGHT,
79 NULL))
81 rb->splash(HZ*2,"grey init failed");
82 return PLUGIN_ERROR;
84 grey_ub_clear_display();
85 x = (LCD_WIDTH - grey_bm.width) / 2;
86 y = (LCD_HEIGHT - grey_bm.height) / 2;
87 grey_ub_gray_bitmap(grey_bm_buf, x, y, grey_bm.width, grey_bm.height);
88 grey_show(true);
90 /* wait until user closes plugin */
91 while (rb->button_get(true) != GBS_QUIT);
93 grey_release();
95 return PLUGIN_OK;