summaryrefslogtreecommitdiff
path: root/utils/hlfaceposer/addsoundentry.cpp
blob: 979af560c3d20fc462d994c0b9a8256f28c836e5 (plain) (blame)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================//
#include "cbase.h"
#include "mxtk/mx.h"
#include "resource.h"
#include "AddSoundEntry.h"
#include "mdlviewer.h"
#include "SoundEmitterSystem/isoundemittersystembase.h"
#include "filesystem.h"

static CAddSoundParams g_Params;

static void PopulateScriptList( HWND wnd )
{
	HWND control = GetDlgItem( wnd, IDC_SOUNDSCRIPT );
	if ( !control )
	{
		return;
	}

	SendMessage( control, CB_RESETCONTENT, 0, 0 ); 

	int c = soundemitter->GetNumSoundScripts();
	for ( int i = 0; i < c; i++ )
	{
		// add text to combo box
		SendMessage( control, CB_ADDSTRING, 0, (LPARAM)soundemitter->GetSoundScriptName( i ) );

		if ( i == 0 && !g_Params.m_szScriptName[ 0 ] )
		{
			SendMessage( control, WM_SETTEXT , 0, (LPARAM)soundemitter->GetSoundScriptName( i ) );
		}
	}

	if ( g_Params.m_szScriptName[ 0 ] )
	{
		SendMessage( control, WM_SETTEXT , 0, (LPARAM)g_Params.m_szScriptName );
	}
}

//-----------------------------------------------------------------------------
// Purpose: 
// Input  : hwndDlg - 
//			uMsg - 
//			wParam - 
//			lParam - 
// Output : static BOOL CALLBACK
//-----------------------------------------------------------------------------
static BOOL CALLBACK AddSoundPropertiesDialogProc( 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 );

			PopulateScriptList( hwndDlg );

			SetDlgItemText( hwndDlg, IDC_SOUNDNAME, g_Params.m_szSoundName );
			if ( g_Params.m_bReadOnlySoundName )
			{
				HWND ctrl = GetDlgItem( hwndDlg, IDC_SOUNDNAME );
				if ( ctrl )
				{
					SendMessage( ctrl, EM_SETREADONLY, (WPARAM)TRUE, 0 );
				}
			}

			SetWindowText( hwndDlg, g_Params.m_szDialogTitle );

			SetFocus( GetDlgItem( hwndDlg, IDC_SOUNDNAME ) );
		}
		return FALSE;  
		
    case WM_COMMAND:
		switch (LOWORD(wParam))
		{
		case IDOK:
			{
				g_Params.m_szSoundName[ 0 ] = 0;
				g_Params.m_szScriptName[ 0 ] = 0;
				GetDlgItemText( hwndDlg, IDC_SOUNDNAME, g_Params.m_szSoundName, sizeof( g_Params.m_szSoundName ) );
				GetDlgItemText( hwndDlg, IDC_SOUNDSCRIPT, g_Params.m_szScriptName, sizeof( g_Params.m_szScriptName ) );

				// Don't exit...
				if ( !g_Params.m_szSoundName[ 0 ] || !g_Params.m_szScriptName[ 0 ] )
					return TRUE;

				// Don't stompt existing sounds
				int idx = soundemitter->GetSoundIndex( g_Params.m_szSoundName );
				if ( soundemitter->IsValidIndex( idx ) )
				{
					if ( !g_Params.m_bAllowExistingSound )
					{
						mxMessageBox( NULL, va( "Sound '%s' already exists",	
							g_Params.m_szSoundName ), g_appTitle, MX_MB_OK );
					}
					else
					{
						EndDialog( hwndDlg, 1 );
					}
					return TRUE;
				}

				// Check out script
				if ( !filesystem->FileExists( g_Params.m_szScriptName ) )
				{
					mxMessageBox( NULL, va( "Script '%s' does not exist",
						g_Params.m_szScriptName ), g_appTitle, MX_MB_OK );
					return TRUE;
				}

				if ( !filesystem->IsFileWritable( g_Params.m_szScriptName ) )
				{
					mxMessageBox( NULL, va( "Script '%s' is read-only, you need to check it out of VSS",
						g_Params.m_szScriptName ), g_appTitle, MX_MB_OK );
					return TRUE;
				}

				// Add the entry
				CSoundParametersInternal params;
				params.SetChannel( CHAN_VOICE );
				params.SetSoundLevel( SNDLVL_TALKING );
				
				soundemitter->ExpandSoundNameMacros( params, g_Params.m_szWaveFile );
				soundemitter->AddSound( g_Params.m_szSoundName, g_Params.m_szScriptName, params );

				EndDialog( hwndDlg, 1 );
			}
			break;
        case IDCANCEL:
			EndDialog( hwndDlg, 0 );
			break;
		}
		return TRUE;
	}
	return FALSE;
}

//-----------------------------------------------------------------------------
// Purpose: 
// Input  : *view - 
//			*actor - 
// Output : int
//-----------------------------------------------------------------------------
int AddSound( CAddSoundParams *params, HWND parent )
{
	g_Params = *params;

	int retval = DialogBox( (HINSTANCE)GetModuleHandle( 0 ), 
		MAKEINTRESOURCE( IDD_ADDSOUNDENTRY ),
		parent,
		(DLGPROC)AddSoundPropertiesDialogProc );

	*params = g_Params;

	return retval;
}