mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 10:20:26 +01:00
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/* 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. */
|
|
|
|
// DlgAutoMipModeling.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef new
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDlgAutoMipModeling dialog
|
|
|
|
|
|
CDlgAutoMipModeling::CDlgAutoMipModeling(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CDlgAutoMipModeling::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CDlgAutoMipModeling)
|
|
m_iVerticesToRemove = 0;
|
|
m_iSurfacePreservingFactor = 0;
|
|
//}}AFX_DATA_INIT
|
|
|
|
m_iVerticesToRemove = theApp.GetProfileInt( L"Modeler prefs", L"Auto mip modeling vertex removal rate", 10);
|
|
m_iSurfacePreservingFactor = theApp.GetProfileInt( L"Modeler prefs", L"Surface preserving factor", 30);
|
|
}
|
|
|
|
|
|
void CDlgAutoMipModeling::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CDlgAutoMipModeling)
|
|
DDX_Text(pDX, IDC_VERTICES_TO_REMOVE, m_iVerticesToRemove);
|
|
DDV_MinMaxInt(pDX, m_iVerticesToRemove, 1, 32767);
|
|
DDX_Text(pDX, IDC_SURFACE_PRESERVING_FACTOR, m_iSurfacePreservingFactor);
|
|
DDV_MinMaxInt(pDX, m_iSurfacePreservingFactor, 1, 99);
|
|
//}}AFX_DATA_MAP
|
|
|
|
// if dialog gives data
|
|
if( pDX->m_bSaveAndValidate)
|
|
{
|
|
theApp.WriteProfileInt( L"Modeler prefs", L"Auto mip modeling vertex removal rate", m_iVerticesToRemove);
|
|
theApp.WriteProfileInt( L"Modeler prefs", L"Surface preserving factor", m_iSurfacePreservingFactor);
|
|
}
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CDlgAutoMipModeling, CDialog)
|
|
//{{AFX_MSG_MAP(CDlgAutoMipModeling)
|
|
// NOTE: the ClassWizard will add message map macros here
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDlgAutoMipModeling message handlers
|