mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Engine directory for ticket #1
This commit is contained in:
parent
352279af7a
commit
7dbfe6994d
3795 changed files with 1363358 additions and 0 deletions
291
Engine/source/platform/platformRedBook.cpp
Normal file
291
Engine/source/platform/platformRedBook.cpp
Normal file
|
|
@ -0,0 +1,291 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include "core/strings/stringFunctions.h"
|
||||
#include "console/console.h"
|
||||
#include "platform/platformRedBook.h"
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Class: RedBookDevice
|
||||
//------------------------------------------------------------------------------
|
||||
RedBookDevice::RedBookDevice()
|
||||
{
|
||||
mAcquired = false;
|
||||
mDeviceName = 0;
|
||||
}
|
||||
|
||||
RedBookDevice::~RedBookDevice()
|
||||
{
|
||||
delete [] mDeviceName;
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Class: RedBook
|
||||
//------------------------------------------------------------------------------
|
||||
Vector<RedBookDevice *> RedBook::smDeviceList(__FILE__, __LINE__);
|
||||
RedBookDevice * RedBook::smCurrentDevice;
|
||||
char RedBook::smLastError[1024];
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void RedBook::init()
|
||||
{
|
||||
}
|
||||
|
||||
void RedBook::destroy()
|
||||
{
|
||||
close();
|
||||
|
||||
for( Vector<RedBookDevice*>::iterator i = smDeviceList.begin( ); i != smDeviceList.end( ); i++ ) {
|
||||
delete *i;
|
||||
}
|
||||
|
||||
smDeviceList.clear( );
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void RedBook::installDevice(RedBookDevice * device)
|
||||
{
|
||||
smDeviceList.push_back(device);
|
||||
}
|
||||
|
||||
RedBookDevice * RedBook::getCurrentDevice()
|
||||
{
|
||||
return(smCurrentDevice);
|
||||
}
|
||||
|
||||
U32 RedBook::getDeviceCount()
|
||||
{
|
||||
return(smDeviceList.size());
|
||||
}
|
||||
|
||||
const char * RedBook::getDeviceName(U32 idx)
|
||||
{
|
||||
if(idx >= getDeviceCount())
|
||||
{
|
||||
setLastError("Invalid device index");
|
||||
return("");
|
||||
}
|
||||
return(smDeviceList[idx]->mDeviceName);
|
||||
}
|
||||
|
||||
void RedBook::setLastError(const char * error)
|
||||
{
|
||||
if(!error || dStrlen(error) >= sizeof(smLastError))
|
||||
setLastError("Invalid error string passed");
|
||||
else
|
||||
dStrcpy(smLastError, error);
|
||||
}
|
||||
|
||||
const char * RedBook::getLastError()
|
||||
{
|
||||
return(smLastError);
|
||||
}
|
||||
|
||||
void RedBook::handleCallback(U32 type)
|
||||
{
|
||||
switch(type)
|
||||
{
|
||||
case PlayFinished:
|
||||
Con::executef("RedBookCallback", "PlayFinished");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
bool RedBook::open(const char * deviceName)
|
||||
{
|
||||
if(!deviceName)
|
||||
{
|
||||
setLastError("Invalid device name");
|
||||
return(false);
|
||||
}
|
||||
|
||||
for(U32 i = 0; i < smDeviceList.size(); i++)
|
||||
if(!dStricmp(deviceName, smDeviceList[i]->mDeviceName))
|
||||
return(open(smDeviceList[i]));
|
||||
|
||||
setLastError("Failed to find device");
|
||||
return(false);
|
||||
}
|
||||
|
||||
bool RedBook::open(RedBookDevice * device)
|
||||
{
|
||||
if(!device)
|
||||
{
|
||||
setLastError("Invalid device passed");
|
||||
return(false);
|
||||
}
|
||||
|
||||
close();
|
||||
smCurrentDevice = device;
|
||||
return(smCurrentDevice->open());
|
||||
}
|
||||
|
||||
bool RedBook::close()
|
||||
{
|
||||
if(smCurrentDevice)
|
||||
{
|
||||
bool ret = smCurrentDevice->close();
|
||||
smCurrentDevice = 0;
|
||||
return(ret);
|
||||
}
|
||||
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
|
||||
bool RedBook::play(U32 track)
|
||||
{
|
||||
if(!smCurrentDevice)
|
||||
{
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
return(smCurrentDevice->play(track));
|
||||
}
|
||||
|
||||
bool RedBook::stop()
|
||||
{
|
||||
if(!smCurrentDevice)
|
||||
{
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
return(smCurrentDevice->stop());
|
||||
}
|
||||
|
||||
bool RedBook::getTrackCount(U32 * trackCount)
|
||||
{
|
||||
if(!smCurrentDevice)
|
||||
{
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
return(smCurrentDevice->getTrackCount(trackCount));
|
||||
}
|
||||
|
||||
bool RedBook::getVolume(F32 * volume)
|
||||
{
|
||||
if(!smCurrentDevice)
|
||||
{
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
return(smCurrentDevice->getVolume(volume));
|
||||
}
|
||||
|
||||
bool RedBook::setVolume(F32 volume)
|
||||
{
|
||||
if(!smCurrentDevice)
|
||||
{
|
||||
setLastError("No device is currently open");
|
||||
return(false);
|
||||
}
|
||||
return(smCurrentDevice->setVolume(volume));
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// console methods
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
ConsoleFunctionGroupBegin( Redbook, "Control functions for Redbook audio (ie, CD audio).");
|
||||
|
||||
ConsoleFunction(redbookOpen, bool, 1, 2, "(string device=NULL)"
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
if(argc == 1)
|
||||
return(RedBook::open(RedBook::getDeviceName(0)));
|
||||
else
|
||||
return(RedBook::open(argv[1]));
|
||||
}
|
||||
|
||||
ConsoleFunction(redbookClose, bool, 1, 1, "Close the current Redbook device."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::close());
|
||||
}
|
||||
|
||||
ConsoleFunction( redbookPlay, bool, 2, 2, "(int track) Play the selected track."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::play(dAtoi(argv[1])));
|
||||
}
|
||||
|
||||
ConsoleFunction( redbookStop, bool, 1, 1, "Stop playing."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::stop());
|
||||
}
|
||||
ConsoleFunction(redbookGetTrackCount, S32, 1, 1, "Return the number of tracks."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
U32 trackCount;
|
||||
if(!RedBook::getTrackCount(&trackCount))
|
||||
return(0);
|
||||
return(trackCount);
|
||||
}
|
||||
|
||||
ConsoleFunction(redbookGetVolume, F32, 1, 1, "Get the volume."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
F32 vol;
|
||||
if(!RedBook::getVolume(&vol))
|
||||
return(0.f);
|
||||
else
|
||||
return(vol);
|
||||
}
|
||||
|
||||
ConsoleFunction(redbookSetVolume, bool, 2, 2, "(float volume) Set playback volume."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::setVolume(dAtof(argv[1])));
|
||||
}
|
||||
|
||||
ConsoleFunction( redbookGetDeviceCount, S32, 1, 1, "get the number of redbook devices."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::getDeviceCount());
|
||||
}
|
||||
|
||||
ConsoleFunction( redbookGetDeviceName, const char *, 2, 2, "(int index) Get name of specified Redbook device."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::getDeviceName(dAtoi(argv[1])));
|
||||
}
|
||||
|
||||
ConsoleFunction( redbookGetLastError, const char*, 1, 1, "Get a string explaining the last redbook error."
|
||||
"@brief Deprecated\n\n"
|
||||
"@internal")
|
||||
{
|
||||
return(RedBook::getLastError());
|
||||
}
|
||||
|
||||
ConsoleFunctionGroupEnd( Redbook );
|
||||
Loading…
Add table
Add a link
Reference in a new issue