1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/* Copyright INRIA */
#include <stdio.h>
#include <string.h>
#ifdef __STDC__
#include <stdlib.h>
#endif
#include "../machine.h"
#include "../fileio/st.h"
struct soundstream ftf;
extern FILE *GetFile();
extern int GetSwap();
extern void sciprint __PARAMS ((char *fmt,...));
extern int SWAP(char type[],integer *fd); /* Defined in mgeti.c */
#define MPUTI(Type,Fswap) {\
Type *RES;\
Type val; \
RES= (Type *)res;\
for ( i=0; i< *n; i++) { \
val=(Type) *RES++; \
if ( swap) val = Fswap(val); \
fwrite(&val,sizeof(Type),1,fa); }\
}
void C2F(mputi) (fd,res,n,type,ierr)
integer *res;
integer *n,*ierr;
char type[];
integer *fd;
{
char c1,c2;
int i,nc,swap;
FILE *fa;
ft_t ft;
char *RES_c;
unsigned char *RES_uc;
unsigned long *RES_ul;
unsigned short *RES_us;
RES_c=(char *)res;
RES_uc=(unsigned char *)res;
RES_ul=(unsigned long *)res;
RES_us=(unsigned short *)res;
fa = GetFile(fd);
swap = GetSwap(fd);
ft = &ftf;
ft->fp = fa;
nc=strlen(type);
if ( nc == 0)
{
sciprint("mputi : format is of 0 length \r\n",type);
*ierr=1;
return;
}
if (fa)
{
switch ( type[0] )
{
case 'l' :
swap=SWAP(type,fd);
if(swap<0) {*ierr=1;return;}
MPUTI(long,swapl);
break;
case 's' :
swap=SWAP(type,fd);
if(swap<0) {*ierr=1;return;}
MPUTI(short,swapw);
break;
case 'c' :
for ( i=0; i< *n; i++)
{
char val;
val =(char) *RES_c++;
fwrite(&val,sizeof(char),1,fa);
}
break;
case 'u' :
if ( strlen(type) > 1) c1=type[1] ;
else c1=' ';
switch ( c1 )
{
case 'b' :
if ( strlen(type) > 2) c2=type[2];
else c2=' ';
switch (c2 )
{
case 'l' :
/* Write long, big-endian: big end first.
68000/SPARC style. */
for ( i=0; i< *n; i++)
{
unsigned long val;
val =(unsigned long) *RES_ul++;
wblong(ft, val);
}
break;
case 's' :
/* Write short, big-endian: big end first.
68000/SPARC style. */
for ( i=0; i< *n; i++)
{
unsigned short val;
val =(unsigned short) *RES_uc++;
wbshort(ft,val);
}
break;
}
break;
case 'l' :
if ( strlen(type) > 2) c2=type[2];
else c2=' ';
switch ( c2 )
{
case 'l' :
/* Write long, little-endian: little end first.
VAX/386 style.*/
for ( i=0; i< *n; i++)
{
unsigned long val;
val =(unsigned long) *RES_ul++;
wllong(ft, val);
}
break;
case 's' :
/* Write short, little-endian: little end first.
VAX/386 style.*/
for ( i=0; i< *n; i++)
{
unsigned short val;
val =(unsigned short) *RES_us++;
wlshort(ft,val);
}
break;
default:
MPUTI(unsigned long,swapl);
break;
}
break;
case 's' :
MPUTI(unsigned short,swapw);
break;
case 'c' :
for ( i=0; i< *n; i++)
{
unsigned char val;
val =(unsigned char) *RES_uc++;
fwrite(&val,sizeof(unsigned char),1,fa);
}
break;
default :
sciprint("mputi : %s format not recognized \r\n",type);
*ierr=1;
return;
}
break;
default :
sciprint("mputi : %s format not recognized \r\n",type);
*ierr=1;
return;
}
*ierr = ferror(fa);
return;
}
sciprint("No input file \r\n");
*ierr=1;
}
|