-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditMipSwitchDistance.cpp
145 lines (125 loc) · 3.79 KB
/
EditMipSwitchDistance.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
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 for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
// EditMipSwitchDistance.cpp : implementation file
//
#include "StdH.h"
#include "EditMipSwitchDistance.h"
#ifdef _DEBUG
#undef new
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEditMipSwitchDistance
CEditMipSwitchDistance::CEditMipSwitchDistance()
{
m_pbrmBrushMipSelected = NULL;
m_fLastValue = -1;
}
CEditMipSwitchDistance::~CEditMipSwitchDistance()
{
}
BEGIN_MESSAGE_MAP(CEditMipSwitchDistance, CEdit)
//{{AFX_MSG_MAP(CEditMipSwitchDistance)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEditMipSwitchDistance message handlers
CBrushMip *GetMipBrush(void)
{
CMainFrame* pMainFrame = STATIC_DOWNCAST(CMainFrame, AfxGetMainWnd());
CEntity *penSelected = pMainFrame->m_CSGDesitnationCombo.GetSelectedBrushEntity();
CWorldEditorView *pWedView = theApp.GetActiveView();
if( pWedView != NULL)
{
CBrushMip *pbmCurrentMip = pWedView->GetCurrentBrushMip();
return pbmCurrentMip;
}
return NULL;
}
BOOL IsEditingEnabled(void)
{
CWorldEditorView *pWedView = theApp.GetActiveView();
if( pWedView != NULL)
{
CChildFrame *pWedChild = pWedView->GetChildFrame();
if( pWedChild != NULL)
{
CBrushMip *pbrm = GetMipBrush();
CWorldEditorDoc *pDoc = pWedView->GetDocument();
if( (pDoc != NULL) && (pDoc->GetEditingMode() == ENTITY_MODE) && (pbrm != NULL))
{
return !pWedChild->m_bAutoMipBrushingOn;
}
}
}
return FALSE;
}
BOOL CEditMipSwitchDistance::PreTranslateMessage(MSG* pMsg)
{
// if we caught key down message
if( pMsg->message==WM_KEYDOWN)
{
if( ((int)pMsg->wParam==VK_RETURN) && IsEditingEnabled() )
{
// set new mip switch distance
CString strWindowText;
GetWindowText( strWindowText);
CTString strValue = MfcStringToCT(strWindowText);
FLOAT fValue = 100.0f;
CBrushMip *pbrm = GetMipBrush();
// if value is valid and brush exists
if( (strValue.ScanF( "%g", &fValue) == 1) && (pbrm != NULL) )
{
pbrm->SetMipDistance( fValue);
m_fLastValue = fValue;
CWorldEditorView *pWedView = theApp.GetActiveView();
CWorldEditorDoc *pDoc = pWedView->GetDocument();
pDoc->SetModifiedFlag( TRUE);
pDoc->m_chSelections.MarkChanged();
pDoc->UpdateAllViews( NULL);
}
}
else
{
TranslateMessage(pMsg);
SendMessage( WM_KEYDOWN, pMsg->wParam, pMsg->lParam);
}
return TRUE;
}
return CEdit::PreTranslateMessage(pMsg);
}
BOOL CEditMipSwitchDistance::OnIdle(LONG lCount)
{
CBrushMip *pbrmip = GetMipBrush();
// if editing is disabled
if( !IsEditingEnabled() )
{
EnableWindow( FALSE);
}
// if we should update value
else
{
EnableWindow( TRUE);
FLOAT fValue = pbrmip->GetMipDistance();
if( (pbrmip != m_pbrmBrushMipSelected) || (fValue != m_fLastValue) )
{
CTString strValue;
m_fLastValue = fValue;
strValue.PrintF( "%g", fValue);
SetWindowText( CString(strValue));
}
}
m_pbrmBrushMipSelected = pbrmip;
return TRUE;
}