]> git.mxchange.org Git - simgear.git/blob - simgear/io/lowlevel.hxx
Tweaks to lowlevel.[ch]xx from Norman.
[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
33 #ifdef HAVE_ZLIB
34 #  include <zlib.h>
35 #else
36 #  include <simgear/zlib/zlib.h>
37 #endif
38
39 #include <plib/sg.h>
40
41
42 // Note that output is written in little endian form (and converted as
43 // necessary)
44
45 void sgReadChar ( gzFile fd, char *var ) ;
46 void sgWriteChar ( gzFile fd, const char var ) ;
47 void sgReadFloat ( gzFile fd, float *var ) ;
48 void sgWriteFloat ( gzFile fd, const float var ) ;
49 void sgReadDouble ( gzFile fd, double *var ) ;
50 void sgWriteDouble ( gzFile fd, const double var ) ;
51 void sgReadUInt ( gzFile fd, unsigned int *var ) ;
52 void sgWriteUInt ( gzFile fd, const unsigned int var ) ;
53 void sgReadInt ( gzFile fd, int *var ) ;
54 void sgWriteInt ( gzFile fd, const int var ) ;
55 void sgReadLong ( gzFile fd, long int *var ) ;
56 void sgWriteLong ( gzFile fd, const long int var ) ;
57 void sgReadLongLong ( gzFile fd, long long int *var ) ;
58 void sgWriteLongLong ( gzFile fd, const long long int var ) ;
59 void sgReadUShort ( gzFile fd, unsigned short *var ) ;
60 void sgWriteUShort ( gzFile fd, const unsigned short var ) ;
61 void sgReadShort ( gzFile fd, short *var ) ;
62 void sgWriteShort ( gzFile fd, const short var ) ;
63
64 void sgReadFloat ( gzFile fd, const unsigned int n, float *var ) ;
65 void sgWriteFloat ( gzFile fd, const unsigned int n, const float *var ) ;
66 void sgReadDouble ( gzFile fd, const unsigned int n, double *var ) ;
67 void sgWriteDouble ( gzFile fd, const unsigned int n, const double *var ) ;
68 void sgReadUInt ( gzFile fd, const unsigned int n, unsigned int *var ) ;
69 void sgWriteUInt ( gzFile fd, const unsigned int n, const unsigned int *var ) ;
70 void sgReadInt ( gzFile fd, const unsigned int n, int *var ) ;
71 void sgWriteInt ( gzFile fd, const unsigned int n, const int *var ) ;
72 void sgReadUShort ( gzFile fd, const unsigned int n, unsigned short *var ) ;
73 void sgWriteUShort ( gzFile fd, const unsigned int n, const unsigned short *var ) ;
74 void sgReadShort ( gzFile fd, const unsigned int n, short *var ) ;
75 void sgWriteShort ( gzFile fd, const unsigned int n, const short *var ) ;
76 void sgReadBytes ( gzFile fd, const unsigned int n, void *var ) ;
77 void sgWriteBytes ( gzFile fd, const unsigned int n, const void *var ) ;
78
79 void sgReadString ( gzFile fd, char **var ) ;
80 void sgWriteString ( gzFile fd, const char *var ) ;
81
82 inline void sgReadVec2  ( gzFile fd, sgVec2 var ) {
83     sgReadFloat  ( fd, 2, var ) ;
84 }
85 inline void sgWriteVec2 ( gzFile fd, const sgVec2 var ) {
86     sgWriteFloat ( fd, 2, var ) ;
87 }
88
89 inline void sgReadVec3  ( gzFile fd, sgVec3 var ) {
90     sgReadFloat  ( fd, 3, var ) ;
91 }
92 inline void sgWriteVec3 ( gzFile fd, const sgVec3 var ) {
93     sgWriteFloat ( fd, 3, var ) ;
94 }
95
96 inline void sgReaddVec3  ( gzFile fd, sgdVec3 var ) {
97     sgReadDouble  ( fd, 3, var ) ;
98 }
99 inline void sgWritedVec3 ( gzFile fd, const sgdVec3 var ) {
100     sgWriteDouble ( fd, 3, var ) ;
101 }
102
103 inline void sgReadVec4  ( gzFile fd, sgVec4 var ) {
104     sgReadFloat  ( fd, 4, var ) ;
105 }
106 inline void sgWriteVec4 ( gzFile fd, const sgVec4 var ) {
107     sgWriteFloat ( fd, 4, var ) ;
108 }
109
110 inline void sgReadMat4  ( gzFile fd, sgMat4 var ) {
111     sgReadFloat  ( fd, 16, (float *)var ) ;
112 }
113 inline void sgWriteMat4 ( gzFile fd, const sgMat4 var ) {
114     sgWriteFloat ( fd, 16, (float *)var ) ;
115 }
116
117 void sgClearReadError();
118 void sgClearWriteError();
119 int sgReadError();
120 int sgWriteError();
121
122
123 #endif // _SG_LOWLEVEL_HXX