2018-07-01 07:09:51 -03:00
|
|
|
/*
|
|
|
|
* This file 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 file 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
OSD backend for SITL. Uses SFML media library. See
|
|
|
|
https://www.sfml-dev.org/index.php
|
|
|
|
|
|
|
|
To use install SFML libraries, and run sim_vehicle.py with --osd
|
|
|
|
option. Then set OSD_TYPE to 2
|
|
|
|
*/
|
|
|
|
#ifdef WITH_SITL_OSD
|
|
|
|
|
|
|
|
#include "AP_OSD_SITL.h"
|
|
|
|
#include <AP_HAL/Util.h>
|
|
|
|
#include <AP_HAL/Semaphores.h>
|
|
|
|
#include <AP_HAL/Scheduler.h>
|
|
|
|
#include <AP_ROMFS/AP_ROMFS.h>
|
|
|
|
#include <utility>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2018-07-04 06:30:30 -03:00
|
|
|
#include "pthread.h"
|
2018-07-01 07:09:51 -03:00
|
|
|
|
2019-05-16 01:14:14 -03:00
|
|
|
#include <AP_Notify/AP_Notify.h>
|
|
|
|
|
2018-07-04 06:30:30 -03:00
|
|
|
extern const AP_HAL::HAL &hal;
|
2018-07-01 07:09:51 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
load *.bin font file, in MAX7456 format
|
|
|
|
*/
|
|
|
|
void AP_OSD_SITL::load_font(void)
|
|
|
|
{
|
2018-07-09 07:48:59 -03:00
|
|
|
last_font = get_font_num();
|
2020-11-12 20:03:37 -04:00
|
|
|
FileData *fd = load_font_data(last_font);
|
|
|
|
if (fd == nullptr || fd->length != 54 * 256) {
|
2018-07-01 07:09:51 -03:00
|
|
|
AP_HAL::panic("Bad font file");
|
|
|
|
}
|
|
|
|
for (uint16_t i=0; i<256; i++) {
|
2020-11-12 20:03:37 -04:00
|
|
|
const uint8_t *c = &fd->data[i*54];
|
2018-07-01 07:09:51 -03:00
|
|
|
// each pixel is 4 bytes, RGBA
|
|
|
|
sf::Uint8 *pixels = new sf::Uint8[char_width * char_height * 4];
|
|
|
|
if (!font[i].create(char_width, char_height)) {
|
|
|
|
AP_HAL::panic("Failed to create texture");
|
|
|
|
}
|
|
|
|
for (uint16_t y=0; y<char_height; y++) {
|
|
|
|
for (uint16_t x=0; x<char_width; x++) {
|
|
|
|
// 2 bits per pixel
|
|
|
|
uint16_t bitoffset = (y*char_width+x)*2;
|
|
|
|
uint8_t byteoffset = bitoffset / 8;
|
|
|
|
uint8_t bitshift = 6-(bitoffset % 8);
|
|
|
|
uint8_t v = (c[byteoffset] >> bitshift) & 3;
|
|
|
|
sf::Uint8 *p = &pixels[(y*char_width+x)*4];
|
|
|
|
switch (v) {
|
|
|
|
case 0:
|
|
|
|
p[0] = 0;
|
|
|
|
p[1] = 0;
|
|
|
|
p[2] = 0;
|
|
|
|
p[3] = 255;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
p[0] = 0;
|
|
|
|
p[1] = 0;
|
|
|
|
p[2] = 0;
|
|
|
|
p[3] = 0;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
p[0] = 255;
|
|
|
|
p[1] = 255;
|
|
|
|
p[2] = 255;
|
|
|
|
p[3] = 255;
|
|
|
|
break;
|
|
|
|
}
|
2018-07-08 19:32:29 -03:00
|
|
|
|
2018-07-01 07:09:51 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
font[i].update(pixels);
|
|
|
|
}
|
2020-11-12 20:03:37 -04:00
|
|
|
delete fd;
|
2018-07-01 07:09:51 -03:00
|
|
|
}
|
|
|
|
|
2018-07-11 19:13:44 -03:00
|
|
|
void AP_OSD_SITL::write(uint8_t x, uint8_t y, const char* text)
|
2018-07-01 07:09:51 -03:00
|
|
|
{
|
|
|
|
if (y >= video_lines || text == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-11 20:35:04 -03:00
|
|
|
WITH_SEMAPHORE(mutex);
|
|
|
|
|
2018-07-01 07:09:51 -03:00
|
|
|
while ((x < video_cols) && (*text != 0)) {
|
|
|
|
buffer[y][x] = *text;
|
|
|
|
++text;
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_OSD_SITL::clear(void)
|
|
|
|
{
|
2018-07-11 19:13:44 -03:00
|
|
|
AP_OSD_Backend::clear();
|
2018-10-11 20:35:04 -03:00
|
|
|
WITH_SEMAPHORE(mutex);
|
2018-07-01 07:09:51 -03:00
|
|
|
memset(buffer, 0, sizeof(buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_OSD_SITL::flush(void)
|
|
|
|
{
|
2018-07-04 06:30:30 -03:00
|
|
|
counter++;
|
2018-07-01 07:09:51 -03:00
|
|
|
}
|
|
|
|
|
2018-07-04 06:30:30 -03:00
|
|
|
// main loop of graphics thread
|
|
|
|
void AP_OSD_SITL::update_thread(void)
|
2018-07-01 07:09:51 -03:00
|
|
|
{
|
|
|
|
load_font();
|
2019-05-16 01:14:14 -03:00
|
|
|
{
|
|
|
|
WITH_SEMAPHORE(AP::notify().sf_window_mutex);
|
|
|
|
w = new sf::RenderWindow(sf::VideoMode(video_cols*(char_width+char_spacing)*char_scale,
|
|
|
|
video_lines*(char_height+char_spacing)*char_scale),
|
|
|
|
"OSD");
|
|
|
|
}
|
2018-07-01 07:09:51 -03:00
|
|
|
if (!w) {
|
2018-07-04 06:30:30 -03:00
|
|
|
AP_HAL::panic("Unable to create OSD window");
|
|
|
|
}
|
2018-07-04 07:27:10 -03:00
|
|
|
|
2019-05-16 01:14:14 -03:00
|
|
|
while (true) {
|
2018-10-11 20:35:04 -03:00
|
|
|
{
|
2019-05-16 01:14:14 -03:00
|
|
|
WITH_SEMAPHORE(AP::notify().sf_window_mutex);
|
|
|
|
sf::Event event;
|
|
|
|
while (w->pollEvent(event)) {
|
|
|
|
if (event.type == sf::Event::Closed) {
|
|
|
|
w->close();
|
|
|
|
}
|
2018-07-04 06:30:30 -03:00
|
|
|
}
|
2019-05-16 01:14:14 -03:00
|
|
|
if (!w->isOpen()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (counter != last_counter) {
|
|
|
|
last_counter = counter;
|
2018-07-08 19:32:29 -03:00
|
|
|
|
2019-05-16 01:14:14 -03:00
|
|
|
uint8_t buffer2[video_lines][video_cols];
|
|
|
|
{
|
|
|
|
WITH_SEMAPHORE(mutex);
|
|
|
|
memcpy(buffer2, buffer, sizeof(buffer2));
|
|
|
|
}
|
|
|
|
w->clear();
|
|
|
|
|
|
|
|
for (uint8_t y=0; y<video_lines; y++) {
|
|
|
|
for (uint8_t x=0; x<video_cols; x++) {
|
|
|
|
uint16_t px = x * (char_width+char_spacing) * char_scale;
|
|
|
|
uint16_t py = y * (char_height+char_spacing) * char_scale;
|
|
|
|
sf::Sprite s;
|
|
|
|
uint8_t c = buffer2[y][x];
|
|
|
|
s.setTexture(font[c]);
|
|
|
|
s.setPosition(sf::Vector2f(px, py));
|
|
|
|
s.scale(sf::Vector2f(char_scale,char_scale));
|
|
|
|
w->draw(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w->display();
|
|
|
|
if (last_font != get_font_num()) {
|
|
|
|
load_font();
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 07:48:59 -03:00
|
|
|
}
|
2018-07-04 06:30:30 -03:00
|
|
|
usleep(10000);
|
2018-07-01 07:09:51 -03:00
|
|
|
}
|
2018-07-04 06:30:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// trampoline for update thread
|
|
|
|
void *AP_OSD_SITL::update_thread_start(void *obj)
|
|
|
|
{
|
|
|
|
((AP_OSD_SITL *)obj)->update_thread();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialise backend
|
|
|
|
bool AP_OSD_SITL::init(void)
|
|
|
|
{
|
|
|
|
pthread_create(&thread, NULL, update_thread_start, this);
|
2018-07-01 07:09:51 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_OSD_Backend *AP_OSD_SITL::probe(AP_OSD &osd)
|
|
|
|
{
|
|
|
|
AP_OSD_SITL *backend = new AP_OSD_SITL(osd);
|
|
|
|
if (!backend) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (!backend->init()) {
|
|
|
|
delete backend;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return backend;
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_OSD_SITL::AP_OSD_SITL(AP_OSD &osd):
|
|
|
|
AP_OSD_Backend(osd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // WITH_SITL_OSD
|