Support custom titles for homebrew

This commit is contained in:
entropy 2012-01-29 23:48:50 +00:00
parent 85854d0bf2
commit a8e1913895

View File

@ -278,18 +278,28 @@ void CList<dir_discHdr>::GetHeaders(safe_vector<string> pathlist, safe_vector<di
} }
else (*itr)[i] = tolower((*itr)[i]); 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); memcpy(tmp.hdr.id, (*itr).c_str(), 6);
for (u32 i = 0; i < 6; ++i) 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') if(!isalnum(tmp.hdr.id[i]) || tmp.hdr.id[i] == ' ' || tmp.hdr.id[i] == '\0')
tmp.hdr.id[i] = '_'; 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); Asciify(tmp.title);
headerlist.push_back(tmp); headerlist.push_back(tmp);
continue; continue;