2013-09-22 17:27:09 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <set>
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
#include "native/base/mutex.h"
|
2013-09-22 18:03:29 +00:00
|
|
|
#include "Windows/GEDebugger/GEDebugger.h"
|
2013-09-23 02:05:33 +00:00
|
|
|
#include "Windows/GEDebugger/SimpleGLWindow.h"
|
2013-09-25 13:24:53 +00:00
|
|
|
#include "Windows/GEDebugger/CtrlDisplayListView.h"
|
2013-09-30 07:57:46 +00:00
|
|
|
#include "Windows/GEDebugger/TabDisplayLists.h"
|
|
|
|
#include "Windows/GEDebugger/TabState.h"
|
2013-09-22 17:27:09 +00:00
|
|
|
#include "Windows/WindowsHost.h"
|
2013-09-27 11:11:11 +00:00
|
|
|
#include "Windows/WndMainWindow.h"
|
2013-09-23 02:05:33 +00:00
|
|
|
#include "Windows/main.h"
|
2013-09-22 17:27:09 +00:00
|
|
|
#include "GPU/GPUInterface.h"
|
|
|
|
#include "GPU/Common/GPUDebugInterface.h"
|
|
|
|
#include "GPU/GPUState.h"
|
2013-09-28 14:04:56 +00:00
|
|
|
#include "Core/Config.h"
|
2013-09-27 11:11:11 +00:00
|
|
|
#include <windowsx.h>
|
|
|
|
#include <commctrl.h>
|
2013-09-22 17:27:09 +00:00
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
enum PauseAction {
|
|
|
|
PAUSE_CONTINUE,
|
|
|
|
PAUSE_GETFRAMEBUF,
|
2013-10-06 00:27:28 +00:00
|
|
|
PAUSE_GETDEPTHBUF,
|
|
|
|
PAUSE_GETSTENCILBUF,
|
2013-09-28 05:41:44 +00:00
|
|
|
PAUSE_GETTEX,
|
2013-09-23 02:05:33 +00:00
|
|
|
};
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
static bool attached = false;
|
|
|
|
// TODO
|
|
|
|
static bool textureCaching = true;
|
|
|
|
static recursive_mutex pauseLock;
|
|
|
|
static condition_variable pauseWait;
|
2013-09-23 02:05:33 +00:00
|
|
|
static PauseAction pauseAction = PAUSE_CONTINUE;
|
|
|
|
static recursive_mutex actionLock;
|
|
|
|
static condition_variable actionWait;
|
|
|
|
|
2013-10-01 14:53:00 +00:00
|
|
|
static recursive_mutex breaksLock;
|
2013-09-23 02:05:33 +00:00
|
|
|
static std::vector<bool> breakCmds;
|
|
|
|
static std::set<u32> breakPCs;
|
2013-10-01 22:41:37 +00:00
|
|
|
static u32 tempBreakpoint = -1;
|
2013-10-01 14:53:00 +00:00
|
|
|
static std::set<u32> breakTextures;
|
2013-09-23 02:05:33 +00:00
|
|
|
static bool breakNextOp = false;
|
|
|
|
static bool breakNextDraw = false;
|
|
|
|
|
|
|
|
static bool bufferResult;
|
2013-09-28 05:41:44 +00:00
|
|
|
static GPUDebugBuffer bufferFrame;
|
2013-10-06 00:27:28 +00:00
|
|
|
static GPUDebugBuffer bufferDepth;
|
|
|
|
static GPUDebugBuffer bufferStencil;
|
2013-09-28 05:41:44 +00:00
|
|
|
static GPUDebugBuffer bufferTex;
|
2013-09-23 02:05:33 +00:00
|
|
|
|
2013-10-06 23:48:23 +00:00
|
|
|
enum PrimaryDisplayType {
|
|
|
|
PRIMARY_FRAMEBUF,
|
|
|
|
PRIMARY_DEPTHBUF,
|
|
|
|
PRIMARY_STENCILBUF,
|
|
|
|
};
|
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
// TODO: Simplify and move out of windows stuff, just block in a common way for everyone.
|
|
|
|
|
2013-09-28 05:41:44 +00:00
|
|
|
void CGEDebugger::Init() {
|
|
|
|
SimpleGLWindow::RegisterClass();
|
2013-09-25 13:24:53 +00:00
|
|
|
CtrlDisplayListView::registerClass();
|
2013-09-24 18:06:25 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 10:05:19 +00:00
|
|
|
bool CGEDebugger::IsAddressBreakPoint(u32 pc) {
|
2013-10-01 14:53:00 +00:00
|
|
|
lock_guard guard(breaksLock);
|
2013-10-01 10:05:19 +00:00
|
|
|
return breakPCs.find(pc) != breakPCs.end();
|
|
|
|
}
|
|
|
|
|
2013-10-01 14:53:00 +00:00
|
|
|
bool CGEDebugger::IsOpBreakPoint(u32 op) {
|
|
|
|
u8 cmd = op >> 24;
|
|
|
|
return breakCmds[cmd];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGEDebugger::IsTextureBreakPoint(u32 op) {
|
|
|
|
u8 cmd = op >> 24;
|
|
|
|
bool interesting = (cmd >= GE_CMD_TEXADDR0 && cmd <= GE_CMD_TEXADDR7);
|
|
|
|
interesting = interesting || (cmd >= GE_CMD_TEXBUFWIDTH0 && cmd <= GE_CMD_TEXBUFWIDTH7);
|
|
|
|
if (!interesting || !gpuDebug) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Okay, so we just set a texture of some sort, check if it was one we were waiting for.
|
|
|
|
auto state = gpuDebug->GetGState();
|
2013-10-03 07:49:16 +00:00
|
|
|
int level = cmd <= GE_CMD_TEXADDR7 ? cmd - GE_CMD_TEXADDR0 : cmd - GE_CMD_TEXBUFWIDTH0;
|
2013-10-01 14:53:00 +00:00
|
|
|
lock_guard guard(breaksLock);
|
2013-10-03 07:49:16 +00:00
|
|
|
return breakTextures.find(state.getTextureAddress(level)) != breakTextures.end();
|
2013-10-01 14:53:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGEDebugger::IsOpOrTextureBreakPoint(u32 op) {
|
|
|
|
return IsOpBreakPoint(op) || IsTextureBreakPoint(op);
|
|
|
|
}
|
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
static void SetPauseAction(PauseAction act) {
|
|
|
|
{
|
|
|
|
lock_guard guard(pauseLock);
|
|
|
|
actionLock.lock();
|
|
|
|
pauseAction = act;
|
|
|
|
}
|
|
|
|
|
|
|
|
pauseWait.notify_one();
|
|
|
|
actionWait.wait(actionLock);
|
|
|
|
actionLock.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void RunPauseAction() {
|
|
|
|
lock_guard guard(actionLock);
|
|
|
|
|
|
|
|
switch (pauseAction) {
|
|
|
|
case PAUSE_CONTINUE:
|
2013-09-23 08:19:13 +00:00
|
|
|
// Don't notify, just go back, woke up by accident.
|
|
|
|
return;
|
2013-09-23 02:05:33 +00:00
|
|
|
|
|
|
|
case PAUSE_GETFRAMEBUF:
|
2013-09-28 05:41:44 +00:00
|
|
|
bufferResult = gpuDebug->GetCurrentFramebuffer(bufferFrame);
|
|
|
|
break;
|
|
|
|
|
2013-10-06 00:27:28 +00:00
|
|
|
case PAUSE_GETDEPTHBUF:
|
|
|
|
bufferResult = gpuDebug->GetCurrentDepthbuffer(bufferDepth);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAUSE_GETSTENCILBUF:
|
|
|
|
bufferResult = gpuDebug->GetCurrentStencilbuffer(bufferStencil);
|
|
|
|
break;
|
|
|
|
|
2013-09-28 05:41:44 +00:00
|
|
|
case PAUSE_GETTEX:
|
|
|
|
bufferResult = gpuDebug->GetCurrentTexture(bufferTex);
|
2013-09-23 02:05:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-09-22 17:27:09 +00:00
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
actionWait.notify_one();
|
|
|
|
pauseAction = PAUSE_CONTINUE;
|
|
|
|
}
|
2013-09-27 13:38:20 +00:00
|
|
|
|
2013-09-28 07:32:45 +00:00
|
|
|
static void ForceUnpause() {
|
|
|
|
lock_guard guard(pauseLock);
|
|
|
|
lock_guard actionGuard(actionLock);
|
|
|
|
pauseAction = PAUSE_CONTINUE;
|
|
|
|
pauseWait.notify_one();
|
|
|
|
}
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
CGEDebugger::CGEDebugger(HINSTANCE _hInstance, HWND _hParent)
|
2013-10-06 23:48:23 +00:00
|
|
|
: Dialog((LPCSTR)IDD_GEDEBUGGER, _hInstance, _hParent), frameWindow(NULL), texWindow(NULL) {
|
2013-09-23 02:05:33 +00:00
|
|
|
breakCmds.resize(256, false);
|
2013-09-28 07:32:45 +00:00
|
|
|
Core_ListenShutdown(ForceUnpause);
|
2013-09-24 18:06:25 +00:00
|
|
|
|
2013-09-28 14:04:56 +00:00
|
|
|
// minimum size = a little more than the default
|
|
|
|
RECT windowRect;
|
|
|
|
GetWindowRect(m_hDlg,&windowRect);
|
|
|
|
minWidth = windowRect.right-windowRect.left+10;
|
|
|
|
minHeight = windowRect.bottom-windowRect.top+10;
|
|
|
|
|
2013-09-24 18:06:25 +00:00
|
|
|
// it's ugly, but .rc coordinates don't match actual pixels and it screws
|
|
|
|
// up both the size and the aspect ratio
|
|
|
|
// TODO: Could be scrollable in case the framebuf is larger? Also should be better positioned.
|
|
|
|
RECT frameRect;
|
|
|
|
HWND frameWnd = GetDlgItem(m_hDlg,IDC_GEDBG_FRAME);
|
|
|
|
|
|
|
|
GetWindowRect(frameWnd,&frameRect);
|
|
|
|
MapWindowPoints(HWND_DESKTOP,m_hDlg,(LPPOINT)&frameRect,2);
|
|
|
|
MoveWindow(frameWnd,frameRect.left,frameRect.top,512,272,TRUE);
|
2013-09-27 11:11:11 +00:00
|
|
|
|
2013-09-28 18:57:02 +00:00
|
|
|
tabs = new TabControl(GetDlgItem(m_hDlg,IDC_GEDBG_MAINTAB));
|
|
|
|
HWND wnd = tabs->AddTabWindow(L"CtrlDisplayListView",L"Display List");
|
2013-09-27 16:03:08 +00:00
|
|
|
displayList = CtrlDisplayListView::getFrom(wnd);
|
2013-09-28 14:04:56 +00:00
|
|
|
|
2013-10-06 23:48:23 +00:00
|
|
|
fbTabs = new TabControl(GetDlgItem(m_hDlg, IDC_GEDBG_FBTABS));
|
|
|
|
fbTabs->SetMinTabWidth(50);
|
|
|
|
// Must be in the same order as PrimaryDisplayType.
|
|
|
|
fbTabs->AddTab(NULL, L"Color");
|
|
|
|
fbTabs->AddTab(NULL, L"Depth");
|
|
|
|
fbTabs->AddTab(NULL, L"Stencil");
|
|
|
|
fbTabs->ShowTab(0, true);
|
|
|
|
|
2013-09-30 07:57:46 +00:00
|
|
|
flags = new TabStateFlags(_hInstance, m_hDlg);
|
|
|
|
tabs->AddTabDialog(flags, L"Flags");
|
|
|
|
|
2013-09-30 08:13:06 +00:00
|
|
|
lighting = new TabStateLighting(_hInstance, m_hDlg);
|
|
|
|
tabs->AddTabDialog(lighting, L"Lighting");
|
|
|
|
|
2013-09-30 15:18:28 +00:00
|
|
|
textureState = new TabStateTexture(_hInstance, m_hDlg);
|
|
|
|
tabs->AddTabDialog(textureState, L"Texture");
|
|
|
|
|
2013-09-30 08:13:06 +00:00
|
|
|
settings = new TabStateSettings(_hInstance, m_hDlg);
|
|
|
|
tabs->AddTabDialog(settings, L"Settings");
|
|
|
|
|
|
|
|
lists = new TabDisplayLists(_hInstance, m_hDlg);
|
|
|
|
tabs->AddTabDialog(lists, L"Lists");
|
|
|
|
|
|
|
|
tabs->ShowTab(0, true);
|
2013-09-28 23:02:05 +00:00
|
|
|
|
2013-09-28 14:04:56 +00:00
|
|
|
// set window position
|
|
|
|
int x = g_Config.iGEWindowX == -1 ? windowRect.left : g_Config.iGEWindowX;
|
|
|
|
int y = g_Config.iGEWindowY == -1 ? windowRect.top : g_Config.iGEWindowY;
|
|
|
|
int w = g_Config.iGEWindowW == -1 ? minWidth : g_Config.iGEWindowW;
|
|
|
|
int h = g_Config.iGEWindowH == -1 ? minHeight : g_Config.iGEWindowH;
|
|
|
|
MoveWindow(m_hDlg,x,y,w,h,FALSE);
|
2013-09-23 02:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CGEDebugger::~CGEDebugger() {
|
2013-09-30 07:57:46 +00:00
|
|
|
delete flags;
|
2013-09-30 08:13:06 +00:00
|
|
|
delete lighting;
|
2013-09-30 15:18:28 +00:00
|
|
|
delete textureState;
|
2013-09-30 08:13:06 +00:00
|
|
|
delete settings;
|
2013-09-30 07:57:46 +00:00
|
|
|
delete lists;
|
|
|
|
delete tabs;
|
2013-10-06 23:48:23 +00:00
|
|
|
delete fbTabs;
|
2013-09-22 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
2013-09-28 05:41:44 +00:00
|
|
|
void CGEDebugger::SetupPreviews() {
|
2013-09-24 06:45:17 +00:00
|
|
|
if (frameWindow == NULL) {
|
2013-09-28 05:41:44 +00:00
|
|
|
frameWindow = SimpleGLWindow::GetFrom(GetDlgItem(m_hDlg, IDC_GEDBG_FRAME));
|
2013-09-28 06:52:06 +00:00
|
|
|
frameWindow->Initialize(SimpleGLWindow::ALPHA_IGNORE | SimpleGLWindow::RESIZE_SHRINK_CENTER);
|
2013-09-24 06:45:17 +00:00
|
|
|
frameWindow->Clear();
|
|
|
|
}
|
2013-09-28 05:41:44 +00:00
|
|
|
if (texWindow == NULL) {
|
|
|
|
texWindow = SimpleGLWindow::GetFrom(GetDlgItem(m_hDlg, IDC_GEDBG_TEX));
|
2013-09-28 06:52:06 +00:00
|
|
|
texWindow->Initialize(SimpleGLWindow::ALPHA_BLEND | SimpleGLWindow::RESIZE_SHRINK_CENTER);
|
2013-09-28 05:41:44 +00:00
|
|
|
texWindow->Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGEDebugger::UpdatePreviews() {
|
|
|
|
// TODO: Do something different if not paused?
|
|
|
|
|
2013-10-06 22:51:58 +00:00
|
|
|
wchar_t desc[256];
|
2013-10-06 00:27:28 +00:00
|
|
|
GPUDebugBuffer *primaryBuffer = NULL;
|
2013-10-06 22:51:58 +00:00
|
|
|
GPUgstate state;
|
2013-09-28 05:41:44 +00:00
|
|
|
bufferResult = false;
|
2013-10-06 22:51:58 +00:00
|
|
|
|
|
|
|
if (gpuDebug != NULL) {
|
|
|
|
state = gpuDebug->GetGState();
|
|
|
|
}
|
|
|
|
|
2013-10-06 23:48:23 +00:00
|
|
|
switch (PrimaryDisplayType(fbTabs->CurrentTabIndex())) {
|
2013-10-06 00:27:28 +00:00
|
|
|
case PRIMARY_FRAMEBUF:
|
|
|
|
SetPauseAction(PAUSE_GETFRAMEBUF);
|
|
|
|
primaryBuffer = &bufferFrame;
|
2013-10-06 22:51:58 +00:00
|
|
|
_snwprintf(desc, ARRAY_SIZE(desc), L"Color: 0x%08x (%dx%d)", state.getFrameBufRawAddress(), primaryBuffer->GetStride(), primaryBuffer->GetHeight());
|
2013-10-06 00:27:28 +00:00
|
|
|
break;
|
2013-09-28 05:41:44 +00:00
|
|
|
|
2013-10-06 00:27:28 +00:00
|
|
|
case PRIMARY_DEPTHBUF:
|
|
|
|
SetPauseAction(PAUSE_GETDEPTHBUF);
|
|
|
|
primaryBuffer = &bufferDepth;
|
2013-10-06 22:51:58 +00:00
|
|
|
_snwprintf(desc, ARRAY_SIZE(desc), L"Depth: 0x%08x (%dx%d)", state.getDepthBufRawAddress(), primaryBuffer->GetStride(), primaryBuffer->GetHeight());
|
2013-10-06 00:27:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PRIMARY_STENCILBUF:
|
|
|
|
SetPauseAction(PAUSE_GETSTENCILBUF);
|
|
|
|
primaryBuffer = &bufferStencil;
|
2013-10-06 22:51:58 +00:00
|
|
|
_snwprintf(desc, ARRAY_SIZE(desc), L"Stencil: 0x%08x (%dx%d)", state.getFrameBufRawAddress(), primaryBuffer->GetStride(), primaryBuffer->GetHeight());
|
2013-10-06 00:27:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bufferResult && primaryBuffer != NULL) {
|
|
|
|
auto fmt = SimpleGLWindow::Format(primaryBuffer->GetFormat());
|
|
|
|
frameWindow->Draw(primaryBuffer->GetData(), primaryBuffer->GetStride(), primaryBuffer->GetHeight(), primaryBuffer->GetFlipped(), fmt);
|
2013-10-06 22:51:58 +00:00
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_FRAMEBUFADDR, desc);
|
2013-09-28 05:41:44 +00:00
|
|
|
} else {
|
|
|
|
frameWindow->Clear();
|
2013-10-06 22:51:58 +00:00
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_FRAMEBUFADDR, L"Failed");
|
2013-09-28 05:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bufferResult = false;
|
|
|
|
SetPauseAction(PAUSE_GETTEX);
|
|
|
|
|
|
|
|
if (bufferResult) {
|
|
|
|
auto fmt = SimpleGLWindow::Format(bufferTex.GetFormat());
|
2013-09-28 06:52:06 +00:00
|
|
|
texWindow->Draw(bufferTex.GetData(), bufferTex.GetStride(), bufferTex.GetHeight(), bufferTex.GetFlipped(), fmt);
|
2013-10-06 00:30:42 +00:00
|
|
|
|
|
|
|
if (gpuDebug != NULL) {
|
|
|
|
if (state.isTextureAlphaUsed()) {
|
|
|
|
texWindow->SetFlags(SimpleGLWindow::ALPHA_BLEND | SimpleGLWindow::RESIZE_SHRINK_CENTER);
|
|
|
|
} else {
|
|
|
|
texWindow->SetFlags(SimpleGLWindow::RESIZE_SHRINK_CENTER);
|
|
|
|
}
|
2013-10-06 22:51:58 +00:00
|
|
|
_snwprintf(desc, ARRAY_SIZE(desc), L"Texture: 0x%08x (%dx%d)", state.getTextureAddress(0), state.getTextureWidth(0), state.getTextureHeight(0));
|
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_TEXADDR, desc);
|
2013-10-06 00:30:42 +00:00
|
|
|
}
|
2013-09-28 05:41:44 +00:00
|
|
|
} else {
|
|
|
|
texWindow->Clear();
|
2013-10-06 22:51:58 +00:00
|
|
|
if (gpuDebug == NULL || state.isTextureMapEnabled()) {
|
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_TEXADDR, L"Texture: failed");
|
|
|
|
} else {
|
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_TEXADDR, L"Texture: disabled");
|
|
|
|
}
|
2013-09-28 05:41:44 +00:00
|
|
|
}
|
2013-09-28 06:45:15 +00:00
|
|
|
|
|
|
|
DisplayList list;
|
2013-10-06 22:51:58 +00:00
|
|
|
if (gpuDebug != NULL && gpuDebug->GetCurrentDisplayList(list)) {
|
2013-09-28 06:45:15 +00:00
|
|
|
displayList->setDisplayList(list);
|
|
|
|
}
|
2013-09-28 23:02:05 +00:00
|
|
|
|
2013-09-30 07:57:46 +00:00
|
|
|
flags->Update();
|
2013-09-30 08:13:06 +00:00
|
|
|
lighting->Update();
|
2013-09-30 15:18:28 +00:00
|
|
|
textureState->Update();
|
2013-09-30 08:13:06 +00:00
|
|
|
settings->Update();
|
2013-09-28 23:02:05 +00:00
|
|
|
lists->Update();
|
2013-09-24 06:45:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-28 14:04:56 +00:00
|
|
|
void CGEDebugger::UpdateSize(WORD width, WORD height)
|
|
|
|
{
|
|
|
|
// only resize the tab for now
|
|
|
|
HWND tabControl = GetDlgItem(m_hDlg, IDC_GEDBG_MAINTAB);
|
|
|
|
|
|
|
|
RECT tabRect;
|
|
|
|
GetWindowRect(tabControl,&tabRect);
|
|
|
|
MapWindowPoints(HWND_DESKTOP,m_hDlg,(LPPOINT)&tabRect,2);
|
|
|
|
|
|
|
|
tabRect.right = tabRect.left + (width-tabRect.left*2); // assume same gap on both sides
|
|
|
|
tabRect.bottom = tabRect.top + (height-tabRect.top-tabRect.left); // assume same gap on bottom too
|
|
|
|
MoveWindow(tabControl,tabRect.left,tabRect.top,tabRect.right-tabRect.left,tabRect.bottom-tabRect.top,TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGEDebugger::SavePosition()
|
|
|
|
{
|
|
|
|
RECT rc;
|
|
|
|
if (GetWindowRect(m_hDlg, &rc))
|
|
|
|
{
|
|
|
|
g_Config.iGEWindowX = rc.left;
|
|
|
|
g_Config.iGEWindowY = rc.top;
|
|
|
|
g_Config.iGEWindowW = rc.right - rc.left;
|
|
|
|
g_Config.iGEWindowH = rc.bottom - rc.top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 16:03:08 +00:00
|
|
|
BOOL CGEDebugger::DlgProc(UINT message, WPARAM wParam, LPARAM lParam) {
|
2013-09-22 17:27:09 +00:00
|
|
|
switch (message) {
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
return TRUE;
|
|
|
|
|
2013-09-28 14:04:56 +00:00
|
|
|
case WM_GETMINMAXINFO:
|
|
|
|
{
|
|
|
|
MINMAXINFO* minmax = (MINMAXINFO*) lParam;
|
|
|
|
minmax->ptMinTrackSize.x = minWidth;
|
|
|
|
minmax->ptMinTrackSize.y = minHeight;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
case WM_SIZE:
|
2013-09-28 14:04:56 +00:00
|
|
|
UpdateSize(LOWORD(lParam), HIWORD(lParam));
|
|
|
|
SavePosition();
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_MOVE:
|
|
|
|
SavePosition();
|
2013-09-22 17:27:09 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
Show(false);
|
|
|
|
return TRUE;
|
|
|
|
|
2013-09-24 06:45:17 +00:00
|
|
|
case WM_SHOWWINDOW:
|
2013-09-28 05:41:44 +00:00
|
|
|
SetupPreviews();
|
2013-09-24 06:45:17 +00:00
|
|
|
break;
|
|
|
|
|
2013-09-28 12:34:08 +00:00
|
|
|
case WM_ACTIVATE:
|
|
|
|
if (wParam == WA_ACTIVE || wParam == WA_CLICKACTIVE) {
|
|
|
|
g_activeWindow = WINDOW_GEDEBUGGER;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-09-27 11:11:11 +00:00
|
|
|
case WM_NOTIFY:
|
|
|
|
switch (wParam)
|
|
|
|
{
|
|
|
|
case IDC_GEDBG_MAINTAB:
|
2013-09-28 18:57:02 +00:00
|
|
|
tabs->HandleNotify(lParam);
|
2013-09-27 11:11:11 +00:00
|
|
|
break;
|
2013-10-06 23:48:23 +00:00
|
|
|
case IDC_GEDBG_FBTABS:
|
|
|
|
fbTabs->HandleNotify(lParam);
|
|
|
|
// TODO: Move this somewhere...
|
|
|
|
if (attached && gpuDebug != NULL) {
|
|
|
|
UpdatePreviews();
|
|
|
|
}
|
|
|
|
break;
|
2013-09-27 11:11:11 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2013-09-28 06:45:15 +00:00
|
|
|
case IDC_GEDBG_STEPDRAW:
|
2013-09-22 17:27:09 +00:00
|
|
|
attached = true;
|
2013-09-28 05:41:44 +00:00
|
|
|
SetupPreviews();
|
2013-09-25 13:24:53 +00:00
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
pauseWait.notify_one();
|
2013-09-28 06:45:15 +00:00
|
|
|
breakNextOp = false;
|
2013-09-23 02:05:33 +00:00
|
|
|
breakNextDraw = true;
|
2013-09-28 06:45:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IDC_GEDBG_STEP:
|
2013-09-28 12:34:08 +00:00
|
|
|
SendMessage(m_hDlg,WM_GEDBG_STEPDISPLAYLIST,0,0);
|
2013-09-22 17:27:09 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IDC_GEDBG_RESUME:
|
2013-09-23 02:05:33 +00:00
|
|
|
frameWindow->Clear();
|
2013-09-28 05:41:44 +00:00
|
|
|
texWindow->Clear();
|
2013-10-06 22:51:58 +00:00
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_FRAMEBUFADDR, L"");
|
|
|
|
SetDlgItemText(m_hDlg, IDC_GEDBG_TEXADDR, L"");
|
|
|
|
|
2013-09-22 17:27:09 +00:00
|
|
|
// TODO: detach? Should probably have separate UI, or just on activate?
|
2013-09-28 06:45:15 +00:00
|
|
|
breakNextOp = false;
|
2013-09-23 02:05:33 +00:00
|
|
|
breakNextDraw = false;
|
2013-09-22 17:27:09 +00:00
|
|
|
pauseWait.notify_one();
|
|
|
|
break;
|
|
|
|
}
|
2013-09-23 02:05:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_GEDBG_BREAK_CMD:
|
|
|
|
{
|
|
|
|
u32 pc = (u32)wParam;
|
2013-10-01 22:41:37 +00:00
|
|
|
tempBreakpoint = -1;
|
2013-09-23 02:05:33 +00:00
|
|
|
auto info = gpuDebug->DissassembleOp(pc);
|
|
|
|
NOTICE_LOG(COMMON, "Waiting at %08x, %s", pc, info.desc.c_str());
|
2013-09-28 05:41:44 +00:00
|
|
|
UpdatePreviews();
|
2013-09-23 02:05:33 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_GEDBG_BREAK_DRAW:
|
|
|
|
{
|
|
|
|
NOTICE_LOG(COMMON, "Waiting at a draw");
|
2013-09-28 05:41:44 +00:00
|
|
|
UpdatePreviews();
|
2013-09-23 02:05:33 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-09-28 12:34:08 +00:00
|
|
|
|
|
|
|
case WM_GEDBG_STEPDISPLAYLIST:
|
|
|
|
attached = true;
|
|
|
|
SetupPreviews();
|
|
|
|
|
|
|
|
pauseWait.notify_one();
|
|
|
|
breakNextOp = true;
|
|
|
|
breakNextDraw = false;
|
|
|
|
break;
|
2013-10-01 10:05:19 +00:00
|
|
|
|
|
|
|
case WM_GEDBG_TOGGLEPCBREAKPOINT:
|
|
|
|
{
|
2013-10-01 14:53:00 +00:00
|
|
|
lock_guard guard(breaksLock);
|
|
|
|
u32 pc = (u32)wParam;
|
2013-10-01 10:05:19 +00:00
|
|
|
auto iter = breakPCs.find(pc);
|
|
|
|
if (iter != breakPCs.end())
|
|
|
|
breakPCs.erase(iter);
|
|
|
|
else
|
|
|
|
breakPCs.insert(pc);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-10-01 22:41:37 +00:00
|
|
|
case WM_GEDBG_RUNTOWPARAM:
|
|
|
|
{
|
|
|
|
lock_guard guard(breaksLock);
|
|
|
|
u32 pc = (u32)wParam;
|
|
|
|
tempBreakpoint = pc;
|
|
|
|
SendMessage(m_hDlg,WM_COMMAND,IDC_GEDBG_RESUME,0);
|
|
|
|
}
|
|
|
|
break;
|
2013-09-22 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The below WindowsHost methods are called on the GPU thread.
|
|
|
|
|
|
|
|
bool WindowsHost::GPUDebuggingActive() {
|
|
|
|
return attached;
|
|
|
|
}
|
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
static void PauseWithMessage(UINT msg, WPARAM wParam = NULL, LPARAM lParam = NULL) {
|
|
|
|
lock_guard guard(pauseLock);
|
2013-10-01 06:34:33 +00:00
|
|
|
if (coreState != CORE_RUNNING && coreState != CORE_NEXTFRAME) {
|
2013-09-28 07:32:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-23 02:05:33 +00:00
|
|
|
PostMessage(geDebuggerWindow->GetDlgHandle(), msg, wParam, lParam);
|
|
|
|
|
|
|
|
do {
|
|
|
|
RunPauseAction();
|
2013-09-22 17:27:09 +00:00
|
|
|
pauseWait.wait(pauseLock);
|
2013-09-23 02:05:33 +00:00
|
|
|
} while (pauseAction != PAUSE_CONTINUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowsHost::GPUNotifyCommand(u32 pc) {
|
|
|
|
u32 op = Memory::ReadUnchecked_U32(pc);
|
|
|
|
u8 cmd = op >> 24;
|
|
|
|
|
2013-10-01 22:41:37 +00:00
|
|
|
if (breakNextOp || CGEDebugger::IsOpOrTextureBreakPoint(op) || CGEDebugger::IsAddressBreakPoint(pc) || pc == tempBreakpoint) {
|
2013-09-23 02:05:33 +00:00
|
|
|
PauseWithMessage(WM_GEDBG_BREAK_CMD, (WPARAM) pc);
|
2013-09-22 17:27:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowsHost::GPUNotifyDisplay(u32 framebuf, u32 stride, int format) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowsHost::GPUNotifyDraw() {
|
2013-09-23 02:05:33 +00:00
|
|
|
if (breakNextDraw) {
|
|
|
|
PauseWithMessage(WM_GEDBG_BREAK_DRAW);
|
|
|
|
}
|
2013-09-22 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WindowsHost::GPUNotifyTextureAttachment(u32 addr) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WindowsHost::GPUAllowTextureCache(u32 addr) {
|
|
|
|
return textureCaching;
|
|
|
|
}
|