aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.hpp
blob: 9b3db1e070b06d6af429941b52db7f84eb11d55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
 * @file wxmain.hpp
 * @brief Main window definition.
 *
 * Copyright (C) 2021 Clyne Sullivan
 *
 * Distributed under the GNU GPL v3 or later. You should have received a copy of
 * the GNU General Public License along with this program.
 * If not, see <https://www.gnu.org/licenses/>.
 */

#ifndef WXMAIN_HPP_
#define WXMAIN_HPP_

#include "stmdsp.hpp"
#include "wav.hpp"

#include <fstream>
#include <future>
#include <iostream>
#include <thread>
#include <wx/button.h>
#include <wx/combobox.h>
#include <wx/dcclient.h>
#include <wx/filedlg.h>
#include <wx/font.h>
#include <wx/frame.h>
#include <wx/stattext.h>
#include <wx/stc/stc.h>
#include <wx/timer.h>
#include <wx/wfstream.h>

class MainFrame : public wxFrame
{
public:
    MainFrame();

    void onCloseEvent(wxCloseEvent&);

    void onFileNew(wxCommandEvent&);
    void onFileOpen(wxCommandEvent&);
    void onFileOpenTemplate(wxCommandEvent&);
    void onFileSave(wxCommandEvent&);
    void onFileSaveAs(wxCommandEvent&);
    void onFileQuit(wxCommandEvent&);

    void onRunConnect(wxCommandEvent&);
    void onRunStart(wxCommandEvent&);
    void onRunLogResults(wxCommandEvent&);
    void onRunUpload(wxCommandEvent&);
    void onRunUnload(wxCommandEvent&);
    void onRunEditBSize(wxCommandEvent&);
    void onRunGenUpload(wxCommandEvent&);
    void onRunGenStart(wxCommandEvent&);

    void onToolbarSampleRate(wxCommandEvent&);

    void onRunCompile(wxCommandEvent&);
    void onCodeDisassemble(wxCommandEvent&);

    void onPaint(wxPaintEvent&);
    void onMeasureTimer(wxTimerEvent&);

private:
    // Set to true if connected and running
    bool m_is_running = false;

    wxComboBox *m_device_combo = nullptr;
    wxStyledTextCtrl *m_text_editor = nullptr;
    wxTextCtrl *m_compile_output = nullptr;
    wxControl *m_signal_area = nullptr;
    wxMenuItem *m_run_measure = nullptr;
    wxMenuItem *m_run_draw_samples = nullptr;
    wxTimer *m_measure_timer = nullptr;
    wxStatusBar *m_status_bar = nullptr;
    wxMenuBar *m_menu_bar = nullptr;
    wxComboBox *m_rate_select = nullptr;

    // File handle for logging output samples
    // Not null when logging is enabled
    wxFileOutputStream *m_conv_result_log = nullptr;
    // File path of currently opened file
    // Empty if new file
    wxString m_open_file_path;
    // File path for temporary files (e.g. compiled ELF)
    // Set by compile action
    wxString m_temp_file_name;

    // Device interface
    // Not null if connected
    stmdsp::device *m_device = nullptr;
    stmdsp::adcsample_t *m_device_samples = nullptr;
    stmdsp::adcsample_t *m_device_samples_input = nullptr;
    // WAV data for signal generator
    // Not null when a WAV is loaded
    wav::clip *m_wav_clip = nullptr;

    bool tryDevice();
    void prepareEditor();
    wxString compileEditorCode();
    wxMenu *loadTemplates();
    // Updates control availabilities based on device connection
    void updateMenuOptions();
};

#endif // WXMAIN_HPP_