mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-16 00:01:53 +02:00
210 lines
5.0 KiB
C++
210 lines
5.0 KiB
C++
/*
|
|
===========================================================================
|
|
|
|
IceTech GPL Source Code
|
|
Copyright (C) 2026 Justin Marshall
|
|
|
|
Modernized Entity Inspector UI pass by Justin / IceBridge workflow.
|
|
|
|
===========================================================================
|
|
*/
|
|
#pragma once
|
|
|
|
#include "afxcmn.h"
|
|
#include "afxwin.h"
|
|
#include "PropertyList.h"
|
|
#include "PreviewDlg.h"
|
|
|
|
// CEntityDlg dialog
|
|
|
|
class CEntityDlg : public CDialog {
|
|
DECLARE_DYNAMIC(CEntityDlg)
|
|
|
|
public:
|
|
CEntityDlg(CWnd* pParent = NULL);
|
|
virtual ~CEntityDlg();
|
|
|
|
void SetDict(idDict* _dict) {
|
|
dict = _dict;
|
|
}
|
|
|
|
void SetEditEntity(idEditorEntity* ent) {
|
|
editEntity = ent;
|
|
}
|
|
|
|
void CreateEntity();
|
|
void AssignModel();
|
|
|
|
static CPreviewDlg* ShowModelChooser();
|
|
static CPreviewDlg* ShowGuiChooser();
|
|
static CPreviewDlg* ShowSoundChooser();
|
|
static CPreviewDlg* ShowMaterialChooser();
|
|
static CPreviewDlg* ShowParticleChooser();
|
|
static CPreviewDlg* ShowSkinChooser(idEditorEntity* ent);
|
|
|
|
void SetKeyVal(const char* key, const char* val) {
|
|
editKey.SetWindowText(key);
|
|
editVal.SetWindowText(val);
|
|
}
|
|
|
|
void EditCurvePoints();
|
|
void AddCurvePoints();
|
|
void InsertCurvePoint();
|
|
void DeleteCurvePoint();
|
|
|
|
enum { IDD = IDD_DIALOG_ENTITY };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX);
|
|
|
|
public:
|
|
virtual BOOL OnInitDialog();
|
|
virtual INT_PTR OnToolHitTest(CPoint point, TOOLINFO* pTI) const;
|
|
|
|
void AddClassNames();
|
|
void UpdateEntitySel(eclass_t* ent);
|
|
void SetKeyValPairs(bool updateAnims = true);
|
|
static const char* TranslateString(const char* p);
|
|
|
|
void AddProp();
|
|
void DelProp();
|
|
void UpdateFromListBox();
|
|
|
|
CEdit editKey;
|
|
CEdit editVal;
|
|
|
|
void UpdateKeyVal(const char* key, const char* val);
|
|
void SelectCurvePointByRay(const idVec3& org, const idVec3& dir, int buttons);
|
|
void UpdateEntityCurve();
|
|
void UpdateFromAnimationFrame(bool updateKeyValueDisplay = true);
|
|
|
|
private:
|
|
idEditorEntity* editEntity;
|
|
bool multipleEntities;
|
|
|
|
CPropertyList listKeyVal;
|
|
CPropertyList listVars;
|
|
CComboBox comboClass;
|
|
|
|
idDict* dict;
|
|
|
|
const idMD5Anim* currentAnimation;
|
|
int currentAnimationFrame;
|
|
|
|
const char* AngleKey();
|
|
|
|
idPointListInterface curvePoints;
|
|
|
|
// --------------------------------------------------------------------
|
|
// Modern inspector theme
|
|
// --------------------------------------------------------------------
|
|
CFont fontTitle;
|
|
CFont fontSection;
|
|
CFont fontNormal;
|
|
CFont fontMono;
|
|
|
|
CBrush brushBackground;
|
|
CBrush brushPanel;
|
|
CBrush brushPanelAlt;
|
|
CBrush brushEdit;
|
|
CBrush brushStatic;
|
|
|
|
COLORREF colorBackground;
|
|
COLORREF colorPanel;
|
|
COLORREF colorPanelAlt;
|
|
COLORREF colorBorder;
|
|
COLORREF colorText;
|
|
COLORREF colorTextMuted;
|
|
COLORREF colorAccent;
|
|
COLORREF colorEditBg;
|
|
|
|
bool themeInitialized;
|
|
|
|
void InitModernTheme();
|
|
void ApplyModernTheme();
|
|
void DestroyModernTheme();
|
|
|
|
void MoveCtrl(CWnd& wnd, int x, int y, int w, int h, UINT flags = SWP_SHOWWINDOW);
|
|
void MoveCtrl(int id, int x, int y, int w, int h, UINT flags = SWP_SHOWWINDOW);
|
|
void SetCtrlFont(CWnd& wnd, CFont* font);
|
|
void SetCtrlFont(int id, CFont* font);
|
|
|
|
void DrawModernBackground(CDC& dc);
|
|
void DrawPanel(CDC& dc, const CRect& r, const char* title, bool accent = false);
|
|
|
|
public:
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
|
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
|
|
afx_msg void OnPaint();
|
|
|
|
CStatic staticTitle;
|
|
CStatic staticKey;
|
|
CStatic staticVal;
|
|
CStatic staticFrame;
|
|
|
|
CButton btnPlayAnim;
|
|
CButton btnStopAnim;
|
|
CButton btnBrowse;
|
|
|
|
CButton btn135;
|
|
CButton btn90;
|
|
CButton btn45;
|
|
CButton btn180;
|
|
CButton btn360;
|
|
CButton btn225;
|
|
CButton btn270;
|
|
CButton btn315;
|
|
CButton btnUp;
|
|
CButton btnDown;
|
|
|
|
CButton btnModel;
|
|
CButton btnSound;
|
|
CButton btnGui;
|
|
CButton btnParticle;
|
|
CButton btnSkin;
|
|
CButton btnCurve;
|
|
CButton btnCreate;
|
|
|
|
CComboBox cbAnimations;
|
|
CSliderCtrl slFrameSlider;
|
|
|
|
afx_msg void OnCbnSelchangeComboClass();
|
|
afx_msg void OnLbnSelchangeListkeyval();
|
|
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
|
|
afx_msg void OnBnClickedE135();
|
|
afx_msg void OnBnClickedE90();
|
|
afx_msg void OnBnClickedE45();
|
|
afx_msg void OnBnClickedE180();
|
|
afx_msg void OnBnClickedE0();
|
|
afx_msg void OnBnClickedE225();
|
|
afx_msg void OnBnClickedE270();
|
|
afx_msg void OnBnClickedE315();
|
|
afx_msg void OnBnClickedEUp();
|
|
afx_msg void OnBnClickedEDown();
|
|
|
|
afx_msg void OnBnClickedButtonModel();
|
|
afx_msg void OnBnClickedButtonSound();
|
|
afx_msg void OnBnClickedButtonGui();
|
|
afx_msg void OnBnClickedButtonBrowse();
|
|
afx_msg void OnCbnDblclkComboClass();
|
|
afx_msg void OnBnClickedButtonCreate();
|
|
afx_msg void OnBnClickedStartAnimation();
|
|
afx_msg void OnBnClickedStopAnimation();
|
|
|
|
afx_msg void OnLbnDblclkListkeyval();
|
|
afx_msg void OnLbnSelchangeListVars();
|
|
afx_msg void OnLbnDblclkListVars();
|
|
|
|
afx_msg void OnNMReleasedcaptureSlider1(NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg void OnCbnAnimationChange();
|
|
afx_msg void OnTimer(UINT_PTR nIDEvent);
|
|
|
|
afx_msg void OnBnClickedButtonParticle();
|
|
afx_msg void OnBnClickedButtonSkin();
|
|
afx_msg void OnBnClickedButtonCurve();
|
|
}; |