2004-01-10 20:43:56 +00:00
|
|
|
#include "global.h" // testing updates
|
|
|
|
|
#include "ActorCommands.h"
|
|
|
|
|
#include "RageUtil.h"
|
|
|
|
|
#include "RageLog.h"
|
2004-06-10 22:47:51 +00:00
|
|
|
#include "arch/Dialog/Dialog.h"
|
2004-01-10 20:43:56 +00:00
|
|
|
|
|
|
|
|
void IncorrectActorParametersWarning( const ParsedCommand &command, int iMaxIndexAccessed )
|
|
|
|
|
{
|
|
|
|
|
const CString sError = ssprintf( "Actor::HandleCommand: Wrong number of parameters in command '%s'. Expected %d but there are %u.",
|
2004-02-24 08:00:04 +00:00
|
|
|
command.GetOriginalCommandString().c_str(), iMaxIndexAccessed+1, unsigned(command.vTokens.size()) );
|
2004-01-10 20:43:56 +00:00
|
|
|
LOG->Warn( sError );
|
2004-06-10 22:47:51 +00:00
|
|
|
Dialog::OK( sError );
|
2004-01-10 20:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ParsedCommandToken::Set( const CString &sToken )
|
|
|
|
|
{
|
|
|
|
|
s = sToken;
|
2004-08-10 20:57:59 +00:00
|
|
|
f = strtof( sToken, NULL );
|
2004-01-10 20:43:56 +00:00
|
|
|
i = atoi( sToken );
|
|
|
|
|
b = i != 0;
|
|
|
|
|
bColorIsValid = c.FromString( sToken );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ParsedCommand::Set( const CString &sCommand )
|
|
|
|
|
{
|
|
|
|
|
CStringArray vsTokens;
|
|
|
|
|
split( sCommand, ",", vsTokens, false ); // don't ignore empty
|
|
|
|
|
|
|
|
|
|
vTokens.resize( vsTokens.size() );
|
|
|
|
|
|
2004-01-11 08:26:42 +00:00
|
|
|
for( unsigned j=0; j<vsTokens.size(); j++ )
|
2004-01-10 20:43:56 +00:00
|
|
|
{
|
|
|
|
|
const CString &sToken = vsTokens[j];
|
|
|
|
|
vTokens[j].Set( sToken );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CString ParsedCommand::GetOriginalCommandString() const
|
|
|
|
|
{
|
|
|
|
|
CStringArray asTokens;
|
2004-01-11 08:26:42 +00:00
|
|
|
for( unsigned i=0; i<vTokens.size(); i++ )
|
2004-01-10 20:43:56 +00:00
|
|
|
asTokens.push_back( vTokens[i].s );
|
|
|
|
|
return join( ",", asTokens );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ParseCommands( const CString &sCommands, vector<ParsedCommand> &vCommandsOut )
|
|
|
|
|
{
|
|
|
|
|
vCommandsOut.clear();
|
|
|
|
|
CStringArray vsCommands;
|
|
|
|
|
split( sCommands, ";", vsCommands, true ); // do ignore empty
|
|
|
|
|
|
|
|
|
|
vCommandsOut.resize( vsCommands.size() );
|
|
|
|
|
|
2004-01-11 08:26:42 +00:00
|
|
|
for( unsigned i=0; i<vsCommands.size(); i++ )
|
2004-01-10 20:43:56 +00:00
|
|
|
{
|
|
|
|
|
const CString &sCommand = vsCommands[i];
|
|
|
|
|
ParsedCommand &pc = vCommandsOut[i];
|
|
|
|
|
pc.Set( sCommand );
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-08 00:47:53 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (c) 2004 Chris Danford
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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, and/or sell copies of the Software, and to permit persons to
|
|
|
|
|
* whom the Software is furnished to do so, provided that the above
|
|
|
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
|
|
|
* the Software and that both the above copyright notice(s) and this
|
|
|
|
|
* permission notice appear in supporting documentation.
|
|
|
|
|
*
|
|
|
|
|
* 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 OF
|
|
|
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
|
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
|
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
|
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|