Files
itgmania212121/src/NotesLoaderJson.cpp
T
Jason Felds df6a00b53e Stops (and Delays) now templated.
This is all of them at this present time.

At some point in the future, we should make
DelaySegments separate from StopSegments.
2011-06-01 09:50:34 -04:00

239 lines
7.9 KiB
C++

#include "global.h"
#include "NotesLoaderJson.h"
#include "json/value.h"
#include "TimingData.h"
#include "RageUtil.h"
#include "JsonUtil.h"
#include "BackgroundUtil.h"
#include "NoteData.h"
#include "Song.h"
#include "Steps.h"
#include "GameManager.h"
void NotesLoaderJson::GetApplicableFiles( const RString &sPath, vector<RString> &out )
{
GetDirListing( sPath + RString("*.json"), out );
}
void Deserialize(BPMSegment &seg, const Json::Value &root)
{
seg.SetBeat((float)(root["Beat"].asDouble()));
seg.SetBPM((float)(root["BPM"].asDouble()));
}
static void Deserialize(StopSegment &seg, const Json::Value &root)
{
seg.SetBeat((float)(root["Beat"].asDouble()));
seg.SetPause((float)(root["Seconds"].asDouble()));
}
static void Deserialize(TimingData &td, const Json::Value &root)
{
JsonUtil::DeserializeVectorObjects( td.m_BPMSegments, Deserialize, root["BpmSegments"] );
JsonUtil::DeserializeVectorObjects( td.m_StopSegments, Deserialize, root["StopSegments"] );
}
static void Deserialize(LyricSegment &o, const Json::Value &root)
{
o.m_fStartTime = (float)root["StartTime"].asDouble();
o.m_sLyric = root["Lyric"].asString();
o.m_Color.FromString( root["Color"].asString() );
}
static void Deserialize(BackgroundDef &o, const Json::Value &root)
{
o.m_sEffect = root["Effect"].asString();
o.m_sFile1 = root["File1"].asString();
o.m_sFile2 = root["File2"].asString();
o.m_sColor1 = root["Color1"].asString();
}
static void Deserialize(BackgroundChange &o, const Json::Value &root )
{
Deserialize( o.m_def, root["Def"] );
o.m_fStartBeat = (float)root["StartBeat"].asDouble();
o.m_fRate = (float)root["Rate"].asDouble();
o.m_sTransition = root["Transition"].asString();
}
static void Deserialize( TapNote &o, const Json::Value &root )
{
//if( o.type != TapNote::tap )
if( root.isInt() )
o.type = (TapNote::Type)root["Type"].asInt();
//if( o.type == TapNote::hold_head )
o.subType = (TapNote::SubType)root["SubType"].asInt();
//root["Source"] = (int)source;
//if( !o.sAttackModifiers.empty() )
o.sAttackModifiers = root["AttackModifiers"].asString();
//if( o.fAttackDurationSeconds > 0 )
o.fAttackDurationSeconds = (float)root["AttackDurationSeconds"].asDouble();
//if( o.bKeysound )
o.iKeysoundIndex = root["KeysoundIndex"].asInt();
//if( o.iDuration > 0 )
o.iDuration = root["Duration"].asInt();
//if( o.pn != PLAYER_INVALID )
o.pn = (PlayerNumber)root["PlayerNumber"].asInt();
}
static void Deserialize( StepsType st, NoteData &nd, const Json::Value &root )
{
int iTracks = nd.GetNumTracks();
nd.SetNumTracks( iTracks );
for( unsigned i=0; i<root.size(); i++ )
{
Json::Value root2 = root[i];
float fBeat = (float)root2[(unsigned)0].asDouble();
int iRow = BeatToNoteRow(fBeat);
int iTrack = root2[1].asInt();
const Json::Value &root3 = root2[2];
TapNote tn;
Deserialize( tn, root3 );
nd.SetTapNote( iTrack, iRow, tn );
}
}
static void Deserialize( RadarValues &o, const Json::Value &root )
{
FOREACH_ENUM( RadarCategory, rc )
{
o.m_Values.f[rc] = (float)root[ RadarCategoryToString(rc) ].asDouble();
}
}
static void Deserialize( Steps &o, const Json::Value &root )
{
o.m_StepsType = GAMEMAN->StringToStepsType(root["StepsType"].asString());
o.Decompress();
NoteData nd;
Deserialize( o.m_StepsType, nd, root["NoteData"] );
o.SetNoteData( nd );
//o.SetHash( root["Hash"].asInt() );
o.SetDescription( root["Description"].asString() );
o.SetDifficulty( StringToDifficulty(root["Difficulty"].asString()) );
o.SetMeter( root["Meter"].asInt() );
RadarValues rv[NUM_PLAYERS];
FOREACH_PlayerNumber( pn )
{
Deserialize( rv[pn], root["RadarValues"] );
}
o.SetCachedRadarValues( rv );
}
static void Deserialize( Song &out, const Json::Value &root )
{
out.SetSongDir( root["SongDir"].asString() );
out.m_sGroupName = root["GroupName"].asString();
out.m_sMainTitle = root["Title"].asString();
out.m_sSubTitle = root["SubTitle"].asString();
out.m_sArtist = root["Artist"].asString();
out.m_sMainTitleTranslit = root["TitleTranslit"].asString();
out.m_sSubTitleTranslit = root["SubTitleTranslit"].asString();
out.m_sGenre = root["Genre"].asString();
out.m_sCredit = root["Credit"].asString();
out.m_sBannerFile = root["Banner"].asString();
out.m_sBackgroundFile = root["Background"].asString();
out.m_sLyricsFile = root["LyricsFile"].asString();
out.m_sCDTitleFile = root["CDTitle"].asString();
out.m_sMusicFile = root["Music"].asString();
out.m_SongTiming.m_fBeat0OffsetInSeconds = (float)root["Offset"].asDouble();
out.m_fMusicSampleStartSeconds = (float)root["SampleStart"].asDouble();
out.m_fMusicSampleLengthSeconds = (float)root["SampleLength"].asDouble();
RString sSelectable = root["Selectable"].asString();
if( sSelectable.EqualsNoCase("YES") )
out.m_SelectionDisplay = out.SHOW_ALWAYS;
else if( sSelectable.EqualsNoCase("NO") )
out.m_SelectionDisplay = out.SHOW_NEVER;
out.m_fFirstBeat = (float)root["FirstBeat"].asDouble();
out.m_fLastBeat = (float)root["LastBeat"].asDouble();
out.m_sSongFileName = root["SongFileName"].asString();
out.m_bHasMusic = root["HasMusic"].asBool();
out.m_bHasBanner = root["HasBanner"].asBool();
out.m_fMusicLengthSeconds = (float)root["MusicLengthSeconds"].asDouble();
RString sDisplayBPMType = root["DisplayBpmType"].asString();
if( sDisplayBPMType == "*" )
out.m_DisplayBPMType = DISPLAY_BPM_RANDOM;
else
out.m_DisplayBPMType = DISPLAY_BPM_SPECIFIED;
if( out.m_DisplayBPMType == DISPLAY_BPM_SPECIFIED )
{
out.m_fSpecifiedBPMMin = (float)root["SpecifiedBpmMin"].asDouble();
out.m_fSpecifiedBPMMax = (float)root["SpecifiedBpmMax"].asDouble();
}
Deserialize( out.m_SongTiming, root["TimingData"] );
JsonUtil::DeserializeVectorObjects( out.m_LyricSegments, Deserialize, root["LyricSegments"] );
{
const Json::Value &root2 = root["BackgroundChanges"];
FOREACH_BackgroundLayer( bl )
{
const Json::Value &root3 = root2[bl];
vector<BackgroundChange> &vBgc = out.GetBackgroundChanges(bl);
JsonUtil::DeserializeVectorObjects( vBgc, Deserialize, root3 );
}
}
{
vector<BackgroundChange> &vBgc = out.GetForegroundChanges();
JsonUtil::DeserializeVectorObjects( vBgc, Deserialize, root["ForegroundChanges"] );
}
JsonUtil::DeserializeArrayValuesIntoVector( out.m_vsKeysoundFile, root["KeySounds"] );
{
vector<Steps*> vpSteps;
JsonUtil::DeserializeVectorPointers<Steps>( vpSteps, Deserialize, root["Charts"] );
FOREACH( Steps*, vpSteps, iter )
out.AddSteps( *iter );
}
}
bool NotesLoaderJson::LoadFromJsonFile( const RString &sPath, Song &out )
{
Json::Value root;
if( !JsonUtil::LoadFromFileShowErrors(root,sPath) )
return false;
Deserialize(out, root);
return true;
}
bool NotesLoaderJson::LoadFromDir( const RString &sPath, Song &out )
{
return LoadFromJsonFile(sPath, out);
}
/*
* (c) 2001-2004 Chris Danford, Glenn Maynard
* 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.
*/