/* Copyright (C) 2019 Peter Barker. All rights reserved. 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 3 of the License, 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. If not, see . */ #include #include #include #include #ifdef WITH_SITL_RGBLED #include #include "SITL_SFML_LED.h" SITL_SFML_LED::SITL_SFML_LED(): RGBLed((uint8_t)brightness::LED_OFF, (uint8_t)brightness::LED_HIGH, (uint8_t)brightness::LED_MEDIUM, (uint8_t)brightness::LED_LOW) { } /* update simulation of WS2812 (NeoPixel) serial LEDs */ void SITL_SFML_LED::update_serial_LEDs() { static sf::RenderWindow *w; static sf::RectangleShape *leds[16][32]; SITL::SITL *sitl = AP::sitl(); if (sitl == nullptr || sitl->led.send_counter == 0) { // no SerialLEDs set return; } if (w == nullptr) { uint8_t max_leds = 0; for (uint8_t i=0; i<16; i++) { max_leds = MAX(max_leds, sitl->led.num_leds[i]); } w = new sf::RenderWindow(sf::VideoMode(32*(serialLED_size+1), 16*(serialLED_size+1)), "SerialLED"); if (!w) { return; } w->clear(sf::Color(0, 0, 0, 255)); } for (uint8_t chan=0; chan<16; chan++) { for (uint8_t led=0; ledled.num_leds[chan]; led++) { uint8_t *rgb = &sitl->led.rgb[chan][led].rgb[0]; if (leds[chan][led] == nullptr) { leds[chan][led] = new sf::RectangleShape(sf::Vector2f(serialLED_size, serialLED_size)); if (!leds[chan][led]) { return; } leds[chan][led]->setPosition(led*(serialLED_size+1), chan*(serialLED_size+1)); } leds[chan][led]->setFillColor(sf::Color(rgb[0], rgb[1], rgb[2], 255)); w->draw(*leds[chan][led]); } } w->display(); } void SITL_SFML_LED::update_thread(void) { sf::RenderWindow *w = nullptr; { WITH_SEMAPHORE(AP::notify().sf_window_mutex); w = new sf::RenderWindow(sf::VideoMode(width, height), "LED"); } if (!w) { AP_HAL::panic("Unable to create RGBLed window"); } while (true) { { WITH_SEMAPHORE(AP::notify().sf_window_mutex); sf::Event event; while (w->pollEvent(event)) { if (event.type == sf::Event::Closed) { w->close(); break; } } if (!w->isOpen()) { break; } const uint32_t colour = red<<16 | green<<8 | blue; if (colour != last_colour) { last_colour = colour; w->clear(sf::Color(red, green, blue, 255)); w->display(); } update_serial_LEDs(); } usleep(10000); } } // trampoline for update thread void *SITL_SFML_LED::update_thread_start(void *obj) { ((SITL_SFML_LED *)obj)->update_thread(); return nullptr; } bool SITL_SFML_LED::hw_init() { pthread_create(&thread, NULL, update_thread_start, this); return true; } bool SITL_SFML_LED::hw_set_rgb(uint8_t _red, uint8_t _green, uint8_t _blue) { red = _red; green = _green; blue = _blue; return true; } #endif