@ -31,50 +31,50 @@ using namespace NLMISC;
// Which dialog tab is the VerytexProgram one?
// Which dialog tab is the VerytexProgram one?
# define TAB_VP_ID 5
# define TAB_VP_ID 5
char * _EnvironmentNames [ ] =
TCHAR * _EnvironmentNames [ ] =
{
{
" " ,
_T ( " " ) ,
" no fx " ,
_T ( " no fx " ) ,
" GENERIC " ,
_T ( " GENERIC " ) ,
" PADDEDCELL " ,
_T ( " PADDEDCELL " ) ,
" ROOM " ,
_T ( " ROOM " ) ,
" BATHROOM " ,
_T ( " BATHROOM " ) ,
" LIVINGROOM " ,
_T ( " LIVINGROOM " ) ,
" STONEROOM " ,
_T ( " STONEROOM " ) ,
" AUDITORIUM " ,
_T ( " AUDITORIUM " ) ,
" CONCERTHALL " ,
_T ( " CONCERTHALL " ) ,
" CAVE " ,
_T ( " CAVE " ) ,
" ARENA " ,
_T ( " ARENA " ) ,
" HANGAR " ,
_T ( " HANGAR " ) ,
" CARPETEDHALLWAY " ,
_T ( " CARPETEDHALLWAY " ) ,
" HALLWAY " ,
_T ( " HALLWAY " ) ,
" STONECORRIDOR " ,
_T ( " STONECORRIDOR " ) ,
" ALLEY " ,
_T ( " ALLEY " ) ,
" FOREST " ,
_T ( " FOREST " ) ,
" CITY " ,
_T ( " CITY " ) ,
" MOUNTAINS " ,
_T ( " MOUNTAINS " ) ,
" QUARRY " ,
_T ( " QUARRY " ) ,
" PLAIN " ,
_T ( " PLAIN " ) ,
" PARKINGLOT " ,
_T ( " PARKINGLOT " ) ,
" SEWERPIPE " ,
_T ( " SEWERPIPE " ) ,
" UNDERWATER " ,
_T ( " UNDERWATER " ) ,
" DRUGGED " ,
_T ( " DRUGGED " ) ,
" DIZZY " ,
_T ( " DIZZY " ) ,
" PSYCHOTIC " ,
_T ( " PSYCHOTIC " ) ,
NULL
NULL
} ;
} ;
char * _MaterialNames [ ] =
TCHAR * _MaterialNames [ ] =
{
{
" " ,
_T ( " " ) ,
" no occlusion " ,
_T ( " no occlusion " ) ,
" SINGLEWINDOW " ,
_T ( " SINGLEWINDOW " ) ,
" DOUBLEWINDOW " ,
_T ( " DOUBLEWINDOW " ) ,
" THINDOOR " ,
_T ( " THINDOOR " ) ,
" THICKDOOR " ,
_T ( " THICKDOOR " ) ,
" WOODWALL " ,
_T ( " WOODWALL " ) ,
" BRICKWALL " ,
_T ( " BRICKWALL " ) ,
" STONEWALL " ,
_T ( " STONEWALL " ) ,
" CURTAIN " ,
_T ( " CURTAIN " ) ,
NULL
NULL
} ;
} ;
@ -319,7 +319,7 @@ INT_PTR CALLBACK VertexProgramDialogCallBack (HWND hwndDlg, UINT uMsg, WPARAM wP
INT_PTR CALLBACK MiscDialogCallback ( HWND hwndDlg , UINT uMsg , WPARAM wParam , LPARAM lParam ) ;
INT_PTR CALLBACK MiscDialogCallback ( HWND hwndDlg , UINT uMsg , WPARAM wParam , LPARAM lParam ) ;
INT_PTR CALLBACK AnimationDialogCallback ( HWND hwndDlg , UINT uMsg , WPARAM wParam , LPARAM lParam ) ;
INT_PTR CALLBACK AnimationDialogCallback ( HWND hwndDlg , UINT uMsg , WPARAM wParam , LPARAM lParam ) ;
const char * SubText [ TAB_COUNT ] = { " LOD & MRM " , " Accelerator " , " Instance " , " Lighting " , " LMC " , " Vegetable " , " VertexProgram " , " Misc " , " Animation " } ;
const TCHAR * SubText [ TAB_COUNT ] = { _T ( " LOD & MRM " ) , _T ( " Accelerator " ) , _T ( " Instance " ) , _T ( " Lighting " ) , _T ( " LMC " ) , _T ( " Vegetable " ) , _T ( " VertexProgram " ) , _T ( " Misc " ) , _T ( " Animation " ) } ;
const int SubTab [ TAB_COUNT ] = { IDD_LOD , IDD_ACCEL , IDD_INSTANCE , IDD_LIGHTMAP , IDD_LIGHTMAP2 , IDD_VEGETABLE , IDD_VERTEX_PROGRAM , IDD_MISC , IDD_ANIM } ;
const int SubTab [ TAB_COUNT ] = { IDD_LOD , IDD_ACCEL , IDD_INSTANCE , IDD_LIGHTMAP , IDD_LIGHTMAP2 , IDD_VEGETABLE , IDD_VERTEX_PROGRAM , IDD_MISC , IDD_ANIM } ;
DLGPROC SubProc [ TAB_COUNT ] = { MRMDialogCallback , AccelDialogCallback , InstanceDialogCallback , LightmapDialogCallback , Lightmap2DialogCallback , VegetableDialogCallback , VertexProgramDialogCallBack , MiscDialogCallback , AnimationDialogCallback } ;
DLGPROC SubProc [ TAB_COUNT ] = { MRMDialogCallback , AccelDialogCallback , InstanceDialogCallback , LightmapDialogCallback , Lightmap2DialogCallback , VegetableDialogCallback , VertexProgramDialogCallBack , MiscDialogCallback , AnimationDialogCallback } ;
@ -581,16 +581,16 @@ INT_PTR CALLBACK AccelDialogCallback (
currentParam - > AudibleFromFather = SendMessage ( GetDlgItem ( hwndDlg , IDC_AUDIBLE_FROM_FATHER ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > AudibleFromFather = SendMessage ( GetDlgItem ( hwndDlg , IDC_AUDIBLE_FROM_FATHER ) , BM_GETCHECK , 0 , 0 ) ;
// get the strings params
// get the strings params
char tmp [ 256 ] ;
TCHAR tmp [ 256 ] ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_OCC_MODEL ) , WM_GETTEXT , 256 , ( L ONG ) tmp ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_OCC_MODEL ) , WM_GETTEXT , 256 , ( L PARAM ) tmp ) ;
currentParam - > OcclusionModel = t mp;
currentParam - > OcclusionModel = t StrToUtf8( t mp) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_OPEN_OCC_MODEL ) , WM_GETTEXT , 256 , ( L ONG ) tmp ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_OPEN_OCC_MODEL ) , WM_GETTEXT , 256 , ( L PARAM ) tmp ) ;
currentParam - > OpenOcclusionModel = t mp;
currentParam - > OpenOcclusionModel = t StrToUtf8( t mp) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_SOUND_GROUP ) , WM_GETTEXT , 256 , ( L ONG ) tmp ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_SOUND_GROUP ) , WM_GETTEXT , 256 , ( L PARAM ) tmp ) ;
currentParam - > SoundGroup = t mp;
currentParam - > SoundGroup = t StrToUtf8( t mp) ;
_KnownSoundGroups . insert ( tmp) ;
_KnownSoundGroups . insert ( curren tPara m- > SoundGrou p) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_ENV_FX ) , WM_GETTEXT , 256 , ( L ONG ) tmp ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_ENV_FX ) , WM_GETTEXT , 256 , ( L PARAM ) tmp ) ;
currentParam - > EnvironmentFX = t mp;
currentParam - > EnvironmentFX = t StrToUtf8( t mp) ;
// Quit
// Quit
EndDialog ( hwndDlg , IDOK ) ;
EndDialog ( hwndDlg , IDOK ) ;
@ -653,9 +653,9 @@ INT_PTR CALLBACK MRMDialogCallback (
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
// Window text
// Window text
std : : string winName = ( * ( currentParam - > ListNode - > begin ( ) ) ) - > GetName ( ) ;
std : : string winName = tStrToUtf8 ( ( * ( currentParam - > ListNode - > begin ( ) ) ) - > GetName ( ) ) ;
winName = " Node properties ( " + winName + ( ( currentParam - > ListNode - > size ( ) > 1 ) ? " ...) " : " ) " ) ;
winName = " Node properties ( " + winName + ( ( currentParam - > ListNode - > size ( ) > 1 ) ? " ...) " : " ) " ) ;
SetWindowText ( hwndDlg , winName. c_str ( ) ) ;
SetWindowText ( hwndDlg , utf8ToTStr( winName) ) ;
// Set default state
// Set default state
SendMessage ( GetDlgItem ( hwndDlg , IDC_BLEND_IN ) , BM_SETCHECK , currentParam - > BlendIn , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_BLEND_IN ) , BM_SETCHECK , currentParam - > BlendIn , 0 ) ;
@ -669,8 +669,8 @@ INT_PTR CALLBACK MRMDialogCallback (
EnableWindow ( GetDlgItem ( hwndDlg , IDC_UP ) , currentParam - > ListActived ) ;
EnableWindow ( GetDlgItem ( hwndDlg , IDC_UP ) , currentParam - > ListActived ) ;
EnableWindow ( GetDlgItem ( hwndDlg , IDC_DOWN ) , currentParam - > ListActived ) ;
EnableWindow ( GetDlgItem ( hwndDlg , IDC_DOWN ) , currentParam - > ListActived ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MAX ) , currentParam- > DistMax . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MAX ) , utf8ToTStr( currentParam- > DistMax ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_BLEND_LENGTH ) , currentParam- > BlendLength . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_BLEND_LENGTH ) , utf8ToTStr( currentParam- > BlendLength ) ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_ACTIVE_MRM ) , BM_SETCHECK , currentParam - > MRM , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_ACTIVE_MRM ) , BM_SETCHECK , currentParam - > MRM , 0 ) ;
CoarseStateChanged ( hwndDlg ) ;
CoarseStateChanged ( hwndDlg ) ;
@ -678,12 +678,12 @@ INT_PTR CALLBACK MRMDialogCallback (
if ( currentParam - > SkinReduction ! = - 1 )
if ( currentParam - > SkinReduction ! = - 1 )
CheckRadioButton ( hwndDlg , IDC_SKIN_REDUCTION_MIN , IDC_SKIN_REDUCTION_BEST , IDC_SKIN_REDUCTION_MIN + currentParam - > SkinReduction ) ;
CheckRadioButton ( hwndDlg , IDC_SKIN_REDUCTION_MIN , IDC_SKIN_REDUCTION_BEST , IDC_SKIN_REDUCTION_MIN + currentParam - > SkinReduction ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_NB_LOD ) , currentParam- > NbLod . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_NB_LOD ) , utf8ToTStr( currentParam- > NbLod ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIVISOR ) , currentParam- > Divisor . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIVISOR ) , utf8ToTStr( currentParam- > Divisor ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_FINEST ) , currentParam- > DistanceFinest . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_FINEST ) , utf8ToTStr( currentParam- > DistanceFinest ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MIDDLE ) , currentParam- > DistanceMiddle . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MIDDLE ) , utf8ToTStr( currentParam- > DistanceMiddle ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_COARSEST ) , currentParam- > DistanceCoarsest . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_COARSEST ) , utf8ToTStr( currentParam- > DistanceCoarsest ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_BONE_LOD_DISTANCE ) , currentParam- > BoneLodDistance . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_BONE_LOD_DISTANCE ) , utf8ToTStr( currentParam- > BoneLodDistance ) ) ;
// Iterate list
// Iterate list
HWND hwndList = GetDlgItem ( hwndDlg , IDC_LIST1 ) ;
HWND hwndList = GetDlgItem ( hwndDlg , IDC_LIST1 ) ;
@ -717,11 +717,11 @@ INT_PTR CALLBACK MRMDialogCallback (
currentParam - > CoarseMesh = SendMessage ( GetDlgItem ( hwndDlg , IDC_COARSE_MESH ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > CoarseMesh = SendMessage ( GetDlgItem ( hwndDlg , IDC_COARSE_MESH ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > DynamicMesh = SendMessage ( GetDlgItem ( hwndDlg , IDC_DYNAMIC_MESH ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > DynamicMesh = SendMessage ( GetDlgItem ( hwndDlg , IDC_DYNAMIC_MESH ) , BM_GETCHECK , 0 , 0 ) ;
char tmp [ 512 ] ;
TCHAR tmp [ 512 ] ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MAX ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MAX ) , tmp , 512 ) ;
currentParam - > DistMax = tmp ;
currentParam - > DistMax = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_BLEND_LENGTH ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_BLEND_LENGTH ) , tmp , 512 ) ;
currentParam - > BlendLength = tmp ;
currentParam - > BlendLength = tStrToUtf8 ( tmp ) ;
currentParam - > MRM = SendMessage ( GetDlgItem ( hwndDlg , IDC_ACTIVE_MRM ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > MRM = SendMessage ( GetDlgItem ( hwndDlg , IDC_ACTIVE_MRM ) , BM_GETCHECK , 0 , 0 ) ;
@ -734,17 +734,17 @@ INT_PTR CALLBACK MRMDialogCallback (
currentParam - > SkinReduction = 2 ;
currentParam - > SkinReduction = 2 ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_NB_LOD ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_NB_LOD ) , tmp , 512 ) ;
currentParam - > NbLod = tmp ;
currentParam - > NbLod = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIVISOR ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIVISOR ) , tmp , 512 ) ;
currentParam - > Divisor = tmp ;
currentParam - > Divisor = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_FINEST ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_FINEST ) , tmp , 512 ) ;
currentParam - > DistanceFinest = tmp ;
currentParam - > DistanceFinest = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MIDDLE ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_MIDDLE ) , tmp , 512 ) ;
currentParam - > DistanceMiddle = tmp ;
currentParam - > DistanceMiddle = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_COARSEST ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_DIST_COARSEST ) , tmp , 512 ) ;
currentParam - > DistanceCoarsest = tmp ;
currentParam - > DistanceCoarsest = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_BONE_LOD_DISTANCE ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_BONE_LOD_DISTANCE ) , tmp , 512 ) ;
currentParam - > BoneLodDistance = tmp ;
currentParam - > BoneLodDistance = tStrToUtf8 ( tmp ) ;
// Iterate list
// Iterate list
HWND hwndList = GetDlgItem ( hwndDlg , IDC_LIST1 ) ;
HWND hwndList = GetDlgItem ( hwndDlg , IDC_LIST1 ) ;
@ -758,7 +758,7 @@ INT_PTR CALLBACK MRMDialogCallback (
SendMessage ( hwndList , LB_GETTEXT , item , ( LPARAM ) tmp ) ;
SendMessage ( hwndList , LB_GETTEXT , item , ( LPARAM ) tmp ) ;
// Push it back
// Push it back
currentParam - > ListLodName . push_back ( t mp) ;
currentParam - > ListLodName . push_back ( t StrToUtf8( t mp) ) ;
}
}
// default LodCharacter
// default LodCharacter
@ -875,7 +875,7 @@ INT_PTR CALLBACK MRMDialogCallback (
if ( wID ! = LB_ERR )
if ( wID ! = LB_ERR )
{
{
// Get the node name
// Get the node name
char name [ 512 ] ;
TCHAR name [ 512 ] ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIST1 ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIST1 ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
// Find the node
// Find the node
@ -920,8 +920,8 @@ INT_PTR CALLBACK InstanceDialogCallback (
LONG_PTR res = SetWindowLongPtr ( hwndDlg , GWLP_USERDATA , ( LONG_PTR ) lParam ) ;
LONG_PTR res = SetWindowLongPtr ( hwndDlg , GWLP_USERDATA , ( LONG_PTR ) lParam ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_SHAPE ) , currentParam- > InstanceShape . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_SHAPE ) , utf8ToTStr( currentParam- > InstanceShape ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_NAME ) , currentParam- > InstanceName . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_NAME ) , utf8ToTStr( currentParam- > InstanceName ) ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_ADD_TO_SCENE ) , BM_SETCHECK , currentParam - > DontAddToScene , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_ADD_TO_SCENE ) , BM_SETCHECK , currentParam - > DontAddToScene , 0 ) ;
@ -930,7 +930,7 @@ INT_PTR CALLBACK InstanceDialogCallback (
SendMessage ( GetDlgItem ( hwndDlg , IDC_CHECK_COLLISION ) , BM_SETCHECK , currentParam - > Collision , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_CHECK_COLLISION ) , BM_SETCHECK , currentParam - > Collision , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_CHECK_COLLISION_EXTERIOR ) , BM_SETCHECK , currentParam - > CollisionExterior , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_CHECK_COLLISION_EXTERIOR ) , BM_SETCHECK , currentParam - > CollisionExterior , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_NAME ) , currentParam- > InstanceGroupName . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_NAME ) , utf8ToTStr( currentParam- > InstanceGroupName ) ) ;
bool colOk = currentParam - > CollisionMeshGeneration > = 0 & & currentParam - > CollisionMeshGeneration < 4 ;
bool colOk = currentParam - > CollisionMeshGeneration > = 0 & & currentParam - > CollisionMeshGeneration < 4 ;
CheckRadioButton ( hwndDlg , IDC_CAMERA_COL_RADIO1 , IDC_CAMERA_COL_RADIO4 , colOk ? ( IDC_CAMERA_COL_RADIO1 + ( currentParam - > CollisionMeshGeneration ) ) : 0 ) ;
CheckRadioButton ( hwndDlg , IDC_CAMERA_COL_RADIO1 , IDC_CAMERA_COL_RADIO4 , colOk ? ( IDC_CAMERA_COL_RADIO1 + ( currentParam - > CollisionMeshGeneration ) ) : 0 ) ;
@ -950,16 +950,16 @@ INT_PTR CALLBACK InstanceDialogCallback (
break ;
break ;
case IDOK :
case IDOK :
{
{
char tmp [ 512 ] ;
TCHAR tmp [ 512 ] ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_SHAPE ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_SHAPE ) , tmp , 512 ) ;
currentParam - > InstanceShape = tmp ;
currentParam - > InstanceShape = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_NAME ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_NAME ) , tmp , 512 ) ;
currentParam - > InstanceName = tmp ;
currentParam - > InstanceName = tStrToUtf8 ( tmp ) ;
currentParam - > DontAddToScene = SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_ADD_TO_SCENE ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > DontAddToScene = SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_ADD_TO_SCENE ) , BM_GETCHECK , 0 , 0 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_NAME ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INSTANCE_GROUP_NAME ) , tmp , 512 ) ;
currentParam - > InstanceGroupName = tmp ;
currentParam - > InstanceGroupName = tStrToUtf8 ( tmp ) ;
currentParam - > DontExport = SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_EXPORT ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > DontExport = SendMessage ( GetDlgItem ( hwndDlg , IDC_DONT_EXPORT ) , BM_GETCHECK , 0 , 0 ) ;
@ -1036,9 +1036,9 @@ INT_PTR CALLBACK LightmapDialogCallback (
LONG_PTR res = SetWindowLongPtr ( hwndDlg , GWLP_USERDATA , ( LONG_PTR ) lParam ) ;
LONG_PTR res = SetWindowLongPtr ( hwndDlg , GWLP_USERDATA , ( LONG_PTR ) lParam ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_LUMELSIZEMUL ) , currentParam- > LumelSizeMul . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_LUMELSIZEMUL ) , utf8ToTStr( currentParam- > LumelSizeMul ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_RADIUS ) , currentParam- > SoftShadowRadius . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_RADIUS ) , utf8ToTStr( currentParam- > SoftShadowRadius ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_CONELENGTH ) , currentParam- > SoftShadowConeLength . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_CONELENGTH ) , utf8ToTStr( currentParam- > SoftShadowConeLength ) ) ;
// Lighting
// Lighting
SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_REALTIME_LIGHT ) , BM_SETCHECK , currentParam - > ExportRealTimeLight , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_REALTIME_LIGHT ) , BM_SETCHECK , currentParam - > ExportRealTimeLight , 0 ) ;
@ -1048,7 +1048,7 @@ INT_PTR CALLBACK LightmapDialogCallback (
SendMessage ( GetDlgItem ( hwndDlg , IDC_USE_LIGHT_LOCAL_ATTENUATION ) , BM_SETCHECK , currentParam - > UseLightingLocalAttenuation , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_USE_LIGHT_LOCAL_ATTENUATION ) , BM_SETCHECK , currentParam - > UseLightingLocalAttenuation , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_INTERIOR ) , BM_SETCHECK , currentParam - > LightDontCastShadowInterior , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_INTERIOR ) , BM_SETCHECK , currentParam - > LightDontCastShadowInterior , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_EXTERIOR ) , BM_SETCHECK , currentParam - > LightDontCastShadowExterior , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_EXTERIOR ) , BM_SETCHECK , currentParam - > LightDontCastShadowExterior , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , currentParam- > ExportLightMapName . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , utf8ToTStr( currentParam- > ExportLightMapName ) ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_REALTIME_LIGHT_AMBIENT_ADD_SUN ) , BM_SETCHECK , currentParam - > RealTimeAmbientLightAddSun , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_REALTIME_LIGHT_AMBIENT_ADD_SUN ) , BM_SETCHECK , currentParam - > RealTimeAmbientLightAddSun , 0 ) ;
// Set enable disable
// Set enable disable
@ -1065,7 +1065,7 @@ INT_PTR CALLBACK LightmapDialogCallback (
switch ( LOWORD ( wParam ) )
switch ( LOWORD ( wParam ) )
{
{
case IDC_RESET_NAME :
case IDC_RESET_NAME :
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , " GlobalLight " ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , _T ( " GlobalLight " ) ) ;
break ;
break ;
case IDCANCEL :
case IDCANCEL :
EndDialog ( hwndDlg , IDCANCEL ) ;
EndDialog ( hwndDlg , IDCANCEL ) ;
@ -1073,13 +1073,13 @@ INT_PTR CALLBACK LightmapDialogCallback (
case IDOK :
case IDOK :
{
{
// Set default state
// Set default state
char tmp [ 512 ] ;
TCHAR tmp [ 512 ] ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_LUMELSIZEMUL ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_LUMELSIZEMUL ) , tmp , 512 ) ;
currentParam - > LumelSizeMul = t mp;
currentParam - > LumelSizeMul = t StrToUtf8( t mp) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_RADIUS ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_RADIUS ) , tmp , 512 ) ;
currentParam - > SoftShadowRadius = t mp;
currentParam - > SoftShadowRadius = t StrToUtf8( t mp) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_CONELENGTH ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_SOFTSHADOW_CONELENGTH ) , tmp , 512 ) ;
currentParam - > SoftShadowConeLength = t mp;
currentParam - > SoftShadowConeLength = t StrToUtf8( t mp) ;
// RealTime light
// RealTime light
currentParam - > ExportRealTimeLight = SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_REALTIME_LIGHT ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > ExportRealTimeLight = SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_REALTIME_LIGHT ) , BM_GETCHECK , 0 , 0 ) ;
@ -1090,7 +1090,7 @@ INT_PTR CALLBACK LightmapDialogCallback (
currentParam - > LightDontCastShadowExterior = SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_EXTERIOR ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > LightDontCastShadowExterior = SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGHT_DONT_CAST_SHADOW_EXTERIOR ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > ExportLightMapAnimated = SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_ANIMATED ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > ExportLightMapAnimated = SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_ANIMATED ) , BM_GETCHECK , 0 , 0 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_LIGHTMAP_NAME ) , tmp , 512 ) ;
currentParam - > ExportLightMapName = t mp;
currentParam - > ExportLightMapName = t StrToUtf8( t mp) ;
currentParam - > RealTimeAmbientLightAddSun = SendMessage ( GetDlgItem ( hwndDlg , IDC_REALTIME_LIGHT_AMBIENT_ADD_SUN ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > RealTimeAmbientLightAddSun = SendMessage ( GetDlgItem ( hwndDlg , IDC_REALTIME_LIGHT_AMBIENT_ADD_SUN ) , BM_GETCHECK , 0 , 0 ) ;
// Get the acceleration type
// Get the acceleration type
@ -1132,7 +1132,7 @@ INT_PTR CALLBACK LightmapDialogCallback (
if ( wID ! = LB_ERR )
if ( wID ! = LB_ERR )
{
{
// Get the node name
// Get the node name
char name [ 512 ] ;
TCHAR name [ 512 ] ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIST1 ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIST1 ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
// Find the node
// Find the node
@ -1432,7 +1432,7 @@ INT_PTR CALLBACK LMCCopyFromDialogCallback(
lmcParam - > SelectionDone = true ;
lmcParam - > SelectionDone = true ;
// Get the node name
// Get the node name
char name [ 512 ] ;
TCHAR name [ 512 ] ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LMC_COPY_LIST ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LMC_COPY_LIST ) , LB_GETTEXT , wID , ( LPARAM ) ( LPCTSTR ) name ) ;
// Find the node
// Find the node
@ -1679,7 +1679,7 @@ INT_PTR CALLBACK VegetableDialogCallback (
CheckRadioButton ( hwndDlg , IDC_CENTER_NULL , IDC_CENTER_Z , IDC_CENTER_NULL + currentParam - > VegetableBendCenter ) ;
CheckRadioButton ( hwndDlg , IDC_CENTER_NULL , IDC_CENTER_Z , IDC_CENTER_NULL + currentParam - > VegetableBendCenter ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_VEGETABLE_BEND_FACTOR ) , currentParam- > VegetableBendFactor . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_VEGETABLE_BEND_FACTOR ) , utf8ToTStr( currentParam- > VegetableBendFactor ) ) ;
VegetableStateChanged ( hwndDlg ) ;
VegetableStateChanged ( hwndDlg ) ;
}
}
@ -1732,9 +1732,9 @@ INT_PTR CALLBACK VegetableDialogCallback (
else
else
currentParam - > VegetableBendCenter = - 1 ;
currentParam - > VegetableBendCenter = - 1 ;
char tmp [ 512 ] ;
TCHAR tmp [ 512 ] ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_VEGETABLE_BEND_FACTOR ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_VEGETABLE_BEND_FACTOR ) , tmp , 512 ) ;
currentParam - > VegetableBendFactor = t mp;
currentParam - > VegetableBendFactor = t StrToUtf8( t mp) ;
}
}
break ;
break ;
case IDC_VEGETABLE :
case IDC_VEGETABLE :
@ -1930,7 +1930,7 @@ static int VPWTBiasStaticId[CVPWindTreeAppData::HrcDepth]=
void updateVPWTStatic ( HWND hwndDlg , uint type , uint depth , const CVPWindTreeAppData & vpwt )
void updateVPWTStatic ( HWND hwndDlg , uint type , uint depth , const CVPWindTreeAppData & vpwt )
{
{
int sliderValue ;
int sliderValue ;
char stmp [ 256 ] ;
TCHAR stmp [ 256 ] ;
float nticks = CVPWindTreeAppData : : NumTicks ;
float nticks = CVPWindTreeAppData : : NumTicks ;
float scale ;
float scale ;
@ -1953,29 +1953,29 @@ void updateVPWTStatic(HWND hwndDlg, uint type, uint depth, const CVPWindTreeAppD
{
{
case 0 :
case 0 :
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTFreqSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTFreqSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
_stprintf ( stmp , " %.2f " , scale * float ( sliderValue ) / nticks ) ;
_stprintf ( stmp , _T ( " %.2f " ) , scale * float ( sliderValue ) / nticks ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTFreqStaticId [ depth ] ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTFreqStaticId [ depth ] ) , stmp ) ;
break ;
break ;
case 1 :
case 1 :
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTFreqWDSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTFreqWDSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
_stprintf ( stmp , " %.2f " , scale * float ( sliderValue ) / nticks ) ;
_stprintf ( stmp , _T ( " %.2f " ) , scale * float ( sliderValue ) / nticks ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTFreqWDStaticId [ depth ] ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTFreqWDStaticId [ depth ] ) , stmp ) ;
break ;
break ;
case 2 :
case 2 :
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTDistXYSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTDistXYSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
_stprintf ( stmp , " %.2f " , scale * float ( sliderValue ) / nticks ) ;
_stprintf ( stmp , _T ( " %.2f " ) , scale * float ( sliderValue ) / nticks ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTDistXYStaticId [ depth ] ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTDistXYStaticId [ depth ] ) , stmp ) ;
break ;
break ;
case 3 :
case 3 :
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTDistZSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTDistZSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
_stprintf ( stmp , " %.2f " , scale * float ( sliderValue ) / nticks ) ;
_stprintf ( stmp , _T ( " %.2f " ) , scale * float ( sliderValue ) / nticks ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTDistZStaticId [ depth ] ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTDistZStaticId [ depth ] ) , stmp ) ;
break ;
break ;
case 4 :
case 4 :
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTBiasSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
sliderValue = SendDlgItemMessage ( hwndDlg , VPWTBiasSliderId [ depth ] , TBM_GETPOS , 0 , 0 ) ;
// expand to -2 to 2.
// expand to -2 to 2.
float biasVal = 4 * float ( sliderValue ) / nticks - 2 ;
float biasVal = 4 * float ( sliderValue ) / nticks - 2 ;
_stprintf ( stmp , " %.2f " , biasVal ) ;
_stprintf ( stmp , _T ( " %.2f " ) , biasVal ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTBiasStaticId [ depth ] ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , VPWTBiasStaticId [ depth ] ) , stmp ) ;
break ;
break ;
}
}
@ -1987,14 +1987,14 @@ static void concatEdit2Lines(HWND edit)
const uint lineLen = 1000 ;
const uint lineLen = 1000 ;
uint n ;
uint n ;
// retrieve the 2 lines.
// retrieve the 2 lines.
char tmp0 [ 2 * lineLen ] ;
TCHAR tmp0 [ 2 * lineLen ] ;
char tmp1 [ lineLen ] ;
TCHAR tmp1 [ lineLen ] ;
* ( WORD * ) tmp0 = lineLen ;
* ( WORD * ) tmp0 = lineLen ;
* ( WORD * ) tmp1 = lineLen ;
* ( WORD * ) tmp1 = lineLen ;
n = SendMessage ( edit , EM_GETLINE , 0 , ( L ONG ) tmp0 ) ; tmp0 [ n ] = 0 ;
n = SendMessage ( edit , EM_GETLINE , 0 , ( L PARAM ) tmp0 ) ; tmp0 [ n ] = 0 ;
n = SendMessage ( edit , EM_GETLINE , 1 , ( L ONG ) tmp1 ) ; tmp1 [ n ] = 0 ;
n = SendMessage ( edit , EM_GETLINE , 1 , ( L PARAM ) tmp1 ) ; tmp1 [ n ] = 0 ;
// concat and update the CEdit.
// concat and update the CEdit.
SetWindowText ( edit , str cat( tmp0 , tmp1 ) ) ;
SetWindowText ( edit , _tc scat( tmp0 , tmp1 ) ) ;
}
}
@ -2055,10 +2055,10 @@ INT_PTR CALLBACK VPWindTreeCallback (
// Init Global. editBox
// Init Global. editBox
char stmp [ 256 ] ;
TCHAR stmp [ 256 ] ;
_stprintf ( stmp , " %.2f " , vpwt . FreqScale ) ;
_stprintf ( stmp , _T ( " %.2f " ) , vpwt . FreqScale ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_FREQ_SCALE ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_FREQ_SCALE ) , stmp ) ;
_stprintf ( stmp , " %.2f " , vpwt . DistScale ) ;
_stprintf ( stmp , _T ( " %.2f " ) , vpwt . DistScale ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_DIST_SCALE ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_DIST_SCALE ) , stmp ) ;
SendDlgItemMessage ( hwndDlg , IDC_CHECK_VP_SPECLIGHT , BM_SETCHECK , vpwt . SpecularLighting , 0 ) ;
SendDlgItemMessage ( hwndDlg , IDC_CHECK_VP_SPECLIGHT , BM_SETCHECK , vpwt . SpecularLighting , 0 ) ;
@ -2102,7 +2102,7 @@ INT_PTR CALLBACK VPWindTreeCallback (
{
{
CVPWindTreeAppData & vpwt = currentParam - > VertexProgramWindTree ;
CVPWindTreeAppData & vpwt = currentParam - > VertexProgramWindTree ;
int nticks = CVPWindTreeAppData : : NumTicks ;
int nticks = CVPWindTreeAppData : : NumTicks ;
char stmp [ 256 ] ;
TCHAR stmp [ 256 ] ;
float val ;
float val ;
if ( HIWORD ( wParam ) = = BN_CLICKED )
if ( HIWORD ( wParam ) = = BN_CLICKED )
@ -2195,7 +2195,7 @@ INT_PTR CALLBACK VPWindTreeCallback (
}
}
}
}
// Update Scale Edit text.
// Update Scale Edit text.
_stprintf ( stmp , " %.2f " , vpwt . FreqScale ) ;
_stprintf ( stmp , _T ( " %.2f " ) , vpwt . FreqScale ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_FREQ_SCALE ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_FREQ_SCALE ) , stmp ) ;
}
}
break ;
break ;
@ -2216,7 +2216,7 @@ INT_PTR CALLBACK VPWindTreeCallback (
}
}
}
}
// Update Scale Edit text.
// Update Scale Edit text.
_stprintf ( stmp , " %.2f " , vpwt . DistScale ) ;
_stprintf ( stmp , _T ( " %.2f " ) , vpwt . DistScale ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_DIST_SCALE ) , stmp ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_VPWT_DIST_SCALE ) , stmp ) ;
}
}
break ;
break ;
@ -2290,34 +2290,34 @@ INT_PTR CALLBACK MiscDialogCallback (
// Ligoscape
// Ligoscape
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGO_SYMMETRY ) , BM_SETCHECK , currentParam - > LigoSymmetry , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_LIGO_SYMMETRY ) , BM_SETCHECK , currentParam - > LigoSymmetry , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_LIGO_ROTATE ) , currentParam- > LigoRotate . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_LIGO_ROTATE ) , utf8ToTStr( currentParam- > LigoRotate ) ) ;
// SWT
// SWT
SendMessage ( GetDlgItem ( hwndDlg , IDC_SWT ) , BM_SETCHECK , currentParam - > SWT , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_SWT ) , BM_SETCHECK , currentParam - > SWT , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_SWT_WEIGHT ) , currentParam- > SWTWeight . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_SWT_WEIGHT ) , utf8ToTStr( currentParam- > SWTWeight ) ) ;
// Radial normals
// Radial normals
for ( uint smoothGroup = 0 ; smoothGroup < NEL3D_RADIAL_NORMAL_COUNT ; smoothGroup + + )
for ( uint smoothGroup = 0 ; smoothGroup < NEL3D_RADIAL_NORMAL_COUNT ; smoothGroup + + )
SetWindowText ( GetDlgItem ( hwndDlg , IDC_RADIAL_NORMAL_29 + smoothGroup ) , currentParam- > RadialNormals [ smoothGroup ] . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_RADIAL_NORMAL_29 + smoothGroup ) , utf8ToTStr( currentParam- > RadialNormals [ smoothGroup ] ) ) ;
// Mesh interfaces
// Mesh interfaces
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_FILE ) , currentParam- > InterfaceFileName .c_str ( )) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_FILE ) , utf8ToTStr( currentParam- > InterfaceFileName )) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_THRESHOLD ) ,
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_THRESHOLD ) ,
currentParam - > InterfaceThreshold ! = - 1.f ? toStringMax( currentParam - > InterfaceThreshold ) . c_str ( )
currentParam - > InterfaceThreshold ! = - 1.f ? utf8ToTStr( toStringMax( currentParam - > InterfaceThreshold ) )
: " "
: _T ( " " )
) ;
) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_GET_INTERFACE_NORMAL_FROM_SCENE_OBJECTS ) , BM_SETCHECK , currentParam - > GetInterfaceNormalsFromSceneObjects , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_GET_INTERFACE_NORMAL_FROM_SCENE_OBJECTS ) , BM_SETCHECK , currentParam - > GetInterfaceNormalsFromSceneObjects , 0 ) ;
// Skeleton Scale
// Skeleton Scale
SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_BONE_SCALE ) , BM_SETCHECK , currentParam - > ExportBoneScale , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_EXPORT_BONE_SCALE ) , BM_SETCHECK , currentParam - > ExportBoneScale , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_BONE_SCALE_NAME_EXT ) , currentParam- > ExportBoneScaleNameExt . c_str ( ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_EXPORT_BONE_SCALE_NAME_EXT ) , utf8ToTStr( currentParam- > ExportBoneScaleNameExt ) ) ;
// Remanence
// Remanence
SendMessage ( GetDlgItem ( hwndDlg , IDC_USE_REMANENCE ) , BM_SETCHECK , currentParam - > UseRemanence , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_USE_REMANENCE ) , BM_SETCHECK , currentParam - > UseRemanence , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SHIFTING_TEXTURE ) , BM_SETCHECK , currentParam - > RemanenceShiftingTexture , 0 ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SHIFTING_TEXTURE ) , BM_SETCHECK , currentParam - > RemanenceShiftingTexture , 0 ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SLICE_NUMBER ) , currentParam - > RemanenceSliceNumber ! = - 1 ? toStringMax( currentParam - > RemanenceSliceNumber ) .c_str ( ) : " " ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SLICE_NUMBER ) , currentParam - > RemanenceSliceNumber ! = - 1 ? utf8ToTStr( toStringMax( currentParam - > RemanenceSliceNumber ) ) : _T ( " " ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SAMPLING_PERIOD ) , currentParam - > RemanenceSamplingPeriod ! = - 1 ? toStringMax( currentParam - > RemanenceSamplingPeriod ) .c_str ( ) : " " ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_SAMPLING_PERIOD ) , currentParam - > RemanenceSamplingPeriod ! = - 1 ? utf8ToTStr( toStringMax( currentParam - > RemanenceSamplingPeriod ) ) : _T ( " " ) ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_ROLLUP_RATIO ) , currentParam - > RemanenceRollupRatio ! = - 1 ? toStringMax( currentParam - > RemanenceRollupRatio ) .c_str ( ) : " " ) ;
SetWindowText ( GetDlgItem ( hwndDlg , IDC_REMANENCE_ROLLUP_RATIO ) , currentParam - > RemanenceRollupRatio ! = - 1 ? utf8ToTStr( toStringMax( currentParam - > RemanenceRollupRatio ) ) : _T ( " " ) ) ;
}
}
break ;
break ;
@ -2357,7 +2357,7 @@ INT_PTR CALLBACK MiscDialogCallback (
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_FILE ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_FILE ) , tmp , 512 ) ;
currentParam - > InterfaceFileName = tStrToUtf8 ( tmp ) ;
currentParam - > InterfaceFileName = tStrToUtf8 ( tmp ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_THRESHOLD ) , tmp , 512 ) ;
GetWindowText ( GetDlgItem ( hwndDlg , IDC_EDIT_INTERFACE_THRESHOLD ) , tmp , 512 ) ;
if ( str len( tmp ) ! = 0 )
if ( _tc slen( tmp ) ! = 0 )
currentParam - > InterfaceThreshold = toFloatMax ( tmp ) ;
currentParam - > InterfaceThreshold = toFloatMax ( tmp ) ;
currentParam - > GetInterfaceNormalsFromSceneObjects = SendMessage ( GetDlgItem ( hwndDlg , IDC_GET_INTERFACE_NORMAL_FROM_SCENE_OBJECTS ) , BM_GETCHECK , 0 , 0 ) ;
currentParam - > GetInterfaceNormalsFromSceneObjects = SendMessage ( GetDlgItem ( hwndDlg , IDC_GET_INTERFACE_NORMAL_FROM_SCENE_OBJECTS ) , BM_GETCHECK , 0 , 0 ) ;
@ -2492,9 +2492,9 @@ INT_PTR CALLBACK LodDialogCallback (
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
currentParam = ( CLodDialogBoxParam * ) GetWindowLongPtr ( hwndDlg , GWLP_USERDATA ) ;
// Window text
// Window text
std : : string winName = ( * ( currentParam - > ListNode - > begin ( ) ) ) - > GetName ( ) ;
std : : string winName = tStrToUtf8 ( ( * ( currentParam - > ListNode - > begin ( ) ) ) - > GetName ( ) ) ;
winName = " Node properties ( " + winName + ( ( currentParam - > ListNode - > size ( ) > 1 ) ? " ...) " : " ) " ) ;
winName = " Node properties ( " + winName + ( ( currentParam - > ListNode - > size ( ) > 1 ) ? " ...) " : " ) " ) ;
SetWindowText ( hwndDlg , winName. c_str ( ) ) ;
SetWindowText ( hwndDlg , utf8ToTStr( winName) ) ;
// Move dialog
// Move dialog
RECT windowRect , desktopRect ;
RECT windowRect , desktopRect ;
@ -2522,7 +2522,7 @@ INT_PTR CALLBACK LodDialogCallback (
// Insert a tab
// Insert a tab
TCITEM tabItem ;
TCITEM tabItem ;
tabItem . mask = TCIF_TEXT ;
tabItem . mask = TCIF_TEXT ;
tabItem . pszText = ( char * ) SubText [ tab ] ;
tabItem . pszText = ( LPTSTR ) SubText [ tab ] ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_TAB ) , TCM_INSERTITEM , SendMessage ( GetDlgItem ( hwndDlg , IDC_TAB ) , TCM_GETITEMCOUNT , 0 , 0 ) , ( LPARAM ) & tabItem ) ;
SendMessage ( GetDlgItem ( hwndDlg , IDC_TAB ) , TCM_INSERTITEM , SendMessage ( GetDlgItem ( hwndDlg , IDC_TAB ) , TCM_GETITEMCOUNT , 0 , 0 ) , ( LPARAM ) & tabItem ) ;
// Create the dialog
// Create the dialog