mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
Support custom titles for homebrew
This commit is contained in:
parent
85854d0bf2
commit
a8e1913895
@ -278,18 +278,28 @@ void CList<dir_discHdr>::GetHeaders(safe_vector<string> pathlist, safe_vector<di
|
||||
}
|
||||
else (*itr)[i] = tolower((*itr)[i]);
|
||||
}
|
||||
mbstowcs(tmp.title, (*itr).c_str(), sizeof(tmp.title));
|
||||
|
||||
for (u32 i = 0; i < 6; ++i)
|
||||
(*itr)[i] = toupper((*itr)[i]);
|
||||
|
||||
memcpy(tmp.hdr.id, (*itr).c_str(), 6);
|
||||
|
||||
|
||||
for (u32 i = 0; i < 6; ++i)
|
||||
{
|
||||
tmp.hdr.id[i] = toupper(tmp.hdr.id[i]);
|
||||
if(!isalnum(tmp.hdr.id[i]) || tmp.hdr.id[i] == ' ' || tmp.hdr.id[i] == '\0')
|
||||
tmp.hdr.id[i] = '_';
|
||||
}
|
||||
|
||||
// Get info from custom titles
|
||||
GTitle = custom_titles.getString("TITLES", (const char *) tmp.hdr.id);
|
||||
int ccolor = custom_titles.getColor("COVERS", (const char *) tmp.hdr.id, tmp.hdr.casecolor).intVal();
|
||||
if(GTitle.size() > 0 || (gameTDB.GetTitle((char *)tmp.hdr.id, GTitle)))
|
||||
{
|
||||
mbstowcs(tmp.title, GTitle.c_str(), sizeof(tmp.title));
|
||||
tmp.hdr.casecolor = ccolor != 1 ? ccolor : gameTDB.GetCaseColor((char *)tmp.hdr.id);
|
||||
}
|
||||
else
|
||||
{
|
||||
mbstowcs(tmp.title, (*itr).c_str(), sizeof(tmp.title));
|
||||
tmp.hdr.casecolor = ccolor != 1 ? ccolor : 1;
|
||||
}
|
||||
Asciify(tmp.title);
|
||||
headerlist.push_back(tmp);
|
||||
continue;
|
||||
@ -407,4 +417,4 @@ void CList<T>::Check_For_ID(u8 *id, string path, string one, string two)
|
||||
}
|
||||
|
||||
template class CList<dir_discHdr>;
|
||||
template class CList<string>;
|
||||
template class CList<string>;
|
||||
|
Loading…
Reference in New Issue
Block a user