2012-12-10 12:08:54 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include "SavedataParam.h"
|
|
|
|
#include "../System.h"
|
2012-12-13 21:06:45 +00:00
|
|
|
#include "image/png_load.h"
|
|
|
|
#include "../HLE/sceKernelMemory.h"
|
2012-12-10 12:08:54 +00:00
|
|
|
|
|
|
|
std::string icon0Name = "ICON0.PNG";
|
|
|
|
std::string icon1Name = "ICON1.PNG";
|
|
|
|
std::string pic1Name = "PIC1.PNG";
|
|
|
|
std::string sfoName = "PARAM.SFO";
|
|
|
|
|
2012-12-11 07:30:48 +00:00
|
|
|
std::string savePath = "ms0:/PSP/SAVEDATA/";
|
2012-12-10 12:08:54 +00:00
|
|
|
|
|
|
|
SavedataParam::SavedataParam()
|
|
|
|
: pspParam(0)
|
|
|
|
, selectedSave(0)
|
|
|
|
, saveNameListData(0)
|
|
|
|
, saveDataList(0)
|
|
|
|
, saveNameListDataCount(0)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SavedataParam::Init()
|
|
|
|
{
|
|
|
|
if(!pspFileSystem.GetFileInfo(savePath).exists)
|
|
|
|
{
|
|
|
|
pspFileSystem.MkDir(savePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string SavedataParam::GetSaveFilePath(SceUtilitySavedataParam* param, int saveId)
|
|
|
|
{
|
|
|
|
if (!param) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2012-12-11 02:09:52 +00:00
|
|
|
std::string dirPath = GetGameName(param)+GetSaveName(param);
|
2012-12-10 12:08:54 +00:00
|
|
|
if(saveId >= 0 && saveNameListDataCount > 0) // if user selection, use it
|
2012-12-11 02:09:52 +00:00
|
|
|
dirPath = std::string(GetGameName(param))+GetFilename(saveId);
|
2012-12-10 12:08:54 +00:00
|
|
|
|
|
|
|
return savePath + dirPath;
|
|
|
|
}
|
|
|
|
|
2012-12-11 02:09:52 +00:00
|
|
|
std::string SavedataParam::GetGameName(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
char gameName[14];
|
|
|
|
memcpy(gameName,param->gameName,13);
|
|
|
|
gameName[13] = 0;
|
|
|
|
return gameName;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string SavedataParam::GetSaveName(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
char saveName[21];
|
|
|
|
memcpy(saveName,param->saveName,20);
|
|
|
|
saveName[20] = 0;
|
|
|
|
return saveName;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string SavedataParam::GetFileName(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
char fileName[14];
|
|
|
|
memcpy(fileName,param->fileName,13);
|
|
|
|
fileName[13] = 0;
|
|
|
|
return fileName;
|
|
|
|
}
|
2012-12-10 12:08:54 +00:00
|
|
|
|
|
|
|
bool SavedataParam::Delete(SceUtilitySavedataParam* param, int saveId)
|
|
|
|
{
|
|
|
|
if (!param)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string dirPath = GetSaveFilePath(param,saveId);
|
|
|
|
if(saveId >= 0 && saveNameListDataCount > 0) // if user selection, use it
|
|
|
|
{
|
|
|
|
if(saveDataList[saveId].size == 0) // don't delete no existing file
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pspFileSystem.RmDir(dirPath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SavedataParam::Save(SceUtilitySavedataParam* param, int saveId)
|
|
|
|
{
|
|
|
|
if (!param) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8* data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->dataBuf));
|
|
|
|
|
|
|
|
std::string dirPath = GetSaveFilePath(param, saveId);
|
|
|
|
|
|
|
|
if(!pspFileSystem.GetFileInfo(dirPath).exists)
|
|
|
|
pspFileSystem.MkDir(dirPath);
|
|
|
|
|
2012-12-11 02:09:52 +00:00
|
|
|
std::string filePath = dirPath+"/"+GetFileName(param);
|
2012-12-10 12:08:54 +00:00
|
|
|
INFO_LOG(HLE,"Saving file with size %u in %s",param->dataBufSize,filePath.c_str());
|
|
|
|
unsigned int handle = pspFileSystem.OpenFile(filePath,(FileAccess)(FILEACCESS_WRITE | FILEACCESS_CREATE));
|
|
|
|
if(handle == 0)
|
|
|
|
{
|
|
|
|
ERROR_LOG(HLE,"Error opening file %s",filePath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!pspFileSystem.WriteFile(handle, data_, param->dataBufSize))
|
|
|
|
{
|
|
|
|
pspFileSystem.CloseFile(handle);
|
|
|
|
ERROR_LOG(HLE,"Error writing file %s",filePath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pspFileSystem.CloseFile(handle);
|
|
|
|
|
|
|
|
// TODO SAVE PARAM.SFO
|
|
|
|
/*data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->dataBuf));
|
|
|
|
writeDataToFile(false, );*/
|
|
|
|
|
|
|
|
// SAVE ICON0
|
|
|
|
if(param->icon0FileData.buf)
|
|
|
|
{
|
|
|
|
data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->icon0FileData.buf));
|
|
|
|
std::string icon0path = dirPath+"/"+icon0Name;
|
|
|
|
handle = pspFileSystem.OpenFile(icon0path,(FileAccess)(FILEACCESS_WRITE | FILEACCESS_CREATE));
|
|
|
|
if(handle)
|
|
|
|
{
|
|
|
|
pspFileSystem.WriteFile(handle, data_, param->icon0FileData.bufSize);
|
|
|
|
pspFileSystem.CloseFile(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// SAVE ICON1
|
|
|
|
if(param->icon1FileData.buf)
|
|
|
|
{
|
|
|
|
data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->icon1FileData.buf));
|
|
|
|
std::string icon1path = dirPath+"/"+icon1Name;
|
|
|
|
handle = pspFileSystem.OpenFile(icon1path,(FileAccess)(FILEACCESS_WRITE | FILEACCESS_CREATE));
|
|
|
|
if(handle)
|
|
|
|
{
|
|
|
|
pspFileSystem.WriteFile(handle, data_, param->icon1FileData.bufSize);
|
|
|
|
pspFileSystem.CloseFile(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// SAVE PIC1
|
|
|
|
if(param->pic1FileData.buf)
|
|
|
|
{
|
|
|
|
data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->pic1FileData.buf));
|
|
|
|
std::string pic1path = dirPath+"/"+pic1Name;
|
|
|
|
handle = pspFileSystem.OpenFile(pic1path,(FileAccess)(FILEACCESS_WRITE | FILEACCESS_CREATE));
|
|
|
|
if(handle)
|
|
|
|
{
|
|
|
|
pspFileSystem.WriteFile(handle, data_, param->pic1FileData.bufSize);
|
|
|
|
pspFileSystem.CloseFile(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO Save SND
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SavedataParam::Load(SceUtilitySavedataParam* param, int saveId)
|
|
|
|
{
|
|
|
|
if (!param) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8* data_ = (u8*)Memory::GetPointer(*((unsigned int*)¶m->dataBuf));
|
|
|
|
|
|
|
|
std::string dirPath = GetSaveFilePath(param, saveId);
|
2012-12-11 02:09:52 +00:00
|
|
|
if(saveId >= 0 && saveNameListDataCount > 0) // if user selection, use it
|
2012-12-10 12:08:54 +00:00
|
|
|
{
|
|
|
|
if(saveDataList[saveId].size == 0) // don't read no existing file
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-11 02:09:52 +00:00
|
|
|
std::string filePath = dirPath+"/"+GetFileName(param);
|
2012-12-10 12:08:54 +00:00
|
|
|
INFO_LOG(HLE,"Loading file with size %u in %s",param->dataBufSize,filePath.c_str());
|
|
|
|
u32 handle = pspFileSystem.OpenFile(filePath,FILEACCESS_READ);
|
|
|
|
if(!handle)
|
|
|
|
{
|
|
|
|
ERROR_LOG(HLE,"Error opening file %s",filePath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!pspFileSystem.ReadFile(handle, data_, param->dataBufSize))
|
|
|
|
{
|
2012-12-11 16:40:26 +00:00
|
|
|
pspFileSystem.CloseFile(handle);
|
2012-12-10 12:08:54 +00:00
|
|
|
ERROR_LOG(HLE,"Error reading file %s",filePath.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-11 16:40:26 +00:00
|
|
|
pspFileSystem.CloseFile(handle);
|
2012-12-10 12:08:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-11 02:09:52 +00:00
|
|
|
bool SavedataParam::GetSizes(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
if (!param) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Memory::IsValidAddress(param->msFree))
|
|
|
|
{
|
|
|
|
Memory::Write_U32(32768,param->msFree);
|
|
|
|
Memory::Write_U32(32768,param->msFree+4);
|
|
|
|
Memory::Write_U32(1048576,param->msFree+8);
|
|
|
|
Memory::Write_U8(0,param->msFree+12);
|
|
|
|
}
|
|
|
|
if(Memory::IsValidAddress(param->msData))
|
|
|
|
{
|
|
|
|
Memory::Write_U32(0,param->msData+36);
|
|
|
|
Memory::Write_U32(0,param->msData+40);
|
|
|
|
Memory::Write_U8(0,param->msData+44);
|
|
|
|
Memory::Write_U32(0,param->msData+52);
|
|
|
|
Memory::Write_U8(0,param->msData+56);
|
|
|
|
}
|
|
|
|
if(Memory::IsValidAddress(param->utilityData))
|
|
|
|
{
|
|
|
|
Memory::Write_U32(13,param->utilityData);
|
|
|
|
Memory::Write_U32(416,param->utilityData+4);
|
|
|
|
Memory::Write_U8(0,param->utilityData+8);
|
|
|
|
Memory::Write_U32(416,param->utilityData+16);
|
|
|
|
Memory::Write_U8(0,param->utilityData+20);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SavedataParam::GetList(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
if (!param) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Memory::IsValidAddress(param->idListAddr))
|
|
|
|
{
|
|
|
|
Memory::Write_U32(0,param->idListAddr+4);
|
|
|
|
}
|
2012-12-11 09:54:13 +00:00
|
|
|
return true;
|
2012-12-11 02:09:52 +00:00
|
|
|
}
|
|
|
|
|
2012-12-13 21:06:45 +00:00
|
|
|
void SavedataParam::Clear()
|
|
|
|
{
|
|
|
|
if(saveDataList)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < saveNameListDataCount; i++)
|
|
|
|
{
|
|
|
|
if(saveDataList[i].textureData != 0)
|
|
|
|
kernelMemory.Free(saveDataList[i].textureData);
|
|
|
|
saveDataList[i].textureData = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] saveDataList;
|
|
|
|
saveDataList = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-10 12:08:54 +00:00
|
|
|
void SavedataParam::SetPspParam(SceUtilitySavedataParam* param)
|
|
|
|
{
|
|
|
|
pspParam = param;
|
2012-12-13 21:06:45 +00:00
|
|
|
if(!pspParam)
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
return;
|
|
|
|
}
|
2012-12-10 12:08:54 +00:00
|
|
|
|
|
|
|
bool listEmptyFile = true;
|
|
|
|
if(param->mode == SCE_UTILITY_SAVEDATA_TYPE_LISTLOAD ||
|
|
|
|
param->mode == SCE_UTILITY_SAVEDATA_TYPE_LISTDELETE)
|
|
|
|
{
|
|
|
|
listEmptyFile = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(param->saveNameList != 0)
|
|
|
|
{
|
|
|
|
saveNameListData = (char(*)[20])Memory::GetPointer(param->saveNameList);
|
|
|
|
|
|
|
|
// Get number of fileName in array
|
|
|
|
int count = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
} while(saveNameListData[count][0] != 0);
|
|
|
|
|
2012-12-13 21:06:45 +00:00
|
|
|
Clear();
|
2012-12-10 12:08:54 +00:00
|
|
|
saveDataList = new SaveFileInfo[count];
|
|
|
|
|
|
|
|
// get and stock file info for each file
|
|
|
|
int realCount = 0;
|
|
|
|
for(int i = 0; i <count; i++)
|
|
|
|
{
|
|
|
|
DEBUG_LOG(HLE,"Name : %s",saveNameListData[i]);
|
|
|
|
|
2012-12-11 09:54:13 +00:00
|
|
|
std::string fileDataPath = savePath+GetGameName(param)+saveNameListData[i]+"/"+param->fileName;
|
2012-12-10 12:08:54 +00:00
|
|
|
PSPFileInfo info = pspFileSystem.GetFileInfo(fileDataPath);
|
|
|
|
if(info.exists)
|
|
|
|
{
|
|
|
|
// TODO : Load PARAM.SFO when saved and save title and save info
|
|
|
|
saveDataList[realCount].size = info.size;
|
|
|
|
saveDataList[realCount].saveName = saveNameListData[i];
|
|
|
|
saveDataList[realCount].idx = i;
|
2012-12-13 21:06:45 +00:00
|
|
|
|
|
|
|
// Search save image icon0
|
|
|
|
std::string fileDataPath2 = savePath+GetGameName(param)+saveNameListData[i]+"/"+icon0Name;
|
|
|
|
PSPFileInfo info2 = pspFileSystem.GetFileInfo(fileDataPath2);
|
|
|
|
if(info2.exists)
|
|
|
|
{
|
|
|
|
u8* textureDataPNG = new u8[info2.size];
|
|
|
|
int handle = pspFileSystem.OpenFile(fileDataPath2,FILEACCESS_READ);
|
|
|
|
pspFileSystem.ReadFile(handle,textureDataPNG,info2.size);
|
|
|
|
unsigned char* textureData;
|
|
|
|
int w,h;
|
|
|
|
pngLoadPtr(textureDataPNG, info2.size, &w, &h, &textureData, false);
|
|
|
|
delete[] textureDataPNG;
|
|
|
|
u32 texSize = w*h*4;
|
|
|
|
u32 atlasPtr = kernelMemory.Alloc(texSize, true, "SaveData Icon");
|
|
|
|
saveDataList[realCount].textureData = atlasPtr;
|
|
|
|
Memory::Memcpy(atlasPtr, textureData, texSize);
|
|
|
|
free(textureData);
|
|
|
|
saveDataList[realCount].textureWidth = w;
|
|
|
|
saveDataList[realCount].textureHeight = h;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
saveDataList[realCount].textureData = 0;
|
|
|
|
}
|
|
|
|
|
2012-12-10 12:08:54 +00:00
|
|
|
DEBUG_LOG(HLE,"%s Exist",fileDataPath.c_str());
|
|
|
|
realCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(listEmptyFile)
|
|
|
|
{
|
|
|
|
saveDataList[realCount].size = 0;
|
|
|
|
saveDataList[realCount].saveName = saveNameListData[i];
|
|
|
|
saveDataList[realCount].idx = i;
|
2012-12-13 21:06:45 +00:00
|
|
|
saveDataList[realCount].textureData = 0;
|
2012-12-10 12:08:54 +00:00
|
|
|
DEBUG_LOG(HLE,"Don't Exist");
|
|
|
|
realCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
saveNameListDataCount = realCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SceUtilitySavedataParam* SavedataParam::GetPspParam()
|
|
|
|
{
|
|
|
|
return pspParam;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SavedataParam::GetFilenameCount()
|
|
|
|
{
|
|
|
|
return saveNameListDataCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SaveFileInfo& SavedataParam::GetFileInfo(int idx)
|
|
|
|
{
|
|
|
|
return saveDataList[idx];
|
|
|
|
}
|
2012-12-11 02:09:52 +00:00
|
|
|
std::string SavedataParam::GetFilename(int idx)
|
2012-12-10 12:08:54 +00:00
|
|
|
{
|
2012-12-11 02:09:52 +00:00
|
|
|
char fileName[21];
|
|
|
|
memcpy(fileName,saveDataList[idx].saveName,20);
|
|
|
|
fileName[20] = 0;
|
|
|
|
return fileName;
|
2012-12-10 12:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SavedataParam::GetSelectedSave()
|
|
|
|
{
|
|
|
|
return selectedSave;
|
|
|
|
}
|
|
|
|
void SavedataParam::SetSelectedSave(int idx)
|
|
|
|
{
|
|
|
|
selectedSave = idx;
|
|
|
|
}
|
|
|
|
|