pxtone-sys 0.2.1

Low level bindings to pxtone for Rust
Documentation
// '12/03/06

#include "./pxtn.h"

#include "./pxtnWoice.h"

//////////////////////
// matePCM
//////////////////////

// 24byte =================
typedef struct
{
	uint16_t x3x_unit_no;
	uint16_t basic_key  ;
	uint32_t voice_flags;
	uint16_t ch         ;
	uint16_t bps        ;
	uint32_t sps        ;
	float    tuning     ;
	uint32_t data_size  ;
}
_MATERIALSTRUCT_PCM;

bool pxtnWoice::io_matePCM_w( pxtnDescriptor *p_doc ) const
{
	const pxtnPulse_PCM* p_pcm =  _voices[ 0 ].p_pcm;
	pxtnVOICEUNIT*       p_vc  = &_voices[ 0 ];
	_MATERIALSTRUCT_PCM  pcm;
 
	memset( &pcm, 0, sizeof( _MATERIALSTRUCT_PCM ) );

	pcm.sps         = (uint32_t)p_pcm->get_sps     ();
	pcm.bps         = (uint16_t)p_pcm->get_bps     ();
	pcm.ch          = (uint16_t)p_pcm->get_ch      ();
	pcm.data_size   = (uint32_t)p_pcm->get_buf_size();
	pcm.x3x_unit_no = (uint16_t)0;
	pcm.tuning      =           p_vc->tuning     ;
	pcm.voice_flags =           p_vc->voice_flags;
	pcm.basic_key   = (uint16_t)p_vc->basic_key  ;

	uint32_t size = sizeof( _MATERIALSTRUCT_PCM ) + pcm.data_size;
	if( !p_doc->w_asfile( &size, sizeof(uint32_t           ), 1 ) ) return false;
	if( !p_doc->w_asfile( &pcm , sizeof(_MATERIALSTRUCT_PCM), 1 ) ) return false;
	if( !p_doc->w_asfile( p_pcm->get_p_buf(), 1, pcm.data_size  ) ) return false;

	return true;
}

pxtnERR pxtnWoice::io_matePCM_r( pxtnDescriptor *p_doc )
{
	pxtnERR             res  = pxtnERR_VOID;
	_MATERIALSTRUCT_PCM pcm  = {0};
	int32_t             size =  0 ;

	if( !p_doc->r( &size, 4,                            1 ) ) return pxtnERR_desc_r;
	if( !p_doc->r( &pcm, sizeof( _MATERIALSTRUCT_PCM ), 1 ) ) return pxtnERR_desc_r;

	if( ((int32_t)pcm.voice_flags) & PTV_VOICEFLAG_UNCOVERED )return pxtnERR_fmt_unknown;

	if( !Voice_Allocate( 1 ) ){ res = pxtnERR_memory; goto term; }

	{
		pxtnVOICEUNIT* p_vc = &_voices[ 0 ];

		p_vc->type = pxtnVOICE_Sampling;

		res = p_vc->p_pcm->Create( pcm.ch, pcm.sps, pcm.bps, pcm.data_size / ( pcm.bps / 8 * pcm.ch ) );
		if( res != pxtnOK ) goto term;
		if( !p_doc->r( p_vc->p_pcm->get_p_buf_variable(), 1, pcm.data_size ) ){ res = pxtnERR_desc_r; goto term; }
		_type      = pxtnWOICE_PCM;

		p_vc->voice_flags = pcm.voice_flags;
		p_vc->basic_key   = pcm.basic_key  ;
		p_vc->tuning      = pcm.tuning     ;
		_x3x_basic_key    = pcm.basic_key  ;
		_x3x_tuning       =               0;
	}
	res = pxtnOK;
term:

	if( res != pxtnOK ) Voice_Release();
	return res;
}


/////////////
// matePTN
/////////////

// 16byte =================
typedef struct
{
	uint16_t x3x_unit_no;
	uint16_t basic_key  ;
	uint32_t voice_flags;
	float    tuning     ;
	int32_t  rrr        ; // 0: -v.0.9.2.3
	                      // 1:  v.0.9.2.4-
}
_MATERIALSTRUCT_PTN;

bool pxtnWoice::io_matePTN_w( pxtnDescriptor *p_doc ) const
{
	_MATERIALSTRUCT_PTN ptn ;
	pxtnVOICEUNIT*      p_vc;
	int32_t                 size = 0;

	// ptv -------------------------
	memset( &ptn, 0, sizeof( _MATERIALSTRUCT_PTN ) );
	ptn.x3x_unit_no   = (uint16_t)0;

	p_vc = &_voices[ 0 ];
	ptn.tuning      =           p_vc->tuning     ;
	ptn.voice_flags =           p_vc->voice_flags;
	ptn.basic_key   = (uint16_t)p_vc->basic_key  ;
	ptn.rrr         =                           1;

	// pre
	if( !p_doc->w_asfile( &size, sizeof(int32_t),             1 ) ) return false;
	if( !p_doc->w_asfile( &ptn,  sizeof(_MATERIALSTRUCT_PTN), 1 ) ) return false;
	size += sizeof(_MATERIALSTRUCT_PTN);
	if( !p_vc->p_ptn->write( p_doc, &size )                       ) return false;
	if( !p_doc->seek( pxtnSEEK_cur, -size - sizeof(int32_t) )     ) return false;
	if( !p_doc->w_asfile( &size, sizeof(int32_t),             1 ) ) return false;
	if( !p_doc->seek( pxtnSEEK_cur, size )                        ) return false;

	return true;
}


pxtnERR pxtnWoice::io_matePTN_r( pxtnDescriptor *p_doc )
{
	pxtnERR             res  = pxtnERR_VOID; 
	_MATERIALSTRUCT_PTN ptn  = {0};
	int32_t             size =  0 ;

	if( !p_doc->r( &size, sizeof(int32_t),               1 ) ) return pxtnERR_desc_r;
	if( !p_doc->r( &ptn,  sizeof( _MATERIALSTRUCT_PTN ), 1 ) ) return pxtnERR_desc_r;

	if     ( ptn.rrr > 1 ) return pxtnERR_fmt_unknown;
	else if( ptn.rrr < 0 ) return pxtnERR_fmt_unknown;

	if( !Voice_Allocate( 1 ) ) return pxtnERR_memory;

	{
		pxtnVOICEUNIT *p_vc = &_voices[ 0 ];

		p_vc->type = pxtnVOICE_Noise;
		res = p_vc->p_ptn->read( p_doc ); if( res != pxtnOK ) goto term;
		_type = pxtnWOICE_PTN;
		p_vc->voice_flags  = ptn.voice_flags;
		p_vc->basic_key    = ptn.basic_key  ;
		p_vc->tuning       = ptn.tuning     ;
	}

	_x3x_basic_key = ptn.basic_key;
	_x3x_tuning    =             0;

	res = pxtnOK;
term:
	if( res != pxtnOK ) Voice_Release();
	return res;
}

/////////////////
// matePTV
/////////////////

// 24byte =================
typedef struct
{
	uint16_t x3x_unit_no;
	uint16_t rrr        ;
	float    x3x_tuning ;
	int32_t  size       ;
}
_MATERIALSTRUCT_PTV;

bool pxtnWoice::io_matePTV_w( pxtnDescriptor *p_doc ) const
{
	_MATERIALSTRUCT_PTV ptv;
	int32_t                 head_size = sizeof(_MATERIALSTRUCT_PTV) + sizeof(int32_t);
	int32_t                 size = 0;

	// ptv -------------------------
	memset( &ptv, 0, sizeof( _MATERIALSTRUCT_PTV ) );
	ptv.x3x_unit_no = (uint16_t)0;
	ptv.x3x_tuning  =           0;//1.0f;//p_w->tuning;
	ptv.size        =           0;

	// pre write
	if( !p_doc->w_asfile( &size, sizeof(int32_t),             1 ) ) return false;
	if( !p_doc->w_asfile( &ptv,  sizeof(_MATERIALSTRUCT_PTV), 1 ) ) return false;
	if( !PTV_Write( p_doc, &ptv.size )       ) return false;

	if( !p_doc->seek( pxtnSEEK_cur, -( ptv.size + head_size ) ) ) return false;

	size = ptv.size +  sizeof(_MATERIALSTRUCT_PTV);
	if( !p_doc->w_asfile( &size, sizeof(int32_t),             1 ) ) return false;
	if( !p_doc->w_asfile( &ptv,  sizeof(_MATERIALSTRUCT_PTV), 1 ) ) return false;

	if( !p_doc->seek( pxtnSEEK_cur, ptv.size )                    ) return false;

	return true;
}

pxtnERR pxtnWoice::io_matePTV_r( pxtnDescriptor *p_doc )
{
	pxtnERR             res  = pxtnERR_VOID;
	_MATERIALSTRUCT_PTV ptv  = {0};
	int32_t             size =  0 ;

	if( !p_doc->r( &size, sizeof(int32_t),               1 ) ) return pxtnERR_desc_r;
	if( !p_doc->r( &ptv,  sizeof( _MATERIALSTRUCT_PTV ), 1 ) ) return pxtnERR_desc_r;
	if( ptv.rrr ) return pxtnERR_fmt_unknown;
	res = PTV_Read( p_doc ); if( res != pxtnOK ) goto term;

	if( ptv.x3x_tuning != 1.0 ) _x3x_tuning = ptv.x3x_tuning;
	else                        _x3x_tuning =              0;

	res = pxtnOK;
term:

	return res;
}


#ifdef  pxINCLUDE_OGGVORBIS

//////////////////////
// mateOGGV
//////////////////////

// 16byte =================
typedef struct
{
	uint16_t xxx        ; //ch;
	uint16_t basic_key  ;
	uint32_t voice_flags;
	float    tuning     ;
}
_MATERIALSTRUCT_OGGV;

bool pxtnWoice::io_mateOGGV_w( pxtnDescriptor *p_doc ) const
{
	if( !_voices ) return false;

	_MATERIALSTRUCT_OGGV mate = {0};
	pxtnVOICEUNIT*       p_vc = &_voices[ 0 ];

	if( !p_vc->p_oggv ) return false;

	int32_t oggv_size = p_vc->p_oggv->GetSize();
	
	mate.tuning      =           p_vc->tuning     ;
	mate.voice_flags =           p_vc->voice_flags;
	mate.basic_key   = (uint16_t)p_vc->basic_key  ;

	uint32_t size = sizeof( _MATERIALSTRUCT_OGGV ) + oggv_size;
	if( !p_doc->w_asfile( &size, sizeof(uint32_t)            , 1 ) ) return false;
	if( !p_doc->w_asfile( &mate, sizeof(_MATERIALSTRUCT_OGGV), 1 ) ) return false;
	if( !p_vc->p_oggv->pxtn_write( p_doc ) ) return false;

	return true;
}

pxtnERR pxtnWoice::io_mateOGGV_r( pxtnDescriptor *p_doc )
{
	pxtnERR              res  = pxtnERR_VOID;
	_MATERIALSTRUCT_OGGV mate = {0};
	int32_t              size =  0 ;

	if( !p_doc->r( &size, 4,                              1 ) ) return pxtnERR_desc_r;
	if( !p_doc->r( &mate, sizeof( _MATERIALSTRUCT_OGGV ), 1 ) ) return pxtnERR_desc_r;

	if( ((int32_t)mate.voice_flags) & PTV_VOICEFLAG_UNCOVERED ) return pxtnERR_fmt_unknown;

	if( !Voice_Allocate( 1 ) ) goto End;

	{
		pxtnVOICEUNIT *p_vc = &_voices[ 0 ];
		p_vc->type = pxtnVOICE_OggVorbis;

		if( !p_vc->p_oggv->pxtn_read( p_doc ) ) goto End;

		p_vc->voice_flags  = mate.voice_flags;
		p_vc->basic_key    = mate.basic_key  ;
		p_vc->tuning       = mate.tuning     ;
	}
	
	_x3x_basic_key = mate.basic_key;
	_x3x_tuning    =              0;
	_type          = pxtnWOICE_OGGV;

	res = pxtnOK;
End:
	if( res != pxtnOK ) Voice_Release();
	return res;
}

#endif