doom3-bfg/neo/renderer/Cinematic.cpp

196 lines
3.7 KiB
C++
Raw Normal View History

2012-11-26 18:58:24 +00:00
/*
===========================================================================
Doom 3 BFG Edition GPL Source Code
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
2012-11-26 18:58:24 +00:00
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
2012-11-26 18:58:24 +00:00
Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Doom 3 BFG Edition Source Code 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 Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#pragma hdrstop
#include "precompiled.h"
2012-11-26 18:58:24 +00:00
extern idCVar s_noSound;
#include "tr_local.h"
//===========================================
/*
==============
idCinematic::InitCinematic
==============
*/
void idCinematic::InitCinematic( void )
{
2012-11-26 18:58:24 +00:00
}
/*
==============
idCinematic::ShutdownCinematic
==============
*/
void idCinematic::ShutdownCinematic( void )
{
2012-11-26 18:58:24 +00:00
}
/*
==============
idCinematic::Alloc
==============
*/
idCinematic* idCinematic::Alloc()
{
2012-11-26 18:58:24 +00:00
return new idCinematic;
}
/*
==============
idCinematic::~idCinematic
==============
*/
idCinematic::~idCinematic( )
{
2012-11-26 18:58:24 +00:00
Close();
}
/*
==============
idCinematic::InitFromFile
==============
*/
bool idCinematic::InitFromFile( const char* qpath, bool looping )
{
2012-11-26 18:58:24 +00:00
return false;
}
/*
==============
idCinematic::AnimationLength
==============
*/
int idCinematic::AnimationLength()
{
2012-11-26 18:58:24 +00:00
return 0;
}
/*
==============
idCinematic::GetStartTime
==============
*/
int idCinematic::GetStartTime()
{
2012-11-26 18:58:24 +00:00
return -1;
}
/*
==============
idCinematic::ResetTime
==============
*/
void idCinematic::ResetTime( int milliseconds )
{
2012-11-26 18:58:24 +00:00
}
/*
==============
idCinematic::ImageForTime
==============
*/
cinData_t idCinematic::ImageForTime( int milliseconds )
{
2012-11-26 18:58:24 +00:00
cinData_t c;
memset( &c, 0, sizeof( c ) );
return c;
}
/*
==============
idCinematic::ExportToTGA
==============
*/
void idCinematic::ExportToTGA( bool skipExisting )
{
2012-11-26 18:58:24 +00:00
}
/*
==============
idCinematic::GetFrameRate
==============
*/
float idCinematic::GetFrameRate() const
{
2012-11-26 18:58:24 +00:00
return 30.0f;
}
/*
==============
idCinematic::Close
==============
*/
void idCinematic::Close()
{
2012-11-26 18:58:24 +00:00
}
/*
==============
idSndWindow::InitFromFile
==============
*/
bool idSndWindow::InitFromFile( const char* qpath, bool looping )
{
2012-11-26 18:58:24 +00:00
idStr fname = qpath;
2012-11-26 18:58:24 +00:00
fname.ToLower();
if( !fname.Icmp( "waveform" ) )
{
2012-11-26 18:58:24 +00:00
showWaveform = true;
}
else
{
2012-11-26 18:58:24 +00:00
showWaveform = false;
}
return true;
}
/*
==============
idSndWindow::ImageForTime
==============
*/
cinData_t idSndWindow::ImageForTime( int milliseconds )
{
2012-11-26 18:58:24 +00:00
return soundSystem->ImageForTime( milliseconds, showWaveform );
}
/*
==============
idSndWindow::AnimationLength
==============
*/
int idSndWindow::AnimationLength()
{
2012-11-26 18:58:24 +00:00
return -1;
}