summaryrefslogtreecommitdiff
path: root/lib/boblight_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/boblight_client.h')
-rw-r--r--lib/boblight_client.h115
1 files changed, 0 insertions, 115 deletions
diff --git a/lib/boblight_client.h b/lib/boblight_client.h
deleted file mode 100644
index aac141d..0000000
--- a/lib/boblight_client.h
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * boblight
- * Copyright (C) Bob 2009
- *
- * boblight 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.
- *
- * boblight 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/>.
- */
-
-#ifndef CBOBLIGHT
-#define CBOBLIGHT
-
-#include <string>
-#include <vector>
-
-#include "util/tcpsocket.h"
-#include "util/messagequeue.h"
-
-namespace boblight
-{
- class CLight
- {
- public:
- CLight();
-
- std::string SetOption(const char* option, bool& send);
- std::string GetOption(const char* option, std::string& output);
-
- void SetScanRange(int width, int height);
- void AddPixel(int* rgb);
-
- std::string m_name;
- float m_speed;
- float m_autospeed;
- float m_singlechange;
-
- bool m_interpolation;
- bool m_use;
-
- float m_value;
- float m_valuerange[2];
- float m_saturation;
- float m_satrange[2];
- int m_threshold;
- float m_gamma;
- float m_gammacurve[256];
-
- float m_rgb[3];
- int m_rgbcount;
- float m_prevrgb[3];
- void GetRGB(float* rgb);
-
- float m_hscan[2];
- float m_vscan[2];
- int m_width;
- int m_height;
- int m_hscanscaled[2];
- int m_vscanscaled[2];
- };
-
- class CBoblight
- {
- public:
- CBoblight();
-
- int Connect(const char* address, int port, int usectimeout);
- const char* GetError() { return m_error.c_str(); }
-
- int GetNrLights() { return m_lights.size(); }
- const char* GetLightName (int lightnr);
-
- int SetPriority (int priority);
- void SetScanRange (int width, int height);
-
- int AddPixel(int lightnr, int* rgb);
- void AddPixel(int* rgb, int x, int y);
-
- int SendRGB(int sync, int* outputused);
- int Ping(int* outputused, bool send);
-
- int GetNrOptions();
- const char* GetOptionDescription(int option);
- int SetOption(int lightnr, const char* option);
- int GetOption(int lightnr, const char* option, const char** output);
-
- private:
- CTcpClientSocket m_socket;
- std::string m_address;
- int m_port;
- std::string m_error;
- CMessageQueue m_messagequeue;
- int m_usectimeout;
-
- bool ReadDataToQueue();
- bool WriteDataToSocket(std::string strdata);
- bool ParseWord(CMessage& message, std::string wordtocmp);
- bool ParseLights(CMessage& message);
- bool CheckLightExists(int lightnr, bool printerror = true);
-
- std::vector<CLight> m_lights;
-
- std::vector<std::string> m_options;
- std::string m_lastoption; //place to store the last option retrieved by GetOption
- };
-}
-#endif //CBOBLIGHT