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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include <stdio.h>
#include "resource.h"
#include "ChannelProperties.h"
#include "ChoreoView.h"
#include "choreoactor.h"
#include "choreoscene.h"
#include "mdlviewer.h"
static CChannelParams g_Params;
//-----------------------------------------------------------------------------
// Purpose:
// Input : hwndDlg -
// uMsg -
// wParam -
// lParam -
// Output : static BOOL CALLBACK ChannelPropertiesDialogProc
//-----------------------------------------------------------------------------
static BOOL CALLBACK ChannelPropertiesDialogProc ( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
switch(uMsg)
{
case WM_INITDIALOG:
// Insert code here to put the string (to find and replace with)
// into the edit controls.
// ...
{
g_Params.PositionSelf( hwndDlg );
SetDlgItemText( hwndDlg, IDC_CHANNELNAME, g_Params.m_szName );
HWND control = GetDlgItem( hwndDlg, IDC_ACTORCHOICE );
if ( !g_Params.m_bShowActors )
{
// Hide the combo box
if ( control )
{
ShowWindow( control, SW_HIDE );
}
control = GetDlgItem( hwndDlg, IDC_STATIC_ACTOR );
if ( control )
{
ShowWindow( control, SW_HIDE );
}
}
else
{
SendMessage( control, CB_RESETCONTENT, 0, 0 );
if ( g_Params.m_pScene )
{
for ( int i = 0 ; i < g_Params.m_pScene->GetNumActors() ; i++ )
{
CChoreoActor *actor = g_Params.m_pScene->GetActor( i );
if ( actor )
{
// add text to combo box
SendMessage( control, CB_ADDSTRING, 0, (LPARAM)actor->GetName() );
}
}
}
SendMessage( control, CB_SETCURSEL, (WPARAM)0, (LPARAM)0 );
}
SetWindowText( hwndDlg, g_Params.m_szDialogTitle );
SetFocus( GetDlgItem( hwndDlg, IDC_CHANNELNAME ) );
}
return FALSE;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case IDOK:
g_Params.m_szName[ 0 ] = 0;
GetDlgItemText( hwndDlg, IDC_CHANNELNAME, g_Params.m_szName, 256 );
if ( g_Params.m_bShowActors )
{
HWND control = GetDlgItem( hwndDlg, IDC_ACTORCHOICE );
if ( control )
{
SendMessage( control, WM_GETTEXT, (WPARAM)sizeof( g_Params.m_szSelectedActor ), (LPARAM)g_Params.m_szSelectedActor );
}
}
EndDialog( hwndDlg, 1 );
break;
case IDCANCEL:
EndDialog( hwndDlg, 0 );
break;
}
return TRUE;
}
return FALSE;
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *view -
// *actor -
// Output : int
//-----------------------------------------------------------------------------
int ChannelProperties( CChannelParams *params )
{
g_Params = *params;
int retval = DialogBox( (HINSTANCE)GetModuleHandle( 0 ),
MAKEINTRESOURCE( IDD_CHANNELPROPERTIES ),
(HWND)g_MDLViewer->getHandle(),
(DLGPROC)ChannelPropertiesDialogProc );
*params = g_Params;
return retval;
}
|