mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-02 16:59:03 +00:00
126 lines
3.8 KiB
C
126 lines
3.8 KiB
C
#include "lib.h"
|
|
#include "ncch.h"
|
|
#include "ncsd.h"
|
|
#include "cia.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Setting up user settings
|
|
user_settings *usrset = malloc(sizeof(user_settings));
|
|
if(usrset == NULL) {fprintf(stderr,"[!] MEM ERROR\n"); return -1;}
|
|
init_UserSettings(usrset);
|
|
|
|
int result;
|
|
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Parseing Args\n");
|
|
#endif
|
|
|
|
// Parsing command args
|
|
result = ParseArgs(argc,argv,usrset);
|
|
if(result < 0) goto finish;
|
|
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Importing Yaml Settings\n");
|
|
#endif
|
|
|
|
// Import RSF Settings if present
|
|
result = GetYamlSettings(usrset);
|
|
if(result < 0) goto finish;
|
|
|
|
// Setup Content 0
|
|
if(!usrset->IsBuildingNCCH0){ // Import Content 0
|
|
if(usrset->Content0IsNcch){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Import NCCH0\n");
|
|
#endif
|
|
FILE *ncch0 = fopen(usrset->ContentPath[0],"rb");
|
|
if(!ncch0) {fprintf(stderr,"[MAKEROM ERROR] Failed to open Content 0: %s\n",usrset->ContentPath[0]); goto finish;}
|
|
fclose(ncch0);
|
|
usrset->Content0.size = GetFileSize_u64(usrset->ContentPath[0]);
|
|
usrset->Content0.buffer = malloc(usrset->Content0.size);
|
|
ncch0 = fopen(usrset->ContentPath[0],"rb");
|
|
ReadFile_64(usrset->Content0.buffer, usrset->Content0.size,0,ncch0);
|
|
fclose(ncch0);
|
|
}
|
|
else if(usrset->Content0IsSrl){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Import SRL\n");
|
|
#endif
|
|
FILE *srl = fopen(usrset->SrlPath,"rb");
|
|
if(!srl) {fprintf(stderr,"[MAKEROM ERROR] Failed to open SRL: %s\n",usrset->SrlPath); goto finish;}
|
|
fclose(srl);
|
|
u64 size = GetFileSize_u64(usrset->SrlPath);
|
|
usrset->Content0.size = align_value(size,0x10);
|
|
usrset->Content0.buffer = malloc(usrset->Content0.size);
|
|
srl = fopen(usrset->SrlPath,"rb");
|
|
ReadFile_64(usrset->Content0.buffer,size,0,srl);
|
|
fclose(srl);
|
|
}
|
|
else if(usrset->ConvertCci){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Import CCI\n");
|
|
#endif
|
|
FILE *cci = fopen(usrset->CciPath,"rb");
|
|
if(!cci) {fprintf(stderr,"[MAKEROM ERROR] Failed to open CCI: %s\n",usrset->CciPath); goto finish;}
|
|
fclose(cci);
|
|
usrset->Content0.size = GetFileSize_u64(usrset->CciPath);
|
|
usrset->Content0.buffer = malloc(usrset->Content0.size);
|
|
cci = fopen(usrset->CciPath,"rb");
|
|
ReadFile_64(usrset->Content0.buffer, usrset->Content0.size,0,cci);
|
|
fclose(cci);
|
|
}
|
|
}
|
|
else{// Build Content 0
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Build NCCH0\n");
|
|
#endif
|
|
result = build_NCCH(usrset);
|
|
if(result < 0) {
|
|
//fprintf(stderr,"[ERROR] %s generation failed\n",usrset->build_ncch_type == CXI? "CXI" : "CFA");
|
|
fprintf(stderr,"[RESULT] Failed to build outfile\n");
|
|
goto finish;
|
|
}
|
|
}
|
|
// Make CCI
|
|
if(usrset->out_format == CCI){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Building CCI\n");
|
|
#endif
|
|
result = build_CCI(usrset);
|
|
if(result < 0) { fprintf(stderr,"[RESULT] Failed to build CCI\n"); goto finish; }
|
|
}
|
|
// Make CIA
|
|
else if(usrset->out_format == CIA){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Building CIA\n");
|
|
#endif
|
|
result = build_CIA(usrset);
|
|
if(result < 0) { fprintf(stderr,"[RESULT] Failed to build CIA\n"); goto finish; }
|
|
}
|
|
// No Container Raw CXI/CFA
|
|
else if(usrset->out_format == CXI || usrset->out_format == CFA){
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Outputting NCCH, because No Container\n");
|
|
#endif
|
|
FILE *ncch_out = fopen(usrset->outfile,"wb");
|
|
if(!ncch_out) {
|
|
fprintf(stderr,"[ERROR] Failed to create '%s'\n",usrset->outfile);
|
|
fprintf(stderr,"[RESULT] Failed to build '%s'\n",usrset->out_format == CXI? "CXI" : "CFA");
|
|
result = FAILED_TO_CREATE_OUTFILE;
|
|
goto finish;
|
|
}
|
|
WriteBuffer(usrset->Content0.buffer,usrset->Content0.size,0,ncch_out);
|
|
fclose(ncch_out);
|
|
}
|
|
|
|
finish:
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Free Context\n");
|
|
#endif
|
|
free_UserSettings(usrset);
|
|
#ifdef DEBUG
|
|
printf("[DEBUG] Finished returning (result=%d)\n",result);
|
|
#endif
|
|
return result;
|
|
} |