aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-08-26 19:45:32 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-08-26 19:45:32 -0400
commit09b2c79ed6320dc6541f1edf435a01b125fe0425 (patch)
tree3280944301005e4d2b806bd888c0f94380700a48 /gui/wxmain.hpp
parent7077b8d448a847f593402381be5244f86eae75e8 (diff)
organized controls; improved connection handling
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r--gui/wxmain.hpp128
1 files changed, 14 insertions, 114 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index d694734..b0f73a6 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -19,9 +19,8 @@
class MainFrame : public wxFrame
{
enum Id {
- Welcome = 1,
- Single,
- SelectDevice,
+ Single = 1,
+ ConnectDevice,
UploadFilter,
RenderTimer
};
@@ -30,126 +29,27 @@ class MainFrame : public wxFrame
wxTimer *m_render_timer = nullptr;
wxComboBox *m_device_combo = nullptr;
wxStyledTextCtrl *m_text_editor = nullptr;
-
- const wxRect m_clipping_region = {20, 500, 600, 360};
+ wxControl *m_signal_area = nullptr;
stmdsp::device *m_device = nullptr;
std::future<std::vector<stmdsp::adcsample_t>> m_device_samples_future;
std::vector<stmdsp::adcsample_t> m_device_samples;
+ bool tryDevice();
void prepareEditor();
wxString compileEditorCode();
public:
- MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 880))
- {
- new wxStaticText(this, Id::Welcome, "Welcome to the GUI.", wxPoint(20, 20));
- new wxButton(this, Id::Single, "Single", wxPoint(20, 60));
- new wxButton(this, Id::UploadFilter, "Upload Filter", wxPoint(120, 60));
-
- m_text_editor = new wxStyledTextCtrl(this, wxID_ANY, wxPoint(20, 100), wxSize(600, 400));
- prepareEditor();
-
- m_device_combo = new wxComboBox(this, Id::SelectDevice, "", wxPoint(470, 20), wxSize(150, 30));
- m_device_combo->SetEditable(false);
- stmdsp::scanner scanner;
- for (auto& dev : scanner.scan())
- m_device_combo->Append(dev);
- if (m_device_combo->GetCount() > 0)
- m_device_combo->SetSelection(0);
-
- m_render_timer = new wxTimer(this, Id::RenderTimer);
-
- Bind(wxEVT_BUTTON, &MainFrame::onSinglePressed, this, Id::Single);
- Bind(wxEVT_BUTTON, &MainFrame::onUploadPressed, this, Id::UploadFilter);
- Bind(wxEVT_PAINT, &MainFrame::onPaint, this, wxID_ANY);
- Bind(wxEVT_TIMER, &MainFrame::onRenderTimer, this, Id::RenderTimer);
- }
-
- void onPaint([[maybe_unused]] wxPaintEvent& pe) {
- auto *dc = new wxClientDC(this);
- dc->SetClippingRegion(m_clipping_region);
-
- dc->SetBrush(*wxBLACK_BRUSH);
- dc->SetPen(*wxBLACK_PEN);
- dc->DrawRectangle(m_clipping_region);
-
- if (m_device_samples.size() > 0) {
- dc->SetPen(*wxRED_PEN);
- auto points = new wxPoint[m_device_samples.size()];
- const float spacing = static_cast<float>(m_clipping_region.GetWidth()) / m_device_samples.size();
- float x = 0;
- for (auto ptr = points; auto sample : m_device_samples) {
- *ptr++ = wxPoint {
- static_cast<int>(x),
- m_clipping_region.GetHeight() - sample * m_clipping_region.GetHeight() / 4096
- };
- x += spacing;
- }
- dc->DrawLines(m_device_samples.size(), points, m_clipping_region.GetX(), m_clipping_region.GetY());
- delete[] points;
- }
- }
-
- void doSingle() {
- m_device_samples_future = std::async(std::launch::async,
- [this]() { return m_device->continuous_read(); });
- }
-
- void onSinglePressed(wxCommandEvent& ce) {
- auto button = dynamic_cast<wxButton *>(ce.GetEventObject());
-
- if (!m_render_timer->IsRunning()) {
- if (m_device == nullptr)
- m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
- if (m_device->connected()) {
- m_device->continuous_start();
- m_device_samples_future = std::async(std::launch::async,
- []() { return decltype(m_device_samples)(); });
- m_render_timer->Start(1000);
- button->SetLabel("Stop");
- } else {
- delete m_device;
- m_device = nullptr;
- }
- } else {
- m_render_timer->Stop();
- m_device->continuous_stop();
- button->SetLabel("Single");
-
- //delete m_device;
- //m_device = nullptr;
- }
- }
-
- void onUploadPressed(wxCommandEvent& ce) {
- //wxFileDialog dialog (this, "Select filter to upload", "", "", "*.so",
- // wxFD_OPEN | wxFD_FILE_MUST_EXIST);
- //if (dialog.ShowModal() != wxID_CANCEL) {
- if (auto file = compileEditorCode(); !file.IsEmpty()) {
- if (wxFileInputStream file_stream (/*dialog.GetPath()*/file); file_stream.IsOk()) {
- auto size = file_stream.GetSize();
- auto buffer = new unsigned char[size];
- if (m_device == nullptr)
- m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
- if (m_device->connected()) {
- file_stream.ReadAll(buffer, size);
- m_device->upload_filter(buffer, size);
- }
- }
- }
- }
-
- void onRenderTimer([[maybe_unused]] wxTimerEvent& te) {
- updateDrawing();
- }
-
- void updateDrawing() {
- if (m_device_samples = m_device_samples_future.get(); m_device_samples.size() > 0)
- this->RefreshRect(m_clipping_region);
-
- doSingle();
- }
+ MainFrame();
+
+ void onPaint(wxPaintEvent& pe);
+ void onSinglePressed(wxCommandEvent& ce);
+ void onConnectPressed(wxCommandEvent& ce);
+ void onUploadPressed(wxCommandEvent& ce);
+ void onRenderTimer(wxTimerEvent& te);
+
+ void doSingle();
+ void updateDrawing();
};
#endif // WXMAIN_HPP_