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
|
/* fmfconv_types.c: .fmf movie file types
Copyright (c) 2017 Fredrick Meunier
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: fredm@spamcop.net
*/
#include <stdlib.h>
#include "fmfconv.h"
fmf_screen_type
get_screen_type(libspectrum_byte screen_type)
{
fmf_screen_type retval;
switch(screen_type) {
case '$':
retval = STANDARD;
break;
case 'X':
retval = STANDARD_TIMEX;
break;
case 'R':
retval = HIRES;
break;
case 'C':
retval = HICOLOR;
break;
default:
printe( "Unknown Screen$ type '%d', sorry...\n", screen_type );
exit(-1);
break;
}
return retval;
}
fmf_sound_type
get_sound_type( int sound_type )
{
fmf_sound_type retval;
switch(sound_type) {
case 'P':
retval = PCM;
break;
case 'A':
retval = ALW;
break;
case 'U':
retval = ULW;
break;
default:
printe( "Unknown sound_type:%x\n", sound_type );
exit( -1 );
break;
}
return retval;
}
const char*
get_sound_type_string( fmf_sound_type sound_type )
{
const char *retval;
switch( sound_type ) {
case PCM:
retval = "PCM";
break;
case ALW:
retval = "ALAW";
break;
case ULW:
retval = "ULAW";
break;
default:
printe( "Unknown sound_type:%x\n", sound_type );
exit(-1);
break;
}
return retval;
}
fmf_sound_channels_type
get_sound_channels_type( int sound_channels_type )
{
fmf_sound_channels_type retval;
switch( sound_channels_type ) {
case 'S':
retval = STEREO;
break;
case 'M':
retval = MONO;
break;
default:
printe( "Unknown FMF sound channels type '%d', sorry...\n", sound_channels_type );
exit(-1);
break;
}
return retval;
}
int
get_sound_channels_count( int sound_channels_type )
{
return get_sound_channels_type( sound_channels_type ) == STEREO ? 2 : 1;
}
fmf_machine_type
get_machine_type( char machine_type )
{
fmf_machine_type retval;
switch(machine_type) {
case 'A':
retval = SPECTRUM_48K_LIKE;
break;
case 'B':
retval = SPECTRUM_128K_LIKE;
break;
case 'C':
retval = TS2068_LIKE;
break;
case 'D':
retval = PENTAGON_LIKE;
break;
case 'E':
retval = SPECTRUM_NTSC_LIKE;
break;
default:
printe( "Unknown Machine type '%c', sorry...\n", machine_type );
exit(-1);
break;
}
return retval;
}
const char *machine_name[] = {
"ZX Spectrum 16K/48K, Timex TC2048/2068, Scorpion, Spectrum SE", /* A */
"ZX Spectrum 128K/+2/+2A/+3/+3e/128Ke", /* B */
"Timex TS2068", /* C */
"Pentagon 128K/512K/1024K" /* D */
"ZX Spectrum 48K (NTSC)" /* E */
};
const char*
get_machine_type_string(fmf_machine_type type) {
return machine_name[type];
}
|