]> git.cworth.org Git - vogl/blob - src/vogleditor/vogleditor.h
01d5d369537dc9c81d07d6504dd27e5e699c79b1
[vogl] / src / vogleditor / vogleditor.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #ifndef VOGLEDITOR_H
27 #define VOGLEDITOR_H
28
29 #include <QMainWindow>
30 #include <QString>
31 #include <QLabel>
32 #include <QModelIndexList>
33
34 #include "vogl_dynamic_string.h"
35 #include "vogl_hash_map.h"
36 #include "vogl_json.h"
37 #include "vogleditor_qframebufferexplorer.h"
38 #include "vogleditor_qprogramexplorer.h"
39 #include "vogleditor_qshaderexplorer.h"
40 #include "vogleditor_qtextureexplorer.h"
41 #include "vogleditor_qtimelineview.h"
42 #include "vogleditor_tracereplayer.h"
43
44 namespace Ui {
45 class VoglEditor;
46 }
47
48 typedef uint64_t GLuint64;
49
50 class vogleditor_QTextureExplorer;
51
52 class QItemSelection;
53 class QModelIndex;
54 class QSortFilterProxyModel;
55 class QToolButton;
56 class vogl_context_snapshot;
57 class vogl_framebuffer_state;
58 class vogl_program_state;
59 class vogl_replay_window;
60 class vogl_shader_state;
61 class vogl_texture_state;
62 class vogl_trace_file_reader;
63 class vogl_trace_file_writer;
64 class vogl_trace_packet;
65 class vogl_gl_state_snapshot;
66 class vogleditor_apiCallTimelineModel;
67 class vogleditor_apiCallTreeItem;
68 class vogleditor_gl_state_snapshot;
69 class vogleditor_QApiCallTreeModel;
70 class vogleditor_QStateTreeModel;
71
72 class VoglEditor : public QMainWindow
73 {
74    Q_OBJECT
75
76 public:
77    explicit VoglEditor(QWidget* parent = 0);
78    ~VoglEditor();
79
80    bool open_trace_file(vogl::dynamic_string filename);
81    void close_trace_file();
82
83 private slots:
84    void on_action_Open_triggered();
85    void on_action_Close_triggered();
86    void on_actionE_xit_triggered();
87    void on_actionExport_API_Calls_triggered();
88
89    void on_treeView_currentChanged(const QModelIndex & current, const QModelIndex & previous);
90
91    void on_treeView_clicked(const QModelIndex& index);
92
93    void playCurrentTraceFile();
94    void pauseCurrentTraceFile();
95    void trimCurrentTraceFile();
96    void stopCurrentTraceFile();
97
98    void on_stateTreeView_clicked(const QModelIndex &index);
99
100    void on_searchTextBox_textChanged(const QString &searchText);
101    void on_searchNextButton_clicked();
102    void on_searchPrevButton_clicked();
103    void on_prevSnapshotButton_clicked();
104    void on_nextSnapshotButton_clicked();
105    void on_prevDrawcallButton_clicked();
106    void on_nextDrawcallButton_clicked();
107
108    void on_program_edited(vogl_program_state* pNewProgramState);   
109
110    void on_actionSave_Session_triggered();
111
112    void on_actionOpen_Session_triggered();
113
114    void on_searchTextBox_returnPressed();
115
116 private:
117    Ui::VoglEditor* ui;
118
119    void onApiCallSelected(const QModelIndex &index, bool bAllowStateSnapshot);
120    bool displayTexture(GLuint64 textureHandle, bool bBringTabToFront);
121    void displayFramebuffer(GLuint64 framebufferHandle, bool bBringTabToFront);
122    bool displayShader(GLuint64 shaderHandle, bool bBringTabToFront);
123    void displayProgram(GLuint64 programHandle, bool bBringTabToFront);
124
125    // temp?
126    vogl_gl_state_snapshot *read_state_snapshot_from_trace(vogl_trace_file_reader* pTrace_reader);
127
128    void reset_tracefile_ui();
129    void reset_snapshot_ui();
130
131    void update_ui_for_snapshot(vogleditor_gl_state_snapshot *pStateSnapshot);
132    void displayMachineInfoHelper(QString prefix, const QString& sectionKeyStr, const vogl::json_value& value, QString& rMachineInfoStr);
133    void displayMachineInfo();
134    void recursive_update_snapshot_flags(vogleditor_apiCallTreeItem* pItem, bool& bFoundEditedSnapshot);
135
136    vogleditor_gl_state_snapshot* findMostRecentSnapshot_helper(vogleditor_apiCallTreeItem* pItem, vogleditor_gl_state_snapshot*& pMostRecentSnapshot, const vogleditor_gl_state_snapshot* pCurSnapshot);
137    vogleditor_gl_state_snapshot* findMostRecentSnapshot(vogleditor_apiCallTreeItem* pItem, const vogleditor_gl_state_snapshot* pCurSnapshot);
138
139    void selectApicallModelIndex(QModelIndex index, bool scrollTo, bool select);
140
141    void write_child_api_calls(vogleditor_apiCallTreeItem* pItem, FILE* pFile);
142
143    bool load_session_from_disk(QString sessionFile);
144    bool save_session_to_disk(QString sessionFile);
145    bool save_snapshot_to_disk(vogl_gl_state_snapshot* pSnapshot, dynamic_string filename, vogl_blob_manager *pBlob_manager);
146
147    QString m_openFilename;
148    QLabel* m_pStatusLabel;
149    vogleditor_QFramebufferExplorer* m_pFramebufferExplorer;
150    vogleditor_QTextureExplorer* m_pTextureExplorer;
151    vogleditor_QTextureExplorer* m_pRenderbufferExplorer;
152    vogleditor_QProgramExplorer* m_pProgramExplorer;
153    vogleditor_QShaderExplorer* m_pShaderExplorer;
154    vogleditor_QTimelineView* m_timeline;
155
156    QGridLayout* m_pFramebufferTab_layout;
157    QGridLayout* m_pTextureTab_layout;
158    QGridLayout* m_pRenderbufferTab_layout;
159    QGridLayout* m_pProgramTab_layout;
160    QGridLayout* m_pShaderTab_layout;
161
162    vogleditor_gl_state_snapshot* m_currentSnapshot;
163    vogleditor_apiCallTreeItem* m_pCurrentCallTreeItem;
164
165    QToolButton* m_pPlayButton;
166    QToolButton* m_pPauseButton;
167    QToolButton* m_pTrimButton;
168    QToolButton* m_pStopButton;
169
170    vogleditor_traceReplayer m_traceReplayer;
171    vogl_trace_file_reader* m_pTraceReader;
172    vogl::json_document m_backtraceDoc;
173    vogl::hash_map<vogl::uint32, vogl::json_node*> m_backtraceToJsonMap;
174
175    vogleditor_apiCallTimelineModel* m_pTimelineModel;
176    vogleditor_QApiCallTreeModel* m_pApiCallTreeModel;
177    vogleditor_QStateTreeModel* m_pStateTreeModel;
178
179    QColor m_searchTextboxBackgroundColor;
180 };
181
182 #endif // VOGLEDITOR_H