tomato/src/tox_client.hpp

52 lines
1.3 KiB
C++
Raw Permalink Normal View History

2023-07-26 12:55:50 +02:00
#pragma once
#include <solanaceae/toxcore/tox_default_impl.hpp>
#include <solanaceae/toxcore/tox_event_interface.hpp>
#include <solanaceae/toxcore/tox_event_provider_base.hpp>
#include <string>
#include <string_view>
#include <vector>
#include <functional>
struct ToxEventI;
class ToxClient : public ToxDefaultImpl, public ToxEventProviderBase {
private:
bool _should_stop {false};
std::function<void(const Tox_Events*)> _subscriber_raw {[](const auto*) {}}; // only 1?
std::string _self_name;
std::string _tox_profile_path;
std::string _tox_profile_password;
2023-07-26 12:55:50 +02:00
bool _tox_profile_dirty {true}; // set in callbacks
float _save_heat {0.f};
2023-07-26 12:55:50 +02:00
public:
//ToxClient(/*const CommandLine& cl*/);
ToxClient(std::string_view save_path, std::string_view save_password);
2023-07-26 12:55:50 +02:00
~ToxClient(void);
public: // tox stuff
Tox* getTox(void) { return _tox; }
void setDirty(void) { _tox_profile_dirty = true; }
// returns false when we shoul stop the program
bool iterate(float time_delta);
2023-07-26 12:55:50 +02:00
void stop(void); // let it know it should exit
void setToxProfilePath(const std::string& new_path) { _tox_profile_path = new_path; }
void setSelfName(std::string_view new_name) { _self_name = new_name; toxSelfSetName(new_name); }
public: // raw events
void subscribeRaw(std::function<void(const Tox_Events*)> fn);
private:
void saveToxProfile(void);
};