]> git.mxchange.org Git - simgear.git/blob - simgear/io/lowlevel.hxx
Additional bug fixes after testing.
[simgear.git] / simgear / io / lowlevel.hxx
1 // lowlevel.hxx -- routines to handle lowlevel compressed binary IO of
2 //                 various datatypes
3 //
4 // Shamelessly adapted from plib  January 2001
5 //
6 // Original version Copyright (C) 2000  the plib team
7 // Local changes Copyright (C) 2000  Curtis L. Olson  - curt@flightgear.org
8 //
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 2 of the License, or
12 // (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24 //
25
26
27 #ifndef _SG_LOWLEVEL_HXX
28 #define _SG_LOWLEVEL_HXX
29
30
31 #include <stdio.h>
32 #include <zlib.h>
33
34 #include <plib/sg.h>
35
36
37 void sgReadChar ( gzFile fd, char *var ) ;
38 void sgWriteChar ( gzFile fd, const char var ) ;
39 void sgReadFloat ( gzFile fd, float *var ) ;
40 void sgWriteFloat ( gzFile fd, const float var ) ;
41 void sgReadDouble ( gzFile fd, double *var ) ;
42 void sgWriteDouble ( gzFile fd, const double var ) ;
43 void sgReadUInt ( gzFile fd, unsigned int *var ) ;
44 void sgWriteUInt ( gzFile fd, const unsigned int var ) ;
45 void sgReadInt ( gzFile fd, int *var ) ;
46 void sgWriteInt ( gzFile fd, const int var ) ;
47 void sgReadLong ( gzFile fd, long int *var ) ;
48 void sgWriteLong ( gzFile fd, const long int var ) ;
49 void sgReadUShort ( gzFile fd, unsigned short *var ) ;
50 void sgWriteUShort ( gzFile fd, const unsigned short var ) ;
51 void sgReadShort ( gzFile fd, short *var ) ;
52 void sgWriteShort ( gzFile fd, const short var ) ;
53
54 void sgReadFloat ( gzFile fd, const unsigned int n, float *var ) ;
55 void sgWriteFloat ( gzFile fd, const unsigned int n, const float *var ) ;
56 void sgReadDouble ( gzFile fd, const unsigned int n, double *var ) ;
57 void sgWriteDouble ( gzFile fd, const unsigned int n, const double *var ) ;
58 void sgReadUInt ( gzFile fd, const unsigned int n, unsigned int *var ) ;
59 void sgWriteUInt ( gzFile fd, const unsigned int n, const unsigned int *var ) ;
60 void sgReadInt ( gzFile fd, const unsigned int n, int *var ) ;
61 void sgWriteInt ( gzFile fd, const unsigned int n, const int *var ) ;
62 void sgReadUShort ( gzFile fd, const unsigned int n, unsigned short *var ) ;
63 void sgWriteUShort ( gzFile fd, const unsigned int n, const unsigned short *var ) ;
64 void sgReadShort ( gzFile fd, const unsigned int n, short *var ) ;
65 void sgWriteShort ( gzFile fd, const unsigned int n, const short *var ) ;
66 void sgReadBytes ( gzFile fd, const unsigned int n, void *var ) ;
67 void sgWriteBytes ( gzFile fd, const unsigned int n, const void *var ) ;
68
69 void sgReadString ( gzFile fd, char **var ) ;
70 void sgWriteString ( gzFile fd, const char *var ) ;
71
72 void sgReadVec2 ( gzFile fd, sgVec2 var ) ;
73 void sgWriteVec2 ( gzFile fd, const sgVec2 var ) ;
74 void sgReadVec3 ( gzFile fd, sgVec3 var ) ;
75 void sgWriteVec3 ( gzFile fd, const sgVec3 var ) ;
76 void sgReaddVec3 ( gzFile fd, sgdVec3 var ) ;
77 void sgWritedVec3 ( gzFile fd, const sgdVec3 var ) ;
78 void sgReadVec4 ( gzFile fd, sgVec4 var ) ;
79 void sgWriteVec4 ( gzFile fd, const sgVec4 var ) ;
80
81 void sgReadMat4 ( gzFile fd, sgMat4 var ) ;
82 void sgWriteMat4 ( gzFile fd, const sgMat4 var ) ;
83
84 void sgClearReadError();
85 void sgClearWriteError();
86 int sgReadError();
87 int sgWriteError();
88
89
90 #endif // _SG_LOWLEVEL_HXX