2013-08-24 03:28:21 +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/.
|
|
|
|
|
2020-10-01 11:05:04 +00:00
|
|
|
#include "base/NativeApp.h"
|
2020-08-28 03:40:55 +00:00
|
|
|
#include "ext/xxhash.h"
|
2013-08-24 03:28:21 +00:00
|
|
|
#include "ui/ui.h"
|
|
|
|
|
2020-10-01 11:05:04 +00:00
|
|
|
#include "Common/Data/Text/I18n.h"
|
|
|
|
#include "Common/Data/Encoding/Utf8.h"
|
2016-03-06 21:16:50 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2020-09-29 10:19:22 +00:00
|
|
|
#include "Common/StringUtils.h"
|
2013-08-24 03:28:21 +00:00
|
|
|
#include "Core/Core.h"
|
2013-09-15 03:28:41 +00:00
|
|
|
#include "Core/Config.h"
|
2016-03-06 21:16:50 +00:00
|
|
|
#include "Core/CwCheat.h"
|
2016-05-01 08:35:37 +00:00
|
|
|
#include "Core/MIPS/JitCommon/JitCommon.h"
|
2013-08-24 03:28:21 +00:00
|
|
|
|
|
|
|
#include "UI/GameInfoCache.h"
|
|
|
|
#include "UI/CwCheatScreen.h"
|
2013-08-24 13:54:15 +00:00
|
|
|
|
2020-04-11 19:57:35 +00:00
|
|
|
static const int FILE_CHECK_FRAME_INTERVAL = 53;
|
|
|
|
|
2020-04-11 20:52:25 +00:00
|
|
|
CwCheatScreen::CwCheatScreen(const std::string &gamePath)
|
2016-06-19 22:18:35 +00:00
|
|
|
: UIDialogScreenWithBackground() {
|
|
|
|
gamePath_ = gamePath;
|
|
|
|
}
|
2013-10-23 14:10:11 +00:00
|
|
|
|
2020-04-11 20:52:25 +00:00
|
|
|
CwCheatScreen::~CwCheatScreen() {
|
|
|
|
delete engine_;
|
|
|
|
}
|
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
void CwCheatScreen::LoadCheatInfo() {
|
|
|
|
std::shared_ptr<GameInfo> info = g_gameInfoCache->GetInfo(nullptr, gamePath_, 0);
|
2020-04-11 20:52:25 +00:00
|
|
|
std::string gameID;
|
2016-06-19 22:18:35 +00:00
|
|
|
if (info && info->paramSFOLoaded) {
|
2020-04-11 20:52:25 +00:00
|
|
|
gameID = info->paramSFO.GetValueString("DISC_ID");
|
2016-06-19 22:18:35 +00:00
|
|
|
}
|
2017-05-29 01:57:39 +00:00
|
|
|
if ((info->id.empty() || !info->disc_total)
|
|
|
|
&& gamePath_.find("/PSP/GAME/") != std::string::npos) {
|
2020-04-11 20:52:25 +00:00
|
|
|
gameID = g_paramSFO.GenerateFakeID(gamePath_);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (engine_ == nullptr || gameID != gameID_) {
|
|
|
|
gameID_ = gameID;
|
|
|
|
delete engine_;
|
|
|
|
engine_ = new CWCheatEngine(gameID_);
|
|
|
|
engine_->CreateCheatFile();
|
2016-06-20 22:15:29 +00:00
|
|
|
}
|
2017-05-29 01:57:39 +00:00
|
|
|
|
2020-04-11 19:57:35 +00:00
|
|
|
// We won't parse this, just using it to detect changes to the file.
|
|
|
|
std::string str;
|
2020-04-11 20:52:25 +00:00
|
|
|
if (readFileToString(true, engine_->CheatFilename().c_str(), str)) {
|
2020-08-28 03:40:55 +00:00
|
|
|
fileCheckHash_ = XXH3_64bits(str.c_str(), str.size());
|
2020-04-11 19:57:35 +00:00
|
|
|
}
|
|
|
|
fileCheckCounter_ = 0;
|
|
|
|
|
2020-04-11 20:52:25 +00:00
|
|
|
fileInfo_ = engine_->FileInfo();
|
2020-04-11 19:57:35 +00:00
|
|
|
|
|
|
|
// Let's also trigger a reload, in case it changed.
|
|
|
|
g_Config.bReloadCheats = true;
|
2013-08-24 03:28:21 +00:00
|
|
|
}
|
2013-08-30 18:13:59 +00:00
|
|
|
|
2013-08-24 03:28:21 +00:00
|
|
|
void CwCheatScreen::CreateViews() {
|
|
|
|
using namespace UI;
|
2020-01-26 18:43:18 +00:00
|
|
|
auto cw = GetI18NCategory("CwCheats");
|
|
|
|
auto di = GetI18NCategory("Dialog");
|
2020-04-11 18:22:11 +00:00
|
|
|
|
|
|
|
root_ = new AnchorLayout(new LayoutParams(FILL_PARENT, FILL_PARENT));
|
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
LoadCheatInfo();
|
2013-09-03 15:50:34 +00:00
|
|
|
Margins actionMenuMargins(50, -15, 15, 0);
|
2013-08-24 03:28:21 +00:00
|
|
|
|
2013-08-24 03:07:41 +00:00
|
|
|
LinearLayout *leftColumn = new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(400, FILL_PARENT));
|
2015-07-01 20:40:11 +00:00
|
|
|
leftColumn->Add(new ItemHeader(cw->T("Options")));
|
|
|
|
//leftColumn->Add(new Choice(cw->T("Add Cheat")))->OnClick.Handle(this, &CwCheatScreen::OnAddCheat);
|
|
|
|
leftColumn->Add(new Choice(cw->T("Import Cheats")))->OnClick.Handle(this, &CwCheatScreen::OnImportCheat);
|
2015-05-26 11:59:00 +00:00
|
|
|
#if !defined(MOBILE_DEVICE)
|
2015-07-01 20:40:11 +00:00
|
|
|
leftColumn->Add(new Choice(cw->T("Edit Cheat File")))->OnClick.Handle(this, &CwCheatScreen::OnEditCheatFile);
|
2014-06-08 22:13:26 +00:00
|
|
|
#endif
|
2015-07-01 20:40:11 +00:00
|
|
|
leftColumn->Add(new Choice(cw->T("Enable/Disable All")))->OnClick.Handle(this, &CwCheatScreen::OnEnableAll);
|
|
|
|
leftColumn->Add(new PopupSliderChoice(&g_Config.iCwCheatRefreshRate, 1, 1000, cw->T("Refresh Rate"), 1, screenManager()));
|
2013-08-24 03:28:21 +00:00
|
|
|
|
2020-04-11 18:22:11 +00:00
|
|
|
rightScroll_ = new ScrollView(ORIENT_VERTICAL, new LinearLayoutParams(FILL_PARENT, FILL_PARENT, 0.5f));
|
2020-03-26 09:59:08 +00:00
|
|
|
rightScroll_->SetTag("CwCheats");
|
|
|
|
rightScroll_->SetScrollToTop(false);
|
|
|
|
rightScroll_->ScrollTo(g_Config.fCwCheatScrollPosition);
|
2013-08-24 03:07:41 +00:00
|
|
|
LinearLayout *rightColumn = new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(200, FILL_PARENT, actionMenuMargins));
|
2020-03-26 09:59:08 +00:00
|
|
|
rightScroll_->Add(rightColumn);
|
2013-10-23 14:10:11 +00:00
|
|
|
|
2015-07-01 20:40:11 +00:00
|
|
|
rightColumn->Add(new ItemHeader(cw->T("Cheats")));
|
2020-04-11 19:43:55 +00:00
|
|
|
for (size_t i = 0; i < fileInfo_.size(); ++i) {
|
2020-04-11 19:59:06 +00:00
|
|
|
rightColumn->Add(new CheckBox(&fileInfo_[i].enabled, fileInfo_[i].name))->OnClick.Add([=](UI::EventParams &) {
|
2020-04-11 19:57:35 +00:00
|
|
|
return OnCheckBox((int)i);
|
2020-04-11 19:43:55 +00:00
|
|
|
});
|
2013-08-30 18:13:59 +00:00
|
|
|
}
|
2020-04-11 18:22:11 +00:00
|
|
|
|
|
|
|
LinearLayout *layout = new LinearLayout(ORIENT_HORIZONTAL, new LayoutParams(FILL_PARENT, FILL_PARENT));
|
|
|
|
layout->Add(leftColumn);
|
|
|
|
layout->Add(rightScroll_);
|
|
|
|
root_->Add(layout);
|
|
|
|
|
|
|
|
AddStandardBack(root_);
|
2013-08-24 03:28:21 +00:00
|
|
|
}
|
2013-08-30 18:13:59 +00:00
|
|
|
|
2020-04-11 19:57:35 +00:00
|
|
|
void CwCheatScreen::update() {
|
2020-04-11 20:52:25 +00:00
|
|
|
if (fileCheckCounter_++ >= FILE_CHECK_FRAME_INTERVAL && engine_) {
|
2020-04-11 19:57:35 +00:00
|
|
|
// Check if the file has changed. If it has, we'll reload.
|
|
|
|
std::string str;
|
2020-04-11 20:52:25 +00:00
|
|
|
if (readFileToString(true, engine_->CheatFilename().c_str(), str)) {
|
2020-08-28 03:40:55 +00:00
|
|
|
uint64_t newHash = XXH3_64bits(str.c_str(), str.size());
|
2020-04-11 19:57:35 +00:00
|
|
|
if (newHash != fileCheckHash_) {
|
|
|
|
// This will update the hash.
|
|
|
|
RecreateViews();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fileCheckCounter_ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
UIDialogScreenWithBackground::update();
|
|
|
|
}
|
|
|
|
|
2013-10-25 11:19:08 +00:00
|
|
|
void CwCheatScreen::onFinish(DialogResult result) {
|
2013-11-05 12:38:51 +00:00
|
|
|
if (result != DR_BACK) // This only works for BACK here.
|
|
|
|
return;
|
2020-04-11 19:43:55 +00:00
|
|
|
|
2013-10-23 14:10:11 +00:00
|
|
|
if (MIPSComp::jit) {
|
2013-10-23 15:23:05 +00:00
|
|
|
MIPSComp::jit->ClearCache();
|
2013-10-23 14:10:11 +00:00
|
|
|
}
|
2020-03-26 09:59:08 +00:00
|
|
|
g_Config.fCwCheatScrollPosition = rightScroll_->GetScrollPosition();
|
2013-08-23 02:58:37 +00:00
|
|
|
}
|
2013-08-30 18:13:59 +00:00
|
|
|
|
2013-10-23 14:10:11 +00:00
|
|
|
UI::EventReturn CwCheatScreen::OnEnableAll(UI::EventParams ¶ms) {
|
2020-04-11 19:43:55 +00:00
|
|
|
enableAllFlag_ = !enableAllFlag_;
|
|
|
|
|
|
|
|
// Flip all the switches.
|
|
|
|
for (auto &info : fileInfo_) {
|
|
|
|
info.enabled = enableAllFlag_;
|
2013-09-04 08:51:14 +00:00
|
|
|
}
|
2020-04-11 19:43:55 +00:00
|
|
|
|
|
|
|
if (!RebuildCheatFile(INDEX_ALL)) {
|
|
|
|
// Probably the file was modified outside PPSSPP, refresh.
|
|
|
|
// TODO: Report error.
|
|
|
|
RecreateViews();
|
|
|
|
return UI::EVENT_SKIPPED;
|
2013-08-24 03:07:41 +00:00
|
|
|
}
|
2013-10-23 14:10:11 +00:00
|
|
|
|
2013-08-24 03:07:41 +00:00
|
|
|
return UI::EVENT_DONE;
|
|
|
|
}
|
2013-09-04 08:51:14 +00:00
|
|
|
|
2013-10-23 14:10:11 +00:00
|
|
|
UI::EventReturn CwCheatScreen::OnAddCheat(UI::EventParams ¶ms) {
|
2017-03-20 00:43:03 +00:00
|
|
|
TriggerFinish(DR_OK);
|
2013-08-24 03:07:41 +00:00
|
|
|
g_Config.bReloadCheats = true;
|
|
|
|
return UI::EVENT_DONE;
|
|
|
|
}
|
2013-09-04 08:51:14 +00:00
|
|
|
|
2014-06-08 22:13:26 +00:00
|
|
|
UI::EventReturn CwCheatScreen::OnEditCheatFile(UI::EventParams ¶ms) {
|
2015-01-28 08:06:00 +00:00
|
|
|
g_Config.bReloadCheats = true;
|
|
|
|
if (MIPSComp::jit) {
|
|
|
|
MIPSComp::jit->ClearCache();
|
|
|
|
}
|
2020-04-11 20:52:25 +00:00
|
|
|
if (engine_) {
|
2017-02-28 00:47:13 +00:00
|
|
|
#if PPSSPP_PLATFORM(UWP)
|
2020-04-11 20:52:25 +00:00
|
|
|
LaunchBrowser(engine_->CheatFilename().c_str());
|
2017-02-28 00:47:13 +00:00
|
|
|
#else
|
2020-04-11 20:52:25 +00:00
|
|
|
File::openIniFile(engine_->CheatFilename());
|
2017-02-28 00:47:13 +00:00
|
|
|
#endif
|
2020-04-11 20:52:25 +00:00
|
|
|
}
|
2014-06-08 22:13:26 +00:00
|
|
|
return UI::EVENT_DONE;
|
|
|
|
}
|
|
|
|
|
2013-10-23 14:10:11 +00:00
|
|
|
UI::EventReturn CwCheatScreen::OnImportCheat(UI::EventParams ¶ms) {
|
2020-04-11 20:52:25 +00:00
|
|
|
if (gameID_.length() != 9 || !engine_) {
|
|
|
|
WARN_LOG(COMMON, "CWCHEAT: Incorrect ID(%s) - can't import cheats.", gameID_.c_str());
|
2016-06-20 09:32:31 +00:00
|
|
|
return UI::EVENT_DONE;
|
|
|
|
}
|
2013-08-24 03:07:41 +00:00
|
|
|
std::string line;
|
2013-09-01 02:15:50 +00:00
|
|
|
std::vector<std::string> title;
|
2013-08-24 03:07:41 +00:00
|
|
|
bool finished = false, skip = false;
|
|
|
|
std::vector<std::string> newList;
|
2013-10-15 07:04:12 +00:00
|
|
|
|
2014-06-08 22:13:26 +00:00
|
|
|
std::string cheatFile = GetSysDirectory(DIRECTORY_CHEATS) + "cheat.db";
|
2020-04-11 20:52:25 +00:00
|
|
|
std::string gameID = StringFromFormat("_S %s-%s", gameID_.substr(0, 4).c_str(), gameID_.substr(4).c_str());
|
2014-06-05 02:41:42 +00:00
|
|
|
|
2014-06-05 14:22:43 +00:00
|
|
|
std::fstream fs;
|
2014-06-08 22:13:26 +00:00
|
|
|
File::OpenCPPFile(fs, cheatFile, std::ios::in);
|
2013-10-15 07:04:12 +00:00
|
|
|
|
2014-07-08 04:56:20 +00:00
|
|
|
if (!fs.is_open()) {
|
|
|
|
WARN_LOG(COMMON, "Unable to open %s\n", cheatFile.c_str());
|
|
|
|
}
|
|
|
|
|
2014-06-05 14:22:43 +00:00
|
|
|
while (fs.good()) {
|
|
|
|
getline(fs, line); // get line from file
|
2017-11-30 04:05:52 +00:00
|
|
|
if (line == gameID) {
|
2013-09-01 02:15:50 +00:00
|
|
|
title.push_back(line);
|
2014-06-05 14:22:43 +00:00
|
|
|
getline(fs, line);
|
2013-09-01 02:15:50 +00:00
|
|
|
title.push_back(line);
|
2013-08-24 03:07:41 +00:00
|
|
|
do {
|
|
|
|
if (finished == false){
|
2014-06-05 14:22:43 +00:00
|
|
|
getline(fs, line);
|
2013-08-24 03:07:41 +00:00
|
|
|
}
|
2017-11-30 04:05:52 +00:00
|
|
|
if (line[0] == '_' && line[1] == 'C') {
|
2020-04-11 19:43:55 +00:00
|
|
|
// Test if cheat already exists.
|
|
|
|
for (const auto &existing : fileInfo_) {
|
|
|
|
if (line.substr(4) == existing.name) {
|
2013-08-24 03:07:41 +00:00
|
|
|
finished = false;
|
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
}
|
2013-09-01 02:15:50 +00:00
|
|
|
|
2013-08-24 03:07:41 +00:00
|
|
|
newList.push_back(line);
|
2014-06-05 14:22:43 +00:00
|
|
|
getline(fs, line);
|
2013-08-24 03:07:41 +00:00
|
|
|
do {
|
|
|
|
newList.push_back(line);
|
2014-06-05 14:22:43 +00:00
|
|
|
getline(fs, line);
|
2018-11-03 07:13:22 +00:00
|
|
|
} while ((line[0] == '_' && line[1] == 'L') || line[0] == '/' || line[0] == '#');
|
2013-08-24 03:07:41 +00:00
|
|
|
finished = true;
|
2013-10-23 14:10:11 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
2013-08-24 03:07:41 +00:00
|
|
|
}
|
|
|
|
loop:;
|
2019-02-12 19:18:52 +00:00
|
|
|
} while (fs.good() && ((line[0] == '_' && line[1] != 'S') || line[0] == '/' || line[0] == '#'));
|
2013-08-24 03:07:41 +00:00
|
|
|
finished = true;
|
2013-09-01 02:15:50 +00:00
|
|
|
}
|
2013-08-24 03:07:41 +00:00
|
|
|
if (finished == true)
|
|
|
|
break;
|
2013-09-01 02:15:50 +00:00
|
|
|
}
|
2014-06-05 14:22:43 +00:00
|
|
|
fs.close();
|
2013-09-01 02:15:50 +00:00
|
|
|
std::string title2;
|
2020-04-11 20:52:25 +00:00
|
|
|
File::OpenCPPFile(fs, engine_->CheatFilename(), std::ios::in);
|
2014-06-05 14:22:43 +00:00
|
|
|
getline(fs, title2);
|
|
|
|
fs.close();
|
2020-04-11 20:52:25 +00:00
|
|
|
File::OpenCPPFile(fs, engine_->CheatFilename(), std::ios::out | std::ios::app);
|
2014-06-05 14:22:43 +00:00
|
|
|
|
2013-09-09 06:26:37 +00:00
|
|
|
auto it = title.begin();
|
2019-02-12 19:18:52 +00:00
|
|
|
if (((title2[0] == '_' && title2[1] != 'S') || title2[0] == '/' || title2[0] == '#') && it != title.end() && (++it) != title.end()) {
|
2014-06-05 14:22:43 +00:00
|
|
|
fs << title[0] << "\n" << title[1];
|
2013-09-01 02:15:50 +00:00
|
|
|
}
|
2014-07-08 04:56:20 +00:00
|
|
|
|
2014-08-02 21:55:15 +00:00
|
|
|
NOTICE_LOG(COMMON, "Imported %u entries from %s.\n", (int)newList.size(), cheatFile.c_str());
|
2013-10-23 14:10:11 +00:00
|
|
|
if (newList.size() != 0) {
|
2014-06-05 14:22:43 +00:00
|
|
|
fs << "\n";
|
2013-08-24 03:07:41 +00:00
|
|
|
}
|
2014-07-08 04:56:20 +00:00
|
|
|
|
2013-08-30 18:13:59 +00:00
|
|
|
for (int i = 0; i < (int)newList.size(); i++) {
|
2014-06-05 14:22:43 +00:00
|
|
|
fs << newList[i];
|
2013-09-04 08:51:14 +00:00
|
|
|
if (i < (int)newList.size() - 1) {
|
2014-06-05 14:22:43 +00:00
|
|
|
fs << "\n";
|
2013-08-24 03:07:41 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-05 14:22:43 +00:00
|
|
|
fs.close();
|
2020-04-11 19:43:55 +00:00
|
|
|
|
2013-08-24 03:07:41 +00:00
|
|
|
g_Config.bReloadCheats = true;
|
2020-04-11 19:43:55 +00:00
|
|
|
RecreateViews();
|
2013-08-24 03:07:41 +00:00
|
|
|
return UI::EVENT_DONE;
|
|
|
|
}
|
2013-08-23 02:58:37 +00:00
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
UI::EventReturn CwCheatScreen::OnCheckBox(int index) {
|
|
|
|
if (!RebuildCheatFile(index)) {
|
|
|
|
// TODO: Report error. Let's reload the file, presumably it changed.
|
|
|
|
RecreateViews();
|
|
|
|
return UI::EVENT_SKIPPED;
|
2020-04-11 18:22:11 +00:00
|
|
|
}
|
2020-04-11 19:43:55 +00:00
|
|
|
|
2013-08-24 03:28:21 +00:00
|
|
|
return UI::EVENT_DONE;
|
2013-08-23 00:46:30 +00:00
|
|
|
}
|
2013-08-30 12:47:28 +00:00
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
bool CwCheatScreen::RebuildCheatFile(int index) {
|
2014-06-05 14:22:43 +00:00
|
|
|
std::fstream fs;
|
2020-04-11 20:52:25 +00:00
|
|
|
if (!engine_ || !File::OpenCPPFile(fs, engine_->CheatFilename(), std::ios::in)) {
|
2020-04-11 19:43:55 +00:00
|
|
|
return false;
|
2013-08-23 00:46:30 +00:00
|
|
|
}
|
2013-10-23 14:10:11 +00:00
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
// In case lines were edited while we weren't looking, reload them.
|
|
|
|
std::vector<std::string> lines;
|
|
|
|
for (; fs && !fs.eof(); ) {
|
|
|
|
std::string line;
|
|
|
|
std::getline(fs, line, '\n');
|
|
|
|
lines.push_back(line);
|
2013-08-23 00:46:30 +00:00
|
|
|
}
|
2014-06-05 14:22:43 +00:00
|
|
|
fs.close();
|
2013-08-30 12:47:28 +00:00
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
auto updateLine = [&](const CheatFileInfo &info) {
|
|
|
|
// Line numbers start with one, not zero.
|
|
|
|
size_t lineIndex = info.lineNum - 1;
|
|
|
|
if (lines.size() > lineIndex) {
|
|
|
|
auto &line = lines[lineIndex];
|
|
|
|
// This is the one to change. Let's see if it matches - maybe the file changed.
|
|
|
|
bool isCheatDef = line.find("_C") != line.npos;
|
|
|
|
bool hasCheatName = !info.name.empty() && line.find(info.name) != line.npos;
|
|
|
|
if (!isCheatDef || !hasCheatName) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
line = (info.enabled ? "_C1 " : "_C0 ") + info.name;
|
2020-04-11 20:52:25 +00:00
|
|
|
return true;
|
2020-04-11 19:43:55 +00:00
|
|
|
}
|
2020-04-11 20:52:25 +00:00
|
|
|
return false;
|
2020-04-11 19:43:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (index == INDEX_ALL) {
|
|
|
|
for (const auto &info : fileInfo_) {
|
|
|
|
// Bail out if any don't match with no changes.
|
|
|
|
if (!updateLine(info)) {
|
|
|
|
return false;
|
2016-10-24 02:37:49 +00:00
|
|
|
}
|
2013-08-23 02:58:37 +00:00
|
|
|
}
|
2020-04-11 19:43:55 +00:00
|
|
|
} else {
|
|
|
|
if (!updateLine(fileInfo_[index])) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-23 02:58:37 +00:00
|
|
|
}
|
2013-08-23 00:46:30 +00:00
|
|
|
|
2014-06-05 14:22:43 +00:00
|
|
|
|
2020-04-11 20:52:25 +00:00
|
|
|
if (!File::OpenCPPFile(fs, engine_->CheatFilename(), std::ios::out | std::ios::trunc)) {
|
2020-04-11 19:43:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &line : lines) {
|
|
|
|
fs << line << '\n';
|
2013-08-23 02:58:37 +00:00
|
|
|
}
|
2014-06-05 14:22:43 +00:00
|
|
|
fs.close();
|
2013-08-23 00:46:30 +00:00
|
|
|
|
2020-04-11 19:43:55 +00:00
|
|
|
// Cheats will need to be reparsed now.
|
|
|
|
g_Config.bReloadCheats = true;
|
|
|
|
return true;
|
|
|
|
}
|