2016-03-12 01:20:51 +01:00
|
|
|
/* 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. */
|
2016-03-11 14:57:17 +01:00
|
|
|
|
|
|
|
// TriangularisationCombo.cpp : implementation file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#undef new
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
#undef THIS_FILE
|
|
|
|
static char THIS_FILE[] = __FILE__;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CTriangularisationCombo
|
|
|
|
|
|
|
|
CTriangularisationCombo::CTriangularisationCombo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CTriangularisationCombo::~CTriangularisationCombo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CTriangularisationCombo, CComboBox)
|
|
|
|
//{{AFX_MSG_MAP(CTriangularisationCombo)
|
|
|
|
ON_CONTROL_REFLECT(CBN_SELCHANGE, OnSelchange)
|
|
|
|
ON_CONTROL_REFLECT(CBN_DROPDOWN, OnDropdown)
|
|
|
|
//}}AFX_MSG_MAP
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CTriangularisationCombo message handlers
|
|
|
|
|
|
|
|
BOOL CTriangularisationCombo::OnIdle(LONG lCount)
|
|
|
|
{
|
|
|
|
// get document ptr
|
|
|
|
CWorldEditorDoc* pDoc = theApp.GetActiveDocument();
|
|
|
|
|
|
|
|
if( (pDoc == NULL) ||
|
|
|
|
(pDoc->GetEditingMode() != CSG_MODE) ||
|
|
|
|
(!pDoc->m_bPrimitiveMode) )
|
|
|
|
{
|
|
|
|
// we should disable triangularisation combo
|
|
|
|
if(GetCount() == 1) return TRUE; // we allready have "not available" in combo
|
|
|
|
// remove all combo entries
|
|
|
|
ResetContent();
|
|
|
|
// set none available message
|
|
|
|
AddString( L"None Available");
|
|
|
|
SetCurSel( 0);
|
|
|
|
}
|
|
|
|
// we should enable triangularisation combo
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if it is allready enabled
|
|
|
|
if(GetCount() != 1) return TRUE;
|
|
|
|
ResetContent();
|
|
|
|
// add all possible triangularisation types
|
|
|
|
AddString( L"None");
|
|
|
|
AddString( L"Center");
|
|
|
|
AddString( L"Vertex 1");
|
|
|
|
AddString( L"Vertex 2");
|
|
|
|
AddString( L"Vertex 3");
|
|
|
|
AddString( L"Vertex 4");
|
|
|
|
AddString( L"Vertex 5");
|
|
|
|
AddString( L"Vertex 6");
|
|
|
|
AddString( L"Vertex 7");
|
|
|
|
AddString( L"Vertex 8");
|
|
|
|
AddString( L"Vertex 9");
|
|
|
|
AddString( L"Vertex 10");
|
|
|
|
AddString( L"Vertex 11");
|
|
|
|
AddString( L"Vertex 12");
|
|
|
|
AddString( L"Vertex 13");
|
|
|
|
AddString( L"Vertex 14");
|
|
|
|
AddString( L"Vertex 15");
|
|
|
|
AddString( L"Vertex 16");
|
|
|
|
// select currently selected triangularisation type
|
|
|
|
SetCurSel( (int)theApp.m_vfpCurrent.vfp_ttTriangularisationType);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTriangularisationCombo::OnSelchange()
|
|
|
|
{
|
|
|
|
// get document ptr
|
|
|
|
CWorldEditorDoc* pDoc = theApp.GetActiveDocument();
|
|
|
|
if( pDoc == NULL) return;
|
|
|
|
|
|
|
|
int iSelected = GetCurSel();
|
|
|
|
theApp.m_vfpCurrent.vfp_ttTriangularisationType = (enum TriangularisationType) iSelected;
|
|
|
|
pDoc->CreatePrimitive();
|
|
|
|
pDoc->UpdateAllViews(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTriangularisationCombo::OnDropdown()
|
|
|
|
{
|
|
|
|
INDEX ctItems = GetCount();
|
|
|
|
if( ctItems == CB_ERR) return;
|
|
|
|
|
|
|
|
CRect rectCombo;
|
|
|
|
GetWindowRect( &rectCombo);
|
|
|
|
|
|
|
|
PIX pixScreenHeight = ::GetSystemMetrics(SM_CYSCREEN);
|
|
|
|
PIX pixMaxHeight = pixScreenHeight - rectCombo.top;
|
|
|
|
|
|
|
|
CWnd *pwndParent = GetParent();
|
|
|
|
if( pwndParent == NULL) return;
|
|
|
|
pwndParent->ScreenToClient( &rectCombo);
|
|
|
|
PIX pixNewHeight = GetItemHeight(0)*(ctItems+2);
|
|
|
|
rectCombo.bottom = rectCombo.top + ClampUp( pixNewHeight, pixMaxHeight);
|
|
|
|
MoveWindow( rectCombo);
|
|
|
|
}
|