Added modelviewer.

Added neural network code(turned off by default).
Lots of editor and rendering fixes.
This commit is contained in:
Justin Marshall
2026-05-17 22:09:25 -07:00
parent 079442e7ba
commit 76f642286e
74 changed files with 101444 additions and 2227 deletions
+7 -3
View File
@@ -41,6 +41,7 @@ If you have questions concerning this license or the applicable additional terms
#include "CamWnd.h"
#include <afxcmn.h>
#include "ModelViewDock.h"
class CXYWnd;
class CZWnd;
@@ -262,21 +263,24 @@ public:
BOOL IsGameWindowDocked() const;
HWND GetDockedGameWindow() const;
BOOL IsGameTabActive() const;
BOOL IsModelViewTabActive() const;
void SelectXYTab();
void SelectGameTab();
void SelectModelViewTab();
void FocusGameWindow();
void FocusXYWindow();
void FocusModelView();
protected:
enum {
XYDOCK_TAB_XY = 0,
XYDOCK_TAB_GAME = 1
XYDOCK_TAB_GAME = 1,
XYDOCK_TAB_MODELVIEW = 2
};
CTabCtrl m_wndTabs;
CWnd m_wndXYPage;
CGameDockWnd m_wndGamePage;
CModelViewDockWnd m_wndModelPage;
CXYMenuBar m_wndMenuBar;
CXYMDIContainerWnd m_wndMDIContainer;
CToolBar *m_pToolBar;