mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-09 05:30:12 +02:00
32 lines
1.3 KiB
C++
32 lines
1.3 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 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 patchFat(const std::string& sectionPath, uint32_t shiftSize, const std::string& savePath);
|
|
uint16_t calcHeaderCrc16(const std::vector<char>& romHeader);
|
|
|
|
private:
|
|
|
|
};
|
|
|