Added silent flag to mkpsxixo

This commit is contained in:
Xavi Del Campo 2020-01-31 14:11:39 +01:00
parent aad614833a
commit 6b14cee120
1 changed files with 350 additions and 250 deletions

View File

@ -7,17 +7,27 @@
#include <stdio.h>
#include <string.h>
#ifndef bool
typedef enum t_bool
{
false = 0,
true = 1
}bool;
#endif // bool
char iso2raw_sec[16];
char iso2raw_sub[8];
char iso2raw_buf[2048];
char iso2raw_edc[4];
char iso2raw_ecc[276];
bool silent_flag;
void Iso2Raw_init()
{
int x;
for(x = 0; x < 16; x++)
for (x = 0; x < 16; x++)
iso2raw_sec[x] = 0xFF;
iso2raw_sec[0] = 0;
@ -27,13 +37,13 @@ void Iso2Raw_init()
iso2raw_sec[14] = 0;
iso2raw_sec[15] = 2;
for(x = 0; x < 8; x++)
for (x = 0; x < 8; x++)
iso2raw_sub[x] = 0;
for(x = 0; x < 4; x++)
for (x = 0; x < 4; x++)
iso2raw_edc[x] = 1;
for(x = 0; x < 276; x++)
for (x = 0; x < 276; x++)
iso2raw_ecc[x] = 2;
}
@ -45,7 +55,7 @@ int Iso2Raw_licenseFile(char *licFile, char *binFile) {
lic = fopen(licFile, "rb"); //lic = new RandomAccessFile(licFile, "r");
if(lic == NULL)
if (lic == NULL)
{
printf("Error! Could not open license file!\n");
ret = 0;
@ -54,7 +64,7 @@ int Iso2Raw_licenseFile(char *licFile, char *binFile) {
bin = fopen(binFile, "rb+"); //bin = new RandomAccessFile(binFile, "rw");
if(bin == NULL)
if (bin == NULL)
{
printf("Error! Could not open BIN file!\n");
fclose(lic);
@ -97,7 +107,7 @@ int Iso2Raw_licenseFile(char *licFile, char *binFile) {
ret = 1;
Iso2Raw_licenseFile_end:
if(ret == 0)
if (ret == 0)
printf("Error licensing file! You must NOT burn the RAW image!\n");
return ret;
@ -110,25 +120,25 @@ void Iso2Raw_generateCue(char *binFileName)
char cueFileName[256];
FILE *cue_file;
for(x = (strlen(binFileName) - 1); x >= 0; x--)
for (x = (strlen(binFileName) - 1); x >= 0; x--)
{
if(binFileName[x] == '/' || binFileName[x] == '\\' || binFileName[x] == ':')
if (binFileName[x] == '/' || binFileName[x] == '\\' || binFileName[x] == ':')
break;
}
x++;
y = 0;
for(; x < strlen(binFileName); x++)
for (; x < strlen(binFileName); x++)
binBaseName[y++] = binFileName[x];
binBaseName[y] = 0;
y = 0;
for(x = 0; x < strlen(binFileName); x++)
for (x = 0; x < strlen(binFileName); x++)
{
if(binFileName[x] == '.')
if (binFileName[x] == '.')
break;
else
cueFileName[y++] = binFileName[x];
@ -156,7 +166,7 @@ int Iso2Raw_convert(char *isofile, char *rawfile, char *licfile)
infile = fopen(isofile, "rb");
if(infile == NULL)
if (infile == NULL)
{
printf("An error has occured while trying to open file %s\n", isofile);
return 0;
@ -176,7 +186,7 @@ int Iso2Raw_convert(char *isofile, char *rawfile, char *licfile)
outfile = fopen(rawfile, "wb+");
fseek(outfile, 0, SEEK_SET);
if(outfile == NULL)
if (outfile == NULL)
{
printf("An error has occured while trying to create file %s\n", rawfile);
fclose(infile);
@ -185,10 +195,10 @@ int Iso2Raw_convert(char *isofile, char *rawfile, char *licfile)
sector = 1;
totalsectors = filesize / 2048;
for(;;)
for (;;)
{
c = fread(iso2raw_buf, sizeof(char), 2048, infile);
if(c!=2048)break;
if (c!=2048)break;
fwrite(iso2raw_sec, sizeof(char), 16, outfile);
fwrite(iso2raw_sub, sizeof(char), 8, outfile);
@ -206,36 +216,117 @@ int Iso2Raw_convert(char *isofile, char *rawfile, char *licfile)
iso2raw_sec[14] = ((thesec/10)<<4)|(thesec - ((thesec/10)*10));
printf("\r%d%% completed...", sector * 100 / totalsectors);
if (silent_flag == false)
{
printf("\r%d%% completed...", sector * 100 / totalsectors);
}
sector++;
}
printf("\r100%% completed! \n");
if (silent_flag == false)
{
printf("\r100%% completed! \n");
}
fclose(infile);
fclose(outfile);
Iso2Raw_generateCue(rawfile);
if(!Iso2Raw_licenseFile(licfile, rawfile))
if (!Iso2Raw_licenseFile(licfile, rawfile))
return 0;
return 1;
}
int main(int argc, char *argv[])
int AddMusicTracksToCue(int track_n, char * bin_file, int bin_name_length, char * track)
{
puts("mkpsxiso (C Edition) v0.1b - Converts a standard ISO image to .bin/.cue (PSX)");
puts("This software is based on Bruno Freitas' mkpsxiso in Java - bootsector@ig.com.br");
puts("That version is in turn based on Conyers' mkpsxiso - http://www.conyers.demon.co.uk");
puts("Author: Giuseppe Gatta (aka nextvolume) - 01/07/2009 - tails92@gmail.com\n");
char * track_tokens = strtok(track,"=");
char * aux_tokens;
char * file_name;
FILE * out_file;
FILE * track_file;
if(argc != 4)
if (strncmp(track_tokens,"--track",strlen("--track") ) != 0)
{
printf("Usage: mkpsxiso <iso file> <bin file> <PSX license file>\n");
printf("Incorrect %s parameter!\n",track_tokens);
return 1;
}
track_tokens = strtok(NULL,"=");
bin_file[bin_name_length - 3] = 'c';
bin_file[bin_name_length - 2] = 'u';
bin_file[bin_name_length - 1] = 'e';
out_file = fopen(bin_file,"a+");
if (out_file == NULL)
{
printf("Error opening %s .\n",bin_file);
return 1;
}
track_file = fopen(track_tokens,"r");
if (track_file == NULL)
{
printf("Could not open track %s!\n",track_tokens);
return 1;
}
fclose(track_file);
aux_tokens = strtok(track_tokens,"\\/");
while(aux_tokens != NULL)
{
file_name = aux_tokens;
aux_tokens = strtok(NULL,"\\/");
}
fprintf(out_file, "FILE \"%s\" BINARY\n", file_name);
fprintf(out_file, "TRACK %.02d AUDIO\n",track_n);
fprintf(out_file, "\tINDEX 00 00:00:00\n");
fprintf(out_file, "\tINDEX 01 00:02:00\n");
printf("Track %s added.\n",file_name);
fclose(out_file);
return 0;
}
void showHelp(void)
{
puts("mkpsxiso (C Edition) v0.1b - Converts a standard ISO image to .bin/.cue (PSX)");
puts("Usage: mkpsxiso <iso file> <bin file> <PSX license file> [-s] [--track=path1] ... [--track=pathn]\n");
puts("This software is based on Bruno Freitas' mkpsxiso in Java - bootsector@ig.com.br");
puts("That version is in turn based on Conyers' mkpsxiso - http://www.conyers.demon.co.uk");
puts("Author: Giuseppe Gatta (aka nextvolume) - 01/07/2009 - tails92@gmail.com\n");
puts("Music track modifications by Xavier Del Campo (aka Xavi92) - 14/10/2016 - xavi.dcr@gmail.com\n");
}
int main(int argc, char *argv[])
{
int track_n = 2;
int i = 4;
if (argc < 4)
{
showHelp();
return 1;
}
else if (argc > 4)
{
if (strcmp(argv[i], "-s") == 0)
{
silent_flag = true;
i++;
}
}
Iso2Raw_init();
if (!Iso2Raw_convert(argv[1], argv[2], argv[3]))
@ -244,7 +335,16 @@ int main(int argc, char *argv[])
return 1;
}
puts("ISO file conversion terminated successfully!!");
for (; i < argc; i++)
{
if (AddMusicTracksToCue(track_n, argv[2], strlen(argv[2]), argv[i]) != 0)
{
// Errors are already reported by AddMusicTracksToCue().
return 1;
}
track_n++;
}
return 0;
}