// SPDX-License-Identifier: GPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea-plugins. * * nymea-plugins 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. * * nymea-plugins 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 nymea-plugins. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef BLUOS_H #define BLUOS_H #include #include #include #include #include #include class BluOS : public QObject { Q_OBJECT public: enum PlaybackCommand { Play, Pause, Stop, Skip, Back }; enum RepeatMode { All, One, None }; enum PlaybackState { Playing, Paused, Stopped, Connecting, Streaming }; struct StatusResponse { QString Album; QString Artist; QString Name; QString Title; QString Service; QUrl ServiceIcon; PlaybackState State; QUrl StationUrl; int Volume; bool Mute; RepeatMode Repeat; bool Shuffle; QUrl Image; QString Group; }; struct Preset { QString Name; int Id; QString Url; }; struct Source { // QString Image; QString BrowseKey; QString Text; QString Type; }; explicit BluOS(NetworkAccessManager *networkManager, QHostAddress hostAddress, int port, QObject *parent = nullptr); int port(); QHostAddress hostAddress(); // Status Queries void getStatus(); // Volume Control QUuid setVolume(uint volume); QUuid setMute(bool mute); // Playback Control QUuid play(); QUuid pause(); QUuid stop(); QUuid skip(); QUuid back(); QUuid setShuffle(bool shuffle); QUuid setRepeat(RepeatMode repeatMode); // Presets QUuid listPresets(); QUuid loadPreset(int preset); //1 for next preset, -1 for previous preset // Content Browsing QUuid getSources(); QUuid browseSource(const QString &key); // Player Grouping QUuid addGroupPlayer(QHostAddress address, int port); //adds player as slave QUuid removeGroupPlayer(QHostAddress address, int port); private: NetworkAccessManager *m_networkManager = nullptr; QHostAddress m_hostAddress; int m_port; QUuid playBackControl(PlaybackCommand command); bool parseState(const QByteArray &state); signals: void connectionChanged(bool connected); void actionExecuted(const QUuid &actionId, bool success); void statusReceived(const BluOS::StatusResponse &status); void volumeReceived(int volume, bool mute); void shuffleStateReceived(bool state); void repeatModeReceived(BluOS::RepeatMode mode); void presetsReceived(const QUuid &requestId, const QList &presets); void sourcesReceived(const QUuid &requestId, const QList &sources); void browseResultReceived(const QUuid &requestId, const QList &sources); }; #endif // BLUOS_H