genode/demo/src/server/liquid_framebuffer/main.cc

218 lines
5.0 KiB
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Nitpicker-based virtual framebuffer
* \author Norman Feske
* \date 2006-09-21
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#include <os/config.h>
#include "framebuffer_window.h"
#include "canvas_rgb565.h"
#include "user_state.h"
#include "services.h"
/**
* Runtime configuration
*/
namespace Config
{
int iconbar_detail = 1;
int background_detail = 1;
int mouse_cursor = 1;
int browser_attr = 0;
}
void Launcher::launch() { }
extern int native_startup(int, char **);
class Background_animator : public Tick
{
private:
Framebuffer_window<Pixel_rgb565> *_fb_win;
int _bg_offset;
public:
/**
* Constructor
*/
Background_animator(Framebuffer_window<Pixel_rgb565> *fb_win):
_fb_win(fb_win), _bg_offset(0) {
schedule(20); }
/**
* Tick interface
*/
int on_tick()
{
_fb_win->bg_offset(_bg_offset);
_bg_offset += 2;
_fb_win->refresh();
/* schedule next tick */
return 1;
}
};
/**
* Animated background
*/
static bool config_animate = true;
static bool config_alpha = true;
/**
* Size and position of virtual frame buffer
*/
static long config_fb_width = 500;
static long config_fb_height = 400;
static long config_fb_x = 400;
static long config_fb_y = 260;
/**
* Window title
*/
static const char *config_title = "Liquid Framebuffer";
/**
* Parse configuration
*/
static void read_config()
{
using namespace Genode;
Xml_node config_node = config()->xml_node();
try {
char buf[16];
config_node.sub_node("animate").value(buf, sizeof(buf));
if (!strcmp("off", buf)) config_animate = false;
else if (!strcmp("on", buf)) config_animate = true;
else
Genode::printf("Warning: invalid value for animate declaration,\n"
" valid values are 'on', 'off.\n'");
} catch (Xml_node::Nonexistent_sub_node) { }
config_alpha = config_animate;
try { config_node.sub_node("x").value(&config_fb_x); }
catch (Xml_node::Nonexistent_sub_node) { }
try { config_node.sub_node("y").value(&config_fb_y); }
catch (Xml_node::Nonexistent_sub_node) { }
try { config_node.sub_node("width").value(&config_fb_width); }
catch (Xml_node::Nonexistent_sub_node) { }
try { config_node.sub_node("height").value(&config_fb_height); }
catch (Xml_node::Nonexistent_sub_node) { }
try {
static char buf[64];
config_node.sub_node("title").value(buf, sizeof(buf));
config_title = buf;
} catch (Xml_node::Nonexistent_sub_node) { }
}
/**
* Main program
*/
int main(int argc, char **argv)
{
if (native_startup(argc, argv)) return -1;
try { read_config(); } catch (...) { }
/* heuristic for allocating the double-buffer backing store */
enum { WINBORDER_WIDTH = 10, WINBORDER_HEIGHT = 40 };
/* init platform */
static Platform pf(config_fb_x, config_fb_y,
config_fb_width + WINBORDER_WIDTH,
config_fb_height + WINBORDER_HEIGHT,
config_fb_width + WINBORDER_WIDTH,
config_fb_height + WINBORDER_HEIGHT);
/* initialize our services and window content */
init_services(config_fb_width, config_fb_height, config_alpha);
/* init canvas */
static Chunky_canvas<Pixel_rgb565> canvas;
canvas.init(static_cast<Pixel_rgb565 *>(pf.buf_adr()),
pf.scr_w()*pf.scr_h());
canvas.set_size(pf.scr_w(), pf.scr_h());
canvas.clip(0, 0, pf.scr_w(), pf.scr_h());
/* init redraw manager */
static Redraw_manager redraw(&canvas, &pf, pf.vw(), pf.vh());
/* create instance of browser window */
static Framebuffer_window<Pixel_rgb565>
fb_win(&pf, &redraw, window_content(), config_title, config_alpha);
2011-12-22 16:19:25 +01:00
if (config_animate) {
static Background_animator fb_win_bg_anim(&fb_win);
}
/* create user state manager */
static User_state user_state(&fb_win, &fb_win, pf.vx(), pf.vy());
/* assign framebuffer window as root element to redraw manager */
redraw.root(&fb_win);
fb_win.parent(&user_state);
fb_win.format(fb_win.min_w(), fb_win.min_h());
/* enter main loop */
Event ev;
unsigned long curr_time, old_time;
curr_time = old_time = pf.timer_ticks();
lock_window_content();
2011-12-22 16:19:25 +01:00
do {
unlock_window_content();
2011-12-22 16:19:25 +01:00
pf.get_event(&ev);
lock_window_content();
2011-12-22 16:19:25 +01:00
if (ev.type != Event::WHEEL) {
ev.mx -= user_state.vx();
ev.my -= user_state.vy();
}
/* direct all keyboard events to the window content */
if ((ev.type == Event::PRESS || ev.type == Event::RELEASE)
&& (ev.code != Event::BTN_LEFT))
window_content()->handle_event(ev);
else
user_state.handle_event(ev);
if (ev.type == Event::REFRESH)
pf.scr_update(0, 0, pf.scr_w(), pf.scr_h());
if (ev.type == Event::TIMER)
Tick::handle(pf.timer_ticks());
/* perform periodic redraw */
curr_time = pf.timer_ticks();
if (!pf.event_pending() && ((curr_time - old_time > 20) || (curr_time < old_time))) {
old_time = curr_time;
redraw.process();
}
} while (ev.type != Event::QUIT);
return 0;
}