WinUAE/prowizard/rippers/StimPacker.c
2010-02-22 21:46:52 +02:00

275 lines
6.1 KiB
C

/* testSTIM() */
/* Rip_STIM() */
/* Depack_STIM() */
/* update on the 3rd of april 2000 */
/* bug pointes out by Thomas Neumann ... thx */
#include "globals.h"
#include "extern.h"
short testSTIM ( void )
{
PW_Start_Address = PW_i;
/* */
PW_j = ((in_data[PW_Start_Address+4]*256*256*256)+
(in_data[PW_Start_Address+5]*256*256)+
(in_data[PW_Start_Address+6]*256)+
in_data[PW_Start_Address+7]);
if ( PW_j < 406 )
{
return BAD;
}
/* size of the pattern list */
PW_k = ((in_data[PW_Start_Address+18]*256)+
in_data[PW_Start_Address+19]);
if ( PW_k > 128 )
{
return BAD;
}
/* nbr of pattern saved */
PW_k = ((in_data[PW_Start_Address+20]*256)+
in_data[PW_Start_Address+21]);
if ( (PW_k > 64) || (PW_k == 0) )
{
return BAD;
}
/* pattern list */
for ( PW_l=0 ; PW_l<128 ; PW_l++ )
{
if ( in_data[PW_Start_Address+22+PW_l] > PW_k )
{
return BAD;
}
}
/* test sample sizes */
PW_WholeSampleSize = 0;
for ( PW_l=0 ; PW_l<31 ; PW_l++ )
{
/* addresse de la table */
PW_o = PW_Start_Address+PW_j+PW_l*4;
/* address du sample */
PW_k = ((in_data[PW_o]*256*256*256)+
(in_data[PW_o+1]*256*256)+
(in_data[PW_o+2]*256)+
in_data[PW_o+3]);
/* taille du smp */
PW_m = ((in_data[PW_o+PW_k-PW_l*4]*256)+
in_data[PW_o+PW_k+1-PW_l*4])*2;
PW_WholeSampleSize += PW_m;
}
if ( PW_WholeSampleSize <= 4 )
{
return BAD;
}
/* PW_WholeSampleSize is the size of the sample data */
/* PW_j is the address of the sample desc */
return GOOD;
}
void Rip_STIM ( void )
{
OutputSize = PW_WholeSampleSize + PW_j + 31*4 + 31*8;
CONVERT = GOOD;
Save_Rip ( "STIM (Slamtilt) module", STIM );
if ( Save_Status == GOOD )
PW_i += (OutputSize - 1); /* 0 should do but call it "just to be sure" :) */
}
/*
* STIM_Packer.c 1998 (c) Sylvain "Asle" Chipaux
*
* STIM Packer to Protracker.
********************************************************
* 13 april 1999 : Update
* - no more open() of input file ... so no more fread() !.
* It speeds-up the process quite a bit :).
* 28 Nov 1999 : Update
* - Speed & Size optimizings
*/
void Depack_STIM ( void )
{
Uchar *Whatever;
Uchar c1=0x00,c2=0x00,c3=0x00,c4=0x00;
Uchar poss[36][2];
Uchar Max=0x00;
Uchar Note,Smp,Fx,FxVal;
short TracksAdd[4];
long i=0,j=0,k=0;
long WholeSampleSize=0;
long SmpDescAdd=0;
long PatAdds[64];
long SmpDataAdds[31];
long SmpSizes[31];
long Where=PW_Start_Address; /* main pointer to prevent fread() */
FILE *out;
if ( Save_Status == BAD )
return;
fillPTKtable(poss);
BZERO ( PatAdds , 64*4 );
BZERO ( SmpDataAdds , 31*4 );
BZERO ( SmpSizes , 31*4 );
sprintf ( Depacked_OutName , "%ld.mod" , Cpt_Filename-1 );
out = PW_fopen ( Depacked_OutName , "w+b" );
/* write title */
Whatever = (Uchar *) malloc (1024);
BZERO ( Whatever , 1024 );
fwrite ( Whatever , 20 , 1 , out );
/* bypass ID */
Where += 4;
/* read $ of sample description */
SmpDescAdd = (in_data[Where]*256*256*256)+
(in_data[Where+1]*256*256)+
(in_data[Where+2]*256)+
in_data[Where+3];
/* "Where" isn't "+=4" coz it's assigned below */
/*printf ( "SmpDescAdd : %ld\n" , SmpDescAdd );*/
/* convert and write header */
for ( i=0 ; i<31 ; i++ )
{
Where = PW_Start_Address + SmpDescAdd + i*4;
SmpDataAdds[i]=(in_data[Where]*256*256*256)+
(in_data[Where+1]*256*256)+
(in_data[Where+2]*256)+
in_data[Where+3];
SmpDataAdds[i] += SmpDescAdd;
Where = PW_Start_Address + SmpDataAdds[i];
SmpDataAdds[i] += 8;
/* write sample name */
fwrite ( Whatever , 22 , 1 , out );
/* sample size */
SmpSizes[i] = (((in_data[Where]*256)+in_data[Where+1])*2);
WholeSampleSize += (((in_data[Where]*256)+in_data[Where+1])*2);
/* size,fine,vol,loops */
fwrite ( &in_data[Where] , 8 , 1 , out );
/* no "Where += 8" coz it's reassigned inside and after loop */
}
/* size of the pattern list */
Where = PW_Start_Address + 19;
fwrite ( &in_data[Where++] , 1 , 1 , out );
Whatever[0] = 0x7f;
fwrite ( Whatever , 1 , 1 , out );
/* pattern table */
Where += 1;
Max = in_data[Where++];
fwrite ( &in_data[Where] , 128 , 1 , out );
Where += 128;
/*printf ( "number of pattern : %d\n" , Max );*/
/* write Protracker's ID */
Whatever[0] = 'M';
Whatever[1] = '.';
Whatever[2] = 'K';
Whatever[3] = '.';
fwrite ( Whatever , 4 , 1 , out );
/* read pattern addresses */
for ( i=0 ; i<64 ; i++ )
{
PatAdds[i] = (in_data[Where]*256*256*256)+
(in_data[Where+1]*256*256)+
(in_data[Where+2]*256)+
in_data[Where+3];
PatAdds[i] += 0x0c;
Where += 4;
}
/* pattern data */
for ( i=0 ; i<Max ; i++ )
{
Where = PW_Start_Address + PatAdds[i];
for ( k=0 ; k<4 ; k++ )
{
TracksAdd[k] = (in_data[Where]*256)+in_data[Where+1];
Where += 2;
}
BZERO ( Whatever , 1024 );
for ( k=0 ; k<4 ; k++ )
{
Where = PW_Start_Address + PatAdds[i]+TracksAdd[k];
for ( j=0 ; j<64 ; j++ )
{
c1 = in_data[Where++];
if ( (c1&0x80) == 0x80 )
{
j += (c1&0x7F);
continue;
}
c2 = in_data[Where++];
c3 = in_data[Where++];
Smp = c1&0x1F;
Note = c2&0x3F;
Fx = ((c1>>5)&0x03);
c4 = ((c2>>4)&0x0C);
Fx |= c4;
FxVal = c3;
Whatever[j*16+k*4] = (Smp & 0xf0);
if ( Note != 0 )
{
Whatever[j*16+k*4] |= poss[Note-1][0];
Whatever[j*16+k*4+1] = poss[Note-1][1];
}
Whatever[j*16+k*4+2] = ((Smp<<4)&0xf0);
Whatever[j*16+k*4+2] |= Fx;
Whatever[j*16+k*4+3] = FxVal;
}
}
fwrite ( Whatever , 1024 , 1 , out );
/* printf ( "pattern %ld written\n" , i );*/
}
free ( Whatever );
/* sample data */
for ( i=0 ; i<31 ; i++ )
{
Where = PW_Start_Address + SmpDataAdds[i];
fwrite ( &in_data[Where] , SmpSizes[i] , 1 , out );
}
Crap ( " STIM (Slamtilt) " , BAD , BAD , out );
fflush ( out );
fclose ( out );
printf ( "done\n" );
return; /* useless ... but */
}