📄 vox_private.h
字号:
//=========== (C) Copyright 1999 Valve, L.L.C. All rights reserved. ===========
//
// The copyright to the contents herein is the property of Valve, L.L.C.
// The contents may be used and/or copied only with the written permission of
// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
// the agreement/contract under which the contents have been supplied.
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================
#ifndef VOX_PRIVATE_H
#define VOX_PRIVATE_H
#pragma once
#ifndef VOX_H
#include "vox.h"
#endif
#ifndef UTLVECTOR_H
#include "utlvector.h"
#endif
struct channel_t;
class CSfxTable;
class CAudioMixer;
typedef struct voxword_s
{
int volume; // increase percent, ie: 125 = 125% increase
int pitch; // pitch shift up percent
int start; // offset start of wave percent
int end; // offset end of wave percent
int cbtrim; // end of wave after being trimmed to 'end'
int fKeepCached; // 1 if this word was already in cache before sentence referenced it
int samplefrac; // if pitch shifting, this is position into wav * 256
int timecompress; // % of wave to skip during playback (causes no pitch shift)
CSfxTable *sfx; // name and cache pointer
} voxword_t;
#define CVOXWORDMAX 32
#define CVOXSENTENCEMAX 24
#define CVOXZEROSCANMAX 255 // scan up to this many samples for next zero crossing
struct sentence_t
{
char *pName;
float length;
};
extern CUtlVector<sentence_t> g_Sentences;
extern int VOX_FPaintPitchChannelFrom8( channel_t *ch, sfxcache_t *sc, int count, int pitch, int timecompress );
extern void VOX_TrimStartEndTimes( channel_t *ch, sfxcache_t *sc );
extern char *VOX_GetDirectory( char *szpath, char *psz );
extern int VOX_ParseWordParams( char *psz, voxword_t *pvoxword, int fFirst );
extern void VOX_SetChanVol( channel_t *ch );
extern char **VOX_ParseString( char *psz );
extern CAudioMixer *CreateSentenceMixer( voxword_t *pwords );
#endif // VOX_PRIVATE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -