270 lines
7.3 KiB
C++
270 lines
7.3 KiB
C++
#include "global.h"
|
|
#include "Workout.h"
|
|
#include "EnumHelper.h"
|
|
#include "LocalizedString.h"
|
|
#include "RageUtil.h"
|
|
#include "LuaManager.h"
|
|
#include "XmlFile.h"
|
|
#include "XmlFileUtil.h"
|
|
#include "Course.h"
|
|
#include "Foreach.h"
|
|
|
|
static const char *WorkoutProgramNames[] = {
|
|
"FatBurn",
|
|
"FitnessTest",
|
|
"Intermediate",
|
|
"Interval",
|
|
"Runner",
|
|
"Flat",
|
|
};
|
|
XToString( WorkoutProgram );
|
|
StringToX( WorkoutProgram );
|
|
XToLocalizedString( WorkoutProgram );
|
|
|
|
|
|
static const char *WorkoutStepsTypeNames[] = {
|
|
"NormalSteps",
|
|
"WorkoutSteps"
|
|
};
|
|
XToString( WorkoutStepsType );
|
|
StringToX( WorkoutStepsType );
|
|
XToLocalizedString( WorkoutStepsType );
|
|
LuaXType( WorkoutStepsType );
|
|
LuaFunction( WorkoutStepsTypeToLocalizedString, WorkoutStepsTypeToLocalizedString(Enum::Check<WorkoutStepsType>(L, 1)) );
|
|
|
|
|
|
Workout::Workout()
|
|
{
|
|
m_WorkoutProgram = (WorkoutProgram)0;
|
|
m_iMinutes = 10;
|
|
m_iAverageMeter = 3;
|
|
m_WorkoutStepsType = (WorkoutStepsType)0;
|
|
}
|
|
|
|
int Workout::GetEstimatedNumSongs() const
|
|
{
|
|
return GetEstimatedNumSongsFromSeconds( m_iMinutes*60.0f );
|
|
}
|
|
|
|
int Workout::GetEstimatedNumSongsFromSeconds( float fSeconds )
|
|
{
|
|
int iNumSongsInBody = (int)ceilf(fSeconds / (60+50));
|
|
return iNumSongsInBody;
|
|
}
|
|
|
|
const float fAverageSongLengthSeconds = 105;
|
|
static int CalculateWorkoutProgramMeter( WorkoutProgram wp, int iAverageMeter, int iSongInBodyIndex, int iNumSongsInBody )
|
|
{
|
|
int iMaxMeter = iAverageMeter + 2;
|
|
int iMinMeter = iAverageMeter - 2;
|
|
|
|
float fPercentThroughBody = SCALE( iSongInBodyIndex, 0.0f, (float)iNumSongsInBody-1, 0.0f, 1.0f );
|
|
CLAMP( fPercentThroughBody, 0.0f, 1.0f );
|
|
|
|
int iMeter = -1; // fill this in
|
|
|
|
switch( wp )
|
|
{
|
|
DEFAULT_FAIL( wp );
|
|
case WorkoutProgram_FatBurn:
|
|
{
|
|
float fMeter = SCALE( iSongInBodyIndex % 4, 0.0f, 3.0f, (float)iMinMeter, (float)iMaxMeter );
|
|
iMeter = lrintf( fMeter );
|
|
}
|
|
break;
|
|
case WorkoutProgram_FitnessTest:
|
|
{
|
|
iMeter = (int)floorf( SCALE( fPercentThroughBody, 0.0f, 1.0f, (float)iMinMeter, (float)iMaxMeter+0.95f ) );
|
|
}
|
|
break;
|
|
case WorkoutProgram_Intermediate:
|
|
{
|
|
switch( iSongInBodyIndex % 6 )
|
|
{
|
|
DEFAULT_FAIL(iSongInBodyIndex % 6);
|
|
case 0:
|
|
case 3:
|
|
iMeter = iMinMeter;
|
|
break;
|
|
case 1:
|
|
case 2:
|
|
iMeter = iMaxMeter;
|
|
break;
|
|
case 4:
|
|
case 5:
|
|
iMeter = lrintf( SCALE( 0.5f, 0.0f, 1.0f, (float)iMinMeter, (float)iMaxMeter ) );
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case WorkoutProgram_Interval:
|
|
{
|
|
iMeter = (iSongInBodyIndex % 2) ? iMaxMeter:iMinMeter;
|
|
}
|
|
break;
|
|
case WorkoutProgram_Runner:
|
|
{
|
|
float fMeter = SCALE( iSongInBodyIndex % 4, 0.0f, 3.0f, (float)iMinMeter, (float)iMaxMeter );
|
|
if( (iSongInBodyIndex % 8) >= 4 )
|
|
fMeter = SCALE( fMeter, (float)iMinMeter, (float)iMaxMeter, (float)iMaxMeter, (float)iMinMeter );
|
|
iMeter = lrintf( fMeter );
|
|
}
|
|
break;
|
|
case WorkoutProgram_Flat:
|
|
{
|
|
iMeter = iAverageMeter;
|
|
}
|
|
break;
|
|
}
|
|
|
|
CLAMP( iMeter, MIN_METER, MAX_METER );
|
|
return iMeter;
|
|
}
|
|
|
|
void Workout::GetEstimatedMeters( int iNumSongs, vector<int> &viMetersOut )
|
|
{
|
|
viMetersOut.clear();
|
|
|
|
for( int i=0; i<iNumSongs; i++ )
|
|
{
|
|
int iMeter = CalculateWorkoutProgramMeter( m_WorkoutProgram, m_iAverageMeter, i, iNumSongs );
|
|
viMetersOut.push_back( iMeter );
|
|
}
|
|
}
|
|
|
|
void Workout::GenerateCourse( Course &out )
|
|
{
|
|
out.m_sMainTitle = "temp";
|
|
out.m_bRepeat = true;
|
|
|
|
const int iNumCourseEntries = 10;
|
|
|
|
vector<int> viMeter;
|
|
GetEstimatedMeters( iNumCourseEntries, viMeter );
|
|
|
|
for( int i=0; i<iNumCourseEntries; i++ )
|
|
{
|
|
CourseEntry ce;
|
|
|
|
ce.songCriteria.m_bUseSongGenreAllowedList = true;
|
|
ce.songCriteria.m_vsSongGenreAllowedList = m_vsSongGenres;
|
|
|
|
ce.stepsCriteria.m_iLowMeter = ce.stepsCriteria.m_iHighMeter = viMeter[i];
|
|
out.m_vEntries.push_back( ce );
|
|
}
|
|
}
|
|
|
|
bool Workout::LoadFromFile( RString sFile )
|
|
{
|
|
XNode xml;
|
|
XmlFileUtil::LoadFromFileShowErrors( xml, sFile );
|
|
if( xml.GetName() != "Workout" )
|
|
return false;
|
|
|
|
m_sFile = sFile;
|
|
|
|
xml.GetChildValue("Name",m_sName);
|
|
// ValidateWorkoutName
|
|
|
|
RString s;
|
|
xml.GetChildValue("WorkoutProgram",s);
|
|
m_WorkoutProgram = StringToWorkoutProgram( s );
|
|
if( m_WorkoutProgram == WorkoutProgram_Invalid )
|
|
m_WorkoutProgram = (WorkoutProgram)0;
|
|
|
|
xml.GetChildValue("Minutes",m_iMinutes);
|
|
CLAMP( m_iAverageMeter, MIN_WORKOUT_MINUTES, MAX_WORKOUT_MINUTES );
|
|
|
|
xml.GetChildValue("AverageMeter",m_iAverageMeter);
|
|
CLAMP( m_iAverageMeter, MIN_METER, MAX_METER );
|
|
|
|
xml.GetChildValue("WorkoutStepsType",s);
|
|
m_WorkoutStepsType = StringToWorkoutStepsType( s );
|
|
if( m_WorkoutStepsType == WorkoutStepsType_Invalid )
|
|
m_WorkoutStepsType = (WorkoutStepsType)0;
|
|
|
|
XNode *songGenres = xml.GetChild("SongGenres");
|
|
if( songGenres )
|
|
{
|
|
FOREACH_CONST_Child( songGenres, songGenre )
|
|
{
|
|
if( songGenre->GetName() == "SongGenre" )
|
|
{
|
|
RString s;
|
|
songGenre->GetTextValue( s );
|
|
m_vsSongGenres.push_back( s );
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Workout::SaveToFile( RString sFile )
|
|
{
|
|
m_sFile = sFile;
|
|
|
|
XNode xml( "Workout" );
|
|
xml.AppendChild( "Name", m_sName );
|
|
RString s;
|
|
xml.AppendChild( "WorkoutProgram", WorkoutProgramToString(m_WorkoutProgram) );
|
|
xml.AppendChild( "Minutes", m_iMinutes );
|
|
xml.AppendChild( "AverageMeter", m_iAverageMeter );
|
|
xml.AppendChild( "WorkoutStepsType", WorkoutStepsTypeToString(m_WorkoutStepsType) );
|
|
|
|
XNode *songGenres = xml.AppendChild("SongGenres");
|
|
FOREACH_CONST( RString, m_vsSongGenres, s )
|
|
{
|
|
songGenres->AppendChild( "SongGenre", *s );
|
|
}
|
|
|
|
return XmlFileUtil::SaveToFile( &xml, sFile );
|
|
}
|
|
|
|
// lua start
|
|
#include "LuaBinding.h"
|
|
|
|
class LunaWorkout: public Luna<Workout>
|
|
{
|
|
public:
|
|
static int GetName( T* p, lua_State *L ) { lua_pushstring(L, p->m_sName ); return 1; }
|
|
static int GetMinutes( T* p, lua_State *L ) { lua_pushnumber(L, p->m_iMinutes ); return 1; }
|
|
static int GetEstimatedNumSongs( T* p, lua_State *L ) { lua_pushnumber(L, p->GetEstimatedNumSongs() ); return 1; }
|
|
static int GetWorkoutStepsType( T* p, lua_State *L ) { lua_pushnumber(L, p->m_WorkoutStepsType ); return 1; }
|
|
|
|
LunaWorkout()
|
|
{
|
|
ADD_METHOD( GetName );
|
|
ADD_METHOD( GetMinutes );
|
|
ADD_METHOD( GetEstimatedNumSongs );
|
|
ADD_METHOD( GetWorkoutStepsType );
|
|
}
|
|
};
|
|
|
|
LUA_REGISTER_CLASS( Workout )
|
|
// lua end
|
|
|
|
/*
|
|
* (c) 2003-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.
|
|
*/
|