mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-08 21:20:13 +02:00
34 lines
1.5 KiB
C++
34 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include "ndsheader.h"
|
|
#include "fatstruct.h"
|
|
|
|
|
|
|
|
class NDSFactory
|
|
{
|
|
public:
|
|
NDSFactory();
|
|
bool loadRomHeader(const std::string& romPath, std::vector<char>& header);
|
|
bool dumpDataFromFile(const std::string& romPath, const std::string& savePath, uint32_t startAddr, uint32_t size);
|
|
bool logToFile(const std::string& logPath, const std::string& log);
|
|
bool readBytesFromFile(std::vector<char>& byteBuffer, const std::string& romPath, uint32_t startAddr, uint32_t size);
|
|
bool writeSectionToFile(const std::string& sectionPath, const std::string& savePath, uint32_t startAddr, uint32_t size);
|
|
bool writeBytesToFile(std::vector<char>& byteBuffer, const std::string& savePath, uint32_t startAddr, uint32_t size);
|
|
bool writePaddingToFile(char paddingChar, const std::string& savePath, uint32_t startAddr, uint32_t size);
|
|
int getCardSizeInBytes(int cardType);
|
|
bool checkArm9FooterPresence(const std::string& sectionPath, uint32_t size);
|
|
bool extractFatData(const std::string& fatDataSectionPath, const std::string& fatSectionPath,
|
|
const std::string& fntSectionPath, uint32_t originalFatDataAddr, const std::string& savePath, bool logFileIDs);
|
|
bool patchFat(const std::string& sectionPath, uint32_t shiftSize, const std::string& savePath);
|
|
bool buildFatData(const std::string& fatDataDirPath, const std::string& originalFatPath, uint32_t fatDataAddr, const std::string& savePath);
|
|
uint16_t calcHeaderCrc16(const std::vector<char>& romHeader);
|
|
|
|
private:
|
|
|
|
};
|
|
|