2014-05-18 11:52:22 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-05-18 11:52:22 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-08-14 13:21:55 -04:00
|
|
|
#include <QAbstractListModel>
|
2014-05-18 11:52:22 -04:00
|
|
|
#include <QDockWidget>
|
2014-08-14 13:21:55 -04:00
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
2016-09-17 20:38:01 -04:00
|
|
|
#include "video_core/gpu_debugger.h"
|
2014-05-18 11:52:22 -04:00
|
|
|
|
2014-10-26 06:40:12 -04:00
|
|
|
class QPushButton;
|
2014-08-24 08:39:52 -04:00
|
|
|
class QTreeView;
|
2014-10-26 06:40:12 -04:00
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
class GPUCommandListModel : public QAbstractListModel {
|
2014-05-18 11:52:22 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-08-24 08:39:52 -04:00
|
|
|
enum {
|
|
|
|
CommandIdRole = Qt::UserRole,
|
|
|
|
};
|
|
|
|
|
2014-05-18 11:52:22 -04:00
|
|
|
GPUCommandListModel(QObject* parent);
|
|
|
|
|
2014-10-26 00:56:13 -04:00
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
2014-05-18 11:52:22 -04:00
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
2016-09-17 20:38:01 -04:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
|
|
int role = Qt::DisplayRole) const override;
|
2014-05-18 11:52:22 -04:00
|
|
|
|
|
|
|
public slots:
|
2014-08-14 13:21:55 -04:00
|
|
|
void OnPicaTraceFinished(const Pica::DebugUtils::PicaTrace& trace);
|
2014-05-18 11:52:22 -04:00
|
|
|
|
|
|
|
private:
|
2014-08-14 13:21:55 -04:00
|
|
|
Pica::DebugUtils::PicaTrace pica_trace;
|
2014-05-18 11:52:22 -04:00
|
|
|
};
|
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
class GPUCommandListWidget : public QDockWidget {
|
2014-05-18 11:52:22 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-11 14:50:10 -04:00
|
|
|
GPUCommandListWidget(QWidget* parent = nullptr);
|
2014-05-18 11:52:22 -04:00
|
|
|
|
2014-08-14 13:21:55 -04:00
|
|
|
public slots:
|
|
|
|
void OnToggleTracing();
|
2014-08-24 11:23:02 -04:00
|
|
|
void OnCommandDoubleClicked(const QModelIndex&);
|
|
|
|
|
2014-08-24 08:39:52 -04:00
|
|
|
void SetCommandInfo(const QModelIndex&);
|
2014-08-14 13:21:55 -04:00
|
|
|
|
2015-05-27 10:32:02 -04:00
|
|
|
void CopyAllToClipboard();
|
|
|
|
|
2014-08-14 13:21:55 -04:00
|
|
|
signals:
|
|
|
|
void TracingFinished(const Pica::DebugUtils::PicaTrace&);
|
|
|
|
|
2014-05-18 11:52:22 -04:00
|
|
|
private:
|
2014-08-14 13:21:55 -04:00
|
|
|
std::unique_ptr<Pica::DebugUtils::PicaTrace> pica_trace;
|
2014-10-26 06:40:12 -04:00
|
|
|
|
2014-08-24 08:39:52 -04:00
|
|
|
QTreeView* list_widget;
|
|
|
|
QWidget* command_info_widget;
|
2014-10-26 06:40:12 -04:00
|
|
|
QPushButton* toggle_tracing;
|
2014-05-18 11:52:22 -04:00
|
|
|
};
|