2016-01-13 00:49:29 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* 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, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "event_m0.hpp"
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
#include "portapack.hpp"
|
2016-07-26 21:03:40 -04:00
|
|
|
#include "portapack_persistent_memory.hpp"
|
2016-01-13 01:20:13 -05:00
|
|
|
|
|
|
|
#include "sd_card.hpp"
|
2016-08-21 20:49:06 -04:00
|
|
|
#include "rtc_time.hpp"
|
2016-01-13 01:20:13 -05:00
|
|
|
|
|
|
|
#include "message.hpp"
|
|
|
|
#include "message_queue.hpp"
|
|
|
|
|
|
|
|
#include "irq_controls.hpp"
|
|
|
|
|
2016-10-06 16:38:56 -04:00
|
|
|
#include "buffer_exchange.hpp"
|
2016-03-28 01:49:30 -04:00
|
|
|
|
2016-01-13 00:49:29 -05:00
|
|
|
#include "ch.h"
|
|
|
|
|
|
|
|
#include "lpc43xx_cpp.hpp"
|
|
|
|
using namespace lpc43xx;
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
#include <array>
|
|
|
|
|
2016-02-27 15:10:39 -05:00
|
|
|
#include "ui_font_fixed_8x16.hpp"
|
|
|
|
|
2016-01-13 00:49:29 -05:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
CH_IRQ_HANDLER(M4Core_IRQHandler) {
|
|
|
|
CH_IRQ_PROLOGUE();
|
|
|
|
|
|
|
|
chSysLockFromIsr();
|
2016-10-06 16:38:56 -04:00
|
|
|
BufferExchange::handle_isr();
|
2016-05-09 15:05:11 -04:00
|
|
|
EventDispatcher::check_fifo_isr();
|
2016-01-13 00:49:29 -05:00
|
|
|
chSysUnlockFromIsr();
|
|
|
|
|
|
|
|
creg::m4txevent::clear();
|
|
|
|
|
|
|
|
CH_IRQ_EPILOGUE();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-01-13 01:00:42 -05:00
|
|
|
|
2016-06-20 01:56:06 -04:00
|
|
|
class MessageHandlerMap {
|
|
|
|
public:
|
|
|
|
using MessageHandler = std::function<void(Message* const p)>;
|
|
|
|
|
|
|
|
void register_handler(const Message::ID id, MessageHandler&& handler) {
|
|
|
|
if( map_[toUType(id)] != nullptr ) {
|
|
|
|
chDbgPanic("MsgDblReg");
|
|
|
|
}
|
|
|
|
map_[toUType(id)] = std::move(handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unregister_handler(const Message::ID id) {
|
|
|
|
map_[toUType(id)] = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void send(Message* const message) {
|
|
|
|
if( message->id < Message::ID::MAX ) {
|
|
|
|
auto& fn = map_[toUType(message->id)];
|
|
|
|
if( fn ) {
|
|
|
|
fn(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
using MapType = std::array<MessageHandler, toUType(Message::ID::MAX)>;
|
2016-11-26 19:50:44 -05:00
|
|
|
MapType map_ { };
|
2016-06-20 01:56:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static MessageHandlerMap message_map;
|
2016-01-13 01:00:42 -05:00
|
|
|
Thread* EventDispatcher::thread_event_loop = nullptr;
|
2016-07-02 19:38:01 -04:00
|
|
|
bool EventDispatcher::is_running = false;
|
2016-12-09 12:21:47 -05:00
|
|
|
bool EventDispatcher::display_sleep = false;
|
2016-01-13 01:20:13 -05:00
|
|
|
|
|
|
|
EventDispatcher::EventDispatcher(
|
|
|
|
ui::Widget* const top_widget,
|
|
|
|
ui::Context& context
|
|
|
|
) : top_widget { top_widget },
|
2016-05-12 18:52:18 -04:00
|
|
|
painter { },
|
2016-01-13 01:20:13 -05:00
|
|
|
context(context)
|
|
|
|
{
|
2016-02-16 14:23:02 -05:00
|
|
|
init_message_queues();
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
thread_event_loop = chThdSelf();
|
2016-07-02 19:38:01 -04:00
|
|
|
is_running = true;
|
2016-01-13 01:20:13 -05:00
|
|
|
touch_manager.on_event = [this](const ui::TouchEvent event) {
|
|
|
|
this->on_touch_event(event);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::run() {
|
|
|
|
while(is_running) {
|
|
|
|
const auto events = wait();
|
|
|
|
dispatch(events);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::request_stop() {
|
|
|
|
is_running = false;
|
|
|
|
}
|
|
|
|
|
2016-01-28 00:03:34 -05:00
|
|
|
void EventDispatcher::set_display_sleep(const bool sleep) {
|
|
|
|
// TODO: Distribute display sleep message more broadly, shut down data generation
|
|
|
|
// on baseband side, since all that data is being discarded during sleep.
|
|
|
|
if( sleep ) {
|
|
|
|
portapack::io.lcd_backlight(false);
|
|
|
|
portapack::display.sleep();
|
|
|
|
} else {
|
|
|
|
portapack::display.wake();
|
|
|
|
portapack::io.lcd_backlight(true);
|
|
|
|
}
|
2016-12-09 12:21:47 -05:00
|
|
|
EventDispatcher::display_sleep = sleep;
|
2016-01-28 00:03:34 -05:00
|
|
|
};
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
eventmask_t EventDispatcher::wait() {
|
|
|
|
return chEvtWaitAny(ALL_EVENTS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::dispatch(const eventmask_t events) {
|
2016-02-27 15:10:39 -05:00
|
|
|
if( shared_memory.m4_panic_msg[0] != 0 ) {
|
|
|
|
halt = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( halt ) {
|
|
|
|
if( shared_memory.m4_panic_msg[0] != 0 ) {
|
|
|
|
painter.fill_rectangle(
|
|
|
|
{ 0, 0, portapack::display.width(), portapack::display.height() },
|
|
|
|
ui::Color::red()
|
|
|
|
);
|
|
|
|
|
|
|
|
constexpr int border = 8;
|
|
|
|
painter.fill_rectangle(
|
|
|
|
{ border, border, portapack::display.width() - (border * 2), portapack::display.height() - (border * 2) },
|
|
|
|
ui::Color::black()
|
|
|
|
);
|
|
|
|
|
|
|
|
painter.draw_string({ 48, 24 }, top_widget->style(), "M4 Guru Meditation");
|
|
|
|
|
|
|
|
shared_memory.m4_panic_msg[sizeof(shared_memory.m4_panic_msg) - 1] = 0;
|
|
|
|
const std::string message = shared_memory.m4_panic_msg;
|
|
|
|
const int x_offset = (portapack::display.width() - (message.size() * 8)) / 2;
|
|
|
|
constexpr int y_offset = (portapack::display.height() - 16) / 2;
|
|
|
|
painter.draw_string(
|
|
|
|
{ x_offset, y_offset },
|
|
|
|
top_widget->style(),
|
|
|
|
message
|
|
|
|
);
|
|
|
|
|
|
|
|
shared_memory.m4_panic_msg[0] = 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
if( events & EVT_MASK_APPLICATION ) {
|
|
|
|
handle_application_queue();
|
|
|
|
}
|
|
|
|
|
2016-06-21 13:57:44 -04:00
|
|
|
if( events & EVT_MASK_LOCAL ) {
|
|
|
|
handle_local_queue();
|
|
|
|
}
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
if( events & EVT_MASK_RTC_TICK ) {
|
|
|
|
handle_rtc_tick();
|
|
|
|
}
|
2016-01-27 23:33:54 -05:00
|
|
|
|
2016-01-28 00:03:34 -05:00
|
|
|
if( events & EVT_MASK_SWITCHES ) {
|
|
|
|
handle_switches();
|
|
|
|
}
|
2016-12-09 12:21:47 -05:00
|
|
|
|
|
|
|
/*if( events & EVT_MASK_LCD_FRAME_SYNC ) {
|
|
|
|
blink_timer();
|
|
|
|
}*/
|
2016-01-28 00:03:34 -05:00
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
if( !EventDispatcher::display_sleep ) {
|
2016-01-27 23:33:54 -05:00
|
|
|
if( events & EVT_MASK_LCD_FRAME_SYNC ) {
|
|
|
|
handle_lcd_frame_sync();
|
|
|
|
}
|
2016-01-13 01:20:13 -05:00
|
|
|
|
2016-01-27 23:33:54 -05:00
|
|
|
if( events & EVT_MASK_ENCODER ) {
|
|
|
|
handle_encoder();
|
|
|
|
}
|
2016-01-13 01:20:13 -05:00
|
|
|
|
2016-01-27 23:33:54 -05:00
|
|
|
if( events & EVT_MASK_TOUCH ) {
|
|
|
|
handle_touch();
|
|
|
|
}
|
2016-01-13 01:20:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_application_queue() {
|
2016-02-28 00:07:11 -05:00
|
|
|
shared_memory.application_queue.handle([](Message* const message) {
|
2016-06-20 01:56:06 -04:00
|
|
|
message_map.send(message);
|
2016-02-28 00:07:11 -05:00
|
|
|
});
|
2016-01-13 01:20:13 -05:00
|
|
|
}
|
|
|
|
|
2016-06-21 13:57:44 -04:00
|
|
|
void EventDispatcher::handle_local_queue() {
|
|
|
|
shared_memory.app_local_queue.handle([](Message* const message) {
|
|
|
|
message_map.send(message);
|
2016-02-28 00:07:11 -05:00
|
|
|
});
|
2016-01-13 01:20:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_rtc_tick() {
|
2016-04-28 08:59:14 -04:00
|
|
|
uint16_t bloff;
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
sd_card::poll_inserted();
|
|
|
|
|
|
|
|
portapack::temperature_logger.second_tick();
|
2016-04-28 08:59:14 -04:00
|
|
|
|
|
|
|
bloff = portapack::persistent_memory::ui_config_bloff();
|
|
|
|
if (bloff) {
|
|
|
|
if (portapack::bl_tick_counter == bloff)
|
|
|
|
set_display_sleep(true);
|
|
|
|
else
|
|
|
|
portapack::bl_tick_counter++;
|
|
|
|
}
|
2016-05-09 15:05:11 -04:00
|
|
|
|
2016-08-21 20:49:06 -04:00
|
|
|
rtc_time::on_tick_second();
|
2016-01-13 01:20:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ui::Widget* EventDispatcher::touch_widget(ui::Widget* const w, ui::TouchEvent event) {
|
|
|
|
if( !w->hidden() ) {
|
|
|
|
// To achieve reverse depth ordering (last object drawn is
|
|
|
|
// considered "top"), descend first.
|
|
|
|
for(const auto child : w->children()) {
|
|
|
|
const auto touched_widget = touch_widget(child, event);
|
|
|
|
if( touched_widget ) {
|
|
|
|
return touched_widget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto r = w->screen_rect();
|
|
|
|
if( r.contains(event.point) ) {
|
|
|
|
if( w->on_touch(event) ) {
|
|
|
|
// This widget responded. Return it up the call stack.
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::on_touch_event(ui::TouchEvent event) {
|
|
|
|
/* TODO: Capture widget receiving the Start event, send Move and
|
|
|
|
* End events to the same widget.
|
|
|
|
*/
|
|
|
|
/* Capture Start widget.
|
|
|
|
* If touch is over Start widget at Move event, then the widget
|
|
|
|
* should be highlighted. If the touch is not over the Start
|
|
|
|
* widget at Move event, widget should un-highlight.
|
|
|
|
* If touch is over Start widget at End event, then the widget
|
|
|
|
* action should occur.
|
|
|
|
*/
|
|
|
|
if( event.type == ui::TouchEvent::Type::Start ) {
|
|
|
|
captured_widget = touch_widget(this->top_widget, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( captured_widget ) {
|
|
|
|
captured_widget->on_touch(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_lcd_frame_sync() {
|
|
|
|
DisplayFrameSyncMessage message;
|
2016-06-20 01:56:06 -04:00
|
|
|
message_map.send(&message);
|
2016-01-13 01:20:13 -05:00
|
|
|
painter.paint_widget_tree(top_widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_switches() {
|
|
|
|
const auto switches_state = get_switches_state();
|
2016-01-28 00:03:34 -05:00
|
|
|
|
2016-04-28 08:59:14 -04:00
|
|
|
portapack::bl_tick_counter = 0;
|
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
if( EventDispatcher::display_sleep ) {
|
2016-01-28 00:03:34 -05:00
|
|
|
// Swallow event, wake up display.
|
|
|
|
if( switches_state.any() ) {
|
|
|
|
set_display_sleep(false);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
for(size_t i=0; i<switches_state.size(); i++) {
|
|
|
|
// TODO: Ignore multiple keys at the same time?
|
|
|
|
if( switches_state[i] ) {
|
|
|
|
const auto event = static_cast<ui::KeyEvent>(i);
|
|
|
|
if( !event_bubble_key(event) ) {
|
|
|
|
context.focus_manager().update(top_widget, event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_encoder() {
|
2016-04-28 08:59:14 -04:00
|
|
|
portapack::bl_tick_counter = 0;
|
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
if( EventDispatcher::display_sleep ) {
|
2016-04-28 08:59:14 -04:00
|
|
|
// Swallow event, wake up display.
|
|
|
|
set_display_sleep(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-13 01:20:13 -05:00
|
|
|
const uint32_t encoder_now = get_encoder_position();
|
|
|
|
const int32_t delta = static_cast<int32_t>(encoder_now - encoder_last);
|
|
|
|
encoder_last = encoder_now;
|
|
|
|
const auto event = static_cast<ui::EncoderEvent>(delta);
|
|
|
|
event_bubble_encoder(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::handle_touch() {
|
|
|
|
touch_manager.feed(get_touch_frame());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EventDispatcher::event_bubble_key(const ui::KeyEvent event) {
|
|
|
|
auto target = context.focus_manager().focus_widget();
|
|
|
|
while( (target != nullptr) && !target->on_key(event) ) {
|
|
|
|
target = target->parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return true if event was consumed. */
|
|
|
|
return (target != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::event_bubble_encoder(const ui::EncoderEvent event) {
|
|
|
|
auto target = context.focus_manager().focus_widget();
|
|
|
|
while( (target != nullptr) && !target->on_encoder(event) ) {
|
|
|
|
target = target->parent();
|
|
|
|
}
|
2016-02-16 14:23:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventDispatcher::init_message_queues() {
|
2016-07-24 18:27:05 -04:00
|
|
|
new (&shared_memory) SharedMemory;
|
2016-02-16 14:23:02 -05:00
|
|
|
}
|
2016-05-12 18:24:08 -04:00
|
|
|
|
|
|
|
MessageHandlerRegistration::MessageHandlerRegistration(
|
|
|
|
const Message::ID message_id,
|
|
|
|
MessageHandlerMap::MessageHandler&& callback
|
|
|
|
) : message_id { message_id }
|
|
|
|
{
|
2016-06-20 01:56:06 -04:00
|
|
|
message_map.register_handler(message_id, std::move(callback));
|
2016-05-12 18:24:08 -04:00
|
|
|
}
|
2016-05-09 15:16:24 -04:00
|
|
|
|
2016-05-12 18:24:08 -04:00
|
|
|
MessageHandlerRegistration::~MessageHandlerRegistration() {
|
2016-06-20 01:56:06 -04:00
|
|
|
message_map.unregister_handler(message_id);
|
2016-02-16 14:23:02 -05:00
|
|
|
}
|