2015-07-17 13:55:54 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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 "ch.h"
|
|
|
|
|
2015-08-01 16:42:27 -04:00
|
|
|
#include "portapack.hpp"
|
2015-07-17 13:55:54 -04:00
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
|
|
|
|
#include "cpld_update.hpp"
|
|
|
|
|
|
|
|
#include "message_queue.hpp"
|
|
|
|
|
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
#include "ui_painter.hpp"
|
|
|
|
#include "ui_navigation.hpp"
|
|
|
|
|
|
|
|
#include "irq_ipc.hpp"
|
|
|
|
#include "irq_lcd_frame.hpp"
|
|
|
|
#include "irq_controls.hpp"
|
2015-08-14 23:57:40 -04:00
|
|
|
#include "irq_rtc.hpp"
|
2015-07-17 13:55:54 -04:00
|
|
|
|
|
|
|
#include "event.hpp"
|
|
|
|
|
|
|
|
#include "m4_startup.hpp"
|
2015-07-30 12:41:33 -04:00
|
|
|
#include "spi_image.hpp"
|
2015-07-17 13:55:54 -04:00
|
|
|
|
|
|
|
#include "debug.hpp"
|
|
|
|
#include "led.hpp"
|
|
|
|
|
|
|
|
#include "gcc.hpp"
|
|
|
|
|
2015-08-20 23:26:36 -04:00
|
|
|
#include "lpc43xx_cpp.hpp"
|
|
|
|
using namespace lpc43xx;
|
|
|
|
|
2015-11-10 18:24:42 -05:00
|
|
|
#include "sd_card.hpp"
|
|
|
|
|
2015-07-17 13:55:54 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
class EventDispatcher {
|
|
|
|
public:
|
|
|
|
EventDispatcher(
|
|
|
|
ui::Widget* const top_widget,
|
|
|
|
ui::Painter& painter,
|
|
|
|
ui::Context& context
|
|
|
|
) : top_widget { top_widget },
|
2015-07-17 15:07:38 -04:00
|
|
|
painter(painter),
|
|
|
|
context(context)
|
2015-07-17 13:55:54 -04:00
|
|
|
{
|
|
|
|
touch_manager.on_event = [this](const ui::TouchEvent event) {
|
|
|
|
this->on_touch_event(event);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-08-15 01:01:20 -04:00
|
|
|
void run() {
|
2015-08-20 20:56:47 -04:00
|
|
|
while(is_running) {
|
2015-08-15 01:01:20 -04:00
|
|
|
const auto events = wait();
|
|
|
|
dispatch(events);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 20:56:47 -04:00
|
|
|
void request_stop() {
|
|
|
|
is_running = false;
|
|
|
|
}
|
|
|
|
|
2015-08-15 01:01:20 -04:00
|
|
|
private:
|
|
|
|
touch::Manager touch_manager;
|
|
|
|
ui::Widget* const top_widget;
|
|
|
|
ui::Painter& painter;
|
|
|
|
ui::Context& context;
|
|
|
|
uint32_t encoder_last = 0;
|
2015-08-20 20:56:47 -04:00
|
|
|
bool is_running = true;
|
2015-11-10 18:24:42 -05:00
|
|
|
bool sd_card_present = false;
|
2015-08-15 01:01:20 -04:00
|
|
|
|
2015-07-17 13:55:54 -04:00
|
|
|
eventmask_t wait() {
|
|
|
|
return chEvtWaitAny(ALL_EVENTS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dispatch(const eventmask_t events) {
|
|
|
|
if( events & EVT_MASK_APPLICATION ) {
|
|
|
|
handle_application_queue();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( events & EVT_MASK_RTC_TICK ) {
|
|
|
|
handle_rtc_tick();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( events & EVT_MASK_LCD_FRAME_SYNC ) {
|
|
|
|
handle_lcd_frame_sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( events & EVT_MASK_SWITCHES ) {
|
|
|
|
handle_switches();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( events & EVT_MASK_ENCODER ) {
|
|
|
|
handle_encoder();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( events & EVT_MASK_TOUCH ) {
|
|
|
|
handle_touch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_application_queue() {
|
2015-08-27 17:35:17 -04:00
|
|
|
std::array<uint8_t, Message::MAX_SIZE> message_buffer;
|
2015-09-26 14:48:30 -04:00
|
|
|
while(Message* const message = shared_memory.application_queue.pop(message_buffer)) {
|
2015-11-09 14:56:40 -05:00
|
|
|
context.message_map().send(message);
|
2015-07-17 13:55:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-29 18:37:24 -05:00
|
|
|
void handle_rtc_tick() {
|
2015-12-01 13:38:35 -05:00
|
|
|
sd_card::poll_inserted();
|
2015-12-17 01:36:51 -05:00
|
|
|
|
|
|
|
portapack::temperature_logger.second_tick();
|
2015-11-29 18:37:24 -05:00
|
|
|
}
|
|
|
|
|
2015-07-17 13:55:54 -04:00
|
|
|
static ui::Widget* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui::Widget* captured_widget { nullptr };
|
|
|
|
|
|
|
|
void 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 handle_lcd_frame_sync() {
|
2015-08-15 00:36:51 -04:00
|
|
|
painter.paint_widget_tree(top_widget);
|
2015-07-17 13:55:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_switches() {
|
|
|
|
const auto switches_state = get_switches_state();
|
|
|
|
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) ) {
|
2015-11-09 14:56:40 -05:00
|
|
|
context.focus_manager().update(top_widget, event);
|
2015-07-17 13:55:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_encoder() {
|
|
|
|
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 handle_touch() {
|
|
|
|
touch_manager.feed(get_touch_frame());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool event_bubble_key(const ui::KeyEvent event) {
|
2015-11-09 14:56:40 -05:00
|
|
|
auto target = context.focus_manager().focus_widget();
|
2015-07-17 13:55:54 -04:00
|
|
|
while( (target != nullptr) && !target->on_key(event) ) {
|
|
|
|
target = target->parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return true if event was consumed. */
|
|
|
|
return (target != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void event_bubble_encoder(const ui::EncoderEvent event) {
|
2015-11-09 14:56:40 -05:00
|
|
|
auto target = context.focus_manager().focus_widget();
|
2015-07-17 13:55:54 -04:00
|
|
|
while( (target != nullptr) && !target->on_encoder(event) ) {
|
|
|
|
target = target->parent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(void) {
|
2015-08-01 16:42:27 -04:00
|
|
|
portapack::init();
|
2015-07-17 13:55:54 -04:00
|
|
|
|
|
|
|
if( !cpld_update_if_necessary() ) {
|
|
|
|
chSysHalt();
|
|
|
|
}
|
|
|
|
|
|
|
|
portapack::io.init();
|
2015-08-01 17:31:51 -04:00
|
|
|
portapack::display.init();
|
2015-07-17 13:55:54 -04:00
|
|
|
|
|
|
|
sdcStart(&SDCD1, nullptr);
|
|
|
|
|
2015-08-15 01:28:28 -04:00
|
|
|
events_initialize(chThdSelf());
|
|
|
|
init_message_queues();
|
2015-07-17 13:55:54 -04:00
|
|
|
|
2015-08-14 18:52:11 -04:00
|
|
|
ui::Context context;
|
2015-07-17 13:55:54 -04:00
|
|
|
ui::SystemView system_view {
|
|
|
|
context,
|
2015-08-14 18:52:11 -04:00
|
|
|
portapack::display.screen_rect()
|
2015-07-17 13:55:54 -04:00
|
|
|
};
|
2015-08-01 17:31:51 -04:00
|
|
|
ui::Painter painter;
|
2015-07-17 13:55:54 -04:00
|
|
|
EventDispatcher event_dispatcher { &system_view, painter, context };
|
|
|
|
|
2015-11-09 14:56:40 -05:00
|
|
|
auto& message_handlers = context.message_map();
|
2015-08-20 21:03:49 -04:00
|
|
|
message_handlers.register_handler(Message::ID::Shutdown,
|
|
|
|
[&event_dispatcher](const Message* const) {
|
|
|
|
event_dispatcher.request_stop();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-08-20 20:11:08 -04:00
|
|
|
m4_init(portapack::spi_flash::baseband, portapack::memory::map::m4_code);
|
2015-07-17 13:55:54 -04:00
|
|
|
|
2015-08-15 01:28:28 -04:00
|
|
|
controls_init();
|
|
|
|
lcd_frame_sync_configure();
|
|
|
|
rtc_interrupt_enable();
|
|
|
|
m4txevent_interrupt_enable();
|
|
|
|
|
2015-08-15 01:01:20 -04:00
|
|
|
event_dispatcher.run();
|
2015-07-17 13:55:54 -04:00
|
|
|
|
2015-11-13 13:55:52 -05:00
|
|
|
sdcDisconnect(&SDCD1);
|
2015-11-13 13:55:08 -05:00
|
|
|
sdcStop(&SDCD1);
|
|
|
|
|
2015-08-20 21:03:49 -04:00
|
|
|
portapack::shutdown();
|
2015-08-20 23:26:36 -04:00
|
|
|
m4_init(portapack::spi_flash::hackrf, portapack::memory::map::m4_code_hackrf);
|
|
|
|
|
|
|
|
rgu::reset(rgu::Reset::M0APP);
|
|
|
|
|
2015-07-17 13:55:54 -04:00
|
|
|
return 0;
|
|
|
|
}
|