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 175 176
|
/*
* Copyright (C) 2003 Robert Kooima
*
* NEVERBALL 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.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <SDL_endian.h>
#include "fs.h"
/*---------------------------------------------------------------------------*/
void put_float(fs_file fout, float f)
{
unsigned char *p = (unsigned char *) &f;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
fs_putc((int) p[3], fout);
fs_putc((int) p[2], fout);
fs_putc((int) p[1], fout);
fs_putc((int) p[0], fout);
#else
fs_putc((int) p[0], fout);
fs_putc((int) p[1], fout);
fs_putc((int) p[2], fout);
fs_putc((int) p[3], fout);
#endif
}
void put_index(fs_file fout, int i)
{
unsigned char *p = (unsigned char *) &i;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
fs_putc((int) p[3], fout);
fs_putc((int) p[2], fout);
fs_putc((int) p[1], fout);
fs_putc((int) p[0], fout);
#else
fs_putc((int) p[0], fout);
fs_putc((int) p[1], fout);
fs_putc((int) p[2], fout);
fs_putc((int) p[3], fout);
#endif
}
void put_short(fs_file fout, short s)
{
unsigned char *p = (unsigned char *) &s;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
fs_putc((int) p[1], fout);
fs_putc((int) p[0], fout);
#else
fs_putc((int) p[0], fout);
fs_putc((int) p[1], fout);
#endif
}
void put_array(fs_file fout, const float *v, size_t n)
{
size_t i;
for (i = 0; i < n; i++)
put_float(fout, v[i]);
}
/*---------------------------------------------------------------------------*/
float get_float(fs_file fin)
{
float f;
unsigned char *p = (unsigned char *) &f;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
p[3] = (unsigned char) fs_getc(fin);
p[2] = (unsigned char) fs_getc(fin);
p[1] = (unsigned char) fs_getc(fin);
p[0] = (unsigned char) fs_getc(fin);
#else
p[0] = (unsigned char) fs_getc(fin);
p[1] = (unsigned char) fs_getc(fin);
p[2] = (unsigned char) fs_getc(fin);
p[3] = (unsigned char) fs_getc(fin);
#endif
return f;
}
int get_index(fs_file fin)
{
int i;
unsigned char *p = (unsigned char *) &i;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
p[3] = (unsigned char) fs_getc(fin);
p[2] = (unsigned char) fs_getc(fin);
p[1] = (unsigned char) fs_getc(fin);
p[0] = (unsigned char) fs_getc(fin);
#else
p[0] = (unsigned char) fs_getc(fin);
p[1] = (unsigned char) fs_getc(fin);
p[2] = (unsigned char) fs_getc(fin);
p[3] = (unsigned char) fs_getc(fin);
#endif
return i;
}
short get_short(fs_file fin)
{
short s;
unsigned char *p = (unsigned char *) &s;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
p[1] = (unsigned char) fs_getc(fin);
p[0] = (unsigned char) fs_getc(fin);
#else
p[0] = (unsigned char) fs_getc(fin);
p[1] = (unsigned char) fs_getc(fin);
#endif
return s;
}
void get_array(fs_file fin, float *v, size_t n)
{
size_t i;
for (i = 0; i < n; i++)
v[i] = get_float(fin);
}
/*---------------------------------------------------------------------------*/
void put_string(fs_file fout, const char *s)
{
fs_puts(s, fout);
fs_putc('\0', fout);
}
void get_string(fs_file fin, char *s, size_t max)
{
size_t pos = 0;
int c;
while ((c = fs_getc(fin)) >= 0)
{
if (pos < max)
{
s[pos++] = c;
/* Terminate the string, but keep reading until NUL. */
if (pos == max)
s[pos - 1] = 0;
}
if (c == 0)
break;
}
}
/*---------------------------------------------------------------------------*/
|